:root {
  --het-fruit-pink: rgb(147, 18, 123);
  --het-fruit-paars: rgb(50, 8, 42);
  --het-fruit-geel: rgb(237, 196, 1);
  --het-fruit-geel-o5: rgb(237, 196, 1, 0.5);
  --het-fruit-rood: rgb(209, 0, 23);
  --het-fruit-rood-o5: rgb(209, 0, 23, 0.5);
  --het-fruit-oranje: rgb(236, 162, 13);
  --het-fruit-groen: rgb(69, 128, 7);
  --het-fruit-lemon: rgb(149, 191, 13);
  --het-fruit-lemon-o1: rgb(149, 191, 13,0.1);
  --het-fruit-light-grey: #EFEFEF;
}

@font-face {
  font-family: 'Londrina Solid';
  font-style: normal;
  font-weight: 400;
}

body {
  font-family: Montserrat, sans-serif;
  color: #2d2e33;
  background-color: #f7f7f7;
  margin: 0;
  overflow-x: hidden;
  background: url(../images/background.jpeg) no-repeat;
  background-size: cover;
  font-size: 17px;
}

a {
  color: #2d2e33;
}

h2 {
  font-family: "Londrina Solid";
  color: #89c33d;
  font-size: 2.5em;
}

ul li {
  padding-left: 0px;
}

.container {
  max-width: 1100px;
  min-height: 250px;
  margin: 0px auto;
  background-color: white;
  padding-bottom: 80px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

/*login pagina*/

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  margin: 0px auto;
  background-color: white;
  box-shadow: 4px 12px 55px -28px rgba(0, 0, 0, 0.75);
}

#login_header {
  height: 50px;
  width: 100%;
  background-color: #242427;
}

#loginscrn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-input {
  margin-top: 11px;
  width: 300px;
  padding: 5px;
  border: 1px solid #242427;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

input[type="submit"] {
  background-color: #242427;
  border: 1px solid #242427;
  color: white;
  padding: 5px;
  width: 200px;
  transition: background-color, .3s;
  letter-spacing: 1px;
}

input[type="submit"]:hover {
  background-color: transparent;
  color: #242427;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .login-container{
    width: 100%;
    margin: 0;
  }
}

/*header*/
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
}

.toolbar {
  height: 4vh;
  padding: 5px 10px;
  background-color: #242427;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toolbar label {
  color: white;
  margin-left: 5px;
}

.btn_logout {
  color: white;
  margin-right: 5px;
}

.logo img {
  width: 300px;
  height: 106px;
}

.menu {
  display: flex;
  width: 50vw;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
}

.menu a {
  color: #b4b5ba;
  text-decoration: none;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 25px;
}

.menu a:hover, a:active {
  color: black;
}
.menu a.active {
  color: #2d2e33;
}

.klantgegevens {
  width: 12vw;
}

.hamburger-icon {
  display: none;
}

.btn_logout_menu {
  display: none;
}

@media screen and (max-width: 1036px) {
  .menu {
    width: 100%;
    padding: 10px;
  }

  .header {
    flex-direction: column;
  }

  .klantgegevens {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100vw;
  }

  p {
    /*font-size: 1.2em;*/
  }

  .toolbar {
    display: none;
  }

  .header {
    flex-direction: row-reverse;
    transition: all .5s ease-in;
  }

  .hamburger-icon {
    position: absolute;
    left: 0;
    top: 0;
  }

  path {
    opacity: 100;
  }

  .header a {
    display: none;
  }

  .logo_visible {
    display: block !important;
  }

  .header a.hamburger-icon {
    position: absolute;
    display: block;
    padding: 16px;
  }

  .header a.hamburger-icon:hover {
    opacity: 60%;
  }

  .header.responsive {
    position: relative;
  }

  .header.responsive .hamburger-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    border: 0;
  }

  .header.responsive path {
    fill: white;
  }

  .header.responsive a {
    float: none;
    display: block;
    text-align: center;
    width: 67vw;
    color: white;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.4) ;
  }

  .header.responsive a:hover {
    color: white;
  }

  .menu {
    flex-direction: column;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    left: -75vw;
    transition: opacity .3s ease-in;
  }

  .header.responsive .menu {
    background-color: #242427;
    visibility: visible;
    opacity: 100%;
    position: absolute;
    width: 75vw;
    left: 0;
    top: 0;
    height: 100vh;
    justify-content: start;
    box-shadow: rgb(44, 62, 80) -15px 0px 15px -15px, rgb(44, 62, 80) 15px 0px 15px -15px;
    transition: opacity .3s ease-out;
  }

  .status_middle {
    display: none;
  }

  .text_middle {
    display: none;
  }
  .history_orders.product_label.orders {
    justify-content: space-around;
  }

  .history_orders.product_label.orders p {
    padding-right: 90px;
  }

  .product_label.orders {
    justify-content: space-around;
  }

  .product_label.orders p {
    padding-right: 90px;
  }

  .titel h3 {
    text-align: center;
  }

}

/*standaard bestellingen*/
.standard_order_form {
  margin: 0 25px;

}

.product_label.orders {
  justify-content: space-between;
}


.order_head {
  display: flex;
  justify-content: space-between;
  border: 1px solid #d8d8d8;
  padding: 0 10px 0 10px;
  font-weight: bold;
}

.text_middle {
  text-align: center;
}

.text_end {
  text-align: end;
}

.status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status_middle {
  text-align: center;
}

.status_middle.cancelled {
  color: #B94A48;
}

.order_status {
  display: flex;
  align-items: center;
  height: 16px;
}

.order_status h4 {
  margin-right: 10px;
}

.form-section {
  margin-bottom: 45px;
}
.form-section h3 {
  border-bottom: 1px solid #6f7180;
  color: #6f7180;
  font-size: 1.4em;
  font-weight: 400;
  padding-bottom: 8px;
}

.form-section img {
  padding-right: 20px;
  width: 50px;
}

.product_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 10px;
}

.list_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 10px;
}

.list_item p {
  width: 40vw;
}

.form_label_input {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.form_label_input > label {
  width: 20vw;
}

.history_orders {
  border-bottom: 1px solid #d8d8d8;
  height: 40px;
  margin: 0;
  background-color: transparent;
}

.amount {
  width: 60px;
  padding: 10px 10px;
  font-size: 15px;
  border: 1px solid #d8d8d8;
  /*box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;*/
}

.standard_orders {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.standard_orders .company {
  width: 400px;
}

.order {
  display: flex;
  justify-content: space-between;
}

.total {
  font-weight: bold;
}

/*customerportal home*/
.home_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 0.4fr 0.4fr 2.2fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "logo menu menu klantgegevens"
    "titel titel titel titel"
    "bestelling_maa bestelling_maa bestelling_woe bestelling_woe";
  height: 100vh;
  background-color: white;
}

.titel {
  color: white;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;*/
  margin-bottom: 30px;
}
.titel h3 {
  font-family: "Londrina Solid";
  font-size: 36px;
  color: #89c33d;
  margin: 15px 0;
  font-weight: 400;
}

.bestelling {
  display: flex;
  justify-content: center;
}

.bestelling form {
  display: flex;
  flex-direction: column;
  width: 85%;
}

.bestelling input[type="number"] {
  border: 0;
  border-bottom: 1px solid #242427;
}

.bestelling_maa {
  display: grid;
  grid-area: bestelling_maa;
  border: 1px solid black;
}

.product {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.product_header {
  height: 50px;
  border-bottom: 1px solid grey;
  font-weight: bold;
}

.product_total {
  border-top: 1px solid grey;
  font-weight: bold;
}

.hf_price {
  width: 50px;
}

.bestelling_woe {
  display: grid;
  grid-area: bestelling_woe;
  border: 1px solid black;
}

.order-date {
  height: 60px;
  border-bottom: 1px solid black;
  box-shadow: 0px 31px 21px -28px rgba(0, 0, 0, 0.41);
}

textarea {
  padding: 10px;
  border-color: #e6e6e6;
}


.btn {
  min-width: 150px;
  overflow-wrap: break-word;
  margin: 0;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  transition: .1s ease-in-out;
  transition-property: color, background-color, background-position, background-size, border-color, box-shadow;
  font-family: Montserrat;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-origin: border-box;
  background-color: #242427;
  color: #fff;
  border: 1px solid transparent;
  padding: 0 10px;
  line-height: 28px;
  font-size: 14px;
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: #242427;
  border-color: #242427;
}

.btn_cancel {
  background-color: #D71920;
}

.btn_cancel:hover {
  background-color: transparent;
  color: #D71920;
  border-color: #D71920;
}

.btn_reactivate {
  background-color: hsl(89, 69%, 42%);
}

.btn_reactivate:hover {
  background-color: transparent;
  color: hsl(89, 79%, 37%);
  border-color: hsl(89, 79%, 37%);
}


/** ALERTS **/

.alert {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid transparent;
}

tr.alert td {
  color: red;
}

.alert-dismissable, .alert-dismissible {
  padding-right: 35px;
}

.alert.alert-danger {
  background-color: #F2DEDE;
  border-color: #EED3D7;
  color: #B94A48;
}

.alert.alert-info {
  background-color: #bfdbfe;
  border-color: #93c5fd;
  color: #1e40af;
}

.alert.alert-success {
  background-color: #22c55e;
  border-color: #16a34a;
  color: #f0fdf4;
}

#message_development {
  background-color: #f44336;
  text-align: center;
  color: white;
  font-weight: bold;
  padding: 5px;
  display: block;
}

/*********************
 * Dialog background
 *********************/
::backdrop {
  background: black;
  opacity: 0.55;
}

dialog {
  border: 1px solid #2d2d2d;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

:focus {
  outline: none;
}

.amount-and-price {
  width: 250px;
  display: flex;
  justify-content: space-between;
}

.reactivate{
  min-width: 20em;
}

.opmerking-het-fruit{
  background-color: var(--het-fruit-lemon-o1);
  border: 1px solid #EFEFEF;
  border-left: 5px solid var(--het-fruit-lemon);
  padding: 10px;
  margin: 2em 0;
  font-size: 1em;
  color: #2d2e33;
  border-radius: 4px;
  /*box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);*/
  font-family: Montserrat, sans-serif;
}