/*
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;
  }
}
.provincie-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.provincie-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 10px;
  min-height: 24px;
  border-radius: 12px;
  border: 1.5px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: padding 0.18s ease, gap 0.18s ease;
}
.provincie-pill--compact {
  padding: 2px;
  min-width: 28px;
  gap: 0;
}
.provincie-pill--compact:hover, .provincie-pill--compact:focus-visible {
  padding: 2px 10px 2px 4px;
  gap: 6px;
}
.provincie-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.provincie-pill.has-flag::before, .provincie-pill.has-code::before {
  display: none;
}
.provincie-pill .provincie-flag {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 2px;
}
.provincie-pill .provincie-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 16px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.provincie-pill .provincie-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.18s ease, opacity 0.12s ease;
}
.provincie-pill:hover .provincie-label, .provincie-pill:focus-visible .provincie-label {
  max-width: 140px;
  opacity: 1;
}
.provincie-pill:hover, .provincie-pill:focus-visible {
  text-decoration: none;
  filter: brightness(0.92);
}
.provincie-pill:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.provincie-pill.active {
  box-shadow: 0 0 0 2px currentColor;
}

.provincie-pill--drenthe {
  color: #7E5A3C;
  background-color: rgba(126, 90, 60, 0.12);
}

.provincie-pill--friesland {
  color: #1F6FB4;
  background-color: rgba(31, 111, 180, 0.12);
}

.provincie-pill--groningen {
  color: #A03939;
  background-color: rgba(160, 57, 57, 0.12);
}

.provincie-pill--overijssel {
  color: #6E8B3D;
  background-color: rgba(110, 139, 61, 0.12);
}

.provincie-pill--flevoland {
  color: #0E8A8C;
  background-color: rgba(14, 138, 140, 0.12);
}

.provincie-pill--gelderland {
  color: #A65C00;
  background-color: rgba(166, 92, 0, 0.12);
}

.provincie-pill--utrecht {
  color: #B33A8B;
  background-color: rgba(179, 58, 139, 0.12);
}

.provincie-pill--nh {
  color: #C77700;
  background-color: rgba(199, 119, 0, 0.12);
}

.provincie-pill--zh {
  color: #C2185B;
  background-color: rgba(194, 24, 91, 0.12);
}

.provincie-pill--zeeland {
  color: #1565C0;
  background-color: rgba(21, 101, 192, 0.12);
}

.provincie-pill--nb {
  color: #8E1A1A;
  background-color: rgba(142, 26, 26, 0.12);
}

.provincie-pill--limburg {
  color: #5E4FA2;
  background-color: rgba(94, 79, 162, 0.12);
}

.provincie-pill--landelijk {
  color: #5A6B7B;
  background-color: rgba(90, 107, 123, 0.12);
}

.provincie-pill--more {
  color: #555;
  background-color: #f0f0f0;
  border-color: #999;
  cursor: help;
}
.provincie-pill--more::before {
  display: none;
}

.provincie-empty {
  color: #aaa;
  font-style: italic;
}

@media (max-width: 600px) {
  .provincie-pill {
    min-height: 32px;
    padding: 4px 12px;
  }
}
.status-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.status-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, 0.12);
}
.status-light--active {
  background: #2E7D32;
}
.status-light--closed {
  background: #1565C0;
}
.status-light--pending {
  background: #E08600;
}

.status-label {
  font-weight: 600;
  font-size: 13px;
}
.status-label--active {
  color: #2E7D32;
}
.status-label--closed {
  color: #1565C0;
}
.status-label--pending {
  color: #E08600;
}

.status-counts {
  color: #666;
  font-size: 12px;
  margin-left: 2px;
}

.aanvraag-toggle {
  background: none;
  border: none;
  padding: 0 6px;
  cursor: pointer;
  color: #1565C0;
}
.aanvraag-toggle i {
  transition: transform 0.15s ease;
}
.aanvraag-toggle[aria-expanded=true] i {
  transform: rotate(90deg);
}

.aanvraag-detail-cell {
  background: #fafbfc;
  padding: 12px 16px;
}

.aanvraag-detail__loading {
  color: #888;
  font-style: italic;
  padding: 8px 0;
}

.be-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.be-mini {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #e3e7eb;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  min-width: 200px;
  flex: 1 1 200px;
  max-width: 300px;
  font: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.be-mini:hover, .be-mini:focus-visible {
  border-color: #1565C0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.be-mini__shape {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
  background: #f4f6f8;
}
.be-mini__body {
  line-height: 1.35;
  flex: 1 1 auto;
  min-width: 0;
}
.be-mini__code {
  font-weight: 700;
  display: block;
}
.be-mini__meta {
  color: #667;
  font-size: 12px;
}
.be-mini[aria-expanded=true] {
  border-color: #1565C0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.be-group {
  margin-bottom: 12px;
}
.be-group__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  list-style: none;
  background: #eef2f6;
}
.be-group__summary::-webkit-details-marker {
  display: none;
}
.be-group__summary:hover {
  background: #e3e9ef;
}
.be-group__summary::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  font-size: 11px;
  color: #99a;
  margin-right: 6px;
  transition: transform 0.15s ease;
}
.be-group[open] > .be-group__summary::before {
  transform: rotate(90deg);
}
.be-group__name {
  font-weight: 600;
  flex: 1 1 auto;
}
.be-group__meta {
  display: flex;
  gap: 12px;
  color: #667;
  font-size: 12px;
  white-space: nowrap;
}
.be-group__count {
  font-weight: 600;
}
.be-group > .be-mini-list {
  margin: 10px 0 4px;
}

.be-popover {
  position: absolute;
  z-index: 1500;
  width: 380px;
  max-width: calc(100vw - 16px);
  background: #fff;
  border: 1px solid #cfd8e0;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.be-popover[hidden] {
  display: none;
}
.be-popover__close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  border: none;
  background: none;
  cursor: pointer;
  color: #889;
  font-size: 15px;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 6px;
}
.be-popover__close:hover {
  background: #f0f3f6;
  color: #334;
}

.be-card {
  border-left: 3px solid #1565C0;
  border-radius: 10px;
  background: #fff;
  padding: 14px 34px 14px 16px;
}
.be-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.be-card__title {
  line-height: 1.35;
}
.be-card__number {
  font-weight: 700;
  display: block;
}
.be-card__beheer {
  color: #556;
  font-size: 13px;
}
.be-card__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.be-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px 16px;
  margin: 0;
}
.be-card__item dt {
  color: #889;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.be-card__item dd {
  margin: 2px 0 0;
  font-weight: 600;
}
.be-card__toeslagen {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #e0e5ea;
}
.be-card__toeslagen-label {
  color: #889;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.be-card__toeslagen-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.be-card__toeslagen-list li {
  font-size: 12px;
  color: #445;
}
.be-card__toeslagen-list i {
  color: #2e7d32;
  margin-right: 6px;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: "Mukta", Helvetica, Arial, sans-serif;
  color: black;
}

body:has(> .app-main) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:has(> .app-main) > header,
body:has(> .app-main) > footer.footer {
  flex: 0 0 auto;
}
body:has(> .app-main) > .app-main {
  flex: 1 0 auto;
}

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;
}

h2, h3, h4 {
  font-weight: 800;
}

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

h4.formheading {
  color: #ACBF74;
  font-size: 18px;
  font-weight: 800;
  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: #ACBF74;
}

p.success a {
  color: #ACBF74;
  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: #ACBF74;
  padding-bottom: 0px;
  margin-bottom: -10px !important;
}

a {
  color: #488CC5;
  text-decoration: underline;
}

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

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

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

i.lg-link {
  background: #ACBF74;
  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;
}

.container {
  max-width: 1440px;
}

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

.nav-tabs {
  border-radius: 0;
  background-color: #F0F6FA;
  color: #6490C8;
  margin: 0 15px;
}

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

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

body .nav.nav-tabs {
  border-bottom: none;
}

body .nav.nav-tabs > li a {
  padding: 12px 24px;
}

body .nav.nav-tabs > li a:hover {
  background-color: #6490C8;
  color: white;
  border: none;
  outline: none;
  text-decoration: underline;
}

.nav-tabs > li.active {
  background-color: #6490C8;
  color: white;
  border: none;
}

body .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background-color: #6490C8;
  color: white;
  border: none;
}

.bottom-right-link {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 12px;
  text-decoration: underline;
  background-color: #488CC5;
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 10px;
  transition-duration: 0.2s;
}
.bottom-right-link:hover {
  background-color: #ACBF74;
  color: white;
  transition-duration: 0.2s;
}

.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: #ACBF74;
  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 {
  color: #25539E;
  font-weight: bold;
}

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

/*** 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: #ACBF74;
}

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

.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: #ACBF74;
  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: #ACBF74;
}

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

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

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

.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: #488CC5;
  border-radius: 5px;
  text-decoration: none;
}

.btn-submit {
  border-radius: 5px;
  color: #fff;
  background: #ACBF74;
  text-align: left;
  padding: 10px 19px;
  text-decoration: none;
}
.btn-submit:hover {
  background-color: #25539E;
  color: white;
}

.btn-secondary {
  border-radius: 5px;
  color: #ACBF74;
  background: #fff;
  border: 1px solid #ACBF74;
  text-align: left;
  padding: 9px 18px;
  text-decoration: none;
}
.btn-secondary:hover {
  background-color: #ACBF74;
  color: #fff;
}

.btn-switch-to {
  border-radius: 999px;
  background-color: #F5F7EB;
  border: 1px solid #ACBF74;
  color: black;
  text-decoration: none;
}
.btn-switch-to:hover {
  background-color: #ACBF74;
  color: white;
  transition-duration: 0.2s;
}

.btn-cancel {
  /*width: 100%;*/
  border-radius: 5px;
  color: #fff;
  background: #d41116;
  text-decoration: none;
  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: #ACBF74;
}

.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: #ACBF74;
}

td.afgewezen {
  color: #d41116;
}

/* 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;
}

.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;
}

/* Beheereenheden panel links van one-map */
.om-c-sidebar-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  max-width: 40%;
  height: 90%;
  background-color: transparent;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  /* Ingeklapt */
  /* Toggle knop */
}
.om-c-sidebar-list .rounded-box {
  border-radius: 15px;
  height: auto;
  padding: 20px;
  max-height: none;
}
.om-c-sidebar-list .rounded-box h4 {
  margin-bottom: 15px;
  padding-right: 30px;
  position: sticky;
  top: 0;
  background-color: #E6ECF2;
  z-index: 1;
  padding-top: 10px;
}
.om-c-sidebar-list .rounded-box .rounded-box-item {
  max-height: none;
  overflow-y: visible;
}
.om-c-sidebar-list.collapsed {
  transform: translateX(calc(-100% + 30px));
  top: 100px;
  height: 180px;
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  opacity: 0.8;
  pointer-events: auto;
}
.om-c-sidebar-list.collapsed .rounded-box {
  display: none;
}
.om-c-sidebar-list.collapsed .rounded-box h4 {
  display: none;
}
.om-c-sidebar-list.collapsed .rounded-box .rounded-box-item {
  display: none;
}
.om-c-sidebar-list.collapsed .om-c-sidebar-list-toggle {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0;
  right: 8px;
}
.om-c-sidebar-list .om-c-sidebar-list-toggle {
  position: absolute;
  top: 75px;
  right: 1px;
  width: 28px;
  height: 100px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  transition: background-color 0.2s ease;
}
.om-c-sidebar-list .om-c-sidebar-list-toggle:hover {
  /*
   background-color: darken($green, 10%);
   color: white; */
}

/* Details beheereenheden panel rechts van one-map */
.om-c-sidebar-form {
  position: absolute;
  top: 0;
  border-radius: 15px;
  right: 0;
  width: 500px;
  max-width: 40%;
  height: 90%;
  background-color: transparent;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow-y: auto;
  /*  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); */
  pointer-events: auto;
  /* Ingeklapt */
  /* Toggle knop */
}
.om-c-sidebar-form .rounded-box {
  border-radius: 15px;
  top: 0;
  height: auto;
  padding: 20px;
  max-height: none;
}
.om-c-sidebar-form .rounded-box h4 {
  margin-bottom: 15px;
  /*padding-right: 30px; */
  position: sticky;
  top: 0;
  background-color: #E6ECF2;
  z-index: 1;
  padding-top: 10px;
}
.om-c-sidebar-form .rounded-box .rounded-box-item {
  max-height: none;
  overflow-y: visible;
}
.om-c-sidebar-form.collapsed {
  transform: translateX(calc(100% - 35px));
  top: 100px;
  height: 180px;
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  opacity: 0.8;
  pointer-events: auto;
}
.om-c-sidebar-form.collapsed .rounded-box {
  display: none;
}
.om-c-sidebar-form.collapsed .rounded-box h4 {
  display: none;
}
.om-c-sidebar-form.collapsed .rounded-box .rounded-box-item {
  display: none;
}
.om-c-sidebar-form.collapsed .om-c-sidebar-form-toggle {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0;
  left: 8px;
}
.om-c-sidebar-form .om-c-sidebar-form-toggle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 100px;
  background-color: #fff;
  border: none;
  padding: 0;
  border-radius: 5px 0 0 5px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
  cursor: pointer;
  left: 0;
  top: 75px;
  z-index: 11;
  transition: background-color 0.2s ease;
}
.om-c-sidebar-form .om-c-sidebar-form-toggle:hover {
  /* background-color: darken($green, 10%);
  color: white; */
}

/* 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 #488CC5;
  -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;
  }
  body.fullscreen .om-c-sidebar-form {
    top: 10px;
    height: calc(100vh - 20px);
    max-height: none;
    position: fixed;
  }
  body.fullscreen .om-c-sidebar-form.collapsed {
    transform: translateX(calc(100% - 30px));
    top: 75px;
    height: 100px;
    position: absolute;
  }
  body.fullscreen .om-c-sidebar-list {
    top: 10px;
    height: calc(100vh - 20px);
    max-height: none;
    position: fixed;
  }
  body.fullscreen .om-c-sidebar-list.collapsed {
    transform: translateX(calc(-100% + 30px));
    top: 75px;
    height: 100px;
    position: absolute;
  }
  body.fullscreen .sidebar-column.collapsed {
    width: 20px;
    height: 200px;
  }
  body.fullscreen #beheereenheid-list.collapsed {
    width: 20px;
    height: 200px;
  }
  body.fullscreen .onemap-container {
    height: calc(100vh - 100px);
  }
  body.fullscreen .onemap-instance {
    height: 100% !important;
  }
}
/* 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: 30%;
  max-width: 450px;
  margin-left: 15px;
  position: relative;
  transition: all 0.5s ease;
}
.map-container > .sidebar-column.sidebar-column-sketch {
  width: 40%;
  max-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;
}

#beheereenheid-list {
  transition: all 0.5s ease;
}
#beheereenheid-list h4 {
  /*  cursor: pointer; */
}
#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-list.collapsed {
  width: 20px;
  height: 200px;
}
#beheereenheid-list.collapsed .rounded-box-item {
  display: none;
}

#beheereenheid-form-box .rounded-box-item {
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

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

.rounded-box.loading {
  position: relative;
}
.rounded-box.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2em;
  margin-left: -2em;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border-top: 0.3em solid rgba(255, 255, 255, 0.2);
  border-right: 0.3em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.3em solid rgba(255, 255, 255, 0.2);
  border-left: 0.3em solid #488CC5;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  z-index: 1000;
}
.rounded-box.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 999;
  pointer-events: none;
}

@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);
}

.signin a {
  color: #488CC5;
  text-decoration: underline;
}
.signin .block-content {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 30px;
}
.signin .block-content .logo-container {
  width: 100%;
  display: flex;
  justify-content: end;
}
.signin .block-content .logo-container img {
  width: 110px;
}
.signin .login-form-container {
  margin: 80px 0;
}
.signin .login-form-container h3 {
  margin-bottom: 20px;
}
.signin .login-form-container input {
  width: 100%;
  padding: 24px 20px;
}
.signin .login-form-container .help-block {
  margin: 0;
}
.signin .login-form-container .col-sm-8 {
  width: 100%;
}
.signin .login-form-container #LoginForm {
  max-width: 100%;
}
.signin .login-form-container #LoginForm .btn-submit {
  background-color: #488CC5;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  padding: 14px 32px;
}
.signin .login-form-container #LoginForm .btn-success {
  background-color: #488CC5;
  margin-bottom: 10px;
  width: 100%;
  text-align: left !important;
}
.signin .faq {
  width: 100%;
}
.signin .faq p {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 0;
  color: black;
  font-weight: 600;
}
.signin .faq i {
  color: #488CC5;
}
.signin .contact p {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 12px;
}
.signin .contact i {
  font-size: 18px;
  color: #488CC5;
}

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

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

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

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

.impersonation-banner {
  background: #ffc107;
  color: #1a1a1a;
  padding: 10px 0;
  border-bottom: 1px solid #c69500;
  font-weight: 600;
  font-size: 14px;
}
.impersonation-banner i.fa-circle-info {
  margin-right: 8px;
}
.impersonation-banner strong {
  font-weight: 800;
}
.impersonation-banner .impersonation-banner__btn {
  background: #1a1a1a;
  color: #ffc107;
  border: 1px solid #1a1a1a;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.impersonation-banner .impersonation-banner__btn i {
  margin-right: 6px;
}
.impersonation-banner .impersonation-banner__btn:hover, .impersonation-banner .impersonation-banner__btn:focus-visible {
  background: #000;
  color: #fff;
  border-color: #000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .impersonation-banner .text-right {
    text-align: left;
    margin-top: 8px;
  }
}
.impersonation-banner.impersonation-banner--external {
  background: #0e7490;
  color: #ffffff;
  border-bottom-color: #075066;
}
.impersonation-banner.impersonation-banner--external .impersonation-banner__btn {
  background: #ffffff;
  color: #0e7490;
  border-color: #ffffff;
}
.impersonation-banner.impersonation-banner--external .impersonation-banner__btn:hover, .impersonation-banner.impersonation-banner--external .impersonation-banner__btn:focus-visible {
  background: #e6f6fb;
  color: #075066;
  border-color: #e6f6fb;
}

.impersonation-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #ffc107;
  z-index: 1050;
  pointer-events: none;
}

.impersonation-strip--external {
  background: #0e7490;
}

.menu > li.imp-pill-item {
  position: relative;
  width: 62px;
  vertical-align: middle;
}

.imp-pill {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: #ffc107;
  border: 1px solid #e0a800;
  border-radius: 999px;
  padding: 5px 11px;
  color: #1a1a1a;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.imp-pill--external {
  background: #0e7490;
  border-color: #075066;
  color: #fff;
}

.imp-pill:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 1px;
}

.imp-pill__mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}

.imp-pill__mini .imp-pill__ic--action {
  opacity: 0.8;
}

.imp-pill__full {
  display: none;
  align-items: center;
  gap: 12px;
}

.imp-pill__ctx {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.imp-pill__lead {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.imp-pill__lead strong {
  font-weight: 800;
}

.imp-pill__via {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

.imp-pill__sep {
  font-size: 11px;
  opacity: 0.55;
}

.imp-pill__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.imp-pill__btn:hover, .imp-pill__btn:focus {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.imp-pill--external .imp-pill__btn {
  background: #fff;
  color: #0e7490;
}
.imp-pill--external .imp-pill__btn:hover, .imp-pill--external .imp-pill__btn:focus {
  background: #e6f6fb;
  color: #075066;
}

.imp-pill:hover, .imp-pill:focus-within, .imp-pill[aria-expanded=true] {
  z-index: 60;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.imp-pill:hover .imp-pill__mini,
.imp-pill:focus-within .imp-pill__mini,
.imp-pill[aria-expanded=true] .imp-pill__mini {
  display: none;
}

.imp-pill:hover .imp-pill__full,
.imp-pill:focus-within .imp-pill__full,
.imp-pill[aria-expanded=true] .imp-pill__full {
  display: inline-flex;
}

@media (max-width: 767px) {
  .menu > li.imp-pill-item {
    width: auto;
  }
  .imp-pill {
    position: static;
    transform: none;
  }
  .imp-pill__full {
    flex-wrap: wrap;
  }
}
header {
  padding: 20px 0;
}
header .logo-container img {
  width: 110px;
}
header .site-user-info {
  display: flex;
  width: 100%;
  justify-content: end;
  gap: 20px;
}
header .menu {
  padding: 15px;
  float: right;
  margin-bottom: 0;
}
header .menu > li {
  list-style: none;
  display: inline-block;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
  color: #777777;
  font-weight: bold;
}
header .menu > li > a {
  color: #777777;
  text-decoration: none;
}
header .menu > li:not(:last-child) {
  border-right: 1px solid #777777;
}
header .menu > li:last-child {
  padding-right: 0;
}
header .menu > li.active > a {
  opacity: 50%;
}

.dashboard.container {
  max-width: 1600px;
}
.dashboard .block {
  border-radius: 20px;
  margin: 30px 0;
}
.dashboard .block.switch-to {
  background-color: #F0F6FA;
  padding: 24px;
}
.dashboard .primary-table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 10px 0;
}
.dashboard .primary-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.dashboard .primary-table tbody tr:nth-child(odd) {
  background-color: #F0F6FA;
}
.dashboard .primary-table a {
  color: #683C3A;
  text-decoration: none;
}
.dashboard .primary-table thead th {
  color: #683C3A;
}
.dashboard .bosgroep-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  margin-top: 20px;
}
.dashboard .bosgroep-container .img-container {
  background-color: white;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .bosgroep-container .img-container img {
  width: 35px;
  height: 35px;
}
.dashboard .bosgroep-container .link-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard .dashboard-switch {
  margin-bottom: 20px;
}
.dashboard .dashboard-switch .btn-group .btn.btn-default {
  background-color: #F0F6FA;
  color: #6490C8;
  text-decoration: none;
}
.dashboard .dashboard-switch .btn-group a {
  border-radius: 0;
}

.participant-dashboard {
  margin-top: 40px;
}
.participant-dashboard h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.participant-dashboard .my-details, .participant-dashboard .messages, .participant-dashboard .units, .participant-dashboard .documents {
  background-color: #F0F6FA;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}
.participant-dashboard .my-details .block-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
}
.participant-dashboard .my-details .block-content .my_details_name {
  color: #683C3A;
  font-weight: bold;
  font-size: 14px;
}
.participant-dashboard .actions {
  background-color: #F8F2F2;
  border-radius: 10px;
  padding: 24px 24px 52px 24px;
  margin-bottom: 30px;
  position: relative;
}
.participant-dashboard .messages {
  padding: 24px 24px 52px 24px;
  flex: 1;
}
.participant-dashboard .messages .doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.participant-dashboard .messages .doc-link .doc-link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
  border-radius: 50%;
  background-color: #488CC5;
  color: white;
  font-size: 10px;
}
.participant-dashboard .messages .doc-link .doc-link__icon i {
  margin-bottom: 2px;
  margin-left: 1px;
}
.participant-dashboard .requests {
  position: relative;
  padding-bottom: 24px;
}
.participant-dashboard .requests .title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.participant-dashboard .requests .table-responsive {
  margin-bottom: 40px;
}

.footer {
  padding: 10px 0;
  margin: auto 0;
  background-color: white;
}

header .logo-container {
  display: flex;
  align-items: end;
  gap: 30px;
}

a.link-block {
  text-decoration: none !important;
  background-color: #F0F6FA;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition-duration: 0.2s;
}
a.link-block:hover {
  color: white !important;
  background-color: #ACBF74 !important;
  transition-duration: 0.2s;
}
a.link-block:hover h3 {
  color: white !important;
  transition-duration: 0.2s;
}
a.link-block .title-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
a.link-block .title-container h3 {
  margin: 0;
}

.row.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}

.row.row-eq-height > [class*=col-] {
  display: flex;
  flex-direction: column;
}

.primary-table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 10px 0;
}
.primary-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.primary-table tbody tr:nth-child(odd) {
  background-color: #F0F6FA;
}
.primary-table a {
  color: #683C3A;
  text-decoration: none;
}
.primary-table thead th {
  color: #683C3A;
}
.primary-table td {
  font-weight: 400;
  color: black;
}
.primary-table a {
  font-weight: 500;
  color: black;
}

.title-back-container {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin: 20px 0;
}
.title-back-container h3 {
  margin: 0;
}

body.beheereenheid-index .title-back-container {
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.block.form {
  background-color: #F0F6FA;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 30px;
}
.block.form .document-form form {
  display: flex;
  flex-direction: column;
}

.form-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dz-native-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  margin-bottom: 16px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px dashed #9ac0df;
  border-radius: 10px;
  color: #25539E;
  transition: border-color 0.15s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.dropzone:hover {
  border-color: #488CC5;
  background: #F0F6FA;
}
.dropzone:focus-visible {
  outline: none;
  border-color: #488CC5;
  box-shadow: 0 0 0 3px rgba(72, 140, 197, 0.35);
}
.dropzone.is-dragover {
  border-color: #ACBF74;
  border-style: solid;
  background: #f5f7ee;
  box-shadow: 0 0 0 3px rgba(172, 191, 116, 0.25);
}
.dropzone__icon {
  width: 40px;
  height: 40px;
  color: #488CC5;
}
.dropzone__primary {
  margin: 0;
  font-weight: 600;
}
.dropzone__browse {
  color: #488CC5;
  text-decoration: underline;
}
.dropzone__hint {
  margin: 0;
  font-size: 13px;
  color: #7c98c5;
}
.dropzone__file {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  text-align: left;
  background: #E6ECF2;
  border-radius: 8px;
}
.dropzone__file-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #25539E;
}
.dropzone__file-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}
.dropzone__file-name {
  font-weight: 600;
  color: #25539E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone__file-size {
  font-size: 12px;
  color: #87a0ca;
}
.dropzone__remove {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #25539E;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}
.dropzone__remove svg {
  width: 18px;
  height: 18px;
}
.dropzone__remove:hover {
  background: rgba(37, 83, 158, 0.08);
  color: #c0392b;
}
.dropzone__remove:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(72, 140, 197, 0.35);
}
.dropzone.has-file {
  cursor: default;
  border-style: solid;
  border-color: #E6ECF2;
  background: #fff;
}
.dropzone.has-file .dropzone__idle {
  display: none;
}
.dropzone:not(.has-file) .dropzone__file {
  display: none;
}

.filter-form .filter-form__fields {
  display: flex;
  gap: 20px;
  width: 100%;
}
.filter-form .filter-form__fields div {
  margin-bottom: 0;
}
.filter-form .filter-form__fields .filter-field--grow {
  flex-grow: 1;
}
.filter-form .filter-form__fields .filter-field--narrow {
  flex-grow: 0.3;
}
.filter-form .filter-form__fields .filter-field--narrow select {
  min-height: 40px;
}

.ticket-view strong {
  color: #683C3A;
}
.ticket-view .ticket-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ticket-view .ticket-content-container .content-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.ticket-view .ticket-content-container .content {
  display: flex;
  flex-direction: column;
}
.ticket-view .ticket-content-container .doc-link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
  border-radius: 50%;
  background-color: #488CC5;
  color: white;
  font-size: 10px;
}
.ticket-view .ticket-content-container .doc-link__icon i {
  margin-bottom: 2px;
  margin-left: 1px;
}
.ticket-view .ticket-reply-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ticket-view .ticket-reply-container .ticket-reply {
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ticket-view .ticket-reply-container .ticket-reply:not(:last-child) {
  margin-bottom: 14px;
}
.ticket-view .ticket-reply-container .ticket-reply .content-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.ticket-view .ticket-reply-container .ticket-reply .content {
  display: flex;
  flex-direction: column;
}
.ticket-view .ticket-reply-form textarea {
  border-radius: 12px;
}
.ticket-view .ticket-reply-form .form-group {
  margin-left: 0;
  margin-right: 0;
}

.request-view h4, .request-view .col-md-12 {
  margin-bottom: 20px;
}
.request-view .request-information-container {
  background-color: #F5F7EB;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .request-view .request-information-container {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
}
.request-view .request-information-container strong {
  color: #683C3A;
}
.request-view .request-information-container .field-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus a:hover, a:focus {
  outline: none;
}

#company_form {
  margin-bottom: 40px;
}

/* ==========================================================================
   Company manage screens (profile / participant / agent)
   Used by views/company/{profile,participant,agent}.php + _section_nav.php.
   ========================================================================== */
.company-manage-page {
  max-width: 920px;
}
.company-manage-page .block {
  background: #fff;
  border: 1px solid #E6ECF2;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  min-height: 480px;
}
.company-manage-page .control-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 13px;
}
.company-manage-page .form-control {
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  height: auto;
}
.company-manage-page .form-control:focus {
  border-color: #488CC5;
  box-shadow: 0 0 0 3px rgba(72, 140, 197, 0.15);
}
.company-manage-page .form-control[disabled],
.company-manage-page input[disabled],
.company-manage-page select[disabled] {
  background: #eef1f3;
  border-color: #eef1f3;
  color: #2c3e50;
  cursor: default;
  opacity: 1;
  -webkit-text-fill-color: #2c3e50;
}

.company-intro {
  background: #E6ECF2;
  border: 1px solid #d2dde8;
  color: #25539E;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 0 20px;
}

.bosgroep-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bosgroep-links .link-wrapper {
  display: block;
  width: 100%;
}
.bosgroep-links .link-wrapper.current .current-portal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
  background: #25539E;
  color: #fff;
  border: 1px solid #25539E;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}
.bosgroep-links .link-wrapper.current .current-portal i {
  flex-shrink: 0;
}
.bosgroep-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #25539E;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bosgroep-links a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  color: #488CC5;
  flex-shrink: 0;
}
.bosgroep-links a:hover, .bosgroep-links a:focus-visible {
  background: #ACBF74;
  color: #fff;
  text-decoration: none;
  border-color: #ACBF74;
}
.bosgroep-links a:hover::after, .bosgroep-links a:focus-visible::after {
  color: #fff;
}
.bosgroep-links a:focus-visible {
  outline: 2px solid #25539E;
  outline-offset: 2px;
}

.company-form-actions {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid #E6ECF2;
}
.company-form-actions .btn {
  padding: 8px 22px;
  margin-right: 6px;
}

.company-section-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 2px solid #E6ECF2;
  line-height: 1;
}
.company-section-nav > li > a {
  display: block;
  padding: 9px 14px;
  color: #488CC5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  border-bottom: 0;
  background: #f4f6f8;
  border-radius: 6px 6px 0 0;
  margin-bottom: -2px;
}
.company-section-nav > li > a:hover {
  background: #e9eef2;
  color: #25539E;
  text-decoration: none;
}
.company-section-nav > li.active > a,
.company-section-nav > li.active > a:focus,
.company-section-nav > li.active > a:hover {
  background: #fff;
  color: #25539E;
  border-color: #E6ECF2;
  border-bottom: 2px solid #fff;
}
.company-section-nav > li > a:focus-visible {
  outline: 2px solid #ACBF74;
  outline-offset: -2px;
}

@media (max-width: 600px) {
  .company-section-nav > li > a {
    padding: 8px 12px;
    font-size: 13px;
  }
}
.vza-page__head {
  margin-bottom: 12px;
}

.vza-page__sub {
  margin-bottom: 10px;
}

.vza-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  background: #F5F7EB;
  border-radius: 10px;
  padding: 16px 26px;
  margin: 18px 0;
}
.vza-summary .vza-summary__stat {
  display: flex;
  flex-direction: column;
}
.vza-summary .vza-summary__value {
  font-size: 22px;
  font-weight: 800;
  color: #25539E;
  line-height: 1.1;
}
.vza-summary .vza-summary__label {
  font-size: 12px;
  color: #606060;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.vza-summary .vza-summary__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vza-summary .vza-summary__actions .printer-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vza-summary.vza-summary--compact {
  margin: 10px 0 12px;
  padding: 10px 18px;
  gap: 24px;
}
@media (max-width: 768px) {
  .vza-summary {
    gap: 18px;
  }
  .vza-summary .vza-summary__actions {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}

.map-container--vza {
  display: block;
  margin-top: 0;
}
.map-container--vza > .fullwidth-column {
  width: 100%;
  position: relative;
}
.map-container--vza .onemap-container {
  height: min(100vh - 220px, 78vh);
  min-height: 480px;
}
.map-container--vza .onemap-instance {
  height: 100% !important;
}
@media (max-width: 991px) {
  .map-container--vza .onemap-container {
    height: 62vh;
    min-height: 380px;
  }
}

.vza-panel {
  position: absolute;
  top: 64px;
  right: 44px;
  bottom: 56px;
  width: 360px;
  max-width: calc(100% - 88px);
  z-index: 1000;
  display: flex;
  transition: transform 0.28s ease;
}
.vza-panel .vza-panel__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(37, 83, 158, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.vza-panel .vza-panel__head {
  padding: 12px 14px 8px;
  border-bottom: 1px solid #ddd;
  background: rgba(230, 236, 242, 0.6);
}
.vza-panel .vza-panel__head h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #25539E;
}
.vza-panel .vza-panel__head .vza-list__count {
  color: #606060;
  font-weight: 400;
}
.vza-panel .vza-panel__head .vza-filter {
  margin: 0;
}
.vza-panel .vza-panel__toggle {
  position: absolute;
  left: -28px;
  top: 96px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(37, 83, 158, 0.12);
  border-right: none;
  border-radius: 10px 0 0 10px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.12);
  color: #25539E;
  cursor: pointer;
}
.vza-panel .vza-panel__toggle i {
  transition: transform 0.28s ease;
}
.vza-panel.is-collapsed {
  transform: translateX(calc(100% + 44px));
}
.vza-panel.is-collapsed .vza-panel__toggle i {
  transform: rotate(180deg);
}
.vza-panel .vza-list__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 6px 10px 10px;
}
.vza-panel .vza-member {
  border-bottom: 1px solid #ddd;
}
.vza-panel .vza-member:last-child {
  border-bottom: none;
}
.vza-panel .vza-member > .vza-member__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  cursor: pointer;
  list-style: none;
  border-radius: 8px;
  font-size: 13px;
}
.vza-panel .vza-member > .vza-member__summary::-webkit-details-marker {
  display: none;
}
.vza-panel .vza-member > .vza-member__summary:hover {
  background: #E6ECF2;
}
.vza-panel .vza-member > .vza-member__summary::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: #488CC5;
  transition: transform 0.15s ease;
}
.vza-panel .vza-member[open] > .vza-member__summary::before {
  transform: rotate(90deg);
}
.vza-panel .vza-member .vza-member__name {
  font-weight: 600;
  flex: 1 1 auto;
}
.vza-panel .vza-member .vza-member__meta {
  color: #606060;
  font-size: 11px;
  white-space: nowrap;
  display: flex;
  gap: 8px;
  align-items: center;
}
.vza-panel .vza-member .vza-member__print {
  border: none;
  background: none;
  padding: 2px 5px;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #488CC5;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
}
.vza-panel .vza-member .vza-member__print:hover {
  background: #fff;
  color: #25539E;
}
.vza-panel .vza-member .vza-member__print:disabled {
  cursor: default;
}
.vza-panel .vza-member .vza-member__print.is-printing {
  animation: vza-pulse 1s ease-in-out infinite;
  color: #25539E;
}
.vza-panel .vza-be-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0 0 0 16px;
}
.vza-panel .vza-be {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  min-height: 34px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.vza-panel .vza-be:hover {
  background: #E6ECF2;
}
.vza-panel .vza-be:focus-visible {
  outline: 2px solid #ACBF74;
  outline-offset: -2px;
}
.vza-panel .vza-be.is-selected {
  background: #dae2c1;
  border-color: #ACBF74;
  font-weight: 600;
}
.vza-panel .vza-be .vza-be__code {
  flex: 1 1 auto;
}
.vza-panel .vza-be .vza-be__area {
  color: #606060;
  font-size: 11px;
  white-space: nowrap;
}
.vza-panel .vza-be .vza-be__print {
  border: none;
  background: none;
  padding: 2px 5px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #488CC5;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
}
.vza-panel .vza-be .vza-be__print:hover {
  background: #fff;
  color: #25539E;
}
.vza-panel .vza-be .vza-be__print:disabled {
  cursor: default;
}
.vza-panel .vza-be .vza-be__print.is-printing {
  animation: vza-pulse 1s ease-in-out infinite;
  color: #25539E;
}
.vza-panel .vza-empty {
  text-align: center;
  color: #606060;
  padding: 24px 14px;
}
.vza-panel .vza-empty i {
  font-size: 30px;
  color: #ddd;
  display: block;
  margin-bottom: 10px;
}
.vza-panel .vza-empty p {
  margin: 4px 0;
}

@keyframes vza-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 767px) {
  .map-container--vza .onemap-container {
    height: 56vh;
    min-height: 320px;
  }
  .vza-panel {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 12px;
    transform: none !important;
  }
  .vza-panel .vza-panel__toggle {
    display: none;
  }
  .vza-panel .vza-panel__inner {
    background: #fff;
  }
  .vza-panel .vza-list__body {
    max-height: 50vh;
  }
}
body.vza-map-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.vza-map-page > header,
body.vza-map-page > .impersonation-banner,
body.vza-map-page > footer.footer {
  flex: 0 0 auto;
}
body.vza-map-page header {
  padding: 8px 0;
}
body.vza-map-page header .logo-container img {
  width: 80px;
}
body.vza-map-page footer.footer {
  padding: 8px 0;
}
body.vza-map-page > .app-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.vza-map-page .vza-page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 92%;
  max-width: 2000px;
  align-self: center;
  padding-top: 8px;
  padding-bottom: 10px;
}
body.vza-map-page .vza-page__head {
  flex: 0 0 auto;
  margin-bottom: 6px;
}
body.vza-map-page .vza-page__head h3 {
  margin: 0 0 4px;
}
body.vza-map-page .vza-page__head .vza-page__sub {
  margin: 0 0 6px;
}
body.vza-map-page .vza-summary.vza-summary--compact {
  flex: 0 0 auto;
  margin: 4px 0 8px;
}
body.vza-map-page .map-container--vza {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}
body.vza-map-page .map-container--vza > .fullwidth-column {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}
body.vza-map-page .map-container--vza .onemap-container {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
}
body.vza-map-page .map-container--vza .onemap-instance {
  height: 100% !important;
}
@media (max-width: 991px) {
  body.vza-map-page {
    display: block;
    min-height: 100%;
  }
  body.vza-map-page > .app-main {
    display: block;
  }
  body.vza-map-page .vza-page {
    display: block;
  }
  body.vza-map-page .map-container--vza {
    display: block;
  }
  body.vza-map-page .map-container--vza > .fullwidth-column {
    display: block;
  }
  body.vza-map-page .map-container--vza .onemap-container {
    flex: none;
    height: 62vh;
    min-height: 380px;
  }
  body.vza-map-page header .logo-container img {
    width: 90px;
  }
}

.dashboard .my-details {
  background-color: #F0F6FA;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}
.dashboard .my-details .block-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 30px;
}
.dashboard .my-details .block-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}
.dashboard .my-details .block-content .my_details_name {
  color: #683C3A;
  font-weight: bold;
  font-size: 14px;
}

.dashboard .machtigingen {
  background-color: #F0F6FA;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 30px;
}
.dashboard .machtigingen .block-title {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin: 0 0 16px;
}
.dashboard .machtigingen .machtigingen-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.dashboard .machtigingen .machtigingen-tab {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
}
.dashboard .machtigingen .machtigingen-tab:hover {
  background: #f5f5f5;
}
.dashboard .machtigingen .machtigingen-tab.active {
  background: #25539E;
  border-color: #25539E;
  color: #fff;
  font-weight: 700;
}
.dashboard .machtigingen .machtigingen-tab.active:hover {
  background: #25539E;
}
.dashboard .machtigingen .machtigingen-tab.active .cnt {
  opacity: 0.85;
}
.dashboard .machtigingen .machtigingen-tab .cnt {
  opacity: 0.7;
  font-weight: 400;
  margin-left: 3px;
}
.dashboard .machtigingen .machtigingen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.dashboard .machtigingen .machtigingen-table thead th {
  text-align: left;
  color: #25539E;
  font-weight: 700;
  padding: 9px 12px;
  border-bottom: 2px solid #F0F6FA;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.dashboard .machtigingen .machtigingen-table tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid #eef1f4;
  vertical-align: middle;
}
.dashboard .machtigingen .machtigingen-table tbody tr:last-child td {
  border-bottom: none;
}
.dashboard .machtigingen .machtigingen-table td.lid {
  font-weight: 600;
  color: #222;
}
.dashboard .machtigingen .machtigingen-table .geldig {
  white-space: nowrap;
}
.dashboard .machtigingen .machtigingen-table .geldig .lbl {
  display: block;
  font-size: 11px;
  color: #959595;
}
.dashboard .machtigingen .machtigingen-table .actions-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.dashboard .machtigingen .machtigingen-table .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}
.dashboard .machtigingen .machtigingen-table .btn-default {
  background: #fff;
  border-color: #ccc;
  color: #333;
}
.dashboard .machtigingen .machtigingen-table .btn-default:hover, .dashboard .machtigingen .machtigingen-table .btn-default:focus {
  background: #f5f5f5;
  color: #333;
}
.dashboard .machtigingen .machtigingen-table .btn-danger {
  background: #fff;
  border-color: #d9b3b3;
  color: #a94442;
}
.dashboard .machtigingen .machtigingen-table .btn-danger:hover, .dashboard .machtigingen .machtigingen-table .btn-danger:focus {
  background: #f2dede;
  color: #a94442;
}
.dashboard .machtigingen .machtigingen-empty {
  background: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  color: #606060;
}
.dashboard .machtigingen .machtigingen-empty p {
  margin: 0 0 6px;
}
.dashboard .machtigingen .machtigingen-empty .muted {
  font-size: 12px;
  color: #959595;
  margin: 0;
}

body.dashboard-view header {
  padding: 12px 0;
}
body.dashboard-view .participant-dashboard {
  margin-top: 16px;
}
body.dashboard-view .participant-dashboard .my-details, body.dashboard-view .participant-dashboard .units, body.dashboard-view .participant-dashboard .messages {
  margin-bottom: 16px;
}
body.dashboard-view .participant-dashboard .link-block-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
body.dashboard-view .participant-dashboard .link-block-row a.link-block {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  padding: 18px 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
body.dashboard-view .participant-dashboard .link-block-row a.link-block .title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
body.dashboard-view .participant-dashboard .link-block-row a.link-block .title-container h3 {
  font-size: 14px;
  margin: 0;
  line-height: 1.2;
}
body.dashboard-view .participant-dashboard .link-block-row a.link-block .fa-arrow-right {
  display: none;
}
body.dashboard-view .participant-dashboard .actions, body.dashboard-view .participant-dashboard .messages {
  padding-bottom: 44px;
}
body.dashboard-view .participant-dashboard .block-content.hasimage {
  height: clamp(140px, 16vh, 209px);
}
@media (max-height: 920px) {
  body.dashboard-view header {
    padding: 8px 0;
  }
  body.dashboard-view .participant-dashboard {
    margin-top: 10px;
  }
  body.dashboard-view .participant-dashboard .link-block-row a.link-block {
    padding: 14px 8px;
  }
}
@media (max-width: 767px) {
  body.dashboard-view .participant-dashboard .link-block-row {
    flex-direction: column;
  }
  body.dashboard-view .participant-dashboard .link-block-row a.link-block {
    margin-bottom: 12px;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  body.dashboard-view .participant-dashboard .link-block-row a.link-block .title-container {
    flex-direction: row;
  }
  body.dashboard-view .participant-dashboard .link-block-row a.link-block .fa-arrow-right {
    display: inline-block;
  }
}

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