/*
 Media Queries
 */
.map-container {
  display: grid;
  max-width: 1390px;
  grid-template-columns: 1fr;
  gap: 50px 50px;
  justify-items: stretch;
  align-items: start;
  padding-left: 15px;
  padding-right: 15px;
  margin: 30px auto;
}
@media (min-width: 768px) {
  .map-container {
    margin-top: 50px;
    margin-bottom: 50px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
  }
}
@media (min-width: 1450px) {
  .map-container {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.map-wrapper {
  text-align: center;
  position: relative;
  max-width: 586px;
  width: 100%;
  place-self: start;
  justify-self: center;
}
.map-wrapper .map-image {
  width: 100%;
  height: auto;
}
.map-wrapper .map-location-wrapper {
  display: grid;
  grid-template-columns: repeat(100, 1fr);
  grid-template-rows: repeat(100, 1fr);
  justify-content: center;
  position: absolute;
  inset: 0;
}
.map-wrapper .map-location-wrapper .map-location {
  position: relative;
  grid-column-end: span 1;
  grid-row-end: span 1;
}
.map-wrapper .map-location-wrapper .map-location:hover .location__marker {
  background-color: #11B89B;
}
.map-wrapper .map-location-wrapper .map-location.map-location--left .location__info {
  inset: -2px 12px auto auto;
}
.map-wrapper .map-location-wrapper .map-location .location__marker {
  position: absolute;
  inset: -2px auto auto -2px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: black;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out 0s;
}
.map-wrapper .map-location-wrapper .map-location .location__info {
  display: none;
  position: absolute;
  inset: -2px auto auto 12px;
  background-color: white;
  font-size: 0.75rem;
  padding: 10px;
  border-radius: 10px;
  max-height: 270px;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0 0.3px 1.1px rgba(0, 0, 0, 0.022), 0 0.9px 2.7px rgba(0, 0, 0, 0.031), 0 1.8px 5.5px rgba(0, 0, 0, 0.039), 0 3.7px 11.3px rgba(0, 0, 0, 0.048), 0 10px 31px rgba(0, 0, 0, 0.07);
  width: 200px;
  z-index: 5;
}
.map-wrapper .map-location-wrapper .map-location .location__info .location__name {
  font-weight: 400;
  text-align: left;
  margin-top: 30px;
}
.map-wrapper .map-location-wrapper .map-location .location__info .location__name:first-child {
  margin-top: 0;
}

.map-form-navigation {
  place-self: start;
  justify-self: center;
}

@media (min-width: 768px) {
  .map-aside-col {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
  }
}

.filter-result {
  position: relative;
}
.filter-result .filter-result__details {
  position: relative;
}
.filter-result .icon_social-media {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.filter-result .icon_social-media a {
  margin-left: 15px;
  color: #F5952D;
  font-size: 20px;
}
.filter-result .icon_social-media a.instagram:hover {
  color: #C13584;
}
.filter-result .icon_social-media a.youtube:hover {
  color: #212121;
}
.filter-result .icon_social-media a.facebook:hover {
  color: #4267B2;
}
.filter-result .icon_social-media a.linkedin:hover {
  color: #0A66C2;
}
.filter-result .icon_social-media a.tiktok:hover {
  color: #000000;
}
.filter-result .icon_social-media a.twitter:hover {
  color: #000;
}

.sdgs,
.details__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.sdgs > div,
.details__content > div {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
}
.sdgs > div:first-of-type,
.details__content > div:first-of-type {
  margin-top: 0;
}
.sdgs > div .form__checkbox-input,
.details__content > div .form__checkbox-input {
  display: none;
}
.sdgs > div label,
.details__content > div label {
  line-height: 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
  top: 0;
  left: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  transition: border-color 0.3s ease-in-out 0s;
  border: 1px solid var(--mid-grey);
}
.sdgs > div label::after,
.details__content > div label::after {
  transition: all 0.3s ease-in-out 0s;
  content: "\f00c";
  opacity: 0;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  inset: 0;
  color: white;
  background: var(--dsj-yellow);
  text-align: center;
}
.sdgs > div .form__checkbox-input:checked + label::after,
.details__content > div .form__checkbox-input:checked + label::after {
  opacity: 1;
}
.sdgs > div .checkbox__caption,
.details__content > div .checkbox__caption {
  margin-left: 15px;
  font-size: 0.9rem;
}

.details__content .akteurskarte_sdg {
  position: relative;
  margin-bottom: 5px;
}
.details__content .akteurskarte_sdg p {
  margin-left: 40px;
}
.details__content .akteurskarte_sdg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  cursor: not-allowed;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--mid-grey);
  background: var(--dsj-yellow);
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  text-align: center;
  color: white;
  opacity: 0.5;
}

.filter-result .filter-result__details .details__content h1,
.filter-result .filter-result__details .details__content h2,
.filter-result .filter-result__details .details__content h3,
.filter-result .filter-result__details .details__content h4,
.filter-result .filter-result__details .details__content h5 {
  margin-top: 30px;
}
.filter-result .filter-result__details .details__content p {
  margin-bottom: 5px;
}
.filter-result .filter-result__details .details__content ul {
  margin: 0 0 5px;
}

/*# sourceMappingURL=map-extension.css.map */
