/************ ВСПЛЫВАЮЩЕЕ ОКНО ОШИБКИ **************/
.popup_window_rind {
    /*position: absolute;*/
    position: fixed;
    display: table;
    width: 100%;
    height: 100%;
    z-index:1100;
    top: 0;
}

.popup_window {
    position: relative;
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align:center;
    margin-top: 20px;
}

.popup_window_body {
    padding: 20px;
/*                background-color: rgba(255, 255, 255, 0.87);*/
    z-index: 110;
    position: relative;
}
.popup_window_body > div {
    max-height: 90vh;
    max-height: calc( 97vh - 40px );
    overflow: auto;
}

.popup_window_bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    background: rgba(0,0,0,.8);
    z-index: 100;
    display: none;
    top: 0;
    left: 0;
    display: block;
    cursor: pointer;
}

.popup_window_body .popup_window_close {
    font-size: 30px;
    line-height: .5;
    position: absolute;
    top: 15px;
    right: 0;
    color: #fff!important;
    text-shadow: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.popup_window_body h3 {
    margin-top: 5px;
}
/********************************************/