header {
    text-align: center;
}

body {
    background-color: #5f5f5f;
    font-family: Segoe UI, Verdana, Helvetica, sans-serif;
  }

  .intro {
      color: white;
      font-style: italic;

      width: 840px;
      /* padding: 12px 20px; */
      max-width: 90%;
      box-sizing:border-box;
  }

  .main {
    padding: 16px;
    margin-top: 30px;
  }
  h1 {
    color: white;
  }

  @media (max-width: 925px) {
    nav { display: none; }
    dropdown { display: show;}
  }

  @media (min-width: 926px){
      dropdown { display: none;}
  }

/* Dropdown Button */
.dropbtn {
    background-color: #333;
    color: white;
    height: 50px;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-sizing:border-box;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #ddd;
    color: black;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}
/* ---------------------------------------------------------------------------------- */

  table{
      background-color: white;
      width:100%;
      /* max-width: 90%; */
      padding: 12px 20px;
      box-sizing:border-box;
  }

  th, td{
    border-style: none;
    /* width:50%; */
  }

  tr:hover{
      background-color: #f5f5f5;
  }
    .webform {
      width: 840px;
      padding: 12px 20px;
      text-align: center;
      background-color: #ddd;
      max-width: 90%;
      box-sizing:border-box;
  }
    input[type=text]{
        height: 31px;
        background-color: white;
        border-style: none;
        border-color: rgb(201, 200, 200);
        width: 100%;
        padding: 5px 5px;
        margin: auto;
        box-shadow: 0 0 2px rgba(0,0,0,.5) inset;
    }
    input[type="url"]{
        height: 31px;
        background-color:white;
        border-style: none;
        border-color: rgb(201, 200, 200);
        width: 100%;
        padding: 5px 5px;
        margin: auto;
        box-shadow: 0 0 2px rgba(0,0,0,.5) inset;
    }
    input[type=submit]{
        height: 31px;
        padding: 5px 5px;
        margin: auto;
        background-color: #242424;
        border-style: none;
        color: white;
        box-shadow: 0 0 2px rgba(0,0,0,.5) inset;
        font-weight: bold;
        width: 100%;
        cursor: pointer;
        text-transform: uppercase;
    }
    input[type=file]{
        height: 31px;
        background-color:white;
        border-style: none;
        border-color: rgb(201, 200, 200);
        width: 100%;
        padding: 5px 5px;
        margin: auto;
        box-shadow: 0 0 2px rgba(0,0,0,.5) inset;
    }
    input[type=submit]:hover{
        background-color: rgb(3, 3, 3);
    }

    select{
        width: 100%;
        padding: 5px 5px;
        background-color: white;
        border-color: rgb(201, 200, 200);
        box-shadow: 0 0 2px rgba(0,0,0,.5) inset;
        margin: auto;
        cursor: pointer;
        border-style: none;
    }
    
.center{
    position: fixed;
    margin: auto;
    text-align: center;
    float: center;
    /* width: 10%; */
    padding: 3.5px;
    z-index: 1;
    height: 50px;
    background-color: #333;
    /* overflow: hidden; */
    top: 0;
    left: 50%;
    margin-left: -60px;
    /* right: 45%; */
    box-sizing: border-box;
}

.logo {
    display: inline-block;
}
  /* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 45%;
    left: 0;
    height: 50px;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Segoe UI, Verdana, Helvetica, sans-serif;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #000000;
    color: white;
  }  
  
  .topnav-right {
    background-color: #333;
    z-index: 0;
    height: 50px;
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 45%;
    right: 0;
  }

  .topnav-right a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Segoe UI, Verdana, Helvetica, sans-serif;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav-right a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav-right a.active {
    background-color: #000000;
    color: white;
  }

  .navbar {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      height: 50px;
      background-color: #333;
  }

  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    font-size: 12px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 6px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
  }
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  .pdfpreview{
    width: 800px;
    padding: 12px 20px;
    text-align: center;
    background-color: #ddd;
    max-width: 90%;
  }

  video{max-height:500px;background-color:#000}

  .videopreview{
    width: 800px;
    max-width: 90%;
    position: relative;
  }

/* * {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0} */
.mySlides {
    display: none;
    /* width: 800px; */
}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  /* width:800px; */
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 2%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-shadow: 0px 0px 3px #000000;
}

.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right:-8%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none;
    text-shadow: 0px 0px 3px #000000;
  }

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  text-shadow: 0px 0px 3px #000000;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  text-shadow: 0px 0px 3px #000000;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
    width: 800px;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.verzendAlert {
    background-color: yellow;
    color: rgb(3, 3, 3);
    width: 100%;
    position: fixed;
    left: 0px;
    top: 51;
}