.modal-dialog {
    height: 50vh;
    color: black;
}

.modal-content {
    border-radius: 0;
    padding: 40px;
    height: 80vh;

    .container {
        height: 80vh;
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}

.modal-content.container::-webkit-scrollbar{
    display: none;
}

.modal-header {
    padding: 0 0 30px 0;
    align-items: center;
    border-bottom-color: #E8E8E8;

    .btn-close {
        display: inline-block;
        background: none;
        border: none;
        margin-right: 3px;
        color: #fff;
        width: 24px;
        height: 24px;
        outline: none;
        box-shadow: none;
    }

    .btn-close img {
        display: block;
        width: 24px;
    }

    .modal-title {
        font-weight: 800;
        font-size: 2rem;
    }
}

.modal-body {
    padding: 30px 0 0 0;
    font-size: 1.6rem;

    h6 {
        font-size: 1.6rem;
        font-weight: 600;
    }
}

@media (max-width: 1220px) {
    .modal-title {
        font-size: 20px !important;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-body {
        font-size: 16px;
        h6 {
            font-size: 16px;
        }
    }
}
