@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins&display=swap');

body {
    background-image: url(/assets/img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar-custom {
    background-color: rgba(0, 0, 0, 0.637);
}

.navbar-custom a {
    color: rgb(0, 0, 0);
}

.navbar-custom a:hover {
    color: rgb(255, 0, 0) !important;
    transition: .5s ease;;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: rgb(255, 0, 0) !important;
    transition: .5s ease;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
    margin-top: 100px;
  }
  
  .d-flex {
    display: flex;
    flex-direction: row;
    background: #f6f6f6;
    border-radius: 0 0 5px 5px;
    padding: 25px;
  }
  form {
    flex: 4;
  }
  .Yorder {
    flex: 2;
  }
  .title {
    background: #b61313;
    border-radius: 5px 5px 0 0;
    padding: 20px;
    color: #f6f6f6;
  }
  h2 {
    margin: 0;
    padding-left: 15px;
  }
  .required {
    color: red;
  }
  
  label,
  table {
    display: block;
    margin: 15px;
  }
  
  label > span {
    float: left;
    width: 25%;
    margin-top: 12px;
    padding-right: 10px;
  }
  
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select {
    width: 70%;
    height: 30px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border: 1px solid #dadada;
    color: #888;
    border-radius: 8px;
    
  }
  
  select {
    width: 72%;
    height: 45px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  
  .Yorder {
    margin-top: 15px;
    height: 600px;
    padding: 20px;
    border: 1px solid #dadada;
  }
  
  table {
    margin: 0;
    padding: 0;
  }
  
  th {
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
  }
  tr > td:nth-child(1) {
    text-align: left;
    color: #2d2d2a;
  }
  
  tr > td:nth-child(2) {
    text-align: right;
    color: #52ad9c;
  }
  
  td {
    border-bottom: 1px solid #dadada;
    padding: 25px 25px 25px 0;
  }
  
  p {
    display: block;
    color: #888;
    margin: 0;
    padding-left: 25px;
  }
  .Yorder > div {
    padding: 15px 0;
  }
  
  button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background: #b61313;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
  }
  
  button:hover {
    cursor: pointer;
    background: #cc1111;
  }
  
/* Scrollbar */

::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

  .navbar-light .navbar-toggler {
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
  }
  
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }
  
  .navbar-light.navbar-toggler {
    border-color: rgb(255, 255, 255);
  } 

  /* Ipad */
  @media screen and (max-width: 525px) {
    /* body {
      background-color: rgb(0, 170, 255);
    } */
  
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select {
      width: 30%;
      height: 30px;
      padding: 5px 10px;
      margin-bottom: 10px;
      border: 1px solid #dadada;
      color: #888;
    }
  
    .container {
      width: 100%;
      padding-right: 0px;
      padding-left: 0px;
      margin-right: auto;
      margin-left: auto;
      max-width: 1140px;
    }
  }
  
  /* Telefoon */
  @media screen and (max-width: 500px) {
    /* body {
      background-color: rgb(86, 108, 119);
    } */
  
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select {
      width: 100%;
      margin-top: 0;
      height: 30px;
      padding: 5px 10px;
      margin-bottom: 10px;
      border: 1px solid #dadada;
      color: #888;
    }
  

    .container {
      width: 100%;
      padding-right: 0px;
      padding-left: 0px;
      margin-right: auto;
      margin-left: auto;
      max-width: 1140px;
    }
  }
  