body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0px;
    background-image: url("steenoven.png");
    background-size: cover;
    z-index: -1000px;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.item_soorten {
    background-color:  rgb(255, 255, 255);
    width: 100%;
    height: 7%;
    top: 0%;
    text-align: center;
    z-index: 1000;
    position: fixed;
}

.item_soorten ul {
    list-style: none;
    padding: 0;
    margin: -10px;
}

.item_soorten li {
    display: inline-block;
}

.item_soorten a {
    text-decoration: none;
    color: black;
    width: 100px;
    display: block;
    padding: 25px 20px;
}

.pijl_links {
    width: 35px;
    height: 35px;
    top: 8px;
    left: 530px;
    background-color: #030303; /* Blauwe cirkel */
    border-radius: 50%; /* Maakt het element rond */
    position: fixed; /* Nodig voor het positioneren van de pijl */
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow_links {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg); /* Pijl naar links */
}

.pijl_rechts {
    width: 35px;
    height: 35px;
    top: 8px;
    right: 400px;
    background-color: #030303; /* Blauwe cirkel */
    border-radius: 50%; /* Maakt het element rond */
    position: fixed; /* Nodig voor het positioneren van de pijl */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pizzaria_logo {
    position: absolute;
    left: 10px;
    height: 50px;
    top: 1px;
    
}

.Achtergrond_pizzavergroting {
    position: absolute;
    left: 10px;
    height: 50px;
    top: 1px;
}

.arrow_rechts {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg); /* Pijl naar rechts */
}

.bestel_vak {
    position: absolute;
    border: 4px solid green;
    background-color: rgb(255, 255, 255);
    right: 30px;
    top: 120px;
    width: 450px;
    height: 500px;
}

.bestelling_vak {
    position: absolute;
    border: 2px solid rgb(221, 227, 227);
    background-color: rgb(255, 255, 255);
    width: 447px;
    height: 100px;
}

.totaal_vak {
    position: absolute;
    border: 2px solid rgb(221, 227, 227);
    background-color: rgb(255, 255, 255);
    width: 447px;
    height: 100px;
    bottom: 0px;
}

.totaal_bedrag {
    position: absolute;
    top: 20px;
    left: 20px;
}

.totaal_woord {
    color: rgb(164, 170, 170);
    position: absolute;
   left: 20px;
   top: 0px;
}

.bestellen_knop {
    position: absolute;
    background-color: rgb(28, 94, 53);
    right: 20px;
    bottom: 10px;
    width: 150px;
    height: 50px;
    border-radius: 50px; 
    transition-duration: 200ms;
    transition-timing-function: linear;
    transition-property: all; 
}

.bestellen_knop:hover{
    padding: 2px;
    background-color: rgb(37, 122, 70);
}

.bestellen_knop_tekst {
    color: white;
    position: absolute;
   left: 30px;
   top: 13px; 
}

.bestelling {
    position: absolute;
    left: 40px;
}

.bezorgkosten {
    position: absolute;
    left: 40px;
    top: 40px;
    color: #949495;
}

.pizza_categorie {
    position: absolute;
    top: 320px;
    left: 25px;
    width: 790px;
    height: 600px;
    background-color: rgb(238, 232, 232, 0.7);
    color: green;
}

h3:nth-child(1) {
    padding-left: 20px;
}

.actiecode_korting {
    position: absolute;
    left: 40px;
    top: 22px;
}

.button-container {
    display: inline-block;
}

button {
    position: absolute;
    left: 300px;
    top: 65px;
    background-color: white; /* Witte achtergrond */
    border: 2px solid green; /* Groene rand */
    border-radius: 30px; /* Ovale hoeken */
    padding: 10px 20px; /* Binnenruimte voor de tekst */
    font-size: 16px; /* Tekstgrootte */
    color: green; /* Groene tekst */
    font-weight: bold; /* Dikke tekst */
    text-transform: uppercase; /* Hoofdletters */
    cursor: pointer; /* Wijzig cursor naar pointer bij hover */
    display: flex; /* Flexbox om de pijl en tekst op één lijn te krijgen */
    align-items: center; /* Centreer verticaal */
    justify-content: center; /* Centreer horizontaal */
    transition: background-color 0.3s ease, color 0.3s ease; /* Animatie bij hover */
}

button .arrow {
    margin-left: 10px; /* Ruimte tussen tekst en pijl */
}

button:hover {
    background-color: green; /* Groene achtergrond bij hover */
    color: white; /* Witte tekst bij hover */
}


.input-actiekorting {
    position: absolute;
    display: inline-block;
    top: 70px;
    left: 40px;
    background-color: #f5f7fa; /* Lichtgrijze achtergrondkleur */
    border-radius: 8px; /* Ronde hoeken */
    padding: 10px 20px; /* Ruimte binnen de container */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schaduw om het invoerveld */
}

input[type="text"] {
    border: none; /* Geen rand rond de invoer */
    background-color: transparent; /* Transparante achtergrond */
    font-size: 16px; /* Tekstgrootte */
    width: 100%; /* Invoer vult de container */
    outline: none; /* Geen rand bij selectie */
    color: #6c757d; /* Tekstkleur */
}

input[type="text"]::placeholder {
    color: #adb5bd; /* Kleur van de placeholder tekst */
}


.filter_tekst {
    position: absolute;
    color: green;
    top: 220px;
    left: 30px;
}

.toggle-container {
    position: absolute;
    top: 240px;
    left: 150px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 20px;
    width: fit-content;
    cursor: pointer;
}

input[type="checkbox"] {
    display: none; /* Verberg de checkbox */
}

.toggle-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff; /* Leeg vakje */
    border: 2px solid #555; /* Rand van het vakje */
    border-radius: 4px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.icon {
    margin-left: auto; /* Plaats het icoon aan de rechterkant */
    font-size: 18px;
    color: #555;
}

input[type="checkbox"]:checked + .toggle-label .checkmark {
    background-color: #28a745; /* Groene achtergrond als de checkbox is aangevinkt */
    color: white; /* Kleur van het vinkje */
}

input[type="checkbox"]:checked + .toggle-label .checkmark::before {
    content: '\2713'; /* Vinkje */
    color: white; /* Vinkje kleur */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

input[type="checkbox"]:not(:checked) + .toggle-label .checkmark::before {
    content: ''; /* Verwijder het vinkje als het niet is aangevinkt */
}

.input-zoekbalk {
    position: absolute;
    display: inline-block;
    top: 240px;
    left: 350px;
    background-color: #f5f7fa; /* Lichtgrijze achtergrondkleur */
    border-radius: 8px; /* Ronde hoeken */
    padding: 10px 20px; /* Ruimte binnen de container */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schaduw om het invoerveld */
}

.actiecode_tekst {
    position: absolute;
    left: 90px;
}

.item_vlak_actiecode {
    position: absolute;
    border: 4px solid green;
    background-color: rgb(255, 255, 255);
    left: 30px;
    top: 60px;
    width: 600px;
    height: 150px;
}

.item_vlak_pizza-mozarella {
    position: absolute;
    border: 4px solid green;
    background-color: rgb(255, 255, 255);
    left: 30px;
    bottom: 0px;
    width: 600px;
    height: 150px;
}

.item_vlak_pizza-kapsalon {
    position: absolute;
    border: 4px solid green;
    background-color: rgb(255, 255, 255);
    left: 30px;
    bottom: 180px;
    width: 600px;
    height: 150px;
}

.item_vlak_pizza-kipdonor-speciaal {
    position: absolute;
    border: 4px solid rgb(221, 227, 227);
    background-color: rgb(255, 255, 255);
    left: 30px;
    bottom: -400px;
    width: 600px;
    height: 150px;
}

.prijs {
    position: absolute;
    background-color: rgb(28, 94, 53);
    right: 20px;
    bottom: 10px;
    width: 100px;
    color:white;
    text-align:center;
    line-height:40px;
    border-radius: 50px;
    transition-duration: 200ms;
    transition-timing-function: linear;
    transition-property: all; 
}

.prijs:hover{
    padding: 2px;
    background-color: rgb(37, 122, 70);
}

.getal_1 {
    color: white;
    position: absolute;
   left: 20px;
   top: -5px; 
}

.soort {
    position: absolute;
    color: rgb(28, 94, 53);
    left: 20px;
    top: -10px;
}

.inhoud {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.pizza_vak {
    position: absolute;
    border: 4px solid green;
    background-color: rgb(255, 255, 255);
    width: 150px;
    height: 149.5px;
    right: -150px;
    bottom: -4px;
}

.pizza_vak_inzoem {
    position: absolute;
    border: 2px solid green;
    background-color: rgb(83, 82, 82);
    width: 700px;
    height: 500px;
    right: 450px;
    bottom: 120px;
}

.pizza_vak_inzoem img {
    position: absolute;
    width: 500px;
    height: 100%;
    right: 0px;
}

.arrow-container {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    height: 400px; /* Aanpasbaar voor de lengte van de pijl */
    left: 150px;
    top: 50px;
}

/* Bovenste pijl */
.arrow-up, .arrow-down {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.arrow-up {
    border-bottom: 20px solid rgb(255, 255, 255); /* De kleur en grootte van de pijl aanpassen */
}

/* Verticale lijn */
.line {
    width: 4px; /* Breedte van de lijn */
    height: 400px; /* Lengte van de lijn */
    background-color: rgb(255, 255, 255);
}

/* Onderste pijl */
.arrow-down {
    border-top: 20px solid rgb(255, 255, 255);
}

.pizza_grote {
    position: absolute;
    left: 70px;
    top: 200px;
    color: white;
}

.pizza_vak img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salade {
    position: absolute;
    width: 500px;
    left: 50%;
    top: 50%;
}