#age-verification-popup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #000;
/*	background-image: url(/wp-content/uploads/2024/06/21bg.jpg); */
	background-image: url(/wp-content/uploads/2024/07/over-21-bg.jpg); 
	background-size: 1440px 950px;
	z-index: 9998; /* Ensure it is on top of other elements */
}

#age-verification-popup {
	position: fixed;
	top: 50%;
	left: 50%;
/*	transform: translate(-50%, -50%); */
	transform: translate(-50%, -39%); 
	border-radius: 50px;
	max-width: 300px;
	width: 100%;
	background-color: black;
	color: white;
	padding: 0 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	z-index: 9999; /* Ensure it is on top of other elements */
}
@media all and (max-width: 980px) {
	#age-verification-popup-container {
		background-image: url(/wp-content/uploads/2024/07/21mobile-860x720-1.jpg); 
		background-size: cover;
	}
	#age-verification-popup {
		transform: translate(-50%, -50%); 
		border-radius: 0;
	}
}

#age-verification-popup button {
	display: inline-block;
	margin: 10px 5px;
	padding: 10px 20px;
	background-color: white;
	color: black;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

#age-verification-popup button:hover {
	background-color: #ddd;
}

#age-verification-popup {
	text-align: center;
	padding: 20px;
}
#age-verification-popup img.popup-logo {
	max-width: 120px;
	margin: 40px auto;
}

#age-verification-popup h1 {
	font-size: 20px;
	margin-bottom: 30px;
}
#age-verification-popup button {
	color: #fff;
	background: #000;
	text-transform: uppercase;
	font-size: 11px;
	transition: 0.5s;
	border: 1px solid #fff;
    margin: 10px auto;
    padding: 20px 10px;
    width: 100%;
}
#age-verification-popup button:hover {
	color: #000;
	background: #fff;
}
#age-verification-popup p.subtext {
	font-size: 11px;
	max-width: 200px;
	margin: 30px auto 20px;
}
