   
    .mti-modal-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mti-modal-box {
        position: fixed;
        z-index: 99;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all ease .5s;
        overflow: auto;
        pointer-events: none;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.8);
    }

    .mti-modal-box.show {
        opacity: 1;
        pointer-events: auto;
    }

    .mti-modal-box>div {
        background-color: #fefefe;
        position: relative;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: min(800px, 90%);
    }

    .mti-modal-box .mti-modal-close-button {
        color: #aaa;
        position: absolute;
        right: 10px;
        top: 0px;
        font-size: 28px;
        font-weight: bold;
    }

    .mti-modal-box .mti-modal-close-button:hover,
    .mti-modal-box .mti-modal-close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    .mti-modal-open-button {
        cursor: pointer;
    }