/* verberg */
.verberg {
    display: none;
}

#popupmenu {
    display: auto;
}

.sluitknop {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    border: 1px solid black;
}

/* algemeen zet element in midden */
.centered {
    position: fixed;
    top: calc(50% - 25px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

/* schaduw */
.schaduw {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.34);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.34);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.34);
}


.wrapper-menu-popup {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
}

.menu-popup {
    height: 500px;
    width: 750px;
    background-color: white;
    display: none;
}

.menu-popup-links {
    height: 500px;
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-popup-links a {
    display: block;
    font-size: 1.3em;
    line-height: 1.5em;
    text-decoration: none;
    color: #444;
    transition: color 0.5s, font-size 0.5s;
}

.menu-popup-links a:hover {
    font-size: 1.7em;
    color: red;
}

.menu-popup-rechts {
    width: 50%;
    background-color: #ddd;
}

.menu-popup-rechts img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 500px) {

    .menu-popup {
        height: 100vh;
        width: 750px;
        background-color: white;
        display: none;
    }

    .menu-popup-links {
        height: 100vh;
        width: 100%;
        /* padding: 20px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menu-popup-links a {
        display: block;
        font-size: 1.7em;
        line-height: 1.6em;
        text-decoration: none;
        color: #444;
        transition: color 0.5s, font-size 0.5s;
    }

    .menu-popup-rechts {
        width: 50%;
        background-color: #ddd;
        display: none;
    }
}
