:root {
  --primary-color: rgb(11, 78, 179);
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  height: 100%;
  margin: 0;
  padding: 0;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;
  /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
  /* Footer height */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.bg-dark {
  background-color: #203354 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  /* vertical scrol bar */
  /* margin-right: -15px;
  margin-left: -15px; */
}

.justify-content-center {
  justify-content: center !important;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card>.list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card>.list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link+.card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

.card-group>.card {
  margin-bottom: 15px;
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.col-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

.text-muted {
  color: #6c757d !important;
}

.text-left {
  text-align: left !important;
  padding: 0;
}

.text-right {
  text-align: right !important;
  padding: 0;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

a {
  color: #009cab;
  text-decoration: none;
  background-color: transparent;

}

a:hover {
  color: #00565f;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 156, 171, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 156, 171, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-outline-dark {
  color: #203354;
  border-color: #203354;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #203354;
  border-color: #203354;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(32, 51, 84, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(32, 51, 84, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #203354;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #203354;
  border-color: #203354;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(32, 51, 84, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(32, 51, 84, 0.5);
}

.kleurdiv {
  position: relative;

}

.kleur1 {
  width: 1rem;
  height: 1.5rem;
  display: flex;
  position: absolute;
  right: 0.95rem;
  top: -36px;
  border: #000 solid 1px;
}

.kleur2 {
  width: 1rem;
  height: 1.5rem;
  display: flex;
  position: absolute;
  right: 0px;
  top: -36px;
  border: #000 solid 1px;
}

.kapot {
  border: 4px solid rgb(255, 0, 0);
  background-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 576px) {

  /* .container-sm, .container {
    max-width: 540px;
  } */
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    /* margin-right: -15px;
    margin-left: -15px; */
    justify-content: center;
  }

  .card-deck .card {
    min-width: 250px;
    flex: 0 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  /* .container-md, .container-sm, .container {
    max-width: 720px;
  } */
  /* .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  } */
}

/* @media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
} */

.head {
  /* The image used */
  background-image: url("../img/279703968_10159429212000589_3796083311920730025_n.jpg");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  opacity: 80%;
}

.nav {
  padding: 0;
  margin: 0;
  line-height: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown:hover .dropdown-content {
  display: block;
}

footer {
  padding: 0;
  margin: 0;
  line-height: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}

footer p {
  /* padding: 10px; */

  width: 100%;
  height: 2.5rem;
  padding: 0.7rem;
  margin: 0;
  line-height: 1;
  background-color: #333;
  text-align: center;
  color: #fff;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active {
  background-color: #04AA6D;
}

.none {
  pointer-events: none;
}

#preloader {
  background: #000;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

.schadeform {
  font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  place-items: center;
  min-height: 100vh;

  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  z-index: 1002;

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Global Stylings */
label {
  display: block;
  margin-bottom: 0.5rem;
}

input,
textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

textarea {
  resize: none;
  max-height: 330px;
}

textarea::-webkit-scrollbar {
  display: none;
}

select {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

.width-50 {
  width: 50%;
}

.ml-auto {
  margin-left: auto;
}

.text-center {
  text-align: center;
}

/* Progressbar */
.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 0 4rem;
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
}

.progress {
  background-color: var(--primary-color);
  width: 0%;
  transition: 0.3s;
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 0.85rem;
  color: #666;
}

.progress-step-active {
  background-color: var(--primary-color);
  color: #f3f3f3;
}

/* Form */
.form {
  width: clamp(320px, 30%, 430px);
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 0.35rem;
  background-color: #fff;
  padding: 1.5rem;
  position: relative;
}

.form-step {
  display: none;
  transform-origin: top;
  animation: animate 0.5s;
}

.form-step-active {
  display: block;
}

.input-group {
  margin: 2rem 0;
}

@keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }

  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}

/* Button */
.btns-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.schadeform .btn {
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}

.schadeform .btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.close {
  font-family: serif;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 30px;
  float: right;
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
  z-index: 22;
}

.close:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.content {
  padding: 1.25rem 1.25rem;
  flex-grow: 1;
}

h6 {
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5385;
}


.card-title-table {
  margin-bottom: 0;
}

.card-table {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.1875rem;
  border: 1px solid rgba(0,0,0,.125);
  overflow-x:auto;
}


table {
  border-collapse: collapse;
  
}

.table {
  width: 100%;
  color: #333;
}

.table td,
.table th {
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem 1.25rem;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(221, 221, 221);
}

.table td,
.table th,
.table tr {
  transition: background-color ease-in-out .15s;
}

.table-lg td,
.table-lg th {
  padding: 1rem 1.25rem;
}

.table tbody:first-child tr:first-child td, .table tbody:first-child tr:first-child th, div[class*=table-responsive]>.table tbody:first-child tr:first-child td, div[class*=table-responsive]>.table tbody:first-child tr:first-child th {
  border-top: 0;
  border-top-width: 0px;
  border-top-style: initial;
  border-top-color: initial;
} 

.mb-0, .my-0 {
  margin-bottom: 0!important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 2.25rem;
  height: 1.125rem;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  text-align: left;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  width: 1.1rem;
  height: 1.1rem;

  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(1.125rem);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}