/*popup*/
.popup {
width: 100%;
margin: 0 auto;
display: none;
position: fixed;
z-index: 101;
top: 0;
left: 0;
height: 100%;
padding: 0 15px;
}
.popup .age-confirmation {
max-width: 375px;
width: 100%;
background: #f3f3f3;
z-index: 103;
padding: 25px 35px 32px;
border-radius: 5px;
box-shadow: 0 2px 5px #000;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
outline: 1px solid white;
outline-offset: 2px;
}
.popup .age-confirmation h1 {
font-size: 40px;
color: #000001;
font-family: 'Futura Std Extra Bold Condensed Oblique';
overflow: visible;
}
.popup .age-confirmation p {
clear: both;
color: #555555;
font-size: 20px;
font-family: 'Futura Std Extra Bold Condensed Oblique';
overflow: visible;
text-align: center;
}
.popup .age-confirmation #yes_btn{
background: black;
text-decoration: none;
border: 1px solid transparent;
color: #ffffff;
overflow: visible;
font-size: 14px;
display: inline-block;
padding: 6px 20px;
margin-bottom: 0;
font-weight: bold;
line-height: 1.42857143;
text-align: center;
vertical-align: middle;
cursor: pointer;
user-select: none;
font-family: 'Futura Std Extra Bold Condensed Oblique';
}
.popup .age-confirmation #no_btn {
margin-left: 5px;
}
.popup .age-confirmation #no_btn {
background: black;
text-decoration: none;
border: 1px solid transparent;
color: #ffffff;
overflow: visible;
font-size: 14px;
display: inline-block;
padding: 6px 20px;
margin-bottom: 0;
font-weight: bold;
line-height: 1.42857143;
text-align: center;
vertical-align: middle;
cursor: pointer;
user-select: none;
font-family: 'Futura Std Extra Bold Condensed Oblique';
}
.popup .age-confirmation #yes_btn:hover, .popup .age-confirmation #no_btn:hover {
background: transparent;
color: #000000;
border: 1px solid #000000;
}
#overlay{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
-khtml-opacity: 0.7;
opacity: 0.7;
z-index: 100;
display: none;
}
