.age-verification-overlay {
position: fixed;
z-index: 9998;
top: 0;
right: 0;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: rgb(255 255 255 / 96%);
}
.age-verification-popup {
position: fixed;
z-index: 9999;
left: 50%;
top: 50%;
margin-top: -125px;
margin-left: -150px;
width: 300px;
min-height: 250px;
text-align: center;
padding: 30px;
background: #000;
box-sizing: border-box;
display: flex;
flex-flow: column nowrap;
align-items: center;
align-content: center;
justify-content: center;
}
.age-verification-popup p {
color: #fff;
}
.age-verification-popup a {
display: inline-block;
background: transparent;
border: 2px solid #fff;
color: #fff;
text-decoration: none;
padding: 8px 16px;
transition: all .2s;
}
.age-verification-popup a:hover {
background: #fff;
color: #000;
}