.modal {
    z-index: 2001 !important;
}

.modal-backdrop {
    z-index: 2000 !important;
}

#documentModal .width-modal {
    max-width: 1106px;
}

.document-modal {
    padding: 40px 80px;
    border-radius: 30px;
}

.document-modal-button {
    margin-top: 32px;
}

.document-modal-subscribe {
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    margin: 0;
}

.modal-document-title {
    font-weight: 700;
    font-size: 36px;
    margin: 0;
}

.modal-document-description {
    font-weight: 400;
    font-size: 16px;
    margin: 10px 0 0;
    color: rgba(0, 0, 0, 1);
}

.modal-document-main {
    margin: 20px 0 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.modal-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-steps-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.modal-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.modal-step {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-step-number {
    background-color: #1EC7BF;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    text-align: center;
    flex-shrink: 0;
    padding: 2px 0 0;
    margin: 0;
}

.modal-step-text {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: rgba(0, 0, 0, 1);
}

.modal-steps-description {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.modal-document-image-wrapper {
    width: 291px;
    height: 216px;
    flex-shrink: 0;
}

.modal-image-note {
    width: 100%;
    height: 100%;
}

@media (max-width:1199px) {
    #documentModal .width-modal {
        max-width: 90%;
    }

}

@media (max-width:991px) {
    .document-modal {
        padding: 40px;
    }
}

@media (max-width:767px) {
    .modal-document-main {
        flex-direction: column-reverse;
    }

    #documentModal {
        margin: 0 auto;
    }

    .document-modal-button {
        width: 100% !important;
        font-weight: 600 !important;
        font-size: 18px !important;
        margin: 10px 0 0 !important;
    }

}


@media (max-width:575px) {
    #documentModal .width-modal {
        max-width: 100%;
    }

    .document-modal {
        padding: 40px 20px;
    }

    .modal-document-title {
        font-size: 22px;
    }

    .modal-document-description {
        font-size: 14px;
    }

    .modal-document-image-wrapper {
        width: 232px;
        height: 174px;
    }

    .modal-step-text {
        font-size: 14px;
    }

    .modal-steps-description {
        font-size: 14px;
    }
}