.scvb-cookie-consent,
.scvb-cookie-consent__manage {
	--scvb-consent-button-bg: var(--bs-btn-primary-bg, #153b58);
	--scvb-consent-button-hover-bg: var(--bs-primary-hover, #446279);
	--scvb-consent-button-radius: var(--bs-btn-border-radius, var(--bs-border-radius, 5px));
	--scvb-consent-panel-bg: #ede8e2;
	--scvb-consent-panel-color: #1a1616;
	--scvb-consent-panel-shadow: 0 22px 91px rgba(0, 15, 30, 0.26);
	--scvb-consent-panel-radius: 5px;
}

.scvb-cookie-consent {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 110000;
	animation: scvb-cookie-consent-slide-up 350ms ease-out;
	transform-origin: bottom left;
}

.scvb-cookie-consent[hidden] {
	display: none;
}

.scvb-cookie-consent__card {
	position: relative;
	display: grid;
	gap: 1rem;
	padding: 30px;
	border: 0;
	border-radius: var(--scvb-consent-panel-radius);
	background: var(--scvb-consent-panel-bg);
	color: var(--scvb-consent-panel-color);
	box-shadow: var(--scvb-consent-panel-shadow);
}

.scvb-cookie-consent__dismiss {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #423d3d;
	font-family: Arial, sans-serif;
	font-size: 32px;
	font-weight: 100;
	line-height: 1;
	cursor: pointer;
}

.scvb-cookie-consent__dismiss:hover,
.scvb-cookie-consent__dismiss:focus-visible {
	color: #1a1616;
	outline: none;
}

.scvb-cookie-consent__eyebrow {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bs-secondary, #07c);
}

.scvb-cookie-consent__copy h2 {
	margin: 0 0 0.4rem;
	font-size: 1.35rem;
	line-height: 1.15;
}

.scvb-cookie-consent__copy p {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.64;
}

.scvb-cookie-consent__copy a {
	color: inherit;
	font-weight: 700;
}

.scvb-cookie-consent__summary,
.scvb-cookie-consent__preferences-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.75rem;
}

.scvb-cookie-consent__summary {
	align-items: center;
	justify-content: flex-start;
}

.scvb-cookie-consent__preferences[hidden],
.scvb-cookie-consent__preferences-actions[hidden] {
	display: none;
}

.scvb-cookie-consent__choice {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0.85rem 0;
	border-top: 1px solid rgba(26, 22, 22, 0.12);
}

.scvb-cookie-consent__choice:last-child {
	padding-bottom: 0;
}

.scvb-cookie-consent__choice input {
	margin-top: 0.2rem;
	width: 1rem;
	height: 1rem;
}

.scvb-cookie-consent__choice strong,
.scvb-cookie-consent__choice small {
	display: block;
}

.scvb-cookie-consent__choice strong {
	font-size: 1rem;
}

.scvb-cookie-consent__choice small {
	margin-top: 0.25rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(26, 22, 22, 0.82);
}

.scvb-cookie-consent__button,
.scvb-cookie-consent__manage {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.5625rem 2.125rem;
	border: 1px solid var(--scvb-consent-button-bg);
	border-radius: var(--scvb-consent-button-radius);
	background: rgba(255, 255, 255, 0.92);
	color: var(--scvb-consent-button-bg);
	font: inherit;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.64;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.scvb-cookie-consent__button:hover,
.scvb-cookie-consent__button:focus-visible,
.scvb-cookie-consent__manage:hover,
.scvb-cookie-consent__manage:focus-visible {
	background: rgba(21, 59, 88, 0.08);
	border-color: var(--scvb-consent-button-bg);
	color: var(--scvb-consent-button-bg);
	box-shadow: 0 0 0 0.2rem rgba(21, 59, 88, 0.14);
	outline: none;
}

.scvb-cookie-consent__button--primary {
	background: var(--scvb-consent-button-bg);
	border-color: var(--scvb-consent-button-bg);
	color: #fff;
}

.scvb-cookie-consent__button--primary:hover,
.scvb-cookie-consent__button--primary:focus-visible {
	background: var(--scvb-consent-button-hover-bg);
	border-color: var(--scvb-consent-button-hover-bg);
	color: #fff;
}

.scvb-cookie-consent__button--quiet {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0;
	color: var(--scvb-consent-button-bg);
	text-align: center;
	white-space: nowrap;
}

.scvb-cookie-consent__button--quiet:hover,
.scvb-cookie-consent__button--quiet:focus-visible {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.scvb-cookie-consent__manage {
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 109999;
	background: var(--scvb-consent-button-bg);
	border-color: var(--scvb-consent-button-bg);
	color: #fff;
}

.scvb-cookie-consent__manage:hover,
.scvb-cookie-consent__manage:focus-visible {
	background: var(--scvb-consent-button-hover-bg);
	border-color: var(--scvb-consent-button-hover-bg);
	color: #fff;
}

.scvb-cookie-consent__manage[hidden] {
	display: none;
}

@media (min-width: 900px) {
	.scvb-cookie-consent {
		right: auto;
		width: min(34rem, calc(100vw - 20px));
	}
}

@media (max-width: 639px) {
	.scvb-cookie-consent__summary,
	.scvb-cookie-consent__preferences-actions {
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scvb-cookie-consent {
		animation: none;
	}
}

@keyframes scvb-cookie-consent-slide-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
