/** General CSS **/

:root {
    --transparent: transparent;

    --white: #FFF;
    --white-trans1: #ffffff2f;
    --white-trans2: #ffffff64;

    --gray-light: #505050;
    --gray: #383838;
    --gray-dark: #242424;

    --black: #000;

    --beige-light: #b0948d;
    --beige-light-trans: #b0948dd8;
    --beige: #C2B8B2;
    --beige-trans: #C2B8B2d8;
    --beige-dark: #8A716A;
    --beige-dark-trans: #8A716Ad8;


    --blue-light: #197BBD;
    --blue: #125E8A;
    --blue-dark: #204B57;

    --red-light: #c72115;
    --red-light-trans: #c72115d8;
    --red: #b31a0f;
    --red-trans: #b31a0fd8;
    --red-dark: #92140C;
    --red-dark-trans: #92140Cd8;

    --green: #00ff00;
    --green-dark: #00a700;

    --purple-light: #521e4f;
    --purple: #351433;
    --purple-dark: #170132;




    /** Making things ready for a redesign

    --primary: #212121;


    --secondary: #125E8A;


    --accent: #9EBC9F;

    **/



}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');





h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFF;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

p,
a {
    color: #FFF;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

a {
    color: #FFF;
    text-decoration: none;
}


body {
    background-color: var(--beige-dark);
}





/** Scrollbar **/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-dark);
    transition: all .3s;
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 5px;
    transition: all .3s;
    overflow: hidden;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-light);
    transition: all .3s;
}

::-webkit-scrollbar-corner {
    background: var(--gray-dark);
    transition: all .3s;
    border-bottom-right-radius: 10px;
}




/** Navbar **/

nav #navbar-desktop {
    height: 80px;
    background-color: var(--blue);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar-desktop-items {
    display: flex;
    justify-content: flex-end;
}

#navbar-desktop a {
    display: block;
    height: 100%;
    min-width: 150px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: var(--white);
}

#navbar-desktop .navbar-desktop-items a:hover {
    transition: all 0.2s ease-in-out;
}

#navbar-desktop .navbar-desktop-items h3 {
    padding: calc(40px - 26.4px/2 - 5px);
    margin: 10px;
    background-color: var(--blue-dark);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

#navbar-desktop .navbar-desktop-items a:hover h3 {
    background-color: var(--blue-light);
    padding: calc(40px - 26.4px/2 - 5px);
    margin: 10px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.navbar-desktop-sitename {
    float: left;
    display: flex;
    flex-direction: row;
    padding-left: 30px;
}

.navbar-desktop-sitelogo {
    float: left;
    display: flex;
    flex-direction: row;
    padding-left: 30px;
}

.navbar-desktop-sitename h2 {
    padding: calc(40px - 28.8px/2 - 5px) 0;
    margin: 10px 0;
}

.navbar-desktop-sitelogo img {
    padding: 0;
    height: 80px;
}



.dropbtn {
    cursor: pointer;
}

.dropbtn h3 {
    pointer-events: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #212121d8;
    min-width: 160px;
    overflow: auto;
    border-radius: 10px;
    margin-top: 2px;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background-color: #ff0000b2;
    color: var(--black) !important;
    transition: all 0.3s;
}

.show {
    display: block;
}







/* Screen size logic */

#navbar-mobile {
    display: none;
}

@media only screen and (max-width: 1184px) {
    #navbar-desktop {
        display: none !important;
    }

    #navbar-mobile {
        display: block !important;
    }
}





/* Mobile Version */

nav #navbar-mobile {
    height: 80px;
    background-color: var(--blue);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar-mobile-items {
    display: flex;
    justify-content: flex-end;
}

#navbar-mobile a {
    display: block;
    height: 100%;
    width: 180px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: var(--black);
}

#navbar-mobile .navbar-mobile-items a:hover {
    transition: all 0.2s ease-in-out;
}

#navbar-mobile .navbar-mobile-items h3 {
    padding: calc(40px - 26.4px/2 - 5px);
    margin: 10px;
    background-color: var(--blue-dark);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

#navbar-mobile .navbar-mobile-items a:hover h3 {
    background-color: var(--blue-light);
    padding: calc(40px - 26.4px/2 - 5px);
    margin: 10px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.navbar-mobile-sitename {
    float: left;
    display: flex;
    flex-direction: row;
    padding-left: 30px;
}

.navbar-mobile-sitelogo {
    float: left;
    display: flex;
    flex-direction: row;
    padding-left: 30px;
}

.navbar-mobile-sitename h2 {
    padding: calc(40px - 28.8px/2 - 5px) 0;
    margin: 10px 0;
}

.navbar-mobile-sitelogo img {
    padding: 0;
    height: 80px;
}



.nav-overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #141414;
    overflow-y: hidden;
    transition: 0.5s;
}

.nav-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.nav-overlay .nav-overlay-content a {
    padding: 5px 0;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
    height: auto !important;
    width: 100% !important;
}

.nav-overlay .closebtn {
    padding-right: 10px;
    text-align: right;
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 60px;
    height: 60px !important;
}


.nav-overlay-content .active h3 {
    color: #ff0000b2;
}



/*** Footer ***/

footer {
    background-color: var(--blue-dark);
    color: var(--white-color);
    min-height: 230px;
}

footer .flex-box-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

footer .block-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 50%;
    min-height: 200px;
    text-align: center;
}

footer .block-2 {
    padding-top: 10px;
    width: 50%;
    min-height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .block-3 {
    text-align: center;
    height: 30px;
}

footer img {
    height: 150px;
}

footer .block-2-1 {
    width: 0%;
    height: 100%;
    text-align: center;
    margin-bottom: 10px;
}

footer .block-2-1 p {
    width: 0%;
    margin-left: 12.5%;
}

footer .block-2-2 {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    text-align: center;
}

footer .block-2-2-1 {
    width: 100% !important;
    text-align: center;
}


footer .block-2-2-1, footer .block-2-2-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    float: left;
}


@media only screen and (max-width: 750px) {
    footer .block-2 {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    footer .block-2-1 {
        width: 75%;
    }

    footer .block-2-1 p {
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 500px) {
    footer .flex-box-1 {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }

    footer .block-1 {
        width: 100%;
    }

    footer .block-2 {
        width: 100%;
    }
}



/** Background **/

.image-background {
    background-image: url(./images/space.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: fixed;
    pointer-events: none;
    top: 0;
    z-index: -1;
    height: 100vh;
    width: 100%;
    opacity: 75%;
}



/* ---- reset ---- */
body {
    margin: 0;
    font: normal 75% Arial, Helvetica, sans-serif;
}



/** Animations **/

@keyframes load-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.t1 {
    opacity: 0;
    animation: load-animation 1s ease-out 0s 1 normal forwards;
}

.t2 {
    opacity: 0;
    animation: load-animation 1s ease-out 0.2s 1 normal forwards;
}

.t3 {
    opacity: 0;
    animation: load-animation 1s ease-out 0.4s 1 normal forwards;
}

.t4 {
    opacity: 0;
    animation: load-animation 1s ease-out 0.6s 1 normal forwards;
}

.t5 {
    opacity: 0;
    animation: load-animation 1s ease-out 0.8s 1 normal forwards;
}

.t6 {
    opacity: 0;
    animation: load-animation 1s ease-out 1.0s 1 normal forwards;
}

.t7 {
    opacity: 0;
    animation: load-animation 1s ease-out 1.2s 1 normal forwards;
}

.t8 {
    opacity: 0;
    animation: load-animation 1s ease-out 1.4s 1 normal forwards;
}

.t9 {
    opacity: 0;
    animation: load-animation 1s ease-out 1.6s 1 normal forwards;
}

.t10 {
    opacity: 0;
    animation: load-animation 1s ease-out 1.8s 1 normal forwards;
}

.t11 {
    opacity: 0;
    animation: load-animation 1s ease-out 2.0s 1 normal forwards;
}

.t12 {
    opacity: 0;
    animation: load-animation 1s ease-out 2.2s 1 normal forwards;
}

.t13 {
    opacity: 0;
    animation: load-animation 1s ease-out 2.4s 1 normal forwards;
}

.t14 {
    opacity: 0;
    animation: load-animation 1s ease-out 2.6s 1 normal forwards;
}

.t15 {
    opacity: 0;
    animation: load-animation 1s ease-out 2.8s 1 normal forwards;
}

.t16 {
    opacity: 0;
    animation: load-animation 1s ease-out 3.0s 1 normal forwards;
}

.t17 {
    opacity: 0;
    animation: load-animation 1s ease-out 3.2s 1 normal forwards;
}

.t18 {
    opacity: 0;
    animation: load-animation 1s ease-out 3.4s 1 normal forwards;
}

.t19 {
    opacity: 0;
    animation: load-animation 1s ease-out 3.6s 1 normal forwards;
}

.t20 {
    opacity: 0;
    animation: load-animation 1s ease-out 3.8s 1 normal forwards;
}






/** Home **/

/** Home | Hero **/
.home-page .hero {
    position: normal;
    background: url(./files/images/pizzaria.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    height: 100vh;
    width: auto;
    z-index: 50;
}

.home-page .hero .block-1 {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-page .hero .block-2 {
    width: 100%;
    /*height: 3vh;*/
    height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.home-page .hero h1,
.home-page .hero h2 {
    color: var(--blue);
    -webkit-text-stroke: 1px var(--white);
}







/** overons **/

.overons-page {
    margin-top: 80px;
    background-color: var(--beige-dark);
}

/** overons | Hero **/
.overons-page .hero {
    height: 20vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    background-color: var(--beige);
}

.overons-page .hero h1 {
    margin: 0px;
    padding: 0px;
    color: var(--black);
    transition: all .2s ease-in;
    z-index: 50;
    pointer-events: none;
}



/** Content Block | overons **/

.overons-block {
    z-index: 75;
    min-height: 90vh;
    width: 90%;
    margin: 8vh 5% 2vh 5%;
    border-radius: 10px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: left center;
    justify-content: center;
}

.overons-block h2 {
    margin: 20px 0 10px;
    color: var(--black);
}

.overons-block p {
    font-size: medium;
    width: 75%;
    margin: 5px 10px;
    color: var(--black);
}



/** Restaurant | Content Block | Over Ons **/

.overons-page .overons-block #restaurant-block {
    width: 90%;
    height: fit-content;
    margin-left: 10%;
}



/** Map | Content Block | Over Ons **/

.overons-page .overons-block #map-block {
    width: 90%;
    height: fit-content;
    margin-left: 10%;
    margin-bottom: 2%;
}

.overons-page .overons-block #map-div {
    width: 87%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.overons-page #map-div #embed-map-display {
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.overons-page #map-div #embed-map-display iframe {
    height: 100%;
    width: 100%;
    border: 0;
}



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

    .overons-block h2 {
        margin-left: 10px;
    }

    .overons-block p {
        width: 90%;
        margin-left: 10px;
    }

    .overons-block .progression-bars {
        width: 90%;
        margin-left: 5%;
    }

    .overons-block .progression-bars h3 {
        margin-bottom: 0px;
    }
}






/** contact **/

.contact-page {
    margin-top: 80px;
    background-color: var(--beige-dark);
}

/** contact | Hero **/
.contact-page .hero {
    height: 20vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    background-color: var(--beige);
}

.contact-page .hero h1 {
    margin: 0px;
    padding: 0px;
    color: var(--black);
    transition: all .2s ease-in;
    z-index: 50;
    pointer-events: none;
}




/** Content Block | contact **/

.contact-block {
    z-index: 75;
    min-height: 90vh;
    width: 90%;
    margin: 8vh 5% 2vh 5%;
    border-radius: 10px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: left center;
    justify-content: center;
}

.contact-block h2 {
    margin: 20px 0 10px;
    color: var(--black);
}

.contact-block p {
    font-size: medium;
    width: 75%;
    margin: 5px 10px;
    color: var(--black);
}



/** Restaurant | Content Block | Contact **/

.contact-page .contact-block #restaurant-block {
    width: 90%;
    height: fit-content;
    margin-left: 10%;
}

/** Form | Content Block | Contact **/

.contact-page .contact-block #form-block {
    width: 90%;
    height: fit-content;
    margin-left: 10%;
}

.contact-page .contact-block #form-block form {
    width: 90%;
    height: fit-content;
    margin-left: 10px;
}

.contact-page .contact-block #form-block form h3 {
    margin: 10px 0 5px;
    color: var(--black);
}

.contact-page .contact-block #form-block form input {
    width: 40%;
    height: fit-content;
    border-radius: 5px;
    background-color: var(--beige-dark);
}

.contact-page .contact-block #form-block form textarea {
    width: 90%;
    height: fit-content;
    height: 200px;
    border-radius: 10px;
    background-color: var(--beige-dark);
}

.contact-page .contact-block #form-block form button {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--blue-dark);
    color: var(--white);
    transition: all .3s;
    cursor: pointer;
}

.contact-page .contact-block #form-block form button:hover {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--blue-light);
    transition: all .3s;
}





/** Menu **/

.menu-page {
    height: auto;
    background-color: var(--beige-dark);
}

/** Menu | Hero **/
.menu-page .hero {
    height: 40vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    background-color: var(--beige);
}

.menu-page .hero .hero-text {
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.menu-page .hero h1 {
    margin: 0 0 5vh 0;
    padding: 0px;
    color: var(--black);
    transition: all .2s ease-in;
    z-index: 50;
    pointer-events: none;
}

.menu-page .select-cat {
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: all 0.3s;
}

.menu-page .select-cat select {
    min-width: 150px;
    margin-right: 20px;
    padding: 7px;
    border-radius: 10px;
    border: 0;
    background-color: var(--blue);
    color: var(--white);
    transition: all 0.3s;
}

.menu-page .select-cat select:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}

.menu-page .select-cat select:focus-visible {
    border: 1px solid var(--black);
}

.menu-page .select-cat #result {
    padding: 7px;
    background-color: var(--blue);
    border-radius: 10px;
    transition: all 0.3s;
}

.menu-page .select-cat #result:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}



/** Content | Menu **/

.menu-page>h2 {
    margin-left: 30px;
    padding-top: 50px;
}

.menu-page>hr {
    margin: 0 30px;
    height: 2px;
    background-color: var(--white);
}

.menu-page .flexbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    pointer-events: auto;
    padding-bottom: 55px;
    padding-top: 20px;
}

.menu-page .flexbox .block {
    min-width: 300px;
    width: 300px;
    margin: 2%;
    height: 350px;
    background-color: var(--beige);
    color: var(--black);
    transition: all 0.3s;
    border-radius: 10px;
}

.menu-page .flexbox .block:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}

.menu-page .flexbox .block .product-flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 144px;
}

.menu-page .flexbox .block h2 {
    text-align: center;
    margin-top: 20px;
    color: var(--black);
}

.menu-page .flexbox .block p {
    text-align: center;
    margin-top: 10px;
    width: 80%;
    margin-bottom: 15px;
    color: var(--black);
    max-height: 30px;

    /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
}

.menu-page .flexbox .block hr {
    width: 80%;
    height: 0px;
    background: var(--black);
    border-top: 1px solid var(--black);
    border-bottom: 0px;
}

.menu-page .flexbox .block img {
    width: 100%;
    height: 206px;
    border-radius: 10px;
}

.menu-page .flexbox .block .sub_categorie {
    width: 50px;
    height: 50px;
    position: relative;
    top: -65px;
    left: 10px;
}

.menu-page .flexbox .block .dranken-img {
    width: 100%;
    height: 196px;
    border-radius: 10px;
    padding-top: 10px;
    background-color: var(--white);
}

@media only screen and (max-width: 652px) {
    .menu-page .flexbox {
        justify-content: space-around;
    }
}






/** Product **/

.product-page {
    height: auto;
    background-color: var(--beige-dark);
}

/** Product | Hero **/
.product-page .hero {
    height: 40vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    background-color: var(--beige);
}

.product-page .hero .hero-text {
    height: 40vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.product-page .hero h1 {
    margin: 0 0 15vh 0;
    padding: 0px;
    color: var(--black);
    transition: all .2s ease-in;
    z-index: 50;
    pointer-events: none;
}





/** Actions **/

.actions-page {
    margin-top: 80px;
    background-color: var(--beige-dark);
}

/** Actions | Hero **/
.actions-page .hero {
    height: 20vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    background-color: var(--beige);
}

.actions-page .hero h1 {
    margin: 0px;
    padding: 0px;
    color: var(--black);
    transition: all .2s ease-in;
    z-index: 50;
    pointer-events: none;
}





/** Content Block | Actions **/

.actions-block {
    z-index: 75;
    min-height: 90vh;
    width: 90%;
    margin: 8vh 5% 2vh 5%;
    border-radius: 10px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: left center;
    justify-content: center;
}

.actions-block h2 {
    margin: 20px 0 10px;
    color: var(--black);
}

.actions-block p {
    font-size: medium;
    width: 75%;
    margin: 5px 10px;
    color: var(--black);
}



/** Form | Content Block | Actions **/

.actions-page .actions-block #form-order {
    width: 90%;
    height: fit-content;
    margin-left: 10%;
}

.actions-page .actions-block #form-order form {
    width: 90%;
    height: fit-content;
    margin-left: 10px;
}

.actions-page .actions-block #form-order form h3 {
    margin: 10px 0 5px;
    color: var(--black);
}

.actions-page .actions-block #form-order form input {
    width: 40%;
    height: fit-content;
    border-radius: 5px;
    background-color: var(--beige-dark);
}

.actions-page .actions-block #form-order form textarea {
    width: 90%;
    height: fit-content;
    height: 200px;
    border-radius: 10px;
    background-color: var(--beige-dark);
}

.actions-page .actions-block #form-order form button {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--blue-dark);
    color: var(--white);
    transition: all .3s;
    cursor: pointer;
}

.actions-page .actions-block #form-order form button:hover {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--blue-light);
    transition: all .3s;
}



/** Form | Content Block | Actions **/

.actions-page .actions-block #form-reseveren {
    width: 90%;
    height: fit-content;
    margin-left: 10%;
    margin-top: 50px;
}

.actions-page .actions-block #form-reseveren form {
    width: 90%;
    height: fit-content;
    margin-left: 10px;
}

.actions-page .actions-block #form-reseveren form h3 {
    margin: 10px 0 5px;
    color: var(--black);
}

.actions-page .actions-block #form-reseveren form input {
    width: 40%;
    height: fit-content;
    min-height: 10px;
    padding: 2px;
    border-radius: 5px;
    background-color: var(--beige-dark);
}

.actions-page .actions-block #form-reseveren form textarea {
    width: 90%;
    height: fit-content;
    height: 200px;
    border-radius: 10px;
    background-color: var(--beige-dark);
}

.actions-page .actions-block #form-reseveren form button {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--blue-dark);
    color: var(--white);
    transition: all .3s;
    cursor: pointer;
}

.actions-page .actions-block #form-reseveren form button:hover {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--blue-light);
    transition: all .3s;
}






/** Content Block | Products **/

.product-block {
    z-index: 75;
    min-height: 90vh;
    width: 90%;
    margin: 8vh 5% 2vh 5%;
    border-radius: 10px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: auto;
    text-align: center;
}

.product-block img {
    height: 600px;
    margin: 0 0 30px 0;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
}

.product-block h2 {
    margin: 20px 0 10px;
    color: var(--black);
}

.product-block p {
    font-size: medium;
    margin: 5px 10px;
    color: var(--black);

    width: 60%;
    margin-left: 20%;
}

.product-block a {
    border-radius: 10px;
    padding: 10px 10px;
    color: var(--white);
    background-color: var(--blue);
    transition: all .3s;
    margin-left: 20px;
}

.product-block .prijs {
    display: inline-block;
}


.product-block a:hover {
    background-color: var(--blue-light);
    transition: all .3s;
}







/* Account Pages */

/** Pages **/

.login-page,
.register-page,
.dash-page,
.admin-page,
.admin-item {
    height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: var(--beige-dark);
}

.forum .errors {
    max-width: 162px;
}



/*** Account Pages | Hero ***/
.account-page .hero {
    height: 20vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    background-color: var(--beige);
}

.account-page .hero .hero-text {
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.account-page .hero h1 {
    padding: 0px;
    color: var(--black);
    transition: all .2s ease-in;
    z-index: 50;
    pointer-events: none;
}


/*** Account Pages | Forum ***/
.account-page .content {
    min-width: 230px;
    min-height: 380px;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    overflow: auto;
}

.account-page .forum {
    margin: 10vh;
    min-width: 230px;
    min-height: 380px;
    width: 30%;
    background-color: var(--beige);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    overflow: auto;
}

.account-page .forum h3 {
    margin-top: 20px;
    color: var(--black);
}

.account-page .forum input {
    margin: 0 0 15px;
    background-color: var(--transparent);
    border: none;
    border-bottom: 2px var(--black) solid;
    transition: all .3s;
}

.account-page .forum input:hover,
.account-page .forum input:focus,
.account-page .forum input:focus-visible {
    border-bottom: 2px var(--white) solid;
    outline: 0;
    transition: all .3s;
}

.account-page .forum input:-webkit-autofill {
    -webkit-background-clip: text;
}


.account-page .forum button {
    margin: 15px 0;
    background-color: var(--blue);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all .3s;
    border: none;
}

.account-page .forum button:hover {
    background-color: var(--blue-dark);
}

.account-page .forum p {
    margin: 5px 0;
    color: var(--black);
}

.account-page .forum a {
    margin: 0 0 15px 0;
    color: var(--blue);
}

.account-page .forum form > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.account-page .forum form h3,
.account-page .forum form p {
    text-align: center;
}



/*** Dash Page | Content ***/
.account-page .dash-content {
    margin: 2.5vh 5% 0;
    width: 90%;
    height: calc(75vh - 80px);
    background-color: var(--beige);
    color: var(--black);
    border-radius: 20px;
}

.account-page .dash-content .btn-content {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.account-page .dash-content .btn-content cust-user-btns {
    width: fit-content;
    display: flex;
    flex-direction: column;
    margin-left: 50px;
}

.account-page .dash-content cust-user-btns h3 {
    margin-bottom: 10px;
    color: var(--black);
}

.account-page .dash-content cust-user-btns a {
    padding: 10px;
    color: var(--black);
    transition: all .3s;
}

.account-page .dash-content cust-user-btns a:hover {
    color: var(--white);
    transition: all .3s;
}



.account-page .dash-content cust-user-btns .first-btn {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.account-page .dash-content cust-user-btns .last-btn {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.account-page .dash-content cust-user-btns a:nth-child(even) {
    background-color: #A99C95;
}

.account-page .dash-content cust-user-btns a:nth-child(odd) {
    background-color: #B5A9A3;
}



.account-page .dash-content .table-content {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.account-page .dash-content .table-content h3 {
    color: var(--black);
    position: absolute;
}

.account-page .dash-content .table-content .order,
.account-page .dash-content .table-content .reseveringen {
    max-width: 50%;
    width: 50%;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: scroll;
    text-align: left;
}

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

    .account-page .dash-content .table-content {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .account-page .dash-content .table-content .order,
    .account-page .dash-content .table-content .reseveringen {
        max-width: 80%;
        width: 80%;
        margin-top: 20px;
        margin-left: 50px;
        margin-right: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: scroll;
        text-align: left;
    }

}

.account-page .dash-content .table-content table {
    margin-top: 20px;
}

.account-page .dash-content .table-content p {
    color: var(--black);
}

.account-page .dash-content .table-content th {
    text-align: left;
    padding: 5px;
    border-radius: 5px;
}

.account-page .dash-content .table-content td {
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}


.account-page .dash-content .table-content tr:nth-child(even) {
    background-color: #A99C95;
    border: 5px;
}

.account-page .dash-content .table-content tr:nth-child(odd) {
    background-color: #B5A9A3;
    border: 5px;
}











/*** Admin Page | Content ***/
.admin-page .admin-content {
    margin: 2.5vh 5% 0;
    width: 90%;
    height: calc(75vh - 80px);
    background-color: var(--beige);
    color: var(--black);
    border-radius: 20px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.admin-page .admin-content .table-content {
    max-width: 90%;
    height: 95%;
}

.admin-page .admin-content .table-content .table-div > .admin-table {
    width: fit-content;
    max-width: 100%;
    height: 95%;
    overflow: scroll;
}

.admin-page .admin-content .table-div {
    height: 100%;
}

.admin-page .admin-content .table-div > h3 {
    color: var(--black);
    width: 40%;
    display: inline-block;
    margin-top: 10px;
}

.admin-page .admin-content .table-div > #btn-back {
    color: var(--white);
    width: calc(35% - 15px);
    min-width: fit-content;
    display: inline-block;
    text-align: right;
    margin-top: 10px;
    margin-right: 15px;
}

.admin-page .admin-content .table-div > #btn-add {
    color: var(--white);
    width: calc(25% - 15px);
    min-width: fit-content;
    display: inline-block;
    text-align: right;
    margin-top: 10px;
    margin-right: 15px;
}


.admin-page .admin-content .table-content table {
    margin-top: 10px;
    overflow: scroll;
}

.admin-page .admin-content .table-content p {
    color: var(--black);
}

.admin-page .admin-content .table-content tr {
    height: min-content;
    width: fit-content;
}

.admin-page .admin-content .table-content th {
    text-align: left;
    padding: 5px;
    border-radius: 5px;
    width: fit-content;
}

.admin-page .admin-content .table-content td {
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
}


.admin-page .admin-content .table-content tr:nth-child(even) {
    background-color: #A99C95;
    border: 5px;
}

.admin-page .admin-content .table-content tr:nth-child(odd) {
    background-color: #B5A9A3;
    border: 5px;
}





/** Admin Items **/

.admin-item .forum {
    width: fit-content;
}

.admin-item .forum form .flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.admin-item .forum form .flexbox > div {
    margin: 0 10px;
}



/** Admin users **/

.admin-page .admin-content .admin-other .table-div > #btn-back {
    color: var(--white);
    width: calc(60% - 15px);
    min-width: fit-content;
    display: inline-block;
    text-align: right;
    margin-top: 10px;
    margin-right: 15px;
}

.admin-page .admin-content .admin-other .table-div .btn-row {
    min-width: 100px;
}