@font-face {
  font-family: 'SofiaProRegular';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/SofiaProRegular.otf'); /* IE9 Compat Modes */
  src: local('Sofia'), local('Sofia-Regular'), url('../fonts/SofiaProRegular.otf') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/SofiaProRegular.ttf') format('truetype'); /* Safari, Android, iOS */
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  background: white;
  color: black;
  font-family: SofiaProRegular, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

#main_wrap {
  height: 100vh;
  display: grid;
  /* grid-template-rows: auto minmax(85vh, 1fr) auto; */
  grid-template-rows: auto auto auto;
  /* background: #e9ecee; */
  background: white;
  justify-content: center;
}

/* INFO */

#main_info {
  background: white;
  z-index: 1;
}

#main_info .info_section {
  padding: 12px;
}
#main_info .info_section.mitaudio {
  padding: 4px 12px;
}

#main_info .info_section.mitaudio {
  display: none;
}
h2 {
  margin-left: 22px;
}
#main_info h2 {
  margin: 6px 0;
  padding: 0;
  height: 32px;
  display: inline-flex;
  align-items: center;
  width: calc(100vw - 46px);
  font-size: 15px;
  line-height: 16px;
}

/* NUMMER */
#main_info h2 > span > div {
  margin-right: 4px;
  background: black;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-items: center;
  position: relative;
  top: -2px;
}

#main_info .mitaudio h2 {
  font-size: 14px;
  line-height: 15px;
}

#main_info p {
  margin: 4px 0;
  padding: 0;
  font-size: 12px;
}

a.info_link {
  display: block;
  background: black;
  color: white;
  padding: 16px 10px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

/* MAP */

#map_wrap {
  margin: auto;
  max-height: 1200px;
  max-width: 1700px;
  height: 48.1vw;
  position: relative;
  align-self: end;
  overflow: hidden;
  margin-bottom: 10vw;
}

#map_wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  opacity: 0.6;
}

#target_wrap {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}

.area_point {
  position: absolute;
  color: black;
  font-size: 28px;
  transform: translate(-50%, -50%);
  /* transition: top .7s .9s ease, left .7s .9s ease; */
}

.area_point > div {
  font-size: 15px;
  color: black;
  position: absolute;
  left: 50%;
  top: 2rem;
  white-space: nowrap;
  transform: translateX(-50%);
  font-weight: 100;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0 3px white;
}

/* FINE TUNING */
div.area_point:nth-child(3) > div,
div.area_point:nth-child(1) > div {
  bottom: 22px;
}

/* MENU */

#main_menu {
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  width: 100%;
  z-index: 100;
  /* height: 100%; */
  transition: top 0.8s ease;
}

#main_menu.ausgeblendet {
  top: -100%;
}

#menu_burger {
  font-size: 52px;
  line-height: 53px;
  position: fixed;
  padding: 8px;
  top: -61px;
  right: 10px;
  border: none;
  background: transparent;
  transform: rotate(180deg);
  transition: transform 0.5s ease;
  transform-origin: center;
}
#menu_burger span {
  /*! margin-bottom: 26px; */
  /*! display: inline-block; */
  position: relative;
  top: -13px;
}

.ausgeblendet #menu_burger {
  transform: rotate(0deg);
}

#main_menu ul {
  list-style: none;
  padding: 0;
  padding-top: 52px;
  text-align: center;
  overflow: scroll;
  display: flex;
  flex-wrap: wrap;
}
#main_menu ul li {
  flex-grow: 1;
}
#main_menu ul li button,
#main_menu ul li a {
  font-size: 12px;
  margin: 3px 0;
  border-radius: 0;
  background: black;
  color: white;
  border-style: none;
  padding: 8px 12px;
  width: calc(100% - 4px);
  box-sizing: border-box;
  white-space: nowrap;
  text-decoration: none;
  font-weight: normal;
  display: block;
  height: 35px;
}
a#mrhide_link {
  padding: 12px 8px;
  width: 100%;
  text-align: right;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 11px;
  color: #999;
  font-weight: normal;
  letter-spacing: -0.6px;
}

/* GEO MESSAGE */

#geo_locing_message {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
  top: 25%;
  left: 8%;
  right: 8%;
  bottom: 15%;
  text-align: center;
  padding: 22px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}
#pos_frage {
}
.waiting_wrap {
  height: 100px;
  display: flex;
  align-items: center;
}
.waiting {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: white;
  animation: pulsieren 1.8s ease-in-out 0.5s infinite;
}
@keyframes pulsieren {
  0% {
    height: 5px;
    width: 5px;
  }
  65% {
    height: 18px;
    width: 18px;
  }
  100% {
    height: 5px;
    width: 5px;
  }
}
#position_off {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 8px 12px;
  margin-top: 50px;
  border-radius: 2px;
  color: white;
  cursor: pointer;
}

/* AUDIO CONTROLS */

.audio_kontrolle {
  position: relative;
  /* height: 100px; */
  width: 100%;
  display: flex;
  flex-direction: column;
}
.audio_kontrolle .abspieler {
  display: inline-block;
  background: white;
  cursor: pointer;
  border-style: none;
  position: relative;
  margin-top: 8px;
  padding: 0;
}
.audio_kontrolle .abspieler::after {
  content: 'abspielen';
  display: block;
  background: black;
  color: white;
  border-style: none;
  /*! position: absolute; */
  left: 0;
  top: 0;
  width: 100%;
  padding: 16px 10px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: padding 0.4s ease;
}
.audio_kontrolle .abspieler.thinner::after {
  padding: 4px 10px;
}
.audio_kontrolle .abspieler.spielt::after {
  content: 'pausieren';
}
.audio_kontrolle .zeitleiste {
  /* position: relative; */
  height: 10px;
  width: 100%;
  top: 12px;
  padding: 0;
  background-color: white;
  border: 1px solid black;
  cursor: pointer;
  display: none;
  margin: 10px 0;
}
.audio_kontrolle .zeitleiste:focus {
  outline: none;
}
.audio_kontrolle .audio_zeit {
  width: 0%;
  height: 100%;
  background-color: black;
  transition: width 0.2s linear;
}

/* Park Blog */
#park_blog {
  height: 100svh;
  width: 100vw;
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: white;
  padding: 6px;
  box-sizing: border-box;
}
.blog_headline {
  display: grid;
  grid-template-columns: auto auto;
}
#park_blog h3 {
  margin-top: 28px;
  margin-bottom: 2px;
}

#park_blog .wp-block-image {
  width: 30%;
  float: right;
  margin-top: 4px;
}

#park_blog .wp-block-image img {
  width: 100%;
}

#park_blog p {
  margin: 14px 40px;
}

button.blog-closer {
  font-size: 12px;
  margin: 42px 0 3px 22px;
  border-radius: 0;
  background: black;
  color: white;
  border-style: none;
  padding: 9px 6px;
  width: calc(100% - 44px);
  box-sizing: border-box;
  white-space: nowrap;
  /*! box-sizing: border-box; */
  font-weight: bold;
  align-self: center;
  justify-self: flex-end;
}

/* PDF */

/* .embed_pdf {
  display: none;
  width: 100%;
  height: 80vh;
} */

/* STARTSEITE */

#start_wrap {
  padding: 12px;
}
#start_wrap h1 {
  font-size: 18px;
}
#start_wrap p {
  font-size: 12px;
}
.button_link {
  display: block;
  background: black;
  color: white;
  width: 100%;
  padding: 16px 10px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* #### POTRAIT ######### */

.potrait #map_wrap {
  rotate: -90deg;
  height: unset;
  max-width: unset;
  max-height: unset;
  width: 85vh;
  align-self: center;
  margin-top: unset;
  margin-bottom: unset;
}
.potrait #map_wrap img {
  height: auto;
}

.potrait #map_wrap {
  margin-bottom: 0;
}

.potrait .area_point {
  rotate: 90deg;
  transform-origin: top left;
}

.potrait div.area_point:nth-child(24) > div,
.potrait div.area_point:nth-child(2) > div {
  bottom: -8px;
}

.potrait div.area_point:nth-child(1) > div,
.potrait div.area_point:nth-child(7) > div,
.potrait div.area_point:nth-child(8) > div,
.potrait div.area_point:nth-child(9) > div {
  bottom: 22px;
}

.potrait #main_info {
  background: white;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.potrait .info_section {
  display: grid;
  max-width: 100vw;
  box-sizing: border-box;
}

.potrait #main_wrap {
  overflow: clip;
  grid-template-rows: auto minmax(85vh, 1fr) auto;
}

.potrait #park_blog p {
  margin: 14px 12px;
}

.potrait .blog_headline h2 {
  margin-left: 12px;
}

.potrait #park_blog .wp-block-image {
  width: unset;
  float: unset;
  margin-left: 11px;
  margin: 4px 12px;
}

.potrait #park_blog {
  overflow: scroll;
}

.potrait #park_blog img {
  width: 100%;
}

/* fin */
