@media (min-width: 1024px) {
  html .menu-mobile,
  body .menu-mobile {
    display: none;
  }
}
@media (max-width: 1023px) {
  html .menu-dekstop,
  body .menu-dekstop {
    display: none;
  }
}
html .social,
body .social {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  padding-right: 35px;
}
html .social::before,
body .social::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s;
}
html .social.linkedin::before,
body .social.linkedin::before {
  background-image: url('/assets/images/linkedin.svg');
}
html .social.google::before,
body .social.google::before {
  background-image: url('/assets/images/google.svg');
}
html .social.microsoft::before,
body .social.microsoft::before {
  background-image: url('/assets/images/microsoft.svg');
}
html .auth-logo img,
body .auth-logo img {
  max-width: 150px;
  max-height: 100px;
}
html .vertical-align-middle,
body .vertical-align-middle {
  vertical-align: middle;
}
html .white-space-nowrap,
body .white-space-nowrap {
  white-space: nowrap;
}
html .table-sort.no-sorting::after,
body .table-sort.no-sorting::after {
  display: none;
}
html .table-align-items-left td:last-of-type,
body .table-align-items-left td:last-of-type {
  width: 100%;
}
html .bg-for_sale,
body .bg-for_sale,
html .bg-for_rent,
body .bg-for_rent {
  --tblr-bg-opacity: 1;
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-green-rgb), var(--tblr-text-opacity)) !important;
  background-color: rgba(var(--tblr-green-lt-rgb), var(--tblr-bg-opacity)) !important;
}
html .bg-allocation,
body .bg-allocation {
  --tblr-bg-opacity: 1;
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-orange-rgb), var(--tblr-text-opacity)) !important;
  background-color: rgba(var(--tblr-orange-lt-rgb), var(--tblr-bg-opacity)) !important;
}
html .bg-sold,
body .bg-sold,
html .bg-rented,
body .bg-rented {
  --tblr-bg-opacity: 1;
  --tblr-text-opacity: 1;
  color: rgba(var(--tblr-red-rgb), var(--tblr-text-opacity)) !important;
  background-color: rgba(var(--tblr-red-lt-rgb), var(--tblr-bg-opacity)) !important;
}
html .categories span:not(:last-child):after,
body .categories span:not(:last-child):after {
  content: ' | ';
}
html #preferences_table .sort-item:first-of-type .move-up,
body #preferences_table .sort-item:first-of-type .move-up {
  display: none !important;
}
html #preferences_table .sort-item:last-of-type .move-down,
body #preferences_table .sort-item:last-of-type .move-down {
  display: none !important;
}
html .table-tbody tr:last-of-type td,
body .table-tbody tr:last-of-type td {
  border-bottom: unset;
}
html .popup,
body .popup {
  display: none;
}
html .popup.visible,
body .popup.visible {
  display: flex;
}
html .popup.visible .popup-overlay,
body .popup.visible .popup-overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
html .popup .popup-inner-container,
body .popup .popup-inner-container {
  position: fixed;
  display: flex;
  width: 100vw;
  height: 100%;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 10000;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  html .popup .popup-inner-container,
  body .popup .popup-inner-container {
    max-width: 90%;
    max-height: 90%;
    height: 700px;
  }
}
@media (min-width: 1500px) {
  html .popup .popup-inner-container,
  body .popup .popup-inner-container {
    width: 1500px;
  }
}
html .popup .popup-inner-container .close,
body .popup .popup-inner-container .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
}
html .popup .popup-inner-container .close svg,
body .popup .popup-inner-container .close svg {
  fill: white;
}
@media (min-width: 1024px) {
  html .popup .popup-inner-container .close,
  body .popup .popup-inner-container .close {
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    top: 2rem;
    right: 2rem;
    background-color: rgba(0, 0, 0, 0.05);
  }
  html .popup .popup-inner-container .close svg,
  body .popup .popup-inner-container .close svg {
    fill: black;
  }
}
html .popup .popup-inner-container .close:hover,
body .popup .popup-inner-container .close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
html .popup .popup-inner-container .swiper-images,
body .popup .popup-inner-container .swiper-images {
  position: relative;
  overflow: hidden;
  flex: 1 0 100%;
  width: 100%;
  height: 40%;
  background-color: #fbfbfb;
}
@media (min-width: 1024px) {
  html .popup .popup-inner-container .swiper-images,
  body .popup .popup-inner-container .swiper-images {
    flex: 1 0 50%;
    width: 50%;
    height: 100%;
  }
}
html .popup .popup-inner-container .swiper-images img,
body .popup .popup-inner-container .swiper-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  html .popup .popup-inner-container .swiper-images img,
  body .popup .popup-inner-container .swiper-images img {
    object-fit: contain;
  }
}
html .popup .popup-inner-container .swiper-images .swiper-nav-buttons,
body .popup .popup-inner-container .swiper-images .swiper-nav-buttons {
  position: absolute;
  display: flex;
  gap: 20px;
  bottom: 1rem;
  padding-right: 1rem;
  width: 100%;
  justify-content: flex-end;
}
html .popup .popup-inner-container .swiper-images .swiper-nav-buttons .nav-buttons,
body .popup .popup-inner-container .swiper-images .swiper-nav-buttons .nav-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
  user-select: none;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
}
html .popup .popup-inner-container .swiper-images .swiper-nav-buttons .nav-buttons:hover,
body .popup .popup-inner-container .swiper-images .swiper-nav-buttons .nav-buttons:hover {
  filter: brightness(90%);
}
html .popup .popup-inner-container .swiper-images .disclaimer-text,
body .popup .popup-inner-container .swiper-images .disclaimer-text {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  z-index: 100;
}
html .popup .popup-inner-container .swiper-images .disclaimer-text span,
body .popup .popup-inner-container .swiper-images .disclaimer-text span {
  display: flex;
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  background-color: #52537c;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
html .popup .popup-inner-container .swiper-images .disclaimer-text span:hover,
body .popup .popup-inner-container .swiper-images .disclaimer-text span:hover {
  filter: brightness(90%);
}
html .popup .popup-inner-container .inner-container,
body .popup .popup-inner-container .inner-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 50%;
  overflow: hidden;
  height: 60%;
}
@media (min-width: 1024px) {
  html .popup .popup-inner-container .inner-container,
  body .popup .popup-inner-container .inner-container {
    padding: 0 2rem;
    height: 100%;
  }
}
html .popup .popup-inner-container .inner-container .top-container,
body .popup .popup-inner-container .inner-container .top-container {
  display: flex;
  flex-direction: column;
  flex: 1 0 100%;
  height: 100%;
  max-width: 100%;
  padding: 0 1rem;
}
@media (min-width: 700px) {
  html .popup .popup-inner-container .inner-container .top-container,
  body .popup .popup-inner-container .inner-container .top-container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  html .popup .popup-inner-container .inner-container .top-container,
  body .popup .popup-inner-container .inner-container .top-container {
    padding: 0;
  }
}
html .popup .popup-inner-container .inner-container .top-container .popup-header,
body .popup .popup-inner-container .inner-container .top-container .popup-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 1rem;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 9;
}
@media (min-width: 700px) {
  html .popup .popup-inner-container .inner-container .top-container .popup-header,
  body .popup .popup-inner-container .inner-container .top-container .popup-header {
    padding-top: 2rem;
  }
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .title,
body .popup .popup-inner-container .inner-container .top-container .popup-header .title {
  margin-bottom: 0;
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes,
body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes {
  display: flex;
  align-items: flex-start;
  background-color: #f2f2f2;
  margin: 0 -1rem;
  list-style: none;
  overflow-x: scroll;
  width: calc(100% + 2rem);
  margin-top: 10px !important;
  overflow-x: overlay;
}
@media (min-width: 700px) {
  html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes,
  body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes {
    margin: 0 -2rem;
    width: calc(100% + 4rem);
  }
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes::-webkit-scrollbar,
body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes::-webkit-scrollbar {
  display: none;
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes li,
body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes li {
  padding: 0.75rem 1rem;
  padding-right: 0.5rem !important;
}
@media (min-width: 700px) {
  html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes li:first-of-type,
  body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes li:first-of-type {
    padding: 0.75rem 2rem;
  }
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes .pane,
body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes .pane {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes .pane:hover,
body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes .pane:hover {
  opacity: 0.6;
}
html .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes .pane:not(.active),
body .popup .popup-inner-container .inner-container .top-container .popup-header .tab-panes .pane:not(.active) {
  color: black !important;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body,
body .popup .popup-inner-container .inner-container .top-container .popup-body {
  height: 100%;
  overflow-y: auto;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane.hidden,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane.hidden {
  display: none;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .title,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .title {
  font-weight: bold;
  font-size: 24px;
  margin: 0;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table {
  margin-top: 10px;
  margin-bottom: 0;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table:last-child,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table:last-child {
  padding-bottom: 1rem;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row {
  display: flex;
  padding: 0.2rem 0;
  border: unset !important;
  margin: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key,
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value {
  padding: 0;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key-title,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key-title {
  font-size: 20px;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status,
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key {
  font-family: 'Roboto';
  font-size: 16px;
  flex: 1;
}
@media (min-width: 700px) {
  html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status,
  body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status,
  html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key,
  body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .key {
    flex: 1 0 40%;
  }
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status {
  display: inline;
  padding: 4px 12px;
  border-radius: 20px;
  align-items: center;
  color: white;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="for_sale"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="for_sale"],
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="for_rent"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="for_rent"] {
  background-color: #52537c;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="assigned"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="assigned"],
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="allocation"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="allocation"] {
  background-color: #f3971c;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="sold"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="sold"],
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="signed"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="signed"],
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="rented"],
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .popup-status[data-status="rented"] {
  background-color: #a10000;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value {
  flex: 1;
  text-align: right;
  font-weight: bold;
}
@media (min-width: 700px) {
  html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value,
  body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value {
    flex: 1 0 60%;
    text-align: left;
  }
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value.house-type,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value.house-type {
  color: #52537c;
  text-decoration: underline;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel {
  height: 1.5rem;
  display: inline-block;
  position: relative;
  padding: 0 0.625rem;
  margin: 0 1.5rem 0 0;
  background-color: #999;
  text-transform: uppercase;
  font-weight: 500;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 100%;
  border-color: transparent transparent transparent #999;
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 0.75rem;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-a,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-a {
  background-color: #009342;
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-a::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-a::after {
  border-left-color: #009342;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-b,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-b {
  background-color: #1ba943;
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-b::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-b::after {
  border-left-color: #1ba943;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-c,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-c {
  background-color: #9ecf1b;
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-c::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-c::after {
  border-left-color: #9ecf1b;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-d,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-d {
  background-color: #f8f51c;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-d::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-d::after {
  border-left-color: #f8f51c;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-e,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-e {
  background-color: #f4b003;
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-e::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-e::after {
  border-left-color: #f4b003;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-f,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-f {
  background-color: #df6d14;
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-f::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-f::after {
  border-left-color: #df6d14;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-g,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-g {
  background-color: #db261d;
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-g::after,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .row .value .energielabel-g::after {
  border-left-color: #db261d;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .extra-fields,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .extra-fields {
  display: block !important;
  padding: 0 !important;
  position: relative;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .extra-fields .row,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .table .extra-fields .row {
  display: flex;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .description,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .description {
  padding: 1rem 0;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .btn-default:hover,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .btn-default:hover {
  color: white;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane #ligging,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane #ligging {
  margin-top: 2rem;
  border-radius: 20px;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane #ligging polygon,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane #ligging polygon {
  cursor: unset !important;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane #ligging polygon.active,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane #ligging polygon.active {
  stroke-width: 7.5px !important;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .maps,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .maps {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .maps .map-item,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .maps .map-item {
  display: flex;
  width: calc(100% / 4 - 1rem);
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 0.5rem;
  background-color: #f7f7f7;
  border-radius: 4px;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .maps .map-item img,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .maps .map-item img {
  width: 100%;
  object-fit: cover;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .tab-inner,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .tab-inner {
  padding: 2rem 0;
  padding-right: 1rem;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads .download-item,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads .download-item {
  display: flex;
  align-items: center;
  gap: 7.5px;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads .download-item .circle-li,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads .download-item .circle-li {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e5e5e5;
  align-items: center;
  justify-content: center;
}
html .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads .download-item a,
body .popup .popup-inner-container .inner-container .top-container .popup-body .tab-pane .downloads .download-item a {
  line-height: 0px;
}
html .popup .popup-inner-container .inner-container .top-container .popup-footer,
body .popup .popup-inner-container .inner-container .top-container .popup-footer {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  padding-top: 20px;
  background-color: white;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
html .popup .popup-inner-container .inner-container .top-container .popup-footer .action-favorite,
body .popup .popup-inner-container .inner-container .top-container .popup-footer .action-favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
  width: 40px;
  height: 40px;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
  border-radius: 50%;
}
html .popup .popup-inner-container .inner-container .top-container .popup-footer .action-favorite:hover,
body .popup .popup-inner-container .inner-container .top-container .popup-footer .action-favorite:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
html .popup .popup-inner-container .inner-container .bottom-container,
body .popup .popup-inner-container .inner-container .bottom-container {
  flex: 1 0 100%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-bottom: 15px;
}
.ts-wrapper:not(.has-items) .ts-control::after {
  content: "Selecteer";
  color: #929dab;
}
.ts-control.dropdown-top .ts-dropdown,
.ts-wrapper.dropdown-top .ts-dropdown {
  bottom: 100%;
  top: auto;
}
