.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fff;
    padding: 4px 8px calc( 4px + 2vw );
    /* border-radius: 5px; */
    width: 80vw;
    height: 47vw;

}

.close {
    color: #aaa;
    float: right;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 768px){
    .modal-content {
        padding: 1px 2vw calc(2px + 7vw);
        width: 86vw;
        height: 53vw;
    }

    .close {
        font-size: 14px;

    }


    }


.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* .open-modal-button {
    margin: 20px;
    padding: 10px 20px;
    font-size: 12px;
    cursor: pointer;
} */