
/* BOOTSTRAP MODEL */
.modal {
    z-index: 10001;
    
}

.modal-header {
    background: #ebebec;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.modal-close {
    float: right;
    margin-top: -25px;
    cursor: pointer;
}

.modal-body {
    overflow: scroll;
    height: auto;
    max-height: calc(100vh - 305px);
}

.modal-title {
    color: #f47929;
    font-weight: bold;
}

.modal-footer {
    text-align: center;
}

    .modal-footer img {
        cursor: pointer;
    }

.modal-backdrop {
    z-index: 10000;
}

.modal-content {
    border-radius: 28px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

@media (min-width: 1200px) {
    .modal-body {
        overflow: auto;
        height: auto;
        max-height: calc(100vh - 250px);
    }

    .modal-footer {
        min-height: 50px;
    }

        .modal-footer button {
            display: none;
        }
}

@media (max-width: 768px) {
    .modal {
        top: 10px;
        height: calc(100vh);
    }

    .modal-title {
        font-size: 14px;
    }

    .modal-body {
        height: auto;
        max-height: calc(100vh - 200px);
    }
}
