body.age-gate-active {
	overflow: hidden;
}

#age-gate {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	z-index: 20000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5em;
	box-sizing: border-box;
	pointer-events: auto;
}

#age-gate[hidden] {
	display: none !important;
}

.age-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
	.age-gate__backdrop {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: rgba(0, 0, 0, 0.85);
	}
}

.age-gate__panel {
	position: relative;
	z-index: 1;
	max-width: 60vw;
	width: 100%;
	max-height: calc(100vh - 3em);
	overflow-y: auto;
	background: #fff;
	border-radius: 0.35em;
	padding: 2em 2.5em;
	box-shadow: 0 1em 3em rgba(0, 0, 0, 0.35);
	text-align: center;
}

.age-gate__lang {
	margin: 0 0 1.5em 0;
}

.age-gate__lang ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5em;
}

.age-gate__lang-btn {
	appearance: none;
	background: transparent;
	border: solid 1px rgba(144, 144, 144, 0.5);
	border-radius: 0.35em;
	color: #484848;
	cursor: pointer;
	font-size: 0.75em;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 0.65em 1em;
	text-transform: uppercase;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.age-gate__lang-btn:hover {
	background-color: rgba(144, 144, 144, 0.15);
}

.age-gate__lang-btn.is-active {
	background-color: #484848;
	border-color: #484848;
	color: #fff;
}

.age-gate__state h2 {
	margin: 0 0 0.75em 0;
}

.age-gate__state p {
	margin: 0 0 1.5em 0;
	text-align: left;
}

.age-gate__cookie-notice {
	font-size: 0.8em;
	line-height: 1.5;
	color: rgba(72, 72, 72, 0.85);
	margin-bottom: 1.25em !important;
}

.age-gate__state .actions {
	justify-content: center;
	margin: 0;
}

#age-gate.age-gate--denied .age-gate__state--prompt {
	display: none;
}

#age-gate.age-gate--denied .age-gate__state--denied {
	display: block;
}

#age-gate.age-gate--denied .age-gate__state--denied[hidden] {
	display: block;
}

.age-gate__state--denied[hidden] {
	display: none;
}
