 
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: var(--black);
        cursor: pointer;
        visibility: hidden;
        opacity: 0;
        transition: all 0.35s ease-in;
    }

    .modal.is-visible {
        visibility: visible;
        opacity: 1;
        /* margin-top: 18px; */
        background: #29292f;
    }

    .modal-dialog {
        position: relative;
        max-width: 1170px;
        border-radius: 5px;
        background: #ffffff;
        overflow: auto;
        cursor: default;
        float: left;
        border:0px;
    }

    .modal-dialog > * {
        /* padding: 1rem; */
        background: #ffffff;
        border: 0px;
    }

    .modal-header,
    .modal-footer {
        background: var(--lightgray);
    }

    .modal-header {
        display: inline;
        background: none;
        float: left;
        border: 0px;
        margin-bottom: 0px;
    }

    .modal-header .close-modal {
        font-size: 1.5rem;
        float: right;
        color: #060606;
        top: 41px;
        position: absolute;
        border: 0px;
        right: -16px;
        /* font-size: 16px; */
        font-weight: bold;
        z-index: 122;
    }

    .modal p + p {
        margin-top: 1rem;
    }