@font-face {
	font-family: 'Caslon BE Book';
	src: url('/assets/font/CaslonBEBook.ttf');
}
/* styles for age gate background */
#ageGate {
	width: 100%; height: 100vh;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.80);
	position: fixed;
	inset: 0;
	z-index: 999999;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	transition: opacity 1000ms;
}
#ageGate * {
	padding: 0; margin: 0;
}
/* Styles for the age gate message box */
#ageGate .messageBox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	background-color: none;
	/*border: thick double #000;
	border-radius: 50%;
	background-image: url("/assets/images/age-gate.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;*/
	max-width: 360px;
}
/* Styles for the age gate message */
#ageGate .message {
	text-align: center;
	/*width: 80%;
	padding-top: 120px;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 1.5rem;
	color: #ffffff;
}
.age-gate_logo {
	width: 290px;
	display: block;
}
#ageGateLogo {
	width: 60%;
	height: auto;
}
/*
#ageGate .message h2, #ageGate .message p {
	margin-bottom: .5em;
}

#ageGate h2 {
	font-size: 1.5em;
}
*/
.age-gate_content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	row-gap: .75rem;
}
.age-gate_heading {
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	color: #ffffff;
	font-family: 'Caslon BE Book', serif;
}
.age-gate_subheading {
	font-size: 1rem;
	line-height: 1.25;
	color: #FAFAFA;
}
#enterButton,
#yes-btn,
#no-btn {
	padding: .75rem 2rem;
	font-size: 1.25rem;
	color: #1E1E1E;
	background: linear-gradient(267.26deg, #C07709 -2.09%, #BDA16A 50.88%, #775005 102.75%);
	background-size: 200%;
	background-position: 0%;
	border: none;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: .25rem;
	transition: background-position 250ms ease;
}
#enterButton:hover {
	background-position: 100%;
}
	