/* SBS cookie consent — full-width bottom bar */

.sbs-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	width: 100%;
	pointer-events: none;
}

.sbs-cookie-consent[hidden] {
	display: none !important;
}

.sbs-cookie-consent__bar {
	pointer-events: auto;
	width: 100%;
	background: #ffffff;
	border-top: 1px solid #e5e5e5;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.sbs-cookie-consent__inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 40px 32px;
}

.sbs-cookie-consent__close {
	position: absolute;
	top: 16px;
	right: 20px;
	appearance: none;
	border: 0;
	background: transparent;
	color: #666;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
}

.sbs-cookie-consent__close:hover,
.sbs-cookie-consent__close:focus {
	color: #111;
}

.sbs-cookie-consent__title {
	margin: 0 0 10px;
	padding-right: 36px;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #111111;
}

.sbs-cookie-consent__text {
	margin: 0 0 22px;
	max-width: 1100px;
	font-family: "Lato", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: #111111;
}

.sbs-cookie-consent__link {
	color: #111111;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sbs-cookie-consent__link:hover,
.sbs-cookie-consent__link:focus {
	color: #0072bc;
}

.sbs-cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
}

.sbs-cookie-consent__btn {
	appearance: none;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	padding: 14px 22px;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sbs-cookie-consent__btn--primary {
	background: #073e58;
	border-color: #073e58;
	color: #ffffff;
}

.sbs-cookie-consent__btn--primary:hover,
.sbs-cookie-consent__btn--primary:focus {
	background: #052f42;
	border-color: #052f42;
}

.sbs-cookie-consent__btn--secondary {
	background: #edebe3;
	border-color: #edebe3;
	color: #073e58;
}

.sbs-cookie-consent__btn--secondary:hover,
.sbs-cookie-consent__btn--secondary:focus {
	background: #e3e0d5;
	border-color: #e3e0d5;
}

.sbs-cookie-consent__text-btn {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #073e58;
}

.sbs-cookie-consent__text-btn:hover,
.sbs-cookie-consent__text-btn:focus {
	color: #0072bc;
}

.sbs-cookie-consent.is-prefs .sbs-cookie-consent__inner {
	max-height: min(80vh, 720px);
	overflow: auto;
}

.sbs-cookie-consent__cats {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0 0 22px;
}

.sbs-cookie-consent__cat {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
	border-top: 1px solid #ececec;
}

.sbs-cookie-consent__cat:last-child {
	border-bottom: 1px solid #ececec;
}

.sbs-cookie-consent__cat-copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	max-width: 920px;
}

.sbs-cookie-consent__cat-copy strong {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #111111;
}

.sbs-cookie-consent__cat-copy span {
	font-family: "Lato", sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #333333;
}

.sbs-cookie-consent__switch {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	width: 44px;
	height: 26px;
	margin-top: 2px;
	cursor: pointer;
}

.sbs-cookie-consent__switch input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.sbs-cookie-consent__switch span {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: #cfcfcf;
	transition: background-color 0.15s ease;
}

.sbs-cookie-consent__switch span::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	transition: transform 0.15s ease;
}

.sbs-cookie-consent__switch input:checked + span {
	background: #073e58;
}

.sbs-cookie-consent__switch input:checked + span::after {
	transform: translateX(18px);
}

.sbs-cookie-consent__switch.is-locked {
	cursor: default;
	opacity: 0.85;
}

.sbs-cookie-consent__switch.is-locked input:checked + span {
	background: #8a8a8a;
}

@media only screen and (max-width: 760px) {
	.sbs-cookie-consent__inner {
		padding: 20px 16px 22px;
	}

	.sbs-cookie-consent__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.sbs-cookie-consent__btn,
	.sbs-cookie-consent__text-btn {
		width: 100%;
		text-align: center;
	}

	.sbs-cookie-consent__cat {
		flex-direction: column;
		gap: 12px;
	}
}
