﻿:root {
    --LFGroen: #BED000;
    --TekstKleur: #0f0f4e
}

/* Achtergrond */
.modal {
    display: none; /* TODO: None, verborgen initieel */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    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.4); /* Black w/ opacity */
}

.modal-header {
    padding: 2px 10px;
    background-color: var(--LFGroen);
    color: white;
    height:40px;
}

.header-container{
    width:100%;
    margin:0;
    padding:0;
    padding-top:5px;
    top:0;
    left:0;
}

#annuleren {
    cursor: pointer;
}


@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    text-align:right;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: red;
        text-decoration: none;
        cursor: pointer;
    }

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    border-radius: 5px;
    width: 90%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

.modal-box {
    padding: 20px;
}

#modal-body-image {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 50px;
}

.modal-body > h1 {
    text-align: center;
    padding-bottom: 25px;
    font-size: 24px;
}

.modal-body > h2 {
    text-align: center;
    padding-bottom: 25px;
    font-size: 20px;
}

.modal-body {
    padding: 2px 16px 25px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

@media(min-width: 750px) {

    .modal-content {
        width: 75%;
    }

    #modal-body-image {
        padding-top: 75px;
        padding-bottom: 75px;
        font-size: 75px;
    }

    .modal-body > h1 {
        font-size: 30px;
    }
    .modal-body > h2 {
        font-size: 26px;
    }
}

@media (min-width: 1000px) {
    .modal-content {
        width: 50%;
    }

    .large{
        width: 90%;
    }
}

@media(min-height: 750px) {
    .modal {
        padding-top: 200px;
    }
}
