:root{
  --red: #F33244;
  --yellow: #FBC26B;
  --green: #275035;
  --blue: #0071BC;
  --beige: #F4E8DC;
  --pink: #F4C3BD;
}

@font-face {
  font-family: 'Carter One';
  src: url('assets/Carter_One/CarterOne-Regular.ttf');
}

body{
  font-family: "Carter One";
  background-color: var(--beige);
  width: 90vw;
  max-width: 1920px;
  margin: auto;
  line-height: 2;
}

.header{
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4{
  color: var(--red);
}

h1{
  text-align: center;
  font-size: 4rem;
}

h2{
  font-size: 2.4rem;
}
h3{
  font-size: 1.8rem;
}
p{
  font-size: 1rem;
  color: var(--green);
}

.banner{
  width: 60vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* z-index: 999; */
}

.quote{
  color: var(--red);
  font-size: 3rem;
  text-align: center;
}

.header_koopOnline{
  transition: opacity 0.15s ease-in-out;
  background-color: var(--blue);
  color: var(--beige);
  padding: 0.5rem 2rem;
  border-radius: 5rem;
  border: none;
  font-family: "carter one";
  font-size: 2rem;
  text-align: center;
  width: 20rem;
  margin: auto;
}

.recept_video{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.recept_video iframe{
  margin: auto;
  width: 60vw;
  height: 33.75vw;
}

.recept_bereiding_stappen{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.recept_bereiding_stappen>p{
  padding: 1rem 2rem;
  margin: 1rem;
  margin: 0;
  width: 50vw;
}

.recept_bereiding_stappen>p:nth-child(odd){
  background-color: var(--red);
  color: var(--beige);
}

.recept_bereiding_stappen>p:nth-child(even){
  background-color: var(--pink);
  color: var(--green);
}

.kaartjes_tabel_row{
  display: grid;
  align-items: center;
  padding: 1rem;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 1rem;
  font-size: 1rem;
  border-bottom: var(--yellow) 2px solid;
}

.kaartjes_tabel_row_beschrijving{
  grid-column: span 3;
  min-width: 10rem;
}

.kaartjes_tabel_row_prijs{
  grid-column: span 2;
  min-width: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prijs_doorstreept, .prijs_korting, .prijs{
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
.prijs_doorstreept{
  color: red;
  text-decoration: line-through;
}
.prijs_doorstreept>p{
  color: var(--green);
}
.prijs_korting{
  color: var(--red);
}



.kaartjes_tabel_row_aantal{
  grid-column: span 2;
  min-width: 5rem;
}

.kaartjes_tabel_row_aantal>button{
  background-color: var(--red);
  font-size: 1.5rem;
  line-height: 0;
  margin: auto;
  font-family: "carter one";
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  color: var(--beige);
  border-radius: 5rem;
  border: none;
}

.kaartjes_tabel_row_input{
  width: 3rem;
  font-size: 1.2rem;
  border: none;
  background-color: var(--pink);
  color: var(--green);
  font-family: "carter one";
  border-radius: 5rem;
  text-align: center;
}

.kaartjes_tabel_row_totaal{
  grid-column: span 1;
  min-width: 3rem;
}

/* Vliegende objectjes */

.objectjes{
  position: absolute;
}

@keyframes upDown {
  from {margin-top: 0;}
  to {margin-top: 1rem;}
}


.pasta-1-1{
  /* animation-name: upDown;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out; */
}

.totaal_prijs_wrapper{
  padding-top: 1rem;
  margin: 1rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  width: 14rem;
}

.totaal_prijs_wrapper>p{
  font-size: 1.4rem;
  line-height: 1;
  color: var(--beige);
  margin: 0;
  margin-top: 1rem;
}

.totaal_prijs_wrapper>img{
  margin: 1rem;
  position: absolute;
  top: 0rem;
  z-index: -1;
}

#shop_submit{
  background-color: var(--blue);
  border: none;
  border-radius: 5rem;
  padding: 1rem 5rem;
  font-size: 1.4rem;
  color: var(--beige);
  font-family: "carter one";
  width: 20rem;
}

.shop_checkout{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.recept_bereiding_wrapper{
  display: flex;
}

.recept_bereiding_ingredienten{
  width: 20rem;
  /* background-color: var(--yellow); */
}


.personen_aantal{
  display: flex;
}

.personen_input{
  width: 3rem;
  font-size: 1.2rem;
  border: none;
  background-color: var(--pink);
  color: var(--green);
  font-family: "carter one";
  border-radius: 5rem;
  text-align: center;
}

.personen_increase_button, .personen_decrease_button{
  background-color: var(--beige);
  font-size: 1.5rem;
  line-height: 0;
  margin: auto;
  font-family: "carter one";
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  color: var(--red);
  border-radius: 5rem;
  border: none;
}

#ingredienten{
  background-color: var(--yellow);
  color: var(--green);
  padding: 1rem;
}

.personen_aantal_wrapper{
  background-color: var(--red);
  padding: 1rem 0;
}

.personen_aantal_wrapper>h4{
  color: var(--beige);
  text-align: center;
  margin: 0;
}
.sponsors{
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 6.8rem;
  width: 100%;
}
.sponsors li{
  width: 25%;
  display: flex;
  justify-content: center;
}
.sponsors img{
  width: 15rem;
}
.sponsors div{
  align-content: center;
}
@media screen and (max-width: 1100px){
  .sponsors li{
    width: 33%;
  }
}
@media screen and (max-width: 820px){
  .sponsors li{
    width: 45%;
  }
}
@media screen and (max-width: 768px) {

  body{
    width: 95vw;
}

  .banner{
    width: 90vw;
  }

  .recept_video iframe{
    margin: auto;
    width: 90vw;
    height: 50.625vw;
  }

  .recept_bereiding_stappen>p{
    padding: 1rem 2rem;
    width: 90%;
  }

  .recept_bereiding_wrapper{
    flex-direction: column;
    align-items: center;
  }
  
  .recept_bereiding_ingredienten{
    width: 20rem;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 630px) {
  .sponsors li{
    width: 100%;
  }
  .sponsors{
    gap: 3rem;
  }
  h1{
    font-size: 3rem;
    margin: 2rem 0rem;
    line-height: 150%;
  }
  h2{
    font-size: 2.5rem;
    margin: 0;
    margin-top: 2rem;
    line-height: 100%;
  }
  .quote{
    margin: 2.4rem 0rem;
    font-size: 2rem;
    line-height: 150%;
  }
  .banner{
    width: 95vw;
  }
  
  .header_koopOnline{
    position: fixed;
    bottom: 1rem;
    left: 5%;
    width: 90%;
  }
  
  .kaartjes_tabel_row{
    width: 90%;
    margin: auto;
    padding: 0;
    grid-gap: 0;
    grid-template-columns: repeat(5, 1fr);
}
  
  .kaartjes_tabel_row_beschrijving{
    grid-column: span 5;
  }
  
  .kaartjes_tabel_row_prijs{
    grid-column: span 2;
  }
  
  .prijs_doorstreept, .prijs_korting, .prijs{
    text-align: left;
  }
  
  .kaartjes_tabel_row_aantal{
    grid-column: span 3;
  }
  
  .kaartjes_tabel_row_totaal{
    text-align: center;
    grid-column: span 5;
  }
  
  
  .totaal_prijs_wrapper{
    padding: 0rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    width: 14rem;
    z-index: 9;
  }

  
  .totaal_prijs_wrapper>p{
    font-size: 1rem;
    line-height: 2;
    color: var(--beige);
    margin: 0;
  }
  
  .totaal_prijs_wrapper>img{
    position: absolute;
    top: -1.5rem;
    z-index: -1;
    width: 70%;
  }
  
  #shop_submit{
    background-color: var(--blue);
    border: none;
    border-radius: 5rem;
    padding:0;
    font-size: 1rem;
    color: var(--beige);
    font-family: "carter one";
    width: 10rem;
    height: 4rem;
  }
  
  .shop_checkout_main{
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .shop_checkout{
    background-color: white;
    z-index: 4;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    margin: 0;
    padding: 0;
    transition: bottom 0.15s;
  }
  .shop{
    padding-bottom: 5rem;
  }
  .doorgelinkt{
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
  }

  .shop_down{
    bottom: -10rem;
    transition: bottom 0.15s;
  }
  
  .recept_bereiding_wrapper{
    display: flex;
  }
  
  .recept_bereiding_ingredienten{
    width: 20rem;
    /* background-color: var(--yellow); */
  }
  
  
  .personen_aantal{
    display: flex;
  }
  
  .personen_input{
    width: 3rem;
    font-size: 1.2rem;
    border: none;
    background-color: var(--pink);
    color: var(--green);
    font-family: "carter one";
    border-radius: 5rem;
    text-align: center;
  }
  
  .personen_increase_button, .personen_decrease_button{
    background-color: var(--beige);
    font-size: 1.5rem;
    line-height: 0;
    margin: auto;
    font-family: "carter one";
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    color: var(--red);
    border-radius: 5rem;
    border: none;
  }
  
  #ingredienten{
    background-color: var(--yellow);
    color: var(--green);
    padding: 1rem;
  }
  
  .personen_aantal_wrapper{
    background-color: var(--red);
    padding: 1rem 0;
  }
  
  .personen_aantal_wrapper>h4{
    color: var(--beige);
    text-align: center;
    margin: 0;
  }
}

.fade{
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}