#js-success-auth-popup {
    display: none;
}
.pop-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 100;
}
.popup-window {
    margin-top: 300px;
    display: none;
    position: absolute;
    background: #fff;
    width: 90%;
    max-width: 520px;
    left: 50%;
    margin-left: -260px;
    padding: 0px;
    /*border-radius: 5px;*/
    font-size: 1em;
    line-height: 1.2em;
    text-align: center;
    box-sizing: border-box;
}
.popup-window .left-menu__link {
    margin: 0;
}
.popup-window .inner {
    max-height: 360px;
    overflow-y: auto;
    background: #ffffff;
    padding: 10px;
    margin-bottom: 10px;
    text-align: left;
}
.popup-window .btn-close {
    display: inline-block;
    border: 1px solid #848484;
    /*border-radius: 3px;*/
    padding: 0 15px;
    color: #0d5baa;
    line-height: 1.8em;
    text-decoration: none;
}
.popup-window .btn-close:hover,
.popup-window .btn-close:active,
.popup-window .btn-close:focus {
    text-decoration: none;
    background: #f4f4f4;
}
@media screen and (max-width: 600px) {
    .popup-window {
        margin-left: -45%;
    }
}

