/*------------- age verification ------------------*/
.age_verification {
	display: none;
	position: fixed;
	z-index: 1500;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
}
.age_verification .brand_logo {
	display: flex;
	width: 200px;
	margin: auto;
}
.age_verification_content {
  padding: 30px;
	border-radius: 2px;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	position: absolute;
  top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.age_verification_content a {
	position: absolute;
	right: 30px;
}
.age_verification_content a::after {
	content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 35%;
  height: 2px;
  background: #039cdf;
	transform: translateX(-50%);
  transition: width 0.3s ease;
}
.age_verification_content a:hover::after {
	width: 100%;
}
.age_verification .question {
	font-weight: bold;
}
#verifyAge {
	margin-bottom: 5px;
}
#verifyAge,
#denyAccess {
	padding: 10px;
	border: solid 1px #fff;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.15s;
}
#verifyAge:hover {
	background-color: green;
}
#denyAccess:hover {
	background-color: red;
}
/* Disable page scrolling when age_verification is active */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}