@charset "UTF-8";
.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 960px);
  max-width: 1920px;
}
@media screen and (max-width: 1920px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.buo-map-container {
  position: relative;
  --mapContentPrimaryColor: var(--secondary);
  --chevronDown: url(../../images/icons/chevron-down.svg);
  --searchIcon: url(../../images/icons/search.svg);
  --whiteblue: #F3F3F7;
}
.buo-map-container .buo-map-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.buo-map-container .buo-map-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100vw;
  margin-left: calc(50% - 960px);
  max-width: 1920px;
  position: relative;
  height: var(--mapHeight);
}
@media screen and (max-width: 1920px) {
  .buo-map-container .buo-map-wrapper {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper {
    height: unset;
  }
}
.buo-map-container .buo-map-wrapper .buo-map {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-map {
    height: var(--mapHeight);
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  max-height: calc(100% - 60px);
  width: 100%;
  max-width: 398px;
  z-index: 5;
  pointer-events: none;
  left: unset;
  right: var(--sidePadding);
}
@media screen and (max-width: 1520px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window {
    max-width: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window {
    max-width: 320px;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  height: 100%;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  pointer-events: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .close {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 22px;
  width: 22px;
  z-index: 1;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .close:after {
  position: absolute;
  content: "✕";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
  color: var(--grey);
  box-shadow: rgba(0, 0, 0, 0.24) 0 0 8px;
  cursor: pointer;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--darkblue);
  max-width: 100%;
  width: 100%;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 8px 8px 0 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper::before, .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper::after {
  content: "";
  display: table;
  clear: both;
  width: 1px;
  margin-left: -1px;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper::before {
  float: left;
  padding-bottom: 65%;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper {
    border-radius: 8px;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper ~ .buo-text-wrapper {
  padding-right: 30px;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper {
  padding: 30px 57px 50px 45px;
  overflow-y: auto;
}
@media screen and (max-width: 1520px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper {
    padding: 30px 57px 35px 30px;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-title {
  color: var(--mapContentPrimaryColor);
  word-break: break-word;
  hyphens: auto;
  font-family: var(--fontFamily), sans-serif;
  font-size: 2.5rem !important;
  line-height: 3.5rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-title {
    font-size: 1.625rem !important;
    line-height: 2.275rem;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-details-link {
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  margin-top: 12px;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-details-link a {
  text-decoration: none;
  font-weight: 400;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-details-link:before {
  display: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-details-link svg {
  padding-right: 7px;
  height: 13px;
  width: auto;
  padding-bottom: 1px;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 100;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content .buo-address-data {
  margin-bottom: 0;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content .buo-excerpt, .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content .buo-fallback-content {
  font-weight: 100;
  padding-top: 10px;
  margin-bottom: 0;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content .buo-excerpt:empty, .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content .buo-fallback-content:empty {
  display: none;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data {
  padding-top: 10px;
  margin-bottom: 0;
  flex-wrap: wrap;
  display: flex;
  gap: 12px;
  row-gap: 0;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data a:not(.button)[href^=mailto], .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data a:not(.button)[href^=tel] {
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data a:not(.button)[href^=mailto], .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data a:not(.button)[href^=tel] {
    padding-left: 28px;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data a:not(.button)[href^=mailto]:before, .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content #buo-email-phone-data a:not(.button)[href^=tel]:before {
  width: 20px;
  top: 0;
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content p {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 100;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.buo-map-container .buo-map-wrapper .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper .buo-content p:last-child {
  margin-bottom: 0;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay, .buo-map-container .buo-map-wrapper .buo-info-window-overlay {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  pointer-events: none;
  max-width: calc(var(--sidePadding) * 2 + var(--contentMaxWidth));
  padding: 0 var(--sidePadding);
  --checkboxLabelPadding: 20px;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay input[type=checkbox], .buo-map-container .buo-map-wrapper .buo-info-window-overlay input[type=checkbox] {
  cursor: pointer;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-outer-projects-filter-wrapper, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-outer-projects-filter-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  pointer-events: auto;
  overflow: hidden;
  max-height: 100%;
  height: auto;
  margin-left: -12px;
}
@media screen and (max-width: 1520px) {
  .buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-outer-projects-filter-wrapper, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-outer-projects-filter-wrapper {
    max-width: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-outer-projects-filter-wrapper, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-outer-projects-filter-wrapper {
    max-width: 340px;
  }
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-search-wrapper, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-search-wrapper {
  padding: 30px 12px 18px 12px;
  position: relative;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-search-wrapper .buo-google-maps-search-input, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-search-wrapper .buo-google-maps-search-input {
  color: var(--darkblue);
  width: 100%;
  padding: 18px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  text-indent: 10px;
  padding-right: 65px;
  text-overflow: ellipsis;
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 400;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-search-wrapper .buo-icon-hamburger, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-search-wrapper .buo-icon-hamburger {
  position: absolute;
  background-image: var(--hamburgerIcon);
  width: 24px;
  height: 20px;
  top: calc(50% - 11px);
  left: 32px;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-search-wrapper .buo-icon-search, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-search-wrapper .buo-icon-search {
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 3px);
  right: 35px;
  background-image: var(--searchIcon);
  background-size: contain;
  background-repeat: no-repeat;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-current-category-wrapper, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-current-category-wrapper {
  padding: 5px 20px 20px 95px;
  color: var(--mapContentPrimaryColor);
  font-weight: 700;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-current-category-wrapper .buo-current-category-title, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-current-category-wrapper .buo-current-category-title {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 2rem;
  line-height: 2.7rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-current-category-wrapper .buo-current-category-title, .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-current-category-wrapper .buo-current-category-title {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-filter-overlay .buo-outer-projects-filter-wrapper {
    max-width: 100%;
    box-shadow: unset;
    border-radius: unset;
  }
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-filter-overlay {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    position: relative;
    order: -1;
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
  }
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay.buo-filter-full-height .buo-accordeon-container {
  max-height: unset;
}
.buo-map-container .buo-map-wrapper .buo-filter-overlay.buo-filter-full-height.buo-locations-count-1 .buo-accordeon-container {
  display: none;
}
@media screen and (max-width: 768px) {
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay {
    position: relative;
    order: 2;
    padding: var(--sidePadding);
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window {
    position: relative;
    max-width: 100%;
    max-height: unset;
    right: unset;
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content {
    box-shadow: unset;
    border-radius: unset;
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content .close {
    display: none;
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper {
    max-width: 30%;
    min-width: 150px;
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 450px) {
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-image-wrapper {
    max-width: 100px;
  }
  .buo-map-container .buo-map-wrapper .buo-info-window-overlay .buo-map-info-window .buo-info-window-place .buo-info-content .buo-info .buo-text-wrapper {
    padding: 18px 0 18px 18px;
  }
}
.buo-map-container .marker {
  display: none;
}

.buo-filter-wrapper .buo-accordeon-container {
  padding: 0 12px 18px 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(var(--mapHeight) / 2 - 45px);
}
@media screen and (max-width: 768px) {
  .buo-filter-wrapper .buo-accordeon-container {
    max-height: unset;
  }
}
.buo-filter-wrapper .buo-accordeon-container.projekte {
  --mapContentPrimaryColor: var(--darkblue);
  --checkIcon: var(--checkBlueIcon);
}
.buo-filter-wrapper .buo-accordeon-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.buo-filter-wrapper .buo-accordeon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 25px;
  flex-direction: column;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.buo-filter-wrapper .buo-accordeon:last-child {
  margin-bottom: 0;
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-title {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
  margin-bottom: 0;
  padding-left: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  top: 8px;
  position: absolute;
  width: 100%;
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-title .buo-checkbox-group-text {
  padding-left: var(--checkboxLabelPadding);
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-trigger-label {
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  background-image: var(--chevronDown);
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  padding: 12px;
  background-size: 12px 12px;
  background-position: center;
  top: 6px;
  right: -6px;
  margin: 0;
  cursor: pointer;
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-content-wrapper {
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-height: 0;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 34px;
  padding-left: var(--checkboxLabelPadding);
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-content-wrapper.buo-count-1 .buo-accordeon-content {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .buo-filter-wrapper .buo-accordeon .buo-accordeon-content-wrapper {
    -o-transition: unset;
    -ms-transition: unset;
    -moz-transition: unset;
    -webkit-transition: unset;
    transition: unset;
  }
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-accordeon-content {
  padding: 0;
  overflow: auto;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .buo-filter-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-accordeon-content {
    overflow: unset;
  }
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-trigger {
  width: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-trigger:checked ~ .buo-accordeon-trigger-label {
  transform: rotate(180deg);
}
.buo-filter-wrapper .buo-accordeon .buo-accordeon-trigger:checked ~ .buo-accordeon-content-wrapper {
  max-height: var(--mapHeight);
}
@media screen and (max-width: 768px) {
  .buo-filter-wrapper .buo-accordeon .buo-accordeon-trigger:checked ~ .buo-accordeon-content-wrapper {
    max-height: 100%;
    padding-bottom: 5px;
  }
}
.buo-filter-wrapper ::-webkit-scrollbar {
  width: 10px;
}
.buo-filter-wrapper ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.buo-filter-wrapper ::-webkit-scrollbar-thumb {
  background: #cecece;
}
.buo-filter-wrapper ::-webkit-scrollbar-thumb:hover {
  background: #DCDCDC;
}
.buo-filter-wrapper .buo-checkboxes-wrapper {
  padding: 0 0 0 12px;
  width: calc(100% - 12px);
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .buo-filter-wrapper .buo-checkboxes-wrapper {
    overflow: visible;
  }
}
.buo-filter-wrapper .buo-checkboxes-wrapper .buo-checkboxes {
  background: var(--white);
  padding: 18px 20px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .buo-filter-wrapper .buo-checkboxes-wrapper .buo-checkboxes {
    border-radius: 10px;
  }
}
.buo-filter-wrapper .buo-checkbox-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.buo-filter-wrapper .buo-checkbox-wrapper:last-child {
  margin-bottom: 0;
}
.buo-filter-wrapper .buo-single-checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: var(--mapContentPrimaryColor);
  width: 100%;
}
.buo-filter-wrapper .buo-single-checkbox .buo-checkbox-text {
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  padding-left: var(--checkboxLabelPadding);
  display: inline-block;
  padding-bottom: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.buo-filter-wrapper .buo-single-checkbox.buo-child {
  padding-left: var(--checkboxLabelPadding);
}

.buo-projects-filter {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  --whiteblue: #F3F3F7;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-filter-title {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 4.2rem;
  line-height: 6.8rem;
  font-weight: 600;
  margin-bottom: 9px;
}
@media screen and (max-width: 768px) {
  .buo-projects-filter .buo-projects-filter-wrapper .buo-filter-title {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .buo-projects-filter .buo-projects-filter-wrapper .buo-filter-title {
    margin-bottom: 0;
  }
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container {
  max-height: unset !important;
  padding: 0;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper {
  padding: 0;
  background: none;
  box-shadow: none;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon {
  overflow: visible;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-title, .buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-trigger, .buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-trigger-label {
  display: none;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper {
  max-height: unset;
  height: auto;
  overflow: visible;
  margin: 0;
  padding: 0;
  flex-direction: unset;
  gap: 8px;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-project-filter-prefix {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 0;
}
@media screen and (max-width: 768px) {
  .buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-project-filter-prefix {
    font-size: 1.4rem;
    line-height: 1.7rem;
    letter-spacing: -0.1px;
  }
}
@media screen and (max-width: 768px) {
  .buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-project-filter-prefix {
    display: none;
  }
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-accordeon-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  height: auto;
  overflow: visible;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-accordeon-content .buo-checkbox-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-accordeon-content .buo-checkbox-wrapper.buo-parent.buo-has-children {
  display: none;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-single-checkbox input[type=checkbox] {
  display: none !important;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-single-checkbox input + .buo-checkbox-text {
  padding: 6px 16px 8px 16px;
  background: var(--whiteblue);
  color: var(--darkblue);
  border-radius: var(--borderRadius);
  cursor: pointer;
  transform: unset;
  transition: box-shadow 0.3s;
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-single-checkbox input + .buo-checkbox-text {
    font-size: 1.4rem;
    line-height: 1.7rem;
    letter-spacing: -0.1px;
  }
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-single-checkbox input:checked + .buo-checkbox-text {
  background: var(--darkblue);
  color: var(--white);
  transition: background 0.3s, box-shadow 0.3s;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-single-checkbox input:not(:checked) + .buo-checkbox-text {
  transition: background 0s, box-shadow 0.3s;
}
.buo-projects-filter .buo-projects-filter-wrapper .buo-accordeon-container .buo-accordeon-wrapper .buo-accordeon .buo-accordeon-content-wrapper .buo-single-checkbox input:not(:checked) + .buo-checkbox-text:hover {
  box-shadow: 0 1px var(--darkblue) inset, 0 -1px var(--darkblue) inset, -1px 0 var(--darkblue) inset, 1px 0 var(--darkblue) inset;
}

.buo-projects-container {
  --containerGap: 24px;
  --containerMaxCols: 3;
  --containerPadding: 24px 36px;
  --containerLinearGradient: linear-gradient(180deg, rgba(0, 0, 0, 0.33) 11%, rgba(0, 0, 0, 0) 48.5%, rgba(0, 0, 0, 0.57) 86%);
  --containerBorderRadius: 8px;
  --containerTextColour: var(--darkblue);
  --containerCommonTransition: 0.4s ease;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: var(--containerGap);
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1024px) {
  .buo-projects-container {
    --containerMaxCols: 2;
  }
}
@media screen and (max-width: 600px) {
  .buo-projects-container {
    --containerMaxCols: 1;
  }
}
.buo-projects-container .buo-no-results {
  display: none;
  margin-top: 32px;
}
.buo-projects-container .buo-no-results .buo-no-results-headline {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 5.6rem;
  line-height: 6rem;
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 920px;
}
@media screen and (max-width: 768px) {
  .buo-projects-container .buo-no-results .buo-no-results-headline {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}
.buo-projects-container .buo-no-results .buo-no-results-below-headline {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .buo-projects-container .buo-no-results .buo-no-results-below-headline {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
}

/*# sourceMappingURL=projects-filter.css.map */
