/* modal-age-verification */
:root {
	--index: calc(100vw / 1920);
}

#age-verification-modal {
	font-family: "Golos", Arial, Helvetica, sans-serif;
	position: fixed;
	z-index: 999;
	inset: 0;
	height: 100%;
	max-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #323232;
}

#age-verification-modal.fade-out {
	-webkit-animation: fadeOut 3s;
	animation: fadeOut 3s;
}

@-webkit-keyframes fadeOut {
	0% {
		translate: 0;
	}
	100% {
		translate: 150%;
	}
}

@keyframes fadeOut {
	0% {
		translate: 0;
	}
	100% {
		translate: 150%;
	}
}

#age-verification-modal .age-verification-bg {
	width: 100%;
	display: block;
	box-shadow: black 0rem 0rem 9rem 9px;
}

#age-verification-modal .blur {
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	inset: 0px;
	z-index: 10;
	position: fixed;
	inset: 0px;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

#age-verification-modal_img-wrapper {
	position: relative;
	z-index: 20;
}

#age-verification-modal,
#age-verification-modal_img-wrapper {
	width: 100%;
}

#age-verification-modal_content {
	position: absolute;
	width: 35%;
	bottom: 26%;
	left: 61.5%;
	translate: -50%;
	color: white;
	z-index: 50;
	/* padding: 1%; */
	font-size: calc(24 * (100vw / 1920));
	text-align: center;
}

#age-verification-modal_content .content {
	padding: 0 5% 3%;
}

#age-verification-modal_content .under {
	text-decoration: underline;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

#age-verification-modal_content .under:hover,
#age-verification-modal_content button:hover {
	scale: 1.025;
	-webkit-filter: drop-shadow(#0000007a 1rem 1rem 1rem);
	filter: drop-shadow(#0000007a 1rem 1rem 1rem);
}

#age-verification-modal_content .title {
	font-size: calc(64 * var(--index));
	font-weight: bold;
	margin: 0 0 5%;
	font-family: "Rexlia", Arial;
}

#age-verification-modal_content button {
	font-size: calc(24 * var(--index));
	background: linear-gradient(#30d061, #43d88c);
	color: #105627;
	padding: calc(24 * var(--index));
	border: none;
	border-radius: calc(14 * var(--index));
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	font-family: "Golos", Arial, Helvetica, sans-serif;
	overflow: hidden;
	position: relative;
}

#age-verification-modal_content button span {
	z-index: 20;
}

#age-verification-modal_content button:after {
	background: #fff;
	content: "";
	height: 200%;
	left: -75px;
	opacity: 0.2;
	position: absolute;
	top: -50%;
	transform: rotate(35deg);
	transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
	z-index: -10;
}

#age-verification-modal_content button:hover:after {
	left: 120%;
	transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

#age-verification-modal_content button .big-text {
	font-size: calc(38 * var(--index));
	font-weight: bold;
	font-family: "Rexlia", Arial;
}
