.location-map-inner {
  width: var(--maxWidth);
  max-width: var(--baseWidth);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@container (width <=960px) {
  .location-map-inner {
    flex-direction: column;
    width: fit-content;
  }
}
.location-map-inner img.map {
  width: 500px;
  height: auto;
  top: 0;
  left: 0;
}
@container (width <=650px) {
  .location-map-inner img.map {
    display: none;
  }
}
.location-map-inner .location-map-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@container (width <=960px) {
  .location-map-inner .location-map-wrapper {
    width: 500px;
  }
}
@container (width <=650px) {
  .location-map-inner .location-map-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
}
.location-map-inner .location-map-wrapper .map-label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  background-color: var(--contrastColorInverted);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
  font-family: var(--headline);
  font-size: var(--smallFontSize);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--contrastColor);
  transition: var(--baseTransition);
  position: absolute;
}
@container (width <=650px) {
  .location-map-inner .location-map-wrapper .map-label {
    position: unset;
    width: calc(50% - 10px);
    min-width: fit-content;
    justify-content: center;
  }
}
.location-map-inner .location-map-wrapper .map-label img {
  width: 15px;
  height: auto;
  transition: var(--baseTransition);
}
.location-map-inner .location-map-wrapper .map-label.hamburg {
  top: 92px;
  left: 233px;
}
.location-map-inner .location-map-wrapper .map-label.berlin {
  top: 165px;
  left: 395px;
}
.location-map-inner .location-map-wrapper .map-label.hannover {
  top: 195px;
  left: 225px;
}
.location-map-inner .location-map-wrapper .map-label.duesseldorf {
  top: 305px;
  left: 60px;
}
.location-map-inner .location-map-wrapper .infos {
  max-width: 550px;
}
@container (width <=960px) {
  .location-map-inner .location-map-wrapper .infos {
    margin: 20px auto 0;
  }
}
.location-map-inner .location-map-wrapper .infos .map-content {
  display: none;
}
.location-map-inner .location-map-wrapper .infos .map-content .info {
  position: relative;
  padding-bottom: 25px;
}
.location-map-inner .location-map-wrapper .infos .map-content .info::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  border-style: none;
  background: url("../../img/dot.svg") repeat-x left/13px 2px;
  transition: var(--baseTransition);
  position: absolute;
  left: 0;
  bottom: 0;
}
.location-map-inner .location-map-wrapper .infos .map-content .wp-block-buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}
.location-map-inner .location-map-wrapper .infos .map-content .wp-block-buttons .book {
  margin-top: 30px;
}
.location-map-inner input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.location-map-inner input[type="radio"]:not(:checked) + label:hover, .location-map-inner input[type="radio"]:checked + label {
  background-color: var(--mainColor);
  color: var(--contrastColorInverted);
  cursor: pointer;
}
.location-map-inner input[type="radio"]:not(:checked) + label:hover img, .location-map-inner input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
}
.location-map-inner input[type="radio"]:checked + label + section {
  display: block;
}
.location-map-inner input[type="radio"]#hamburg:checked ~ .infos .map-content.hamburg {
  display: block;
}
.location-map-inner input[type="radio"]#berlin:checked ~ .infos .map-content.berlin {
  display: block;
}
.location-map-inner input[type="radio"]#hannover:checked ~ .infos .map-content.hannover {
  display: block;
}
.location-map-inner input[type="radio"]#duesseldorf:checked ~ .infos .map-content.duesseldorf {
  display: block;
}
