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

.llcc {
	color: #d0d0d0;
	font-family: Montserrat, Arial, sans-serif;
	letter-spacing: 0;
}

.llcc[hidden],
.llcc [hidden] {
	display: none !important;
}

.llcc-lock {
	overflow: hidden;
}

.llcc-banner {
	background: #111;
	border-top: 1px solid rgba(255,255,255,.12);
	bottom: 0;
	box-shadow: 0 -2px 10px 5px rgba(0,0,0,.07);
	left: 0;
	padding: 20px 24px;
	position: fixed;
	right: 0;
	z-index: 9999999;
}

.llcc-banner__content {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1230px;
}

.llcc-banner__text {
	max-width: 760px;
}

.llcc h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 12px;
}

.llcc p {
	color: #d0d0d0;
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 14px;
}

.llcc a {
	color: #3b73dc;
	text-decoration: underline;
}

.llcc-banner__actions,
.llcc-modal__footer {
	display: flex;
	gap: 8px;
}

.llcc-btn {
	background: #1863dc;
	border: 2px solid #1863dc;
	border-radius: 2px;
	color: #d0d0d0;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	line-height: 24px;
	min-height: 44px;
	min-width: 126px;
	padding: 8px 24px;
	text-align: center;
}

.llcc-btn:hover,
.llcc-btn:focus-visible {
	background: #235fbd;
	border-color: #d0d0d0;
	color: #fff;
	outline: 0;
}

.llcc-btn--ghost {
	background: transparent;
	border-color: #d0d0d0;
}

.llcc-close {
	background: transparent;
	border: 1px solid transparent;
	color: #d0d0d0;
	cursor: pointer;
	font-size: 22px;
	height: 32px;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 10px;
	width: 32px;
}

.llcc-close:hover,
.llcc-close:focus-visible {
	border-color: #1863dc;
	color: #fff;
	outline: 0;
}

.llcc-modal-wrap {
	align-items: center;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999999;
}

.llcc-backdrop {
	background: rgba(0,0,0,.45);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.llcc-modal {
	background: #111;
	border-radius: 4px;
	box-shadow: 0 20px 70px rgba(0,0,0,.34);
	max-height: min(82vh, 720px);
	max-width: 845px;
	outline: none;
	overflow: hidden;
	position: relative;
	width: calc(100vw - 48px);
}

.llcc-modal__header {
	border-bottom: 1px solid rgba(255,255,255,.1);
	padding: 24px 56px 20px 24px;
	position: relative;
}

.llcc-close--modal {
	right: 20px;
	top: 18px;
}

.llcc-modal__body {
	max-height: calc(82vh - 190px);
	overflow: auto;
	padding: 20px 24px;
}

.llcc-category {
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 14px 0;
}

.llcc-category__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.llcc-category__toggle {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
	gap: 10px;
	padding: 0;
}

.llcc-category__toggle[aria-expanded="true"] .llcc-category__chevron {
	transform: rotate(90deg);
}

.llcc-always-active {
	color: #51a943;
	font-size: 14px;
}

.llcc-switch {
	display: inline-block;
	height: 24px;
	position: relative;
	width: 44px;
}

.llcc-switch input {
	opacity: 0;
	position: absolute;
}

.llcc-switch__track {
	background: linear-gradient(#eee, #777);
	border-radius: 999px;
	display: block;
	height: 24px;
	position: relative;
	width: 44px;
}

.llcc-switch__track::after {
	background: #fff;
	border-radius: 50%;
	content: "";
	height: 18px;
	left: 3px;
	position: absolute;
	top: 3px;
	transition: transform .16s ease;
	width: 18px;
}

.llcc-switch input:checked + .llcc-switch__track {
	background: #1863dc;
}

.llcc-switch input:checked + .llcc-switch__track::after {
	transform: translateX(20px);
}

.llcc-cookie {
	background: #181818;
	border: 1px solid rgba(255,255,255,.1);
	margin: 12px 0;
	padding: 12px;
}

.llcc-cookie div {
	display: grid;
	gap: 12px;
	grid-template-columns: 110px 1fr;
	margin: 8px 0;
}

.llcc-cookie dt {
	color: #fff;
	font-weight: 700;
}

.llcc-cookie dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.llcc-modal__footer {
	background: #111;
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 24px 24px;
}

.llcc-modal__footer .llcc-btn {
	flex: 1 1 0;
}

.llcc-revisit {
	align-items: center;
	background: #1863dc;
	border: 0;
	border-radius: 50%;
	bottom: 24px;
	box-shadow: 0 8px 24px rgba(0,0,0,.2);
	color: #fff;
	cursor: pointer;
	display: flex;
	height: 44px;
	justify-content: center;
	left: 24px;
	position: fixed;
	width: 44px;
	z-index: 9999998;
}

.llcc-revisit__icon {
	display: block;
}

.llcc-revisit__tip {
	background: #111;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 4px;
	bottom: 50%;
	box-shadow: 0 4px 14px rgba(0,0,0,.3);
	color: #fff;
	font-size: 13px;
	left: calc(100% + 12px);
	line-height: 1;
	opacity: 0;
	padding: 9px 12px;
	pointer-events: none;
	position: absolute;
	transform: translateY(50%);
	transition: opacity .15s ease;
	visibility: hidden;
	white-space: nowrap;
}

.llcc-revisit__tip::before {
	border: 5px solid transparent;
	border-right-color: #111;
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.llcc-revisit:hover .llcc-revisit__tip,
.llcc-revisit:focus-visible .llcc-revisit__tip {
	opacity: 1;
	visibility: visible;
}

.llcc .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}

@media (max-width: 767px) {
	.llcc-banner {
		padding: 22px 24px;
	}

	.llcc-banner__content,
	.llcc-banner__actions,
	.llcc-modal__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.llcc-banner__actions {
		width: 100%;
	}

	.llcc-btn {
		width: 100%;
	}

	.llcc-modal-wrap {
		align-items: stretch;
	}

	.llcc-modal {
		border-radius: 0;
		max-height: none;
		min-height: 100vh;
		width: 100vw;
	}

	.llcc-modal__body {
		max-height: calc(100vh - 236px);
		padding: 18px 24px;
	}

	.llcc-modal__footer {
		bottom: 0;
		left: 0;
		position: sticky;
		right: 0;
	}

	.llcc-cookie div {
		grid-template-columns: 1fr;
	}
}
