body {position: relative;}

#bg_popup{
background-color: rgba(0, 0, 0, 0.8);
/*display: none;*/
position: absolute;
z-index: 1500;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
  
#popup {
background: #d3e0f1;
width: 45%;
height: auto;
margin: 10.0em auto;
padding: 60px;
position: relative;
-webkit-box-shadow: 0px 0px 20px #000;
-moz-box-shadow: 0px 0px 20px #000;
box-shadow: 0px 0px 20px #000;
    border-top: 5px solid #d90000;
}

#popup a {
    color: #89add8;
    text-decoration: none;
}

#popup a:hover {text-decoration: underline;}
  
.close{
display:block;
position:absolute;
top:20px;
right:20px;
width:30px;
height:30px;
line-height:30px;
text-align: center;
color:#6a6b6f;
cursor:pointer;
text-decoration: none;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
border-radius: 15px;
}



@media screen and (min-width:100px) and (max-width:800px) {
    #popup {width: 70%;}
}

@media screen and (min-width:100px) and (max-width:425px) {
    #popup {width: 65%; font-size: .8em; padding: 30px; margin: 5.0em auto;}
}

