.overlay{
    display: none;
    position: fixed;
    width:100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 150;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.1);
}

.popup {
    position: relative;
    width: 90%;
    max-width: 480px;
    padding: 40px 0;
    height: auto;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 14px 3px rgba(128,148,171,0.4);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
}
.popup-in {
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    overflow-x: hidden;
}
.popup .close {
    top: -6px;
    right: 11px;
    position: absolute;
    font-size: 50px;
    transform:rotate(45deg);
    font-weight: 100;
    cursor: pointer;
}
.popup h3 {
    margin: 0 15px 10px;
    font-size: 26px !important;
    line-height: 32px !important;
}
.popup p{
    margin: 0 0 20px;
}
.popup label{
    margin: 20px 0 10px;
    font-weight: 600;
}
.popup small {
    margin: 0 15px 30px;
    font-size: 18px;
    line-height: 18px;
}
.popup input, .popup select {
    max-width: 370px;
    width: calc( 100% - 40px);
}
.popup input[type='submit']{
    max-width: 410px;
    background-color: #0030B5;
    color:#fff;
    cursor: pointer;
} 
.popup button{
    width: 270px;
    outline: none;
    cursor: pointer;
    line-height: 49px;
    display: inline-block;
}
.popup-register {
}
.popup-link{
    text-decoration: underline;
    margin-bottom: 8px;
}
.popup .message{
    min-width: 250px;
    max-width: 320px;
}


.popup-in > *:last-child{
    margin-bottom: 0;
}

.popup-request p{
    max-width: 320px;
}

.subform-mid {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 8px 0 30px;
    max-width: 360px;
    width: calc(100% - 44px);
}

.subform-mid label{
    margin: 0 0 0 6px;
    text-align: left;
}

.popup-twoinputs {
    display: flex;
    gap: 12px;
    max-width: 412px;
    width: calc( 100% - 6px);
    margin: 0 auto;
}

.popup-captcha {
    max-width: 396px;
    width: 100%;
}

.answer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 400px;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}
.answer div{
    line-height: 49px;
    border-radius: 40px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 14px 3px rgba(209,221,229,0.4);
    padding: 0 17px;
    cursor: pointer;
}
.answer div.active{
    background-color: #000C3D;
    color:#fff;
}

.popup.popup-info .select-wrap{
    width:100%;
    max-width: 100%;
}
.popup.popup-info select{
    width:100%;

}
