.body_hidden{
    /*overflow: hidden;*/
}
body .popup, body .popup2, body .popup *{
    box-sizing: border-box;
}
body .popup, body .popup2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000;
    background: rgba(0, 0, 0, .6);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
body .popup_hide, body .popup2_hide{
    display: none;
}
.popup__body, .popup2__body {
    width: 700px;
    height: fit-content;
    background: #ffffff;
    box-shadow: 0 0 38px rgba(0, 0, 0, 0.20);
    display: block;
    transition: -webkit-transform .5s ease;
    transition:         transform .5s ease;
    -webkit-transform: translate(-200px, 0);
    -ms-transform: translate(-200px, 0);
    transform: translate(-200px, 0);
    opacity: 0;
}
.popup__body_visible{
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    margin: 0 10px;
}
.popup-content {
    padding: 0;
}
.popup-content h3 {
    margin-top: 0;
}
.popup-content .exit {
    background: url('/themes/classic/img/voice/exit.svg') no-repeat 0 0;
    position: absolute;
    top: 30px;
    right: 30px;
    border-bottom: 0;
    z-index: 10000001;
}
.pre-block, .order-form--agree, .popup-content .order-form--phone p.text-1 {
    color: #fff;
}