h1, h2, h3, h4, h5, p, body, th, td {
  margin: 0;
  padding: 0;
}

th, td {
  text-align: left;
}

body {
  font-family: "Lato", sans-serif;
}

input {
  color: navy;
  background-color: #eee;
  border: 1px solid navy;
  border-radius: 3px;
  padding: 3px 5px;
}
input.focus {
  border: 11px solid #ccc;
  background-color: #fff;
  color: red;
}

.bb {
  border-bottom: 1px solid #555;
}

.tb {
  border-top: 1px solid #555;
}

.fr {
  float: right;
}
.fr .button, .fr button {
  margin-right: 20px;
}

.hidden {
  display: none !important;
}

.button, button {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: white;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 3px;
  color: darkblue;
  text-decoration: none;
}
.button:hover, button:hover {
  background-color: darkblue;
  color: white;
  cursor: pointer;
}

body {
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #444;
  box-sizing: border-box;
}

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

#header {
  text-align: center;
}

#page {
  flex: 1;
  width: 100vw;
  min-height: calc(100vh - 60px - 60px);
}
#page.simple {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: start;
}

.dialog-modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  cursor: pointer;
}
.dialog-modal .dialog {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 3px solid #888;
  max-width: 80%; /* Could be more or less, depending on screen size */
  min-width: 200px;
  width: 300px;
}

.standaard-pagina {
  padding: 20px;
}

#header {
  background-color: #008b8b;
  color: White;
  border-bottom: 1px solid #555;
  height: 60px;
  width: 100vw;
  line-height: 60px;
  display: block;
}

#footer {
  color: white;
  background-color: #008b8b;
  border-bottom: 1px solid #555;
  height: 60px;
  width: 100vw;
  line-height: 60px;
  display: block;
  text-align: center;
}
#footer a {
  color: white;
}

.login-dialog {
  width: 300px;
  height: auto;
  margin-top: 50px;
  padding-top: 20px;
  border-radius: 3px;
  border: 1px solid #555;
  background-color: white;
}
.login-dialog .login-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.login-dialog .login-grid span.left, .login-dialog .login-grid span.right {
  height: 40px;
  text-align: left;
  line-height: 40px;
}
.login-dialog .login-grid span.left input[type=text], .login-dialog .login-grid span.left input[type=password], .login-dialog .login-grid span.right input[type=text], .login-dialog .login-grid span.right input[type=password] {
  height: 30px;
  width: 98%;
}

.select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  grid-gap: 50px;
}
.select-grid a.identifier {
  border: 1px solid red;
  border-radius: 5px;
  background-color: rgba(0, 0, 1, 0.1);
  padding: 10px;
  text-align: center;
}

.tabel2 {
  display: grid;
  grid-template-columns: minmax(100px, 20%) 1fr;
  grid-gap: 10px;
}
.tabel2 span {
  border: 1px solid #eee;
  padding: 0 5px;
  line-height: 20px;
}

.tabel3 {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  grid-gap: 10px;
}
.tabel3 span {
  border: 1px solid #eee;
  padding: 0 5px;
  line-height: 40px;
  height: 40px;
}

.tabel4 {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 60px;
  grid-gap: 0px;
}
.tabel4 span {
  border-bottom: 1px solid #eee;
  padding: 0 5px;
  line-height: 40px;
  height: 40px;
}
.tabel4 span.head {
  border-top: 1px solid #eee;
}

body {
  font-family: "Muli", sans-serif;
  font-size: 1.8em;
  line-height: 3.2rem;
  text-align: center;
}
body .cam-top-header {
  display: flex;
  justify-content: flex-end;
  background-color: #004b85;
  font-size: 0.5em;
}
body .cam-top-header a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
}
body .cam-top-header a:hover {
  color: grey;
}
body .cam-top-sub-header {
  height: 72px;
  line-height: 72px;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #ebebef;
  font-size: 0.5em;
}
body .cam-top-sub-header img {
  height: 40px;
}
body .message {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .message img {
  height: 20px;
  margin-right: 10px;
}
body .redirect {
  margin-top: 100px;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 7pt;
  }
  body #header .top {
    background-color: orange;
  }
  body #header .top h1 {
    font-size: 8pt;
  }
  body #header .top .js-menu {
    margin-right: 3px;
    padding: 0;
    font-size: 20px;
  }
  body #header .bot .left, body #header .bot .right, body #header .bot .middle {
    width: 20vw;
  }
  body #header .bot .left a.button, body #header .bot .right a.button, body #header .bot .middle a.button {
    font-size: 7pt;
  }
  body .select-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    grid-gap: 10px;
  }
  body #footer {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
