.form_popup {
    background-color: #000000;
    width: 36.5em;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 1.5em;
    backdrop-filter: blur(0.625em);
    color: #ffffff;
    display: flex;
    overflow: hidden;
}
.form_popup .image_container {
    width: 35%;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    background-size: cover;
    display: flex;
    flex-direction: column;
    background-position: center;
    background-image: url(../../img/thanks-popup/image.jpg);
    padding: 3.75em 1.5em 2.25em;
}
.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 {
    width: 65%;
    box-sizing: border-box;
}
.form_popup .logo {
    display: block;
    max-width: 100%;
    margin: 0;
}
.form_popup .logo:not(:last-child) {
    margin-bottom: 2em;
}
.form_popup .contacts {
    margin-top: auto;
}
.form_popup .socials {
    margin: -0.5em;
    display: flex;
    flex-wrap: wrap;
}
.form_popup .socials:not(:last-child) {
    margin-bottom: 0.5em;
}
.form_popup .social {
    margin: 0.5em;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    display: block;
}
.form_popup .social_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    transform: translate(-50%, -50%);
}
.form_popup .phone {
    font-weight: 600;
}
.form_popup .phone a {
    text-decoration: none;
}
.form_popup .phone a:hover {
    text-decoration: underline;
}
.form_popup .form {
    padding: 3.25em 1.5em 2.25em 2.5em;
    position: relative;
    z-index: 1;
}
.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%;
    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;
}