.side-padding-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.flex {
  display: flex;
}

.font-bold {
  font-weight: bold !important;
}

@media only screen and (max-width: 960px) {
  * {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }
}
#map-container {
  position: fixed;
  left: 0;
  top: 100px;
  right: 0;
  bottom: 0;
  height: calc(100vh - 100px);
  width: 100vw;
  z-index: 0;
}
#map-container .mapboxgl-ctrl button {
  border: none;
}

.map-toggle {
  position: absolute;
  top: 0;
  z-index: 10100000;
  right: 43%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.map-toggle .map-toggle__inner {
  padding: 10px 15px 8px 15px;
  background-color: white;
  display: inline-block;
}
.map-toggle .map-toggle__inner span {
  color: #450037;
}
.map-toggle .map-toggle__inner--active {
  background-color: #450037;
}
.map-toggle .map-toggle__inner--active span {
  color: #FFFFFF;
}

.map--hidden {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  .map-toggle {
    position: fixed;
    top: 280px;
    transform: rotate(-90deg);
    right: -48px;
  }
  #map-container {
    top: 0;
    height: 100vh;
    z-index: 0;
  }
}
.marker {
  width: 40px;
  height: 67px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.marker--museum {
  background-image: url(../img/icon_inactive/icon-museum.svg);
}
.marker--naturraum {
  background-image: url(../img/icon_inactive/icon-naturraum.svg);
}
.marker--touren {
  background-image: url(../img/icon_inactive/icon-touren.svg);
}
.marker--events {
  background-image: url(../img/icon_inactive/icon-events.svg);
}
.marker--active {
  width: 52px;
  height: 87px;
  z-index: 1000000000000000000;
}
.marker--active.marker--museum {
  background-image: url(../img/icon_active/icon-museum.svg);
}
.marker--active.marker--naturraum {
  background-image: url(../img/icon_active/icon-naturraum.svg);
}
.marker--active.marker--touren {
  background-image: url(../img/icon_active/icon-touren.svg);
}
.marker--active.marker--events {
  background-image: url(../img/icon_active/icon-events.svg);
}
.marker--hidden {
  display: none !important;
}

#project-list-container {
  height: 100%;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 999999999;
  padding: 100px 0;
  overflow-y: auto;
}
#project-list-container.project-list-container--no-scroll .project-list-container__body {
  height: 80px;
  overflow: hidden;
}
#project-list-container.list--hidden {
  visibility: collapse;
}
#project-list-container .project-list-container__body {
  width: 60%;
  padding-right: 30px;
}

.project-category {
  margin-bottom: 50px;
}
.project-category .project-category__inner--title {
  margin-bottom: 15px;
}
.project-category .project-category__inner--title span {
  font-size: inherit;
  line-height: inherit;
  margin-left: 15px;
}

.project-list-item {
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #450037;
  width: auto;
  height: auto;
  cursor: pointer;
}
.project-list-item .list-item-txt-wrapper {
  width: 90%;
  max-width: 90%;
  min-width: 90%;
  justify-content: flex-start;
  align-items: center;
}
.project-list-item .list-item-txt-wrapper h4 {
  color: #450037;
}
.project-list-item .project-list-container__body--projects__item__arrow {
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 15px;
  margin-right: 10px;
  background-image: url(../img/caret-right.svg);
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
}
.project-list-item:hover .project-list-container__body--projects__item__arrow {
  margin-right: 0px;
}

@media only screen and (max-width: 960px) {
  #project-list-container {
    width: 100%;
    height: 100%;
    top: unset;
    bottom: unset;
    padding-top: 100px;
  }
  #project-list-container .project-list-container__body {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  #project-list-container {
    width: 100%;
    right: 0 !important;
    transform: translateX(0);
    transform: translateY(0);
    border-radius: 0;
  }
  .mobile-toggle {
    display: none;
  }
}
@media only screen and (min-width: 1920px) {
  #project-list-container {
    width: 100%;
    right: 0;
    border-radius: 0;
  }
  .mobile-toggle {
    display: none;
  }
}
.project-content {
  display: block;
  position: fixed;
  height: calc(100vh - 100px);
  top: 100px;
  right: 0;
  left: auto !important;
  width: 30%;
  overflow: auto;
  background-color: white;
  padding: 20px;
  visibility: visible;
  z-index: 100000009;
}
.project-content--disabled {
  display: none;
}
@media only screen and (max-width: 960px) {
  .project-content {
    width: 100%;
    z-index: 1000100000;
  }
}
.project-content .project-content__img-wrapper {
  position: relative;
}
.project-content .project-content__img-wrapper img {
  max-height: 50vh;
  min-height: 200px;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.project-content .project-content__img-wrapper .cmp__go-back {
  width: 25px;
  height: 25px;
  background-image: url(../img/icons_blau/arrow-right-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  left: 40px;
  cursor: pointer;
  transform: rotate(180deg);
}
@media only screen and (max-width: 960px) {
  .project-content .project-content__img-wrapper .cmp__go-back {
    left: 16px;
  }
}
.project-content .project-content__container {
  cursor: auto;
  padding-bottom: 40px;
}
@media only screen and (max-width: 960px) {
  .project-content .project-content__container {
    padding: 16px;
    padding-top: 40px;
  }
}
.project-content .project-content__container .project-content__link {
  margin-top: 20px;
  display: block;
}
.project-content .project-content__container h1.h3 {
  margin-top: 20px;
  color: #233787;
  margin-bottom: 50px;
}
.project-content .project-content__container p {
  margin-bottom: 10px;
  margin-top: 2px;
}
.project-content .project-content__container .project-content__fact {
  margin-bottom: 20px;
}
.project-content .project-content__container .project-content__fact h5 {
  margin-bottom: 2px;
}
.project-content .project-content__container .project-content__highlights-wrapper span:not(:last-child)::after {
  content: " | ";
}
.project-content .project-content__close {
  padding: 0 0 30px 0;
}
.project-content .project-content__close:hover {
  cursor: pointer;
}

@media only screen and (min-width: 960px) {
  .project-content .project-content__close {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
  .project-content .project-content__close img {
    width: 20px;
  }
}
@media only screen and (max-width: 960px) {
  .project-content {
    top: unset;
    bottom: 0;
    height: 60vh;
    padding-top: 50px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  }
  .project-content .project-content__close {
    display: block;
    position: absolute;
    padding: 14px 20px;
    top: 0;
    right: 0;
  }
}
.cluster-point {
  width: 30px;
  height: 30px;
  background-color: #450037;
  border-radius: 50%;
  position: absolute;
  z-index: 999;
  color: #FFFFFF;
  text-align: center;
  padding-top: 1px;
  padding-bottom: 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.3;
  cursor: pointer;
}
.cluster-point.cluster-point--hidden {
  display: none;
}

#map-container .cluster-point--declustered {
  display: none;
}
#map-container .marker--clustered {
  display: none;
}

.map-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  pointer-events: none;
}
.map-filter-wrapper form {
  display: flex;
  gap: 20px;
  pointer-events: all;
}
.map-filter-wrapper form input {
  opacity: 0;
}
.map-filter-wrapper form input[type=checkbox] {
  margin-right: 10px;
  display: block;
  position: absolute;
  top: 24px;
  left: 2px;
}
.map-filter-wrapper form input[type=checkbox]:focus-visible + label {
  outline: 2px solid Highlight;
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: 5px;
}
.map-filter-wrapper form input[type=checkbox] + *::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 8px;
  border-style: solid;
  border-width: 2px;
  border-color: #450037;
  z-index: 1;
  background-color: white;
}
.map-filter-wrapper form input[type=checkbox]:checked + *::before {
  background-color: #450037;
}
.map-filter-wrapper form label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.map-filter-wrapper form label p {
  display: flex;
  align-items: center;
}
.map-filter-wrapper form .archive-content__filter__submit {
  display: none;
}

@media only screen and (max-width: 960px) {
  .map-filter-wrapper {
    top: 90px;
    z-index: 100000000;
  }
  .map-filter-wrapper form {
    padding: 16px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .map-filter-wrapper form::-webkit-scrollbar {
    display: none;
  }
  .map-filter-wrapper form input[type=checkbox] {
    top: 18px;
    left: 12px;
  }
  .map-filter-wrapper form label {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  }
  .map-filter-wrapper form label p {
    margin: 0;
  }
}
.filter-state {
  position: absolute;
  background-color: white;
  border-radius: 6px;
  top: 130px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

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