.sb-cookie-notice {
	--sbbw-cookie-bg: #fff;
	--sbbw-cookie-border: #dfe5e8;
	--sbbw-cookie-shadow: rgba(10, 40, 64, .1);
	--sbbw-cookie-inner-color: #4b5358;
	--sbbw-cookie-title-color: #0a2840;
	--sbbw-cookie-text-color: #59636a;
	--sbbw-cookie-link-color: #0a2840;
	--sbbw-cookie-link-hover-color: #183f5a;
	--sbbw-cookie-button-text: #fff;
	--sbbw-cookie-button-bg: #0a2840;
	--sbbw-cookie-button-border: #0a2840;
	--sbbw-cookie-button-hover-text: #fff;
	--sbbw-cookie-button-hover-bg: #071c2d;
	--sbbw-cookie-button-hover-border: #071c2d;
	--sbbw-cookie-focus-color: #517999;
	--sbbw-cookie-delay: 0s;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	/* Keep the banner below modal layers from the first paint, before
	 * JavaScript has observed a popup. */
	z-index: 1;
	display: flex;
	justify-content: center;
	padding: 0 24px;
	background: var(--sbbw-cookie-bg);
	border-top: 1px solid var(--sbbw-cookie-border);
	box-shadow: 0 -8px 24px var(--sbbw-cookie-shadow);
	pointer-events: none;
	font-family: Montserrat, "Segoe UI", Arial, sans-serif;
	animation: sbbw-cookie-notice-in .3s ease both;
	animation-delay: var(--sbbw-cookie-delay);
}

.sb-cookie-notice[hidden] {
	display: none !important;
}

.sb-cookie-notice.is-behind-popup {
	z-index: 0 !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.sb-cookie-notice__inner {
	display: grid;
	width: min(1180px, 100%);
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
	padding: 18px 0 19px;
	color: var(--sbbw-cookie-inner-color);
	pointer-events: auto;
}

.sb-cookie-notice__copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.sb-cookie-notice__title {
	color: var(--sbbw-cookie-title-color);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.sb-cookie-notice__copy p {
	max-width: 980px;
	margin: 0;
	color: var(--sbbw-cookie-text-color);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.55;
}

.sb-cookie-notice__copy a {
	color: var(--sbbw-cookie-link-color);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sb-cookie-notice__copy a:hover,
.sb-cookie-notice__copy a:focus-visible {
	color: var(--sbbw-cookie-link-hover-color);
}

.sb-cookie-notice .sb-cookie-notice__button {
	min-width: 68px;
	padding: 11px 17px;
	color: var(--sbbw-cookie-button-text) !important;
	background: var(--sbbw-cookie-button-bg) !important;
	background-color: var(--sbbw-cookie-button-bg) !important;
	border: 1px solid var(--sbbw-cookie-button-border) !important;
	border-radius: 4px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none !important;
	font: 700 11px/1 Montserrat, "Segoe UI", Arial, sans-serif;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sb-cookie-notice .sb-cookie-notice__button:hover,
.sb-cookie-notice .sb-cookie-notice__button:focus,
.sb-cookie-notice .sb-cookie-notice__button:focus-visible,
.sb-cookie-notice .sb-cookie-notice__button:active {
	color: var(--sbbw-cookie-button-hover-text) !important;
	background: var(--sbbw-cookie-button-hover-bg) !important;
	background-color: var(--sbbw-cookie-button-hover-bg) !important;
	border-color: var(--sbbw-cookie-button-hover-border) !important;
	box-shadow: 0 4px 10px rgba(10, 40, 64, .16);
}

.sb-cookie-notice .sb-cookie-notice__button:focus-visible {
	outline: 2px solid var(--sbbw-cookie-focus-color);
	outline-offset: 3px;
}

.sb-cookie-notice .sb-cookie-notice__button:active {
	transform: translateY(1px);
}

@keyframes sbbw-cookie-notice-in {
	from {
		opacity: 0;
		visibility: hidden;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.sb-cookie-notice {
		padding: 0 16px;
	}

	.sb-cookie-notice__inner {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 15px 0 16px;
	}

	.sb-cookie-notice__copy,
	.sb-cookie-notice__copy p {
		width: 100%;
		max-width: none;
	}

	.sb-cookie-notice__title {
		font-size: 11px;
	}

	.sb-cookie-notice__copy p {
		font-size: 10px;
	}

	.sb-cookie-notice .sb-cookie-notice__button {
		width: 100%;
		min-width: 58px;
		padding: 10px 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sb-cookie-notice {
		/* Keep the configured delay while removing the sliding motion. */
		animation-duration: .01ms;
		animation-timing-function: linear;
	}

	.sb-cookie-notice__button {
		transition: none;
	}
}
