.lhcc,
.lhcc * {
	box-sizing: border-box;
}

.lhcc {
	--lhcc-accent: #ffc229;
	position: relative;
	z-index: 2147483646;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lhcc__launcher {
	position: fixed;
	left: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	padding: 0;
	color: #000;
	background: var(--lhcc-accent);
	border: 1px solid rgba(0, 0, 0, .18);
	border-radius: 999px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, bottom .2s ease;
}

.lhcc__launcher:hover,
.lhcc__launcher:focus-visible {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .26);
}

.lhcc__launcher svg {
	width: 27px;
	height: 27px;
}

.lhcc__panel {
	position: fixed;
	left: 18px;
	bottom: 84px;
	width: min(440px, calc(100vw - 28px));
	max-height: calc(100dvh - 110px);
	padding: 20px;
	color: #000;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .18);
	border-radius: 10px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
	overflow: auto;
	overscroll-behavior: contain;
	transform: translateY(14px) scale(.98);
	opacity: 0;
	transition: transform .24s ease, opacity .2s ease;
}

.lhcc__panel[hidden] {
	display: none;
}

.lhcc.is-open .lhcc__panel {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.lhcc__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	padding: 0;
	background: #f4f4f4;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 999px;
	cursor: pointer;
}

.lhcc__close::before,
.lhcc__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background: #000;
	border-radius: 99px;
}

.lhcc__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lhcc__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.lhcc__mark {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin: 0 44px 13px 0;
	padding: 6px 11px;
	background: var(--lhcc-accent);
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 99px;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.lhcc h2 {
	margin: 0;
	color: #000;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -.02em;
}

.lhcc__summary > p {
	margin: 12px 0 17px;
	color: rgba(0, 0, 0, .7);
	font-size: 14px;
	line-height: 1.5;
}

.lhcc__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
}

.lhcc__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 47px;
	padding: 11px 14px;
	color: #000;
	background: #f3f3f3;
	border: 1px solid rgba(0, 0, 0, .18);
	border-radius: 10px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .16s ease, background .16s ease;
}

.lhcc__button:hover { transform: translateY(-1px); }
.lhcc__button--primary { color: #fff; background: #000; border-color: #000; }
.lhcc__button--primary:hover { background: #292929; }

.lhcc__link-button {
	grid-column: 1 / -1;
	padding: 7px 0 2px;
	color: #000;
	background: transparent;
	border: 0;
	font-size: 12px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.lhcc__settings-head {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 42px 15px 0;
}

.lhcc__settings-head div { display: grid; gap: 2px; }
.lhcc__settings-head span { color: rgba(0, 0, 0, .55); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.lhcc__settings-head strong { font-size: 19px; line-height: 1.1; }

.lhcc__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	background: var(--lhcc-accent);
	border: 1px solid rgba(0, 0, 0, .16);
	border-radius: 99px;
	font-size: 18px;
	cursor: pointer;
}

.lhcc__categories {
	display: grid;
	gap: 8px;
	margin-bottom: 12px;
}

.lhcc__category {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 13px;
	align-items: start;
	padding: 13px;
	background: #f8f8f8;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 9px;
}

.lhcc__category-copy strong { display: block; margin-bottom: 4px; font-size: 13px; }
.lhcc__category-copy p { margin: 0; color: rgba(0, 0, 0, .62); font-size: 11px; line-height: 1.42; }

.lhcc__switch { position: relative; display: inline-flex; margin-top: 1px; }
.lhcc__switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.lhcc__switch > span:last-child {
	position: relative;
	display: block;
	width: 42px;
	height: 24px;
	background: #c8c8c8;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 99px;
	cursor: pointer;
	transition: background .16s ease;
}
.lhcc__switch > span:last-child::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
	transition: transform .16s ease;
}
.lhcc__switch input:checked + span { background: #000; }
.lhcc__switch input:checked + span::after { transform: translateX(18px); }
.lhcc__switch input:disabled + span { background: var(--lhcc-accent); cursor: not-allowed; }
.lhcc__switch input:focus-visible + span { outline: 3px solid rgba(255, 194, 41, .45); outline-offset: 2px; }

.lhcc__settings > .lhcc__button { width: 100%; }

.lhcc__privacy {
	display: inline-block;
	margin-top: 13px;
	color: rgba(0, 0, 0, .62);
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
}
.lhcc__privacy:hover { color: #000; text-decoration: underline; }
.lhcc__status { min-height: 0; margin: 8px 0 0; color: #185b19; font-size: 11px; font-weight: 800; }
.lhcc__status:empty { display: none; }

html.lhcc-open .crisp-client,
html.lhcc-open #crisp-chatbox,
html.lhcc-open [data-crisp-container] {
	visibility: hidden !important;
}

@media (max-width: 640px) {
	.lhcc__launcher { left: 12px; bottom: 12px; width: 52px; height: 52px; }
	.lhcc__panel { left: 10px; right: 10px; bottom: 74px; width: auto; max-height: calc(100dvh - 88px); padding: 17px; }
	.lhcc h2 { font-size: 25px; }
	.lhcc__summary > p { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
	.lhcc__launcher,
	.lhcc__panel,
	.lhcc__button,
	.lhcc__switch span { transition: none !important; }
}
