.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.popuplogo {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 0px 5px 0px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    font-family :'Helvetica', arial, sans-serif;
    font-size   :40px;
    font-weight :bold;
    color       :#CC0000;
    text-shadow :0 0 3px #FFF, 0 0 5px #CCC;
}

.popup {
    background: #fff;
    max-width: 400px;
    margin: 0% auto;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.close-btn2 {
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: #226180;
    cursor: pointer;
}

@media screen and (max-width: 920px){

    .popuplogo {
        max-width: 90%;
        margin: 0 auto;
        padding: 20px 0px 5px 0px;
        font-size   :30px;
    }

    .popup {
        max-width: 90%;
        margin: 0% auto;
        padding: 20px;
    }

}