#block-modal-form {
    display: none;
    position: initial;
}

#block-modal-form::after {
    content: '';
    display: inline-block;
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27), rgba(0, 0, 0, 0.27));
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

#block-modal-form .content {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    width: 1263px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 120px 190px;
    border-radius: 8px;
    box-shadow: 0 4px 23px -8px rgb(0 0 0 / 11%);
    border: 1px solid var(--light-grey);
}

#block-modal-form .content p {
    font-size: 20px;
}

#block-modal-form .content .form-wrapper {
    margin-top: 50px !important;
    width: 680px;
    margin: 0 auto;
}

#block-modal-form .content .form-control {
    margin-bottom: 20px;
}

#block-modal-form .content input.form-control {
    height: 60px;
}

#block-modal-form .content textarea.form-control {
    height: 130px;
}

#block-modal-form .content .checkbox label {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-grey);
    padding-left: 15px;
}

#block-modal-form .content .checkbox label a {
    color: var(--dark-grey);
}

#block-modal-form .content .chip__wrapper {
    margin-top: 55px;
}

#block-modal-form .content .chip__wrapper .chip {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 0 40px;
}

#block-modal-form .content .close {
    font-size: 35px;
    color: var(--dark-blue);
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 40px;
    z-index: 102;
}

@media (max-width: 1440px) {
    #block-modal-form .content {
        width: 957px;
        padding: 78px 116px;
    }

    #block-modal-form .content .form-wrapper {
        width: 515px;
    }

    #block-modal-form .content .form-control {
        margin-bottom: 12px;
    }

    #block-modal-form .content input.form-control {
        height: 46px;
    }

    #block-modal-form .content textarea.form-control {
        height: 105px;
    }

    #block-modal-form .content .close {
        font-size: 25px;
    }
}

@media (max-width: 1280px) {
    #block-modal-form .content {
        width: 845px;
        padding: 78px 100px;
    }
}

@media (max-width: 992px) {
    #block-modal-form .content {
        width: 700px;
        padding: 78px 60px;
    }

    #block-modal-form .content p {
        font-size: 18px;
    }

    #block-modal-form .content .form-control {
        font-size: 14px;
        margin-bottom: 10px;
    }

    #block-modal-form .content input.form-control {
        height: 36px;
    }

    #block-modal-form .content textarea.form-control {
        height: 80px;
    }

    #block-modal-form .content .checkbox label {
        font-size: 14px;
    }

    #block-modal-form .content .close {
        font-size: 20px;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    #block-modal-form .content {
        width: 546px;
        padding: 78px 38px;
    }

    #block-modal-form .content .form-wrapper {
        margin-top: 40px;
        width: 410px;
    }

    #block-modal-form .content p {
        font-size: 14px;
    }

    #block-modal-form .content .form-control {
        margin-bottom: 8px;
    }

    #block-modal-form .content input.form-control {
        height: 28px;
    }

    #block-modal-form .content textarea.form-control {
        height: 63px;
    }
}

@media (max-width: 575px) and (min-width: 469px) {
    #block-modal-form .content {
        width: 460px;
    }

    #block-modal-form .content .form-wrapper {
        width: 100%;
    }
}

@media (max-width: 468px) {
    #block-modal-form .content {
        width: 408px;
        padding: 58px 38px;
    }

    #block-modal-form .content .form-wrapper {
        margin-top: 25px;
        width: 100%;
    }

    #block-modal-form .content input.form-control {
        height: 24px;
    }

    #block-modal-form .content textarea.form-control {
        height: 53px;
    }

    #block-modal-form .content .close {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    #block-modal-form .content {
        width: 100%;
    }
}