:root {
    --green: green;
    --darkgreen: darkgreen;
    --gold: #ede5d5;
    --red: #dd1616;
    --orange: #f09c00;
    --yellow: #e0ca00;

    --black: #000;
    --white1: #ffffff;
    --white2: #fafaf7;

    --transparent: transparent;
}

* {
    margin: 0;
    padding: 0;
}

@font-face {font-family: "VernerW00-Regular"; src: url("./fonts/Verner\ W00\ Regular.otf") format("woff"); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

p, a {
    font-family: 'Poppins', sans-serif;
}





/* Que Page */

.que-page {
    background-color: var(--white2);
}


/** Hero **/

.que-page .hero {
    position: relative;
    width: 100%;
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.que-page .custom-shape-divider-bottom-1662291872 {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: -2px;
}

.que-page .custom-shape-divider-bottom-1662291872 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 153px;
}

.que-page .custom-shape-divider-bottom-1662291872 .shape-fill {
    fill: var(--white2);
}

.que-page .hero .text h1 {
    font-size: 70px;
    font-family: 'VernerW00-Regular', serif !important;
    font-weight: 700;
    color: var(--red);
}



/** Wachttijden **/

.que-page .content {
    width: 80%;
    min-height: 50vh;
    padding-bottom: 3vh;
    margin: 0 auto;
}

.que-page .content h2 {
    font-family: 'VernerW00-Regular', serif !important;
    font-weight: 700;
    color: var(--red);
}

.que-page .content .wachttijden .block {
    margin: 10px 0;
    padding: 20px;
    border-radius: 10px;
    width: 20%;
    min-width: 300px;
    background-color: var(--white1);
    color: black;
    border: var(--gold) 1px solid;
    transition: all .3s;
}

.que-page .content .wachttijden .block:hover {
    transform: scale(1.005);
    transition: all .3s;
}

.que-page .content .wachttijden .block:hover:has(.que-green) { border: var(--green) 1px solid; }
.que-page .content .wachttijden .block:hover:has(.que-yellow) { border: var(--yellow) 1px solid; }
.que-page .content .wachttijden .block:hover:has(.que-orange) { border: var(--orange) 1px solid; }
.que-page .content .wachttijden .block:hover:has(.que-red) { border: var(--red) 1px solid; }

.que-page .content .wachttijden .block > div {
    display: flex;
    justify-content: start;
}

.que-page .content .wachttijden .block div > p {
    margin-right: 4px;
    transition: all .3s;
}

.que-page .content .wachttijden .block .que-green { color: var(--green); }
.que-page .content .wachttijden .block .que-yellow { color: var(--yellow); }
.que-page .content .wachttijden .block .que-orange { color: var(--orange); }
.que-page .content .wachttijden .block .que-red { color: var(--red); }









.accordion {
    background-color: var(--white1);
    color: var(--black);
    cursor: pointer;
    padding: 20px;
    margin-top: 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border: var(--gold) 1px solid;
    border-radius: 10px;
  }
  
  .active, .accordion:hover {
    border: var(--green) 1px solid;
  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    border: 1px solid;
    border-color: var(--transparent);
    padding: 0 20px;
    width: calc(100% - 42px);
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 10px;
  }