.modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all .5s ease;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    background-color: #00000000;
    z-index: 99;
    display: flex;
    padding: 3.75rem 1.5rem;
    overflow: hidden;
    pointer-events: none;
}
.modal-overlay.is-open {
    overflow-y: auto;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    background-color: #00000048;
    pointer-events: all;
}
.modal-content {
    margin: 0;
    max-width: 36rem;
    width: 100%;
    background-color: var(--light-blue-main);
    background-image: url('/wp-content/themes/dv-consulting/assets/images/popup_bg.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1.5rem 1.5rem 2.875rem;
    margin: auto;
    border-radius: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--white);

    transition: all .3s ease;
    transform: translateY(-100%);
    opacity: 0;
}
.modal-overlay.is-open .modal-content {
    transform: translateY(0);
    opacity: 1;
}
.modal-close {
    margin-left: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 2.5rem;
    flex-shrink: 0;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    background: linear-gradient(125deg, #d1d1d100, #ffffff2f);
    box-shadow: inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.705), inset 0 -0.0625rem 0.125rem rgba(117, 117, 117, 0.103);
}
.modal-close::before {
    width: 1.25rem;
    height: 1.25rem;
    background: url('/wp-content/themes/dv-consulting/assets/images/icons/x-01.svg') 50% / contain no-repeat;
    display: block;
    content: '';
}
.modal-form__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.modal-form__title p {
    max-width: 24.5625rem;
    color: #FFFFFFCC;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.modal-form_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.375rem;
}