.reutbas-popup {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;;
}
.reutbas-popup.show{
    visibility: visible;
    opacity: 1;
    z-index: 2;
}
.reutbas-popup_close{
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    border: none;
    transition: .3s linear;
}
.reutbas-popup_close:hover{
    opacity: .2;
}
.reutbas-popup .overlay {
    background-color: rgba(64, 125, 135, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
}
.reutbas-popup .contacts-form {
    max-width: 560px;
    position: relative;
    padding: 40px 45px;
    background-color: #fff;
    box-sizing: border-box;
}
.reutbas-popup .contacts-form h2{
    font-size: 36px;
    font-weight: 500;
    color: #407d87;
    margin-bottom: 25px;
    text-align: center;
}
.reutbas-popup .contacts-form input[type="submit"]{
    width: 100%;
    border-radius: 15px;
    height: 54px;
}

.reutbas-popup .contacts-form .privacy-policy{
    max-width: 100%;
    text-align: center;
}

.reutbas-popup .contacts-form .privacy-policy div{
    display: inline;
}