.b-cookie-banner[hidden] {
	display: none !important;
}

.b-cookie-banner {
	position: fixed;
	inset: 0;
	z-index: 13000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 2rem);
	box-sizing: border-box;
	pointer-events: auto;
}

.b-cookie-banner__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: auto;
}

.b-cookie-banner__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 42rem;
	max-height: min(90vh, 100%);
	overflow-y: auto;
	box-sizing: border-box;
	background: #fff;
	color: #000;
	border: 1.5px solid #000;
	pointer-events: auto;
	-webkit-overflow-scrolling: touch;
}

.b-cookie-banner__inner {
	box-sizing: border-box;
	width: 100%;
	padding: clamp(1.25rem, 4vw, 2rem);
	display: grid;
	gap: 1rem;
}

.b-cookie-banner__title {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.b-cookie-banner__copy {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #333;
}

.b-cookie-banner__options {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
}

.b-cookie-banner__option {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.84rem;
	font-weight: 600;
	cursor: pointer;
}

.b-cookie-banner__option input {
	width: 1rem;
	height: 1rem;
	accent-color: #000;
}

.b-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	width: 100%;
}

.b-cookie-banner__actions .b-btn {
	flex: 1 1 auto;
	min-width: 10rem;
}

html.b-cookie-banner-open,
html.b-cookie-banner-open body {
	overflow: hidden;
}

@media (max-width: 520px) {
	.b-cookie-banner__options {
		flex-wrap: wrap;
	}
}
