.form_popup {
    background-color: #000000;
    width: 25.625em;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 1.125em;
    backdrop-filter: blur(0.625em);
    color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 2.5em);
}
.form_popup .image_container {
    box-sizing: border-box;
    z-index: 1;
    border-radius: inherit;
    position: relative;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-image: url(../../img/thanks-popup/image.jpg);
    padding: 2em;
    min-height: 11em;
    overflow: hidden;
}
.form_popup .image_container:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.46);
}
.form_popup .form {
    box-sizing: border-box;
}
.form_popup .logo {
    display: block;
    max-width: 100%;
    margin: 0;
    max-height: 3.25em;
}
.form_popup .contacts {
    display: none;
}
.form_popup .form {
    padding: 1em 1.5em 1.5em;
}
.form_popup .form:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
}
.form_popup .form.loading:before {
    opacity: 1;
    visibility: visible;
}
.form_popup .title {
    text-transform: uppercase;
    font-family: ReformaGroteskMediumC, sans-serif;
    font-size: 3.25em;
}
.form_popup .description {
    font-weight: 500;
    font-size: 0.875em;
}
.form_popup .description:not(:last-child) {
    margin-bottom: 1.86em;
}
.form_popup .fields:not(:last-child) {
    margin-bottom: 2em;
}
.form_popup .field:not(:last-child) {
    margin-bottom: 1.5em;
}
.form_popup .field_input {
    font-size: 1em;
    font-family: inherit;
    color: #ffffff;
    padding: 0 1em;
    font-weight: 500;
    height: 3.125em;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 1.125em;
    background-color: transparent;
    width: 100%;
    outline: none;
    transition-property: border-color;
    transition-duration: 0.3s;
}
.form_popup .field_input:focus {
    border-color: #FF5F25;
}
.form_popup textarea.field_input {
    height: 10.25em;
    padding: 0.75em 1em;
    resize: none;
}
.form_popup .submit_butt {
    width: 100%;
}
.form_popup .mfp-close {
    color: #ffffff;
}