/*************
     Modal
*************/

.modal {
    display: none;

    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 100vh;
    overflow-y: auto;
    font-family: var(--font-family);
    /* padding: 24px;*/
    background: rgba(0, 0, 0, 0.5);
}

.modal .close {
    position: absolute;
    top: 54px;
    right: 54px;
    z-index: 999;
    cursor: pointer;
}
.modal .close{
    height: 27px;
}
