@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
body {
    font: normal normal 14px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
    color: #000000;
    background: #e0a52d url(/static/background.jpg) no-repeat scroll top center;
    background-size: cover;
    /* padding: 0 0% 0% 0%; */
}

.navMenu {
    display: block;
    background-color: orange;
    padding-top: 0%;
    padding-bottom: 0%;
    padding-left: 1%;
    padding-right: 1%;
    text-transform: capitalize;
    color: #000000;
    overflow: hidden;
}

.navMenu-right {
    float: right;
}

.navMenu a {
    float: left;
    /*width: 150px;*/
    /*margin-left: 2%;*/
    text-decoration: none;
    text-align: center;
    padding: 14px 16px;
}

.navMenu a:hover {
    background-color: #b51200;
    color:darkgray;
}

.navMenu > .active {
    background-color: #8F4A00;
    color: white;
  }

body #page {
    background-color: white;
    min-width: 0;
    max-width: 100%;
    width: auto;
    margin-top: 1%;
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 0.5%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    padding-bottom: 2%;
}

#header {
    font: normal normal 20px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
    color: #b51200;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, .2);
    margin-top: 1%;
    margin-bottom: 1%;
}

#content > div {
    background-color: white;
    width: auto;
    padding-top: 1%;
    padding-left: 2%;
    padding-right: 1%;
    padding-bottom: 1%;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#order-form, input {
    width: 200px;
}

.table-header {
    text-align: left;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 1%;
}

.payment_recieved {
    background-color: lightgreen;
}

#order-details {
    display: block;
    background-color: lightgray;
    margin-left: 1%;
    padding-left: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    width: 95%;
    min-width: 80%;
    max-width: 95%;
    overflow: auto;
    overflow-y: scroll;
    /*min-height: 40vh;
    max-height: 40vh;*/
}

#details-ontbijtmanden {
    /* width:100px;
    height:100px; */
    outline:none;
    cursor:pointer;
}

#hidden-ontbijtmanden {
    display:none;
}

#details-ontbijtmanden:focus + #hidden-ontbijtmanden {
    display:block;
}

#details-additionals {
    /* width:100px;
    height:100px; */
    outline:none;
    cursor:pointer;
}

#hidden-additionals {
    display:none;
}

#details-additionals:focus + #hidden-additionals {
    display:block;
}

#total_price {
    text-align: left;
    font-size: 1.5em;
    font-weight: bold;
}

#total_price td {
    padding-top: 5%;
}

#inhoud-manden .inbegrepen {
    background-color: green;
    text-align: center; 
}

#inhoud-manden .nietinbegrepen {
    background-color: red;
    text-align: center; 
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
    #content{
        background-image: linear-gradient(90deg, rgba(200,0,0,.5) 50%, transparent 50%),
        linear-gradient(rgba(200,0,0,.5) 50%, transparent 50%);
        background-size: 50px 50px;
        padding-top: 2%;
        padding-left: 2%;
        padding-right: 2%;
        padding-bottom: 2%;
    }

    #header {
        font: normal normal 60px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
    }

    #order-form {
        margin-right: 2%;
        padding-right: 2%;
        width: 30%;
        min-width: max-content;
        /* text-align: center; */
    }

    /* HIDE RADIO */
    #order [type=radio] { 
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }*/

    /* IMAGE STYLES */
    #order [type=radio] + div {
        cursor: pointer;
        display: flex;
        align-items: center;
    }
  
    /* CHECKED STYLES */
    #order [type=radio]:checked + div {
        outline: 2px solid #f00;
    }

    #order-form, input {
        width: 275px;
    }

    #order-table {
        /*width: 100%;*/
        max-height: 50vh;
    }
}