#popup, #popup .popupShadow, #popup .popupWrapper{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;

}

#popup {
    z-index: 10000;
    display: none;
}

#popup .popupShadow {
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
    /*display: none;*/
}

#popup .popupWrapper{
    z-index: 20;
}

#popup .popupContent {
    background-color: #61a4d8;
    border: 3px solid #0a3d71;
    border-radius: 8px;
    color: white;
    line-height: 20px;
    margin: 50px auto 0;
    max-height: 500px;
    max-width: 1000px;
    padding: 6px 10px;
    width: 80%;
}

#popup.countryBox .popupContent {
    background-color: #fff;
    margin-top: 250px;
    max-width: none;
    padding: 15px 20px;
    width: 500px;
}
#popup.countryBox.mobile .popupContent{
    margin-top: 175px;
}

.countryBoxWrapper .preLabel {
    margin: 0 0 20px ;
}

.countryBoxWrapper img {
    display: block;
    margin: 0 auto 20px;
    width: 60%;
}
.countryBox a.defaultButton {
    line-height: 23px;
    text-decoration: none;
    margin: 0 auto 10px;
    display: block;
    width: 60%;
}
.countryBoxWrapper .closeButton {
    height: 39px;
    line-height: 42px;
    right: -36px;
    text-align: center;
    top: -30px;
    width: 40px;
    font-size: 120%;
    cursor: pointer;
}

#popup.infoWindow .popupContent {
    max-width: 450px;
    min-height: 60px;
    text-align: center;
    padding: 30px 10px;
}
#popup .popupClose {
    background-color: #0a3d71;
    border-radius: 100%;
    color: #fff;
    height: 40px;
    left: 50%;
    margin-left: 216px;
    margin-top: 33px;
    position: absolute;
    top: 0;
    width: 40px;
    text-align: center;
    line-height: 44px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

#popup.infoWindow .popupClose {
    display: block;
}