/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:

.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.

.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels

The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.

*/
.m-5 {
  margin: 5px !important;
}

.m-v-5 {
  margin: 5px 0 !important;
}

.m-h-5 {
  margin: 0 5px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-v-5 {
  padding: 5px 0 !important;
}

.p-h-5 {
  padding: 0 5px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-v-10 {
  margin: 10px 0 !important;
}

.m-h-10 {
  margin: 0 10px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-v-10 {
  padding: 10px 0 !important;
}

.p-h-10 {
  padding: 0 10px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-v-15 {
  margin: 15px 0 !important;
}

.m-h-15 {
  margin: 0 15px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-v-15 {
  padding: 15px 0 !important;
}

.p-h-15 {
  padding: 0 15px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-v-20 {
  margin: 20px 0 !important;
}

.m-h-20 {
  margin: 0 20px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-v-20 {
  padding: 20px 0 !important;
}

.p-h-20 {
  padding: 0 20px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.m-v-25 {
  margin: 25px 0 !important;
}

.m-h-25 {
  margin: 0 25px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-v-25 {
  padding: 25px 0 !important;
}

.p-h-25 {
  padding: 0 25px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-v-30 {
  margin: 30px 0 !important;
}

.m-h-30 {
  margin: 0 30px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-v-30 {
  padding: 30px 0 !important;
}

.p-h-30 {
  padding: 0 30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-35 {
  margin: 35px !important;
}

.m-v-35 {
  margin: 35px 0 !important;
}

.m-h-35 {
  margin: 0 35px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-v-35 {
  padding: 35px 0 !important;
}

.p-h-35 {
  padding: 0 35px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-v-40 {
  margin: 40px 0 !important;
}

.m-h-40 {
  margin: 0 40px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-v-40 {
  padding: 40px 0 !important;
}

.p-h-40 {
  padding: 0 40px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-45 {
  margin: 45px !important;
}

.m-v-45 {
  margin: 45px 0 !important;
}

.m-h-45 {
  margin: 0 45px !important;
}

.p-45 {
  padding: 45px !important;
}

.p-v-45 {
  padding: 45px 0 !important;
}

.p-h-45 {
  padding: 0 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-v-50 {
  margin: 50px 0 !important;
}

.m-h-50 {
  margin: 0 50px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-v-50 {
  padding: 50px 0 !important;
}

.p-h-50 {
  padding: 0 50px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-75 {
  margin: 75px !important;
}

.m-v-75 {
  margin: 75px 0 !important;
}

.m-h-75 {
  margin: 0 75px !important;
}

.p-75 {
  padding: 75px !important;
}

.p-v-75 {
  padding: 75px 0 !important;
}

.p-h-75 {
  padding: 0 75px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-100 {
  margin: 100px !important;
}

.m-v-100 {
  margin: 100px 0 !important;
}

.m-h-100 {
  margin: 0 100px !important;
}

.p-100 {
  padding: 100px !important;
}

.p-v-100 {
  padding: 100px 0 !important;
}

.p-h-100 {
  padding: 0 100px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

/*
  RUN GULP to generate the classes. Now you can use these helpers to customize spacing on HTML elements.
*/
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-HeavyOblique.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-LightOblique.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-MediumOblique.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-Oblique.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/AvenirLTStd-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@media print {
  header .menu {
    display: none;
  }
  header .header-logo {
    display: none;
  }
  header .site-name {
    float: none !important;
  }
  header .container > .row > .col-md-4 {
    display: none;
  }
  header .container > .row > .col-md-8 {
    width: 100% !important;
  }
  header .site-user-info {
    padding: 0 !important;
  }
  footer {
    display: none;
  }
  a[href]:after {
    content: initial !important;
  }
  abbr[title]:after {
    content: initial !important;
  }
  .map-container {
    break-inside: avoid !important;
    page-break-after: always;
  }
  .rounded-box .rounded-box-item {
    border-radius: 0 !important;
  }
  .block-content {
    padding: 0;
  }
  #beheereenheid-toolbar {
    display: none;
  }
  .onemap-container {
    border: none !important;
    border-radius: 0 !important;
  }
  .onemap-container .om-c-header,
  .onemap-container .om-c-footer,
  .onemap-container .om-c-sidebar,
  .onemap-container .om-c-sidebar__helper {
    display: none;
  }
  .onemap-container .onemap-instance[style] {
    width: 670px !important;
    height: 670px !important;
  }
  .map-container .sidebar-column {
    display: none;
  }
  body.beheereenheid-index {
    padding-top: 0;
  }
  body.beheereenheid-index header {
    display: none;
  }
  body.beheereenheid-index #fullscreen {
    display: none;
  }
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html {
  height: 100%;
}

body {
  min-height: 100%;
  background: #E6ECF2;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  color: #606060;
  padding-top: 50px;
}

body.signin {
  background: url("/img/background.jpg") no-repeat fixed;
  background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

h3 {
  font-size: 20px;
}

h3, h4 {
  font-weight: 900;
}

h3.percelen-heading {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 15px 25px 15px 50px;
  background-color: #fff;
  color: #000;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 0;
}

h4.my-details-heading {
  color: #5C903D;
  font-size: 16px;
}

h4.formheading {
  color: #5C903D;
  font-size: 15px;
  font-weight: bold;
  margin: 20px 0;
}

h4.verificatie {
  color: #959595;
  font-size: 18px;
}

p {
  margin: 10px 0 10px;
}

p.has-warning {
  color: #d41116;
  line-height: 1.3em;
  margin-bottom: 20px;
}

p.success {
  color: #5C903D;
}

p.success a {
  color: #5C903D;
  text-decoration: underline;
}

p.small,
ul.small {
  font-size: 12px;
}

ul.small {
  font-size: 12px;
  color: #959595;
  padding-left: 17px;
}

p.green.italic {
  font-style: italic;
  color: #5C903D;
  padding-bottom: 0px;
  margin-bottom: -10px !important;
}

a {
  color: #606060;
}

a:hover {
  color: #5C903D;
  text-decoration: underline;
}

a.lg-link {
  font-size: 17px;
  color: #000;
  text-decoration: underline;
}

a.lg-link:hover {
  color: #5C903D;
}

i.lg-link {
  background: #5C903D;
  border-radius: 50%;
  padding: 14px 15px;
  margin-right: 10px;
  color: #fff;
}

a.wachtwoordvergeten {
  color: #606060;
  text-decoration: underline;
}

ul.mijn-aanvragen {
  padding-left: 0;
  margin-top: 20px;
  list-style: none;
}

ul.mijn-aanvragen li {
  padding: 5px;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 50%;
}

.navbar-inverse {
  background-color: #fff;
  border: none;
  background: none;
}

ul.menu {
  padding: 15px;
  float: right;
  margin-bottom: 0;
}
ul.menu > li {
  list-style: none;
  display: inline-block;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: bold;
}
ul.menu > li > a {
  color: black;
  text-decoration: none;
}
ul.menu > li:not(:last-child) {
  border-right: 2px solid black;
}
ul.menu > li:last-child {
  padding-right: 0;
}
ul.menu > li.active > a {
  color: #5C903D;
}

.container {
  max-width: 1440px;
}

div.login {
  margin-top: 100px;
}

.block {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin: 30px 0;
  position: relative;
}

.nav-tabs {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #ddd;
  margin: 0 15px;
}

.nav-tabs > li {
  display: block;
  margin-bottom: -3px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background-color: #ddd;
}

.centered-block {
  margin: 0 auto;
  float: none;
}

.nav-tabs > li.active {
  background-color: #fff;
}

.nav-tabs > li:first-child {
  border-top-left-radius: 20px;
}

.nav-tabs > li:last-child {
  border-top-right-radius: 20px;
}

.nav-tabs > li.active > a {
  color: #5C903D;
  border: none;
}

.block-content {
  padding: 25px 50px;
}

.bottom-right-link {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 12px;
  text-decoration: underline;
  background-color: #25539E;
  color: #fff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.bottom-right-link i {
  margin-left: 7px;
}

.top-right-link {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 12px;
  text-decoration: underline;
  background-color: #5C903D;
  color: #fff;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.top-right-link:hover {
  color: #000;
}

.top-right-link i {
  margin-left: 7px;
}

.grey-background-block {
  background-color: rgba(0, 0, 0, 0.16);
  padding: 25px;
}

.back-to-dashboard {
  padding-right: 30px;
  color: #25539E;
  font-weight: bold;
}

.block-content.hasimage {
  padding: 5px;
  width: 100%;
  height: 300px;
}

/*** Registratie ***/
.progress-container {
  position: relative;
  width: 100%;
  margin: 20px 0;
  display: inline-block;
  z-index: 99;
}

.progressbar {
  counter-reset: step;
}

.progressbar li {
  list-style-type: none;
  width: 12.5%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #959595;
}

.progressbar li:before {
  width: 30px;
  height: 30px;
  content: "";
  line-height: 30px;
  border: 2px solid #ddd;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #ddd;
}

.progressbar li:after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ddd;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: #5C903D;
}

.progressbar li.active:before {
  background-color: #5C903D;
  border-color: #5C903D;
}

.progressbar li.active + li:after {
  background-color: #ddd;
}

.block-content.registreren {
  background: #E6ECF2;
  padding-bottom: 45px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.block-content.registratie-buttons {
  text-align: right;
}

.block-content.registratie-buttons-left {
  text-align: left;
}

.role {
  width: 150px;
  height: 150px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3019607843);
  border-radius: 20px;
  margin: 30px 20px 30px 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.role.active,
.role:hover {
  background: #5C903D;
  color: #fff;
  cursor: pointer;
}

.role.active i,
.role.active a,
.role:hover i,
.role:hover a {
  color: #fff;
}

.role i {
  font-size: 60px;
  width: 100%;
  color: #5C903D;
}

.role a {
  color: #000;
  width: 100%;
  text-decoration: underline;
  font-weight: 600;
}

/**** Contact ****/
.block-content.contact {
  font-size: 16px;
}

.block-content.contact a {
  color: #959595;
  text-decoration: underline;
}

.block-content.contact p:first-of-type {
  margin-top: 25px;
}

.block-content.contact i {
  color: #5C903D;
  margin-right: 10px;
  font-size: 20px;
}

/******  FORM ******/
.block-content.form {
  /*max-width: 30%;*/
}

.loginform {
  max-width: 75%;
}

.loginform input {
  /*margin: 15px 0;*/
}

.loginform .btn-submit {
  background-color: #5C903D;
  margin-bottom: 15px;
  width: 100%;
  text-align: left;
}

.loginform .btn-success {
  background-color: #5C903D;
  margin-bottom: 15px;
  width: 100%;
  text-align: left !important;
}

.form-control {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 12px;
  padding: 19px;
}

textarea.form-control {
  font-size: 14px;
}

input[type=file].form-control {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 7px 0 0 0;
}

select.form-control {
  padding: 0 19px;
}

.select2-container--krajee .select2-selection {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 12px;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__choice {
  line-height: 2;
}

.form-control-large {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 32px;
  padding: 19px;
}

.form-control.verification {
  width: 30px;
  height: 60px;
  margin: 30px 10px 40px 0;
  border-radius: 10px;
}

.radio-label {
  margin-right: 20px;
}

/*********************************/
/* Buttons */
/*********************************/
.btn {
  border-radius: 5px;
  border: none;
  padding: 10px 20px;
  text-shadow: none;
}

.btn-default {
  background: #ddd;
}

.btn-primary {
  background: #25539E;
}

.btn-submit {
  border-radius: 5px;
  color: #fff;
  background: #5C903D;
  text-align: left;
  padding: 10px 19px;
}

.btn-secondary {
  border-radius: 5px;
  color: #fff;
  background: #25539E;
  text-align: left;
  padding: 10px 19px;
}

.btn-cancel {
  /*width: 100%;*/
  border-radius: 5px;
  color: #fff;
  background: #d41116;
  text-align: left;
  padding: 10px 19px;
}

.btn-register {
  background: #25539E;
  width: 71%;
  padding: 15px 19px;
  margin-top: 10px;
  border-radius: 5px;
  color: #fff;
  border: none;
  text-align: left;
  font-weight: 600;
}

.btn-success {
  background: #5C903D;
}

.btn-danger {
  background: #d41116;
}

img.map {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

a.edit-link {
  display: block;
  text-align: right;
  padding: 15px 15px;
  color: #959595;
  text-decoration: underline;
}

.table {
  margin: 30px 0;
}

.actions-table {
  margin-left: -32px;
}

.table,
td,
th {
  border: none !important;
}

th {
  font-weight: normal;
}

th {
  font-weight: bold;
  color: #000;
}

.table-warning {
  max-width: 7px;
  color: #d41116;
}

td a {
  color: #000;
  text-decoration: underline;
}

td.goedgekeurd {
  color: #5C903D;
}

td.afgewezen {
  color: #d41116;
}

/***************************************** FAQ ************************/
.faq {
  width: 100%;
}

.faq p {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 0;
  color: #5C903D;
  font-weight: 600;
}

.faq p:first-of-type {
  margin-top: 15px;
  border-top: none;
}

.faq i {
  font-size: 22px;
}

p.faq-content {
  color: #606060;
  font-weight: normal;
  max-width: 85%;
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* MEDIA */
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
.logo-background {
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/logo-bg.png") no-repeat;
  background-size: contain;
  width: 390px;
  height: 105px;
}

#headerlogo {
  position: absolute;
  width: 131px;
  top: 12px;
  left: 186px;
}

.site-name {
  font-size: 22px;
  font-weight: 900;
  float: right;
  min-width: 600px;
}
.site-name a, .site-name a:hover, .site-name a:active, .site-name a:focus {
  color: #000;
  text-decoration: none;
}

.site-user-info {
  padding: 0 50px;
}

.password-toggle-addon {
  height: 5px;
}

.password-toggle-addon input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.password-toggle-addon label {
  padding: 0;
  margin: 0;
}

.password-toggle-addon label i {
  height: 1em;
  cursor: pointer;
  opacity: 0.6;
}

.password-toggle-addon label:hover img {
  opacity: 0.8;
}

.password-toggle-addon label input:checked + img {
  opacity: 1;
}

/* Onemap widget */
.onemap-container {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.onemap-container .wgp5-c-header__logo,
.onemap-container .om-c-header__logo {
  display: none;
}

/* Request features list */
.switchmenu {
  position: absolute;
  right: 60px;
  top: -43px;
  padding: 0;
  float: right;
  margin-bottom: 0;
}
.switchmenu > li {
  list-style: none;
  display: inline-block;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  color: black;
}
.switchmenu > li > a {
  color: black;
  text-decoration: none;
}
.switchmenu > li:last-child {
  padding-right: 0;
}
.switchmenu > li.active > a {
  font-weight: bolder;
}

.rounded-box {
  border-radius: 20px;
  background-color: #E6ECF2;
  padding: 20px;
}
.rounded-box h4 {
  margin-bottom: 25px;
}
.rounded-box .rounded-box-item {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.rounded-box .rounded-box-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rounded-box .rounded-box-item:last-child {
  margin-bottom: 0;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #337ab7;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#print {
  position: absolute;
  right: 26px;
  top: -43px;
  font-size: 18px;
}

#fullscreen {
  position: absolute;
  right: 0;
  top: -43px;
  font-size: 18px;
}

#fullscreen > .fa-compress-arrows-alt {
  display: none;
}

@media not print {
  body.fullscreen {
    padding-top: 0;
    margin-top: -30px;
  }
  body.fullscreen header {
    display: none;
  }
  body.fullscreen #fullscreen > .fa-expand-arrows-alt {
    display: none;
  }
  body.fullscreen #fullscreen > .fa-compress-arrows-alt {
    display: initial;
  }
}
/* Mijn gegevens */
.nav-tabs > li.active > a:focus {
  color: #5C903D;
  border: 0;
}

/* Mijn beheereenheden */
.map-container {
  display: flex;
  position: relative;
  margin-top: 20px;
}

.map-container > .fullwidth-column {
  width: 100%;
}

.map-container > .column-with-sidebar {
  min-width: 200px;
  flex-grow: 1;
}

.map-container > .sidebar-column {
  width: 450px;
  margin-left: 15px;
  position: relative;
  transition: all 0.5s ease;
}
.map-container > .sidebar-column.sidebar-column-sketch {
  width: 700px;
}
.map-container > .sidebar-column .collapse {
  cursor: pointer;
}
.map-container > .sidebar-column.collapsed {
  width: 20px;
  height: 200px;
}
.map-container > .sidebar-column.collapsed .rounded-box {
  height: 240px;
}
.map-container > .sidebar-column.collapsed .rounded-box * {
  display: none;
}
.map-container > .sidebar-column.collapsed .rounded-box h4 {
  display: block;
  height: 1em;
  width: 200px;
  position: absolute;
  top: 0;
  left: 10px;
  transform-origin: left top;
  transform: rotate(270deg) translateX(-100%);
}

#beheereenheid-list .rounded-box-item {
  overflow: hidden;
  padding: 0;
}
#beheereenheid-list .table {
  margin: 0;
  font-size: 12px;
}
#beheereenheid-list .table td {
  vertical-align: middle;
}
#beheereenheid-list .table thead {
  background: white;
}
#beheereenheid-list .table thead .form-control {
  border-radius: 5px;
  padding: 0 5px;
}
#beheereenheid-list .table thead tr th {
  vertical-align: bottom;
  text-align: center;
}
#beheereenheid-list .table tbody tr td:first-child {
  padding-left: 15px;
}
#beheereenheid-list .table tbody tr td:last-child {
  padding-right: 15px;
}

#beheereenheid-form-box .rounded-box-item {
  position: relative;
  max-height: 800px;
}

.rounded-box .loader {
  display: none;
}

.rounded-box.loading * {
  display: none;
}
.rounded-box.loading h4, .rounded-box.loading .loader {
  display: block;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-loading::before {
  width: 15px;
  height: 15px;
  margin: -2px 7px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  content: "";
  border-radius: 100%;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load 0.5s infinite linear;
  animation: load 0.5s infinite linear;
}

.btn-secondary-outline.btn-loading:before {
  border-top-color: rgba(0, 94, 165, 0.2);
  border-right-color: rgba(0, 94, 165, 0.2);
  border-bottom-color: rgba(0, 94, 165, 0.2);
  border-left-color: rgb(0, 94, 165);
}

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