/*Import google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
/* reset default css*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}

body{
    background-color: #f1faff;
    font-family: 'Poppins', sans-serif;
}

.section{
    padding: 7rem 0 2rem;
}
.section_title{
    font-size: 2.5rem;
    color: #454343;
    text-align: center;
    margin-bottom: 1.5rem;
}
.section_height{
    height: 100vh;
}
.main-container {
    margin-top: 75px;
    padding: 30px;
  }

/*HEADER*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    transition: 0.4s;
}

/* Navbar*/
.nav{
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_logo{
    color: #454343;
    font-weight: 700;
    font-size: 1.25rem;
}
.nav_name{
    font-weight: 600;
}
.overzicht_title{
  font-weight: 600;
  margin-left: 20px;
}
.nav_icon{
    font-size: 1.5rem;
}
.nav_list,
.nav_link{
    display: flex;
}
.nav_list{
    justify-content: space-around;
    column-gap: 3rem;
}
.nav_link{
    flex-direction: column;
    align-items: center;
    color: #454343;
    row-gap: 0.75rem;
}
.nav_link:hover{
    color: #e4e7ed;

}

.active_link{
    position: relative;
    color: #454343;
    transition: 0.3s;
}
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #454343;
  }
.header_toggle,
.header_close{
  display: none;
}
@media screen and (min-width: 769px){
    .active_link::before{
        content: '';
        position: absolute;
        bottom: -.4rem;
        width: 1rem;
        height: 3px;
        background-color: #454343;
        border-radius: 3px;
    }
    .hover-underline-animation:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -.4rem;
        left: 0;
        background-color:#454343;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
      }
      
      .hover-underline-animation:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
      }
}

@media screen and (max-width: 992px){
    .container{
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

@media screen and (max-width: 768px) {
    header{
      height: 65px;
      justify-content: space-between;
      padding: 0 28px;
    }
    .nav_logo a{
      font-size: 0.9rem;
    }
    .nav_logo img{
      width: 30px;
    }
    .header_toggle{
      display: inline;
      color: rgba(17, 16, 16, 0.933);
      font-size: 34px;
      margin-bottom: 15px;
    }
    .header_close{
      position: absolute;
      right: 24px;
      display: block;
      font-size: 24px;
      border-radius: 50%;
    }
    .header_close:hover{
      background-color: #00adb5;
    }
    .nav_menu{
      position: fixed;
      top: 0;
      right: -100%;
      background-color: #ffffff;
      color: #454343;
      width: 60%;
      height: 100vh;
      padding: 24px 0;
      z-index: 100;
      transition: 0.5s;
      border-radius: 0 0 0 50%;
    }
    .nav_list{
      display: flex;
      flex-direction: column;
    }
    .nav_item{
      margin: 2rem 0;
      margin-left: 6.2rem;
    }
    .nav_item_home{
      margin: 2rem 0;
      
    }
    .show{
      right: 0;
    }
}



/*eigen prut*/
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

input[type=text], input[type=number], select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 3px;
  margin-bottom: 3px;
  resize: vertical;
  font-size: 18px;
}
label{
    font-size: 22px;
}

/* .smallInput{
    width: 49.5% !important;
    display: inline-block;
} */

#opslaan {
    background-color: #04AA6D;
    color: white;
    padding: 20px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}
button{
    padding: 20px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    border: 1px solid grey;
    background-color: #e7e7e7;
}

#opslaan {
  background-color: #45a049;
}

.container {
  /* border-radius: 5px;
  background-color: #f2f2f2; */
  padding: 20px;
  margin-bottom: 10px;
  /* margin-top:60px; */
}

.grid2c{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
}
.grid3c{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 10px;
}
.grid3col{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
}
.grid3col{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
}
.grid4c{
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 10px;
}
iframe{
    width: 100%;
    /* max-width: 700px; */
    height: 500px;
    border: 1px solid grey !important;
}
img {
    border: 1px solid #ddd; /* Gray border */
    border-radius: 4px; /* Rounded border */
    padding: 5px; /* Some padding */
    width: 100%; /* Set a small width */
    /* max-width: 500px; */
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .grid3c {
    grid-template-columns: auto auto;
  }
  .grid2c {
    grid-template-columns: auto;
  }
}
@media only screen and (max-width: 480px) {
  /* For mobile phones: */
  .grid3c {
    grid-template-columns: auto;
  }
  .grid3col, .grid4col{
    grid-template-columns: 1fr;
  }
  .grid2c {
    grid-template-columns: auto;
  }
  .buttons button{
    grid-template-columns: auto;
    margin-top:20px;
  }
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.alert {
  padding: 20px;
  background-color: green;
  color: white;
  position: fixed;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}
.buttons{
    margin-top: 30px;
}