.webflow-map * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --map-height: 75vh;
  --padding: 10px;
  --dropshadow: 0px 4px 8px rgba(4, 52, 101, 0.25);
  --dropshadow-large: 0px 0px 8px rgba(4, 52, 101, 0.4);
  --blue: #005faa;
  --blue-dark: #043465;
  --blue-faded: #0060aa34;
  --font-family: Manrope, sans-serif, 'Arial, sans-serif';
  --background: #f5f3f0;
  --item-min-width: 350px;
  --search-bar-height: 55px;
  --max-width: 1440px;
}

/* popup overwrite start */
.webflow-map button.gm-ui-hover-effect {
  color: var(--blue);
  height: 36px !important;
  width: 36px !important;
  opacity: 1 !important;
  top: 0 !important;
  right: 0 !important;
}
.webflow-map button.gm-ui-hover-effect span {
  height: 20px !important;
  width: 20px !important;
  background: var(--blue);
}

.w-widget-map.webflow-map .gm-style-iw > button {
  display: block !important;
}
.w-widget-map.webflow-map .gm-style .gm-style-iw-tc::after,
.gm-style .gm-style-iw-tc::after {
  background-color: var(--background);
}
.w-widget-map.webflow-map .gm-style .gm-style-iw-tc,
.gm-style .gm-style-iw-tc {
  filter: drop-shadow(--dropshadow);
}

.w-widget-map.webflow-map .gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-c {
  background: var();
  padding: 0;
  overflow: initial;
  max-width: none !important;
  border: none !important;
  outline: none !important;
}
.w-widget-map.webflow-map .gm-style .gm-style-iw-d,
.gm-style .gm-style-iw-d {
  overflow: initial !important;
}

/* popup overwrite end */

.webflow-map-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}
.webflow-map-wrapper * {
  font-family: var(--font-family);
}

.webflow-map {
  height: var(--map-height);
  width: 100%;
}

.list-wrapper {
  height: var(--map-height);
  background: #fff;
  display: none;
  overflow-y: scroll;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}
.list-wrapper::-webkit-scrollbar-thumb {
  background: var(--blue);
}
.list-wrapper::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.list-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.list-header {
  font-weight: bold;
  padding: 0px 20px;
  background-color: white;
  color: var(--blue);
  font-size: 25px;
  width: 100%;
  text-align: center;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 15px 0;
}
.map-units-container {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}

/* List */
ul.webflow-map-list {
  list-style-type: none;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  overflow: hidden;

  margin: 0;
  padding: 20px;
  padding-top: 0px;
}

.list-item {
  list-style: none;
  text-decoration: none;
  font-size: 12px;
  padding: 0;
  margin: 0;
  line-height: 12px;
  display: block;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--background);
  padding-right: 60px;
}

.list-item:hover,
li.list-item.highlighted-element {
  filter: drop-shadow(var(--dropshadow-large));
  cursor: pointer;
}

.list-item div,
.list-item a {
  font-size: 14px;
  line-height: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}
.list-item h4 {
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}
.list-item .title,
.list-item a {
  font-weight: bold;
}
.list-item,
.list-item a {
  color: var(--blue);
  position: relative;
}

iframe {
  width: 100%;
  min-height: 90vh;
}
.list-item a.button {
  content: '\003E';
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: white;
  background: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.list-item a.button.hidden {
  display: none;
}
.list-item a.button .svg-arrow {
  position: relative;
  left: 2px;
}

/* popup start */

.webflow-popup .list-item:hover {
  filter: none;
  cursor: initial;
}
.webflow-popup li a:hover,
.webflow-popup li .email span:hover {
  cursor: pointer;
}

.webflow-popup,
ul.webflow-map-list {
  min-width: none;
  max-width: 90vw;
}
/* popup end */

/* search start */

.map-search {
  width: 100%;
  max-width: 520px;

  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--blue);
  /* height: var(--search-bar-height); */
}
.webflow-map-search-input:focus-visible {
  outline: none;
  border: none;
}
.webflow-map-search-input::placeholder {
  color: var(--blue);
}

[pseudo='-webkit-search-decoration'],
input[type='search']::-webkit-search-decoration {
  display: none;
}
.map-form.empty:after {
  position: absolute;
  content: url(search-icon.svg);
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 30px;
  z-index: 10;
  width: 30px;
  background-color: white;
}
.map-search form.map-form {
  height: 100%;
  display: flex;
  flex-direction: row;
}
.webflow-map-search-input {
  padding: 20px 10px;
  width: 100%;
  border: none;
  font-size: 16px;
  color: var(--blue);
  position: relative;
  background: white;
}
div.search-values {
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  background: white;
  z-index: 19;
  width: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;

  outline: 2px solid var(--blue);

  /* margin-left: -2px;
  margin-top: -4px; */
}

div.search-values.hidden {
  display: none;
}

div.search-values button {
  padding: 10px 20px;
  cursor: pointer;
  background: none;

  border: none;
  display: block;
  text-align: left;

  box-sizing: border-box;
  width: 100%;
  color: var(--blue-dark);
  color: var(--blue);

  background-color: white;
  /* width: calc(100% + 4px);
  border-left: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  margin-left: -2px; */
}
div.search-values button:last-child {
  /* border-bottom: 2px solid var(--blue); */
  padding-bottom: 10px;
}

div.search-values button:first-child {
  padding-top: 10px;
}
div.search-values button:hover,
div.search-values button:focus {
  background: var(--blue);
  color: white;
}

form.map-form input[type='search' i]::-webkit-search-cancel-button {
  cursor: pointer;
  font-size: 30px;
}

input.webflow-input-submit {
  padding: 0;
  display: none;
  margin: 0;
  min-width: 90px;
  /* height: var(--search-bar-height); */
  border: none;
  background-color: var(--blue);
  color: white;
  cursor: pointer;
  border-radius: 0px;
  -webkit-appearance: none;
  width: 25%;
}

/* search end */

@media only screen and (min-width: 360px) {
  .webflow-popup {
    min-width: var(--item-min-width);
  }
}

@media only screen and (min-width: 460px) {
  .map-form.empty:after {
    right: 20px;
  }
}

@media only screen and (min-width: 768px) {
  :root {
    --map-height: 500px;
  }
  .map-units-container {
    grid-template-columns: minmax(350px, 1fr) minmax(
        var(--item-min-width),
        400px
      );
  }

  .webflow-popup,
  ul.webflow-map-list {
    min-width: var(--item-min-width);
    max-width: unset;
  }

  .map-search {
    max-width: 750px;
    margin-bottom: 40px;
  }
  .webflow-map-search-input {
    padding: 25px 20px;
    font-size: 20px;
  }

  .list-wrapper {
    display: block;
  }
  .webflow-popup .email {
    display: none;
  }
}

.email:has(> a:empty) {
    display: none;
}

.homepage:has(> a:empty) {
    display: none;
}
