.age-gate-20 {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 24px;
	background: rgba(0, 0, 0, 0.80);
}

.age-gate-20 *,
.age-gate-20 *::before,
.age-gate-20 *::after {
	box-sizing: border-box;
}

.age-gate-20-verified .age-gate-20,
.age-gate-20[hidden] {
	display: none;
}

html:not(.age-gate-20-verified),
html:not(.age-gate-20-verified) body {
	overflow: hidden;
}

.age-gate-20__panel {
	width: 100%;
	max-width: 560px;
	padding: 40px;
	text-align: center;
	color: #111;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.age-gate-20__title {
	margin: 0 0 16px;
	color: inherit;
	font-size: clamp(1.625rem, 5vw, 2rem);
	line-height: 1.2;
}

.age-gate-20__description {
	margin: 0 0 28px;
	font-size: 1rem;
}

.age-gate-20__buttons {
	display: grid;
	gap: 12px;
}

.age-gate-20__button {
	width: 100%;
	padding: 14px 20px;
	border: 2px solid #111;
	border-radius: 4px;
	font: inherit;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
}

.age-gate-20__button--yes {
	color: #fff;
	background: #111;
}

.age-gate-20__button--no {
	color: #111;
	background: #fff;
}

.age-gate-20__button:hover,
.age-gate-20__button:focus-visible {
	filter: brightness(1.2);
}

.age-gate-20__button:focus-visible {
	outline: 3px solid #2271b1;
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.age-gate-20__panel {
		padding: 28px 20px;
	}
}

