/* GTA Vapes 19+ age gate */

.gtav-age-gate {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2147483000; /* above everything, including the store bar/modal */
	background: rgba(20, 26, 38, 0.92);
	align-items: center;
	justify-content: center;
}
.gtav-age-gate.is-open {
	display: flex;
}

/* Prevent interaction/scroll with the page behind the gate. */
html.gtav-age-locked,
html.gtav-age-locked body {
	overflow: hidden !important;
	height: 100%;
}

.gtav-age-gate__panel {
	background: #fff;
	max-width: 420px;
	width: calc(100% - 32px);
	border-radius: 14px;
	padding: 32px 28px;
	text-align: center;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.gtav-age-gate__title {
	margin: 0 0 10px;
	font-size: 22px;
	color: #141a26;
}
.gtav-age-gate__text {
	margin: 0 0 20px;
	color: #5a6675;
	font-size: 14px;
	line-height: 1.5;
}
.gtav-age-gate__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
}
.gtav-age-gate__yes,
.gtav-age-gate__no {
	border: 0;
	border-radius: 9px;
	padding: 12px 22px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}
.gtav-age-gate__yes {
	background: #18c29c;
	color: #fff;
}
.gtav-age-gate__no {
	background: #e6eaf0;
	color: #41506a;
}
