#aw_popup_wraper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #fff;
}

#aw_popup_window {
    margin: auto;
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    max-height: 550px;
    max-width: 700px;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background: #fff;
    z-index: 10000;
}

#aw_popup_title {
    font-weight: bold;
}

#aw_popup_close_btn {
    cursor: pointer;
    float: right;
}

#aw_popup_window img#pop-close {
    position: absolute;
    top: -35px;
    right: 0;
    cursor: pointer;
    float: right;
    width: 25px;
    height: 25px;
    z-index: 10001;
}

#aw_popup_content {
    overflow: hidden;
    height: 100%;
}

.newsletter-popup {
    padding: 0 15px 15px 15px;
}

.newsletter-popup p {
    margin: 15px 0 35px 0;
}

.newsletter-popup span#pop-info {
    display: block;
    color: #6d6e71;
    margin: 5px 0 35px 0;
}

.newsletter-popup a {
    text-decoration: underline;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE10-specific styles */
    #aw_popup_wraper {
        background: transparent;
        background: rgba(0,0,0,0.7);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c000000,endColorstr=#4c000000);
        zoom: 1;
    }
}

@media only screen and (max-height: 800px) {
    #aw_popup_content {
        overflow-y: scroll;
    }
}

@media only screen and (max-width: 769px) {
    #aw_popup_window {
        width: 50%;
        height: 50%;
        max-width: 50%;
        max-height: 65%;
    }
}

@media only screen and (max-width: 767px) {
    #aw_popup_window {
        width: 95%;
        height: 85%;
        max-width: 95%;
        max-height: 75%;
    }
    #aw_popup_content {
        overflow-y: scroll;
    }
}

