/* Modal */
.modal {
    display: none;
    /* Hidden by default */
}

.modal-achtergrond {
    z-index: 1;
    /* Sit on top */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.45);
    /* Black w/ opacity */

}

.modal-content {
    font-size: 15px;
    color: black;
    background-color: #ffffff;
    position: fixed;
    top: 50svh;
    left: 20vw;
    right: 20vw;
    max-width: 60vw;
    width: 60vw;
    margin: 0 calc( -50vw + 50%);
    min-width: 250px;
    padding: 20px;
    border: 0.5px solid #888;
    border-radius: 6px;
    text-align: center;
    z-index: 1;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: gray;
    text-decoration: none;
    cursor: pointer;
}