
#oppopup-overlay {
    background-color: #000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5103;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

#oppopup {
    background-color: #fefefe;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 5104;
    width: 400px;
    height: 400px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease-out, opacity .3s ease, visibility .3s ease;
    -ms-transform: translate(-50%, -75%);
    -webkit-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    left: 50%;
    top: 50%;
        overflow: overlay;

}
#oppopup.showed-oppopup {
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 1;
    visibility: visible;
}

#oppopup .oppopup-content {
    padding: 15px;
}

#oppopup .oppopup-newsletter-form {
    padding: 15px 10px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;

}

#oppopup .oppopup-newsletter-form .newsletter-input {
    width: 60%;
    height: 35px;
    max-width: 250px;
}

#oppopup .oppopup-newsletter-form .button-medium {
    padding-top: 9px;
    padding-bottom: 9px;
}

#oppopup .oppopup-close {
    height: 25px;
    top: -25px;
    right: 0px;
    position: absolute;
    background: #D6D6D6;
    padding-right: 25px;

}

#oppopup .op-close-checkbox, #oppopup .op-close-popup {
    display: inline-block;
}

#oppopup .op-close-checkbox {
    vertical-align: middle;
    padding: 5px;
    font-size: 10px;
}

#oppopup .op-close-checkbox > div {
    display: inline-block;
    vertical-align: middle;
}

#oppopup .op-close-popup {
    background: #000;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 2;
    text-align: center;
    line-height: 25px;
    position: absolute;
    top: 0px;
    right: 0px;
}

#oppopup .cross {
    display: block;
}

#oppopup .cross:before {
    content: "\f00d";
    display: block;
    font-family: "FontAwesome";
    font-size: 18px;
    color: #fff;
}

#oppopup-overlay.showed-oppopupo {
    opacity: 0.4;
    visibility: visible;

}

@media screen and (max-width: 767px) {

    #oppopup .oppopup-newsletter-form .newsletter-input {
        width: 80%;
        max-width: 220px;
        text-align: center;
    }
}

