@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
	--age-ground: #170a10;
	--age-surface: #251119;
	--age-raised: #331723;
	--age-ink: #f3e9ed;
	--age-muted: #a68b97;
	--age-line: rgba(243, 233, 237, 0.12);
	--age-magenta: #b2175a;
	--age-magenta-hover: #cf2a72;
	--ageverif-blue: #004db3;
}

html.age-access-pending,
html.age-access-pending body {
	min-height: 100%;
	background: var(--age-ground);
}

html.age-access-pending body {
	overflow: hidden !important;
}

html.age-access-pending body > .wrapper {
	display: none !important;
}

.age-access-gateway-locked + .wrapper {
	display: none !important;
}

html.age-access-pending body > .wrapper * {
	animation-play-state: paused !important;
}

html.age-access-pending body > .popup_age-holder,
body .popup_age-holder {
	display: none !important;
}

body.popup_age {
	height: auto !important;
	overflow: auto !important;
	position: static !important;
	width: auto !important;
}

.age-access-gateway {
	display: none;
}

.age-access-gateway-locked {
	box-sizing: border-box;
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-height: 100vh;
	padding: 24px 20px;
	background: var(--age-ground);
	color: var(--age-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	cursor: default;
}

html.age-access-pending.age-access-checking .age-access-gateway {
	visibility: hidden !important;
	pointer-events: none !important;
}

html.age-access-pending.age-access-login-open .age-access-gateway {
	visibility: hidden !important;
	pointer-events: none !important;
}

html.age-access-pending.age-access-provider-open .age-access-gateway {
	visibility: hidden !important;
	pointer-events: none !important;
}

html.age-access-pending.age-access-login-open .fancybox-overlay {
	z-index: 2147483100 !important;
}

html.age-access-pending.age-access-login-open .fancybox-wrap {
	z-index: 2147483200 !important;
}

.age-access-gateway,
.age-access-gateway * {
	box-sizing: border-box;
}

.age-access-shell {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	overflow: hidden;
	width: min(100%, 720px);
	border: 1px solid rgba(243, 233, 237, 0.14);
	border-radius: 16px;
	background: var(--age-surface);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.age-access-site-logo {
	display: block;
	width: min(100%, 245px);
	height: auto;
	margin: 0 auto;
}

.age-access-brand-rule {
	display: block;
	width: 56px;
	height: 1px;
	margin: 18px auto;
	background: rgba(243, 233, 237, 0.2);
}

.age-access-content {
	padding: 34px 48px 28px;
	text-align: center;
}

.age-access-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.age-access-requirement {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 18px auto 0;
	border-top: 1px solid rgba(243, 233, 237, 0.09);
	border-bottom: 1px solid rgba(243, 233, 237, 0.09);
	padding: 8px 4px;
	color: var(--age-muted);
	font-size: 13px;
}

.age-access-interaction-cue {
	margin: 11px auto 0;
	color: #c7b4bc;
	font-size: 12px;
	font-weight: 500;
}

.age-access-age-mark {
	color: var(--age-ink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.age-access-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-items: stretch;
	max-width: 590px;
	margin: 20px auto 0;
}

.age-access-choice {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.age-access-choice[hidden] {
	display: none !important;
}

.age-access-actions-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 360px;
}

.age-access-choice-label {
	color: var(--age-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.age-access-button,
.age-access-retry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 12px 18px;
	font: 600 15px/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.age-access-button-verify {
	gap: 10px;
	background: var(--ageverif-blue);
	color: #fff;
}

.age-access-button-verify:hover {
	background: #003f93;
	color: #fff;
}

.age-access-button-verify:disabled,
.age-access-button-verify[aria-disabled="true"] {
	cursor: wait;
	opacity: 0.72;
	pointer-events: none;
}

.age-access-button-verify img {
	display: block;
	width: 36px;
	height: 20px;
}

.age-access-button-login {
	background: var(--age-magenta);
	color: #fff;
}

.age-access-button-login:hover {
	background: var(--age-magenta-hover);
	color: #fff;
}

.age-access-choice .age-access-button {
	width: 100%;
}

.age-access-leave {
	display: inline-block;
	margin-top: 14px;
	padding: 7px 10px;
	color: #8f747f;
	font-size: 13px;
	text-underline-offset: 3px;
}

.age-access-leave:hover {
	color: var(--age-ink);
}

.age-access-privacy,
.age-access-status,
.age-access-noscript {
	max-width: 540px;
	margin: 16px auto 0;
	color: var(--age-muted);
	font-size: 13px;
	line-height: 1.55;
}

.age-access-privacy {
	max-width: 560px;
	border-top: 1px solid rgba(243, 233, 237, 0.09);
	padding-top: 14px;
}

.age-access-privacy strong {
	color: #c7b4bc;
	font-weight: 600;
}

.age-access-status {
	min-height: 21px;
	margin-top: 6px;
	color: #806873;
	font-size: 12px;
}

html.age-access-error .age-access-status {
	color: #f0b5c9;
}

html.age-access-popup-complete .age-access-actions,
html.age-access-popup-complete .age-access-interaction-cue {
	display: none;
}

html.age-access-popup-complete .age-access-status {
	max-width: 420px;
	margin-top: 20px;
	color: var(--age-ink);
	font-size: 15px;
}

.age-access-retry {
	min-height: 40px;
	margin: 12px auto 0;
	border-color: var(--age-line);
	background: var(--age-raised);
	color: var(--age-ink);
	cursor: pointer;
}

.age-access-retry:hover {
	border-color: rgba(243, 233, 237, 0.26);
	background: #3c1a28;
}

.age-access-retry[hidden] {
	display: none;
}

.age-access-footer {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: min(100%, 720px);
	padding: 0 16px;
}

.age-access-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px 16px;
}

.age-access-legal a {
	color: #6f5862;
	font-size: 11px;
	text-decoration: none;
}

.age-access-legal a:hover {
	color: var(--age-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.age-access-rta {
	flex: 0 0 auto;
	width: auto;
	height: 18px;
	border-left: 1px solid rgba(243, 233, 237, 0.1);
	padding-left: 18px;
	opacity: 0.4;
}

.age-access-gateway a:focus-visible,
.age-access-gateway button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

html.age-access-pending .fancybox-container .modal-content .hold.last {
	display: none !important;
}

@media (max-height: 620px) {
	.age-access-gateway-locked {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	html.age-access-pending .age-access-gateway {
		align-items: flex-start;
		padding: 16px 12px;
	}

	.age-access-site-logo {
		width: min(100%, 180px);
	}

	.age-access-content {
		padding: 28px 20px 25px;
	}

	.age-access-brand-rule {
		margin: 16px auto;
	}

	.age-access-requirement {
		align-items: flex-start;
		margin-top: 14px;
		text-align: left;
	}

	.age-access-interaction-cue {
		max-width: 250px;
	}

	.age-access-actions {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 16px;
	}

	.age-access-leave {
		margin-top: 10px;
	}

	.age-access-privacy {
		margin-top: 12px;
		padding-top: 11px;
	}

	.age-access-footer {
		align-items: flex-start;
		gap: 12px;
	}

	.age-access-rta {
		padding-left: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.age-access-button,
	.age-access-retry {
		transition: none;
	}
}
