.modal-container {
    position: fixed;
    z-index: 10000;
}
.modal-overlay {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: unset;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: all;
}
.modal-overlay .mmit-modal {
    background-color: #fff;
    padding: 2rem;
    margin: 1rem;
    min-width: 280px;
    max-width: 600px;
    max-height: 600px;
    opacity: 0;
    transform: scale(0.7);
    position: relative;
    transition: .3s;
    border-radius: 5px;
}
.modal-overlay .mmit-modal .scroll {
    overflow-y: auto;
    /*height: 365px;*/
    padding-right: 1rem;
}
.modal-overlay .mmit-modal .modal-header {
    font-weight: 600;
    font-size: 1.5rem;
    padding: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.modal-overlay .mmit-modal .modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.modal-overlay .mmit-modal.visible {
    opacity: 1;
    transform: scale(1);
}