@charset "UTF-8";
/*
$color-primary: rgb(0, 226, 156)!default;
$color-secondary: #26464d!default;
$color-app: #489855!default;
$color-background-main: rgb(240, 240, 240)!default;

$color-secondary-dark: #011820!default;
$color-secondary-light: color.scale($color-secondary, $lightness: 20%)!default;
$color-secondary-light2: color.scale($color-secondary-light, $lightness: 20%)!default;
 */
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/** 400px oder schmaler */
/** Breakpoints */
@keyframes pulse {
  25% {
    transform: scale(1.03);
  }
  75% {
    transform: scale(0.97);
  }
}
.pulse {
  animation: pulse 0.5s ease-in-out infinite;
}

@keyframes pulse--big {
  25% {
    transform: scale(1.05);
  }
  75% {
    transform: scale(0.95);
  }
}
@keyframes backgroundColorPalette {
  0% {
    color: #ee6055;
  }
  25% {
    color: #60d394;
  }
  50% {
    color: #aaf683;
  }
  75% {
    color: #ffd97d;
  }
  100% {
    color: #ff9b85;
  }
}
.animation__pulsating {
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.animation__pulsating--big {
  animation-name: pulse--big;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.animation__color-change {
  animation-name: backgroundColorPalette;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}

.animation__color-change--pulsating-big {
  animation: pulse--big 1s, backgroundColorPalette 2s alternate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family: "Jost", sans-serif;
  background-color: #F3F3F3;
}

.onepage {
  background-image: url("../images/header.jpg");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 100em) {
  html {
    font-size: 133%;
  }
}
@media (min-width: 133em) {
  html {
    font-size: 166%;
  }
}
@media (min-width: 166em) {
  html {
    font-size: 200%;
  }
}
@media (max-width: 25em) {
  html {
    font-size: 75%;
  }
}
::-moz-selection {
  color: wheat;
  background-color: rgba(38, 70, 77, 0.8);
}

::selection {
  color: wheat;
  background-color: rgba(38, 70, 77, 0.8);
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-Italic-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-Italic-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/dancing-script/DancingScript-Regular.ttf");
  src: local("");
}
.icon {
  fill: currentColor;
  height: 1em;
  vertical-align: middle;
}
.icon:not(.icon--no-position) {
  position: relative;
  top: -0.075em;
}

.icon--gold {
  color: rgba(210, 176, 0, 0.75);
}

.icon--silver {
  color: rgba(128, 128, 128, 0.75);
}

.icon--bronze {
  color: rgba(139, 69, 19, 0.75);
}

.button {
  display: inline-block;
  border: 0.125rem solid #E6E2E1;
  background-color: #e8e8e8;
  border-radius: 0.4rem;
  color: #407682;
  text-decoration: none;
  padding: 0.7rem 3rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.button:hover {
  background-color: #E6E2E1;
  border: 0.125rem solid #E6E2E1;
  color: #26464d;
}

.button__wide {
  display: block;
  text-align: center;
  width: 100%;
  background: #26464d;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 1rem;
  text-decoration: none;
  font-size: 1em;
}

.button__wide--light--pulse {
  display: block;
  width: 100%;
  text-align: center;
  color: #919090;
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.button--background-blur {
  -webkit-backdrop-filter: blur(3rem);
  backdrop-filter: blur(3rem);
}

.button--white {
  color: white;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
}
.button--white:hover {
  color: rgb(230, 230, 230);
}

.button--secondary {
  color: white;
  background-color: #26464d;
  border: 0.125rem solid #26464d;
}
.button--secondary:hover {
  color: white;
  background-color: #0d3241;
  border: 0.125rem solid #0d3241;
}

.button--slim {
  padding-left: 2rem;
  padding-right: 2rem;
}

.button__link {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #26464d;
  margin-bottom: 0.25rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #F3F3F3;
  border-bottom: 1px solid #F3F3F3;
  transition: color 0.5s ease-in-out;
}

.button__popup {
  width: 100%;
  display: block;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  color: #0d3241;
  background-color: #E6E2E1;
  padding: 0.5rem;
  border-radius: 0.2rem;
  transition: all 0.2s;
  border: none;
}
.button__popup:hover {
  background-color: #e8e8e8;
}

.button__back {
  display: block;
  color: white;
  background-color: transparent;
  border: none;
  font-size: 2em;
  padding: 0.5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 200rem;
}

.container {
  max-width: 50rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .container {
    padding: 0 1rem;
  }
}

.form__horizontal {
  display: flex;
  flex-wrap: wrap;
}

.form__group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form__horizontal > .form__group {
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.form__input {
  background-color: transparent;
  border: 0.125rem solid #26464d;
  padding: 0.75rem 1rem;
  color: #26464d;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  border-radius: 10000px;
  font-size: 1rem;
  width: 12.5rem;
  font-family: inherit;
}
.form__input:focus {
  outline: none;
}
.form__input::placeholder {
  color: transparent;
  text-shadow: none;
}

.form__label {
  position: absolute;
  top: 0.125rem;
  left: 0;
  font-size: 1rem;
  margin: 0.75rem 1rem;
  color: #26464d;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  transform-origin: 0% 50%;
  transform: scale(1) translate(0, 0);
  will-change: transform;
  transition: transform 0.25s ease-in-out;
}
.form__input:focus ~ .form__label, .form__input[placeholder]:not(:placeholder-shown) ~ .form__label {
  transform: scale(0.75) translate(0.4rem, 2.7rem);
}

.form__radio-item-radio {
  display: inline-block;
  position: relative;
  top: -0.125rem;
}

.form__radio-item-label {
  display: inline-block;
  padding-left: 0.25rem;
  color: #26464d;
  font-size: 1rem;
  padding-top: 0.1rem;
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
  /*
  .form__radio-item-radio:checked ~ & {
      font-weight: bold;
  }
  */
}

.form__radio-item--white .form__radio-item-radio {
  display: none;
}
.form__radio-item--white .form__radio-item-label::before {
  content: "";
  position: relative;
  top: 0.25em;
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border: 0.175em solid white;
  border-radius: 100000px;
  margin-right: 0.5em;
  background-image: radial-gradient(circle at center center, white 49%, transparent 50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0 0;
  transition: background-size 0.2s ease-in-out;
}
.form__radio-item--white .form__radio-item-radio:checked ~ .form__radio-item-label::before {
  background-size: 100% 100%;
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.9);
  transition: opacity 0.25s ease;
  z-index: 1;
}

.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.modal-state {
  display: none;
}

.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 0;
}

.modal__inner {
  transition: top 0.25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  margin: auto;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  height: 50%;
}
.modal__inner--rating-help {
  height: 55%;
}

.modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}

.modal__close:after,
.modal__close:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #ccc;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
  background: #aaa;
}

.modal__close:before {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .modal__inner {
    width: 90%;
    height: 90%;
    box-sizing: border-box;
  }
  .modal__inner--rating-help {
    height: 55%;
  }
}
.text {
  color: #26464d;
  padding: 0.2rem 0;
}
.text--h2 {
  color: #26464d;
  text-decoration: underline;
  padding-bottom: 1rem;
}

.text__bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.text__heading {
  font-size: 1.2em;
  color: #0d3241;
  font-weight: bold;
}

.text__subheading {
  font-size: 1em;
  color: #0d3241;
  font-weight: bold;
  margin-top: 0.5rem;
}

.text__bold {
  font-weight: bold;
}

.hide {
  display: none;
}

.text__highlight {
  color: #7065ef;
}

.snack-wrap {
  display: block;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0;
}

.snackbar {
  display: block;
  background: #26464d;
  border: #f2f2f2;
  padding: 1rem;
  color: #fff;
  position: relative;
  left: 0;
  bottom: -5rem;
  transition: bottom 0.5s ease-in-out;
  z-index: 9;
}

.snackclose, .label {
  bottom: -5rem;
  position: absolute;
  border: 0;
}

.snackbar__text {
  position: relative;
  display: block;
}

.snackbar__close {
  position: absolute;
  display: inline-block;
  right: 0;
}

.snackclose {
  display: none;
  z-index: 10;
}

.label {
  z-index: 11;
  display: block;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.animated {
  animation-name: snackbar-show;
  animation-duration: 0.5s;
  animation-direction: forwards;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.snackclose:checked ~ .snackbar, .snackclose:checked, .snackclose:checked + label {
  animation-name: snackbar-hide;
  animation-delay: 0s;
}

@keyframes snackbar-show {
  0% {
    bottom: -5rem;
  }
  90%, 95% {
    bottom: 0;
  }
  92.5%, 100% {
    bottom: 0;
  }
}
@keyframes snackbar-hide {
  0%, 7.5% {
    bottom: 0;
  }
  5%, 10% {
    bottom: 0;
  }
  100% {
    bottom: -5rem;
  }
}
/*
<a class="button" href="#popup2">Click Me Too</a>

<div id="popup2" class="popup__overlay">
<a class="popup__cancel" href="#"></a>
<div class="popup">
<div class="popup__content">
<p>Click outside the popup to close.</p>
</div>
<a href="#" class="popup__close-button">X</a>
</div>
</div>
*/
.popup__overlay {
  position: fixed; /* Geändert von 'absolute' zu 'fixed', um es relativ zum Viewport zu positionieren */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex; /* Flexbox-Container */
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
  z-index: 500000;
}

.popup__overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 0; /* Entfernt die vorherige Margin */
  padding: 1rem;
  background: #fff;
  border: 1px solid #666;
  width: 80vw; /* Breite des Popups */
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  position: relative; /* Wichtig, damit der Schließen-Button relativ zu diesem Container positioniert wird */
  z-index: 500001; /* Stellt sicher, dass das Popup über dem Overlay liegt */
}

.popup__content {
  max-height: 80vh;
  overflow: auto;
}

.popup__close-button {
  position: absolute;
  text-decoration: none;
  top: -0.75rem;
  right: -0.75rem;
  font-size: 1em;
  color: white;
  background: #549aaa;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

a:active {
  background: transparent;
}

.link {
  text-decoration: none;
  color: #26464d;
  -webkit-tap-highlight-color: transparent;
}
.link--block {
  display: block;
}

.link__underline-bold {
  text-decoration: underline;
  color: #0d3241;
  font-weight: bold;
}

.link__underline {
  text-decoration: underline;
  color: #26464d;
}

.footer__footer {
  width: 100%;
}

.footer__footer-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__footer-link {
  display: inline-block;
  color: rgba(124, 124, 124, 0.5);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  transition: color 0.25s ease-in-out;
}

.footer__footer-link:hover {
  color: rgba(47, 47, 47, 0.75);
}

#toast {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  z-index: 9999;
  opacity: 0;
  width: 90%;
  text-align: center;
  transition: opacity 0.5s, bottom 0.5s, visibility 0s 0.5s; /* Hinzugefügt */
  visibility: hidden; /* Hinzugefügt */
}

#toast.active {
  opacity: 1;
  bottom: 30px;
  visibility: visible; /* Hinzugefügt */
  transition-delay: 0s, 0s, 0s; /* Hinzugefügt */
}

#progressIndicator {
  display: none; /* Stellt sicher, dass dies nicht überschrieben wird */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#circularProgress {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader__map {
  width: 44.8px;
  height: 44.8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.loader__map:before,
.loader__map:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 0 50%;
  background: rgba(0, 0, 0, 0);
  background-image: radial-gradient(circle 11.2px at 50% 50%, rgba(0, 0, 0, 0) 80%, #26464d);
}

.loader__map:after {
  animation: pulse__map 1s infinite;
  transform: perspective(336px) translateZ(0px);
}

@keyframes pulse__map {
  to {
    transform: perspective(336px) translateZ(168px);
    opacity: 0;
  }
}
.infocard__grey {
  color: #ffffff;
  background-color: #777;
  border: 1px solid #555;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.25rem;
}

.infocard__blue {
  color: #ffffff;
  background-color: #407682;
  border: 1px solid #26464d;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.25rem;
}

.card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.navigation {
  position: sticky;
  top: 0;
  z-index: 500000;
  background-color: #26464d;
  box-shadow: 0 0 0.125rem rgb(0, 0, 0);
}

.navigation__container {
  max-width: 50rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.navigation__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .navigation__container {
    padding: 0 1rem;
  }
}

.navigation__list {
  height: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 62em) {
  .navigation__list {
    height: 4rem;
  }
}

.navigation__list-item {
  list-style-type: none;
}
.navigation__list-item--spacer {
  flex: 1 1 100%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0em;
}
@media (max-width: 62em) {
  .navigation__list-item--spacer {
    display: inline-block;
    font-size: 1.25em;
  }
}

.navigation__list-item-link {
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 0 1rem;
  border-bottom: 0.1rem solid transparent;
  transition: border-bottom-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
}
.navigation__list-item-link:hover {
  border-bottom: 0.1rem solid #407682;
  color: #E6E2E1;
}
.navigation__list-item-link--mobile-hidden {
  margin-top: 0.2rem;
}
@media (max-width: 62em) {
  .navigation__list-item-link--mobile-hidden {
    display: none;
  }
}

.navigation__list-item-link-logo {
  font-size: 1.5em;
}
@media (max-width: 62em) {
  .navigation__list-item-link-logo {
    font-size: 2em;
  }
}
.navigation__list-item-link-logo:hover {
  border-bottom: 0.1rem solid transparent;
}

.sidenav__opened {
  display: none;
}

.sidenav {
  display: block;
  position: fixed;
  z-index: 1500000;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  overflow: hidden;
  transition: width 0s linear 0.35s, height 0s linear 0.35s;
}
.sidenav__opened:checked ~ .sidenav {
  transition: width 0s linear 0s, height 0s linear 0s;
  width: 100%;
  height: 100%;
}

.sidenav__background {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__background {
  opacity: 1;
}

.sidenav__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15rem;
  max-width: 100vw;
  background-color: rgb(235, 235, 235);
  box-shadow: 0 0 1rem black;
  transform: translate(calc(100% + 1rem), 0);
  will-change: transform;
  transition: transform 0.35s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__container {
  transform: translate(0, 0);
}

.sidenav__close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  cursor: pointer;
  color: transparent;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 10000px;
  background-image: linear-gradient(-45deg, transparent 44%, black 45%, black 55%, transparent 56%), linear-gradient(45deg, transparent 44%, black 45%, black 55%, transparent 56%);
}

.sidenav__nav {
  margin-top: 3.75rem;
  list-style-type: none;
  border-top: 0.0625rem solid rgb(210, 210, 210);
}

.sidenav__nav-link {
  font-size: 1.25rem;
  padding: 0.5rem 1.5rem;
  display: block;
  color: #407682;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0.0625rem solid rgb(210, 210, 210);
  background-color: rgb(235, 235, 235);
  transition: color 0.25s ease-in-out, font-weight 0.25s ease-in-out, background-color 0.25s ease-in-out;
}
.sidenav__nav-link:hover {
  background-color: white;
  color: #26464d;
  font-weight: 400;
}

.get-geodata__container {
  max-width: 50rem;
  margin: 0px auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.get-geodata__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .get-geodata__container {
    padding: 0 1rem;
  }
}

.get-geodata__card {
  position: relative;
  padding: 1rem;
  background-color: white;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.5);
  border-left: calc(0.03125rem * 2) solid rgba(0, 0, 0, 0.15);
  border-right: calc(0.03125rem * 2) solid rgba(0, 0, 0, 0.15);
  border-top: calc(0.03125rem * 2) solid rgba(0, 0, 0, 0.15);
  width: calc(33.3333333333% - 4rem);
  margin: 1rem;
}
@media (max-width: 62em) {
  .get-geodata__card {
    width: calc(50% - 2.001rem);
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .get-geodata__card {
    width: calc(100% - 2.001rem);
  }
}

.get-geodata__card::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #407682;
  height: 0.75rem;
  left: -0.03125rem;
  right: -0.03125rem;
  bottom: -0.03125rem;
}

.get-geodata__card-link {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.get-geodata__card-heading {
  margin-bottom: 1.5rem;
}

.get-geodata__card-text {
  margin-bottom: 1.5rem;
}

.place__information-container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  background-color: #f6f6f6;
}

.place__main-image {
  position: relative;
  margin: 1rem 0.5rem;
  height: 20rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.place__main-image-id {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  border-radius: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: #43a2b7;
}

.place__favorite {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  background-color: #F3F3F3;
  color: #407682;
  border-radius: 100rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  padding-top: 0.5rem;
  font-size: 2.5em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.place__favorite, .place__favorite--set {
  transition: background-color 0.5s, color 0.5s;
}

.place__favorite--set {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  background-color: #26464d;
  color: white;
  border-radius: 100rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  padding-top: 0.5rem;
  font-size: 2.5em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.place__information-flex-container {
  display: flex;
}

.place__information-column {
  flex: 1;
  padding: 1rem;
}

.place__information-heading {
  color: #26464d;
  font-size: 1.1em;
  font-weight: 600;
}

.place__information-text {
  color: #5f5f5f;
  margin-top: 0.5rem;
}

.place__photoupload-button {
  text-align: center;
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-radius: 500rem;
  background-color: #eaeaea;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.place__photoupload-text {
  margin-left: 0.5rem;
  color: #26464d;
}

.place__shortcut {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
}

.place_shortcut-icon {
  width: 100%;
  padding: 1rem;
  color: #0d3241;
  border-radius: 1rem;
  text-align: center;
  background-color: #e7e7e7;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.place__gallery {
  border-radius: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #ececec;
}

.place__gallery-heading {
  font-size: 1.1em;
  color: #26464d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.place__gallery-image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.place__gallery-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.5rem;
  flex-basis: calc(25% - 0.5rem);
  height: 0;
  padding-bottom: calc(25% - 0.5rem);
  background-color: #e8e8e8;
  position: relative;
}

.place__gallery-image-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
  font-size: 2em;
}

.place__history {
  border-radius: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #ececec;
}

.place__history-heading {
  font-style: italic;
  font-size: 1.1em;
  color: #26464d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.place__history-text {
  color: #26464d;
  hyphens: auto;
  text-align: justify;
}

.place__comment {
  margin-top: 1rem;
}

.place__comment-container {
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.place__comment-container-flex {
  display: flex;
}

.place__comment-profile-picture {
  width: 3rem;
  height: 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #939393;
  border-radius: 100rem;
  flex-shrink: 0;
}

.place__comment-content {
  flex-grow: 1;
  margin-left: 1rem;
}

.place__comment-information {
  margin-top: 1rem;
  font-size: 0.8em;
  padding-top: 0.5rem;
  border-top: 1px solid #e3e3e3;
  color: grey;
}

.place__comment__comment-badge-image-container {
  display: flex;
  margin-top: 0.5rem;
  gap: 1rem;
}

.place__comment__comment-badge-image {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.place__form-container {
  overflow: hidden;
  padding: 0.2rem;
}

.place__comment-write-button-container {
  display: flex;
  justify-content: flex-end;
}

.place__comment-write-button {
  border-radius: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.place__comment-textarea {
  width: 100%;
  height: 10rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  font-size: 16px;
  font-family: "Arial", sans-serif;
  resize: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.place__comment-textarea:focus {
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 24px 0px, rgba(0, 0, 0, 0.12) 0px 0px 0px 1px;
}

.place__comment-textarea-button {
  width: 100%;
  border: none;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  background-color: #549aaa;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

/* Keyframes für das Ausblenden des Buttons */
@keyframes slideOutRight {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* Keyframes für das Einblenden des Textfeldes */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#comment-form {
  display: none;
  opacity: 0;
}

.place__navigation {
  margin-top: 2rem;
}

.place__navigation-heading {
  text-align: center;
  font-size: 1.2em;
  color: #26464d;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.place__navigation-item-container {
  display: flex;
}

.place__navigation-item-logo {
  width: 30%;
  text-align: center;
  border-top: 1px solid #efefef;
  padding: 1rem 0;
}

.place__navigation-item-text {
  width: 70%;
  border-top: 1px solid #efefef;
  padding: 1rem 0;
}

.place__navigation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.place__navigation-button {
  flex: 1 1 calc(50% - 0.625rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  background-color: #e7e7e7;
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.place__navigation-button-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3125rem;
}

.place__advertisment {
  margin: 1rem 0;
}

.place__shop-text {
  position: absolute;
  bottom: 1rem;
  color: white;
  background-color: rgba(95, 95, 95, 0.5);
  padding: 0.5rem 0;
  text-align: center;
  width: 100%;
}

.report__heading {
  font-size: 1.1em;
  color: #0d3241;
  font-weight: bold;
  text-align: center;
}

.report__textarea {
  width: 100%;
  height: 10rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: 0.2s;
  padding: 1rem;
  font-size: 1em;
  color: #0d3241;
}
.report__textarea:focus {
  outline: none;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.report__button {
  width: 100%;
  background-color: #407682;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
}

.einloggen__spacer-top {
  height: 3rem;
}

.einloggen__icon-top {
  text-align: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 0 auto;
}

.einloggen__heading {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5em;
}

.einloggen__text {
  width: 80%;
  text-align: center;
  font-size: 0.9em;
  color: grey;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.einloggen__form {
  width: 80%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.einloggen__form-item {
  margin-top: 1rem;
}

.einloggen__form-label {
  color: grey;
}

.einloggen__form-input {
  width: 100%;
  padding: 0.6rem;
  font-size: 1em;
  margin-top: 0.2rem;
  color: #26464d;
  background-color: #F3F3F3;
  border: 1px solid darkgray;
  border-radius: 0.5rem;
  outline: none;
}

.einloggen__form-input:focus {
  outline: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.einloggen__form-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #407682;
  color: white;
  font-size: 1em;
  border-radius: 0.5rem;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.einloggen__links {
  width: 80%;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 1rem;
}

.registrieren__spacer-top {
  height: 3rem;
}

.registrieren__icon-top {
  text-align: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 0 auto;
}

.registrieren__heading {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5em;
}

.registrieren__text {
  width: 80%;
  text-align: center;
  font-size: 0.9em;
  color: grey;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.registrieren__form {
  width: 80%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.registrieren__form-item {
  margin-top: 1rem;
}

.registrieren__form-label {
  color: grey;
}

.registrieren__form-input {
  width: 100%;
  padding: 0.6rem;
  font-size: 1em;
  margin-top: 0.2rem;
  color: #26464d;
  background-color: #F3F3F3;
  border: 1px solid darkgray;
  border-radius: 0.5rem;
  outline: none;
}

.registrieren__form-input:focus {
  outline: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.registrieren__form-button {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  background-color: #407682;
  color: white;
  font-size: 1em;
  border-radius: 0.5rem;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.registrieren__links {
  width: 80%;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 1rem;
}

.profile__container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.profile__subheading-row {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #26464d;
  font-weight: bold;
  background-color: #ececec;
  margin-bottom: 1rem;
}

.profile__setting-button {
  color: #26464d;
  font-size: 1.2em;
  float: right;
}

.profile__subtext-row {
  padding-left: 1rem;
  margin-left: 0.5rem;
  margin-bottom: 1rem;
  border-left: 0.18rem #cecece solid;
}

.profile__form--input {
  width: 100%;
  display: block;
  padding: 0.6rem;
  margin: 0.5rem 0;
  color: black;
  font-size: 1em;
  border-radius: 0.4rem;
  border: 0.125rem solid darkgrey;
}
@media (max-width: 62em) {
  .profile__form--input {
    width: 100%;
  }
}
.profile__form--button {
  width: 40%;
  padding: 1rem;
  margin-top: 1rem;
  color: white;
  background-color: #407682;
  border-radius: 0.2rem;
  border: none;
  transition: background-color 0.5s ease-in-out;
}
@media (max-width: 62em) {
  .profile__form--button {
    width: 100%;
  }
}
.profile__form--button:hover {
  background-color: #26464d;
}

.logout__container {
  text-align: center;
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  position: absolute;
  left: 50%;
  top: 25%;
  width: 40%;
  transform: translate(-50%);
  background: rgba(255, 255, 255, 0.72);
}
@media (max-width: 62em) {
  .logout__container {
    margin: 1rem;
    width: 80%;
  }
}

.logout__submit {
  text-transform: uppercase;
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  color: white;
  background-color: #407682;
  border-radius: 0.2rem;
  border: none;
  transition: background-color 0.5s ease-in-out;
}
@media (max-width: 62em) {
  .logout__submit {
    width: 100%;
  }
}
.logout__submit:hover {
  background-color: #26464d;
}

.change-location__container {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
}

.change-location__header {
  color: #26464d;
}
@media (max-width: 62em) {
  .change-location__header {
    text-align: center;
    text-decoration: underline;
  }
}

.change-location__text {
  margin: 1rem 0;
  color: #26464d;
  padding-left: 0.5rem;
  border-left: 0.25rem solid #407682;
}

.change-location__list-element {
  border-bottom: 1px solid #e8e8e8;
  padding: 0.5rem 0;
}

.change-location__container-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.2em;
  color: #26464d;
  margin-top: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #26464d;
}

.change-location__container-submit {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0 2rem 0;
  color: white;
  background-color: #407682;
  border-radius: 0.2rem;
  border: none;
  transition: background-color 0.5s ease-in-out;
}
.change-location__container-submit:hover {
  background-color: #26464d;
}

.header {
  height: 30vw;
  background-image: linear-gradient(-5.71deg, #F3F3F3 49.5%, transparent 50.5%), url("../images/header.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center 100%, center center;
  background-size: 100vw 10vw, cover;
}
@media (max-width: 75em) {
  .header {
    height: 60vw;
  }
}

.motivation {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #F3F3F3;
}

.motivation__column-text {
  float: left;
  width: 33.33%;
  padding-right: 4.5rem;
  padding-top: 4rem;
}
@media (max-width: 75em) {
  .motivation__column-text {
    padding-right: 3rem;
  }
}
@media (max-width: 62em) {
  .motivation__column-text {
    padding-top: 0;
    padding-right: 0;
    width: 50%;
  }
}
@media (max-width: 48em) {
  .motivation__column-text {
    width: 100%;
    float: none;
    padding-bottom: 3rem;
  }
}

.motivation__text-heading {
  color: #26464d;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 62em) {
  .motivation__text-heading {
    text-align: right;
  }
}
.motivation__text-heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #407682;
  margin-bottom: 0.5rem;
}
@media (max-width: 62em) {
  .motivation__text-heading::before {
    width: 20%;
    margin-left: 80%;
  }
}

.motivation__text {
  color: #26464d;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}
@media (max-width: 62em) {
  .motivation__text {
    text-align: right;
  }
}

.motivation__register--dektop {
  display: inline-block;
  text-align: center;
  border: 0.125rem solid #E6E2E1;
  background-color: #407682;
  border-radius: 0.4rem;
  padding: 1rem;
  margin-top: 1rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.motivation__register--dektop:hover {
  background-color: #26464d;
  border: 0.125rem solid #E6E2E1;
}
@media (max-width: 62em) {
  .motivation__register--dektop {
    display: none;
  }
}

.motivation__register--mobile {
  display: none;
  text-align: center;
  border: 0.125rem solid #E6E2E1;
  background-color: #407682;
  border-radius: 0.4rem;
  padding: 1rem;
  margin-top: 4rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.motivation__register--mobile:hover {
  background-color: #26464d;
  border: 0.125rem solid #E6E2E1;
}
@media (max-width: 62em) {
  .motivation__register--mobile {
    display: inline-block;
  }
}

.motivation__column-images {
  float: left;
  width: 66.66%;
  height: clamp(10rem, 35vw + 10rem, 36rem);
  position: relative;
}
@media (max-width: 62em) {
  .motivation__column-images {
    width: 50%;
    height: clamp(10rem, 25vw + 10rem, 36rem);
  }
}
@media (max-width: 48em) {
  .motivation__column-images {
    width: 80%;
    float: none;
    margin: 0 auto;
    height: clamp(10rem, 40vw + 10rem, 36rem);
  }
}
@media (max-width: 36em) {
  .motivation__column-images {
    width: 90%;
    height: clamp(10rem, 45vw + 10rem, 36rem);
  }
}

.motivation__image {
  width: 50%;
  position: absolute;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  box-sizing: content-box;
  filter: grayscale(50%);
  transform: scale(1);
  transition: filter ease-in-out 0.2s, transform ease-in-out 0.2s;
}
.motivation__image--first {
  width: 75%;
  z-index: 1;
  top: 0rem;
  left: 25%;
}
.motivation__image--first:hover {
  top: -0.66rem;
  left: calc(25% - 0.66rem);
}
.motivation__image--second {
  width: 37%;
  z-index: 2;
  top: 10rem;
  left: 10%;
}
.motivation__image--second:hover {
  top: 9.34rem;
  left: calc(10% - 0.66rem);
}
.motivation__image--third {
  z-index: 3;
  width: 42%;
  top: 5rem;
  left: 40%;
}
.motivation__image--third:hover {
  top: 4.34rem;
  left: calc(40% - 0.66rem);
}
.motivation__image:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  border: 0.33rem solid #407682;
  padding: 0.33rem;
  z-index: 10;
}

.index__find-place {
  background-color: #26464d;
  padding: 5rem 1rem;
}

.index__find-place-heading {
  color: whitesmoke;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-left: 0.25rem solid white;
}

.index__find-place-text {
  color: whitesmoke;
  padding: 0.3rem 0;
  font-weight: 300;
}

.index__find-place-link {
  color: white;
  text-decoration: none;
}

.index__bundesland-button {
  background-color: #c7c7c7;
  margin-top: 2rem;
  color: #0d3241;
  transition: background-color ease-in-out 0.2s;
}
.index__bundesland-button:hover {
  background-color: #e3e3e3;
}

.resett-password__container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  position: absolute;
  left: 50%;
  top: 25%;
  width: 40%;
  transform: translate(-50%);
  background: rgba(255, 255, 255, 0.72);
}
@media (max-width: 62em) {
  .resett-password__container {
    margin: 1rem;
    width: 80%;
  }
}

.resett-password__input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid grey;
}
@media (max-width: 62em) {
  .resett-password__input {
    width: 100%;
  }
}

.newlocation__container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.newlocation__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 1em;
}

.newlocation__textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  margin-bottom: 0.7rem;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 1em;
}

.newlocation__button {
  width: 100%;
  background: #26464d;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 1rem;
  text-decoration: none;
  font-size: 1em;
}

.newlocation__file {
  display: block;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.newlocation__file-label {
  width: 100%;
  display: block;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  color: #2C3E50;
  font-size: 1em;
  cursor: pointer;
}

.search_container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.search__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  margin: 0.5rem 0;
  box-sizing: border-box;
  color: #2C3E50;
  font-size: 1em;
}

.search__button {
  width: 100%;
  background: #407682;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 1rem;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.2s ease-in-out;
}
.search__button:hover {
  background: #549aaa;
}

.search__places-card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  margin: 1rem 0;
}

.search__places-card-head {
  color: #26464d;
  font-size: 1.25em;
  font-weight: 500;
}

.search__places-card-body {
  margin-top: 0.5rem;
  color: grey;
  font-size: 1.1em;
}

.search__places-card-body-spacer {
  width: 0.5rem;
  display: inline-block;
}

.admin__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.admin-set-categories__heading {
  background-color: #407682;
  color: white;
  text-align: center;
  font-size: 1.2em;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

.admin-set-categories__image {
  width: 100%;
  height: 20rem;
  background: center center/cover no-repeat;
  margin-top: 1rem;
  border-radius: 1rem;
}

.admin-set-categories__button-container {
  margin-top: 1rem;
}

.admin-set-categories__button {
  background-color: white;
  border: none;
  padding: 1rem;
  font-size: 1em;
  margin: 0.25rem;
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.user2__passport-container {
  background-color: #407682;
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
}

.user2__passport-heading {
  color: white;
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
}

.user2__passport-decay {
  color: #ffffff;
  font-style: italic;
  margin-top: 0.5rem;
}

.user2__head-container {
  margin-top: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 1rem;
  padding: 1rem;
}

.user2__profile-name {
  text-align: center;
  font-size: 2em;
  color: #26464d;
  font-weight: 500;
}

.user2__profile-image-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.user2__profile-image {
  width: 40vw;
  height: 40vw;
  background-color: #26464d;
  max-width: 20rem;
  max-height: 20rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.user2__social-media-container {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.user2__social-media-box {
  flex: 0 1;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #ececec;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.user2__social-media-icon {
  font-size: 1.2em;
  color: #c4c4c4;
}

.user2__social-media-icon-active {
  font-size: 1.2em;
  color: #26464d;
}

.user2__award-container {
  padding-top: 1rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__award-heading {
  color: #26464d;
  font-weight: 500;
  text-align: center;
  font-size: 2em;
}

.user2__current-award-description {
  text-align: center;
  font-size: 1.5em;
  color: #5f5f5f;
}

.user2__current-award {
  text-align: center;
  font-size: 8em;
}

.user2__licence-card {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__licence-heading {
  color: #26464d;
  font-weight: 500;
  text-align: center;
  font-size: 2em;
}

.user2__licence-information-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.user2__licence-icon {
  width: 50%;
  text-align: center;
  font-size: 2em;
}

.user2__licence-information {
  width: 50%;
  text-align: center;
  font-size: 1.2em;
}

.user2__licence-footnote {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.8em;
  color: #5f5f5f;
}

.user2__archievment-conatainer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 1.25rem;
  justify-content: center;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2_-achievment-heading {
  font-size: 2em;
  text-align: center;
  color: #26464d;
  font-weight: 500;
  width: 100%;
}

.user2__archievment {
  flex: 0 1 calc(33.333% - 1.25rem);
  padding: 0.625rem;
  box-sizing: border-box;
  height: 6rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.user2__description-container {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__description-heading {
  color: #26464d;
  font-weight: 500;
  font-size: 1.5em;
}

.user2__description-text {
  margin-top: 0.5rem;
  font-size: 1.25em;
  color: #5f5f5f;
}

.user2__stats-container {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__stats-heading {
  font-size: 1.5em;
  font-weight: 500;
  color: #26464d;
}

.user2__stats-item {
  color: #5f5f5f;
  margin-top: 0.5rem;
  font-size: 1.25em;
}

.user2__stats-icon {
  padding-right: 0.5rem;
}

.user2__comment-container {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__comment-heading {
  font-size: 1.5em;
  font-weight: 500;
  color: #26464d;
}

.user2__comment-item {
  background-color: #e8e8e8;
  color: #333333;
  padding: 0.5rem;
  margin-top: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1.25em;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__comment-place {
  color: #5f5f5f;
  margin-top: 0.2rem;
  font-style: italic;
}

.user2__images-container {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user2__images-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.user2__images-grid-item {
  background-color: #c2c2c2;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 0.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.user2__images-show-all {
  background-color: #E6E2E1;
  margin-top: 1rem;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.bundesland__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.bundesland__list {
  list-style: none;
}

.bundesland__list-item {
  display: block;
  color: #26464d;
  text-decoration: none;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  background-color: rgb(238, 238, 238);
}

.bundesland__button {
  margin-top: 1rem;
  background-color: #407682;
}

.kodex__heading {
  background-color: #407682;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1em;
  color: white;
}

.kodex__content {
  background-color: white;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 0.5rem;
  color: #26464d;
  padding: 1rem;
}

.blog__head {
  padding-left: 1rem;
  border-left: 0.25rem #26464d solid;
}

.blog__heading {
  color: #26464d;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 2rem;
}

.blog__sub-heading {
  color: #26464d;
  font-size: 1.2em;
  font-style: italic;
}

.blog__card {
  color: #26464d;
  margin: 1rem 0;
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
}

.blog__content {
  margin-top: 1.2rem;
  color: #575757;
}

.blog__card-heading {
  font-weight: bold;
}

.blog__card-subheading {
  font-style: italic;
}

.blog__card-text {
  color: #575757;
}

.blog__arrow-link {
  margin-top: 1rem;
}

.admin-new-location__headding {
  background-color: #407682;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1em;
  color: white;
}

.admin-new-location__card {
  background-color: white;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 0.5rem;
  color: #26464d;
}

.admin-new-location__card-list {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.admin-new-location__list-name {
  font-weight: bold;
}

.admin-new-location__list-text {
  color: grey;
  margin: 0.25rem 0;
}

.admin-new-location__element {
  border-radius: 1rem;
  width: 100%;
  height: 30rem;
}

.admin-new-location-button-marker-container {
  display: flex;
  column-gap: 0.5rem;
}

.admin-new-location-button-marker {
  flex: 1;
  display: block;
  background-color: #e6e6e6;
  border: none;
  font-size: 1em;
  text-decoration: none;
  text-align: center;
  color: black;
  cursor: pointer;
  padding: 0.5rem;
}

.admin-new-location__button {
  width: 100%;
  border: none;
  padding: 1rem;
  font-size: 1em;
  border-radius: 1rem;
  margin-top: 0.5rem;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.admin-new-location__button:hover {
  opacity: 0.8;
}
.admin-new-location__button-green {
  background-color: #52a600;
}
.admin-new-location__button-red {
  background-color: indianred;
}
.admin-new-location__button-yellow {
  background-color: #ffdd4e;
}

.admin-new-location__input {
  width: 100%;
  font-size: 1em;
  padding: 0.5rem;
  border: none;
  background-color: #efefef;
  border-bottom: 1px solid #adadad;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
}

.gallery {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden; /* Scrollen deaktivieren */
}

#gallery__container {
  position: relative;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

.gallery__img {
  display: none;
  max-width: 100%;
  max-height: 100vh;
  margin: auto;
  min-width: 10rem;
  min-height: 10rem;
}

.gallery__img.active {
  display: block;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1;
}

.gallery__arrow--left {
  left: 10px;
}

.gallery__arrow--right {
  right: 10px;
}

.gallery__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7); /* halbtransparenter schwarzer Hintergrund */
  color: white;
  padding: 10px;
  text-align: center;
}

.gallery__report-button {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 15px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.gallery__report-button:hover {
  background-color: darkred;
}

.gallery__blurred-bg {
  position: fixed;
  width: 110vw; /* 10% breiter als der Viewport */
  height: 110vh; /* 10% höher als der Viewport */
  top: -5vh; /* zentrieren */
  left: -5vw; /* zentrieren */
  z-index: -1;
  filter: blur(10px);
  background: no-repeat center/cover;
  transition: background-image 0.3s ease-in-out;
}

.gallery__blurred-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Abdunkelung */
  pointer-events: none; /* Stellt sicher, dass das Pseudoelement keine Mausklicks/Ereignisse blockiert */
}

.gallery__image-counter {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 2;
}

.download__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.download__card--heading {
  text-align: center;
  color: #26464d;
  font-size: 1.1em;
  font-weight: 500;
}

.download__card--text {
  text-align: center;
  color: #777777;
  font-size: 0.9em;
}

.download__image {
  background-image: url("../images/devices.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center 100%, center center;
  background-size: contain;
  width: 100%;
  height: 20rem;
}

.mapv2__map {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.mapv2__info-panel {
  position: fixed; /* Änderung von absolute zu fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  border-radius: 0.5rem;
  width: 16rem;
  background-color: white;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  display: none; /* Optional: Verstecken Sie das Panel standardmäßig */
}

.mapv2__button-bar {
  position: absolute;
  font-size: 1.5em;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  gap: 0.5rem;
}

.mapv2__button {
  background-color: #0d3241;
  color: white;
  border-radius: 0.5rem;
  padding: 6px 10px;
  cursor: pointer;
}

.mapv2__search-container {
  position: absolute;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 4rem;
  z-index: 1000;
  background: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  padding: 0.5rem;
}
@media (max-width: 62em) {
  .mapv2__search-container {
    top: 5rem;
    width: 80%;
  }
}

.mapv2__search-input {
  padding: 0.5rem;
  width: 100%;
  margin-right: 5px;
  border: none;
  font-size: 1em;
}
.mapv2__search-input:focus {
  outline: none;
}

.mapv2__search-button {
  cursor: pointer;
  height: 100%;
  padding: 0.5rem 1rem;
  background-color: #26464d;
  color: white;
  border: none;
  border-radius: 5px;
}

.mapv2__legend {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.mapv2__legend h3 {
  margin-top: 0;
  padding-bottom: 0.5rem;
  text-decoration: underline;
}

.legend-items li {
  list-style: none;
  margin-bottom: 5px;
}

.legend-items i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
}

.map2__overlay_heading {
  text-align: center;
  margin: 0;
  color: #26464d;
}

.map2__overlay_details {
  text-align: center;
  margin: 0;
  color: #5f5f5f;
}

.map2__overlay_id {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  border-radius: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: #43a2b7;
}

.map2__overlay_image {
  width: 100%;
  position: relative;
  margin-top: 0.5rem;
  border-radius: 1rem;
  height: 14rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.map2__overlay_button {
  display: block;
  width: 100%;
  background-color: #e0e0e0;
  cursor: pointer;
  text-align: center;
  padding: 0.75rem 0;
  border-radius: 1rem;
  text-decoration: none;
  margin-top: 0.5rem;
  color: black;
}

.discover__image-container {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  height: 70vh;
  border-radius: 1rem;
  background-color: #eaeaea;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  overflow: hidden;
}

.discover__image-blur {
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(10px);
  z-index: 0;
}

.discover__image-blur:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Abdunkelung */
  pointer-events: none; /* Stellt sicher, dass das Pseudoelement keine Mausklicks/Ereignisse blockiert */
}

.discover__image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1; /* Stellt sicher, dass .discover__image über dem geblurten Hintergrund liegt */
}

.discover__help-button {
  position: absolute;
  font-size: 2em;
  color: #26464d;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.52);
  padding: 0.5rem 0.75rem;
  border-bottom-right-radius: 1rem;
  z-index: 2;
}

.discover__place-id {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  border-radius: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: #43a2b7;
  z-index: 2;
}

.discover__image-information {
  width: 100%;
  padding: 0.4rem 0;
  text-align: center;
  font-size: 1.2em;
  color: #cccccc;
  background-color: rgba(95, 95, 95, 0.66);
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.discover__vote-container {
  margin: 1rem 0;
  width: 100%;
  height: 12vh;
  display: flex;
  gap: 0.5rem;
}

.discover__vote-yes, .discover__vote-no, .discover__vote-watch {
  flex: 1;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2em;
  border-radius: 1rem;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.discover__vote-yes:active, .discover__vote-no:active, .discover__vote-watch:active {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  font-size: 1.9em;
  text-shadow: 2px 3px 5px rgb(0, 0, 0);
}

.discover__vote-yes {
  background-color: #009106;
}

.discover__vote-watch {
  background-color: #4e7cac;
}

.discover__vote-no {
  background-color: #c00000;
}

.discover__popup--help-heading {
  font-size: 1.2em;
  color: #0d3241;
}

.discover__popup--help-text {
  margin-top: 0.5rem;
  color: #0d3241;
}

.shop__container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.shop__item {
  flex: 1;
  flex-basis: calc(33% - 0.5rem);
  box-sizing: border-box;
  border: 1px solid white;
  background: rgba(217, 217, 217, 0.4);
  backdrop-filter: blur(6px);
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  border-radius: 1rem;
}
@media (max-width: 62em) {
  .shop__item {
    flex-basis: calc(50% - 0.5rem);
  }
}

.shop__item-image {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shop__item-content {
  padding: 0.5rem;
}

.shop__item-button {
  width: 100%;
  border-radius: 1rem;
  padding: 0.5rem;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.shop__ref-information {
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  background-color: #E6E2E1;
  color: #777777;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.patreon__header {
  position: relative;
  height: 8rem;
  border-radius: 1rem;
  margin-top: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.patreon__header-text {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  width: 100%;
  color: white;
  font-size: 2em;
  text-decoration: underline;
  text-shadow: 0 0 15px #0a2828, -1px -1px 0 #000;
}

.patreon__header-arrow {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 0.5rem;
  color: white;
  background-color: #4e7cac;
}

.patreon__text-container {
  margin-top: 1rem;
  color: #0d3241;
}

.patreon__text-heading {
  font-size: 1.2em;
}

.patreon__text-section {
  margin-top: 1rem;
}

.patreon__text-signature {
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 1.2em;
}

.patreon__button {
  text-align: center;
  width: 100%;
  margin-top: 2rem;
  outline: none;
  color: white;
  font-size: 1.2em;
  padding: 1em 3em;
  border: 2px dashed #0d3241;
  border-radius: 15px;
  background-color: #7065ef;
  box-shadow: 0 0 0 4px #7065ef, 2px 2px 4px 2px rgba(0, 0, 0, 0.5);
}

/*
#########################################################
############### Kommentarbereich ########################
#########################################################
 */
.board__comment-container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.board__comment-heading {
  color: #0d3241;
  font-weight: bold;
  font-size: 1.1em;
}

.board__comment-top-container {
  display: flex;
  margin-top: 0.75rem;
  gap: 1rem;
}

.board__comment-picture {
  flex-shrink: 0;
  flex-grow: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.board__comment-comment {
  color: #0d3241;
}

.board__comment-user {
  margin-top: 1rem;
  font-size: 0.8em;
  padding-top: 0.5rem;
  border-top: 1px solid #e3e3e3;
  color: grey;
}

.board__comment-badge-image-container {
  display: flex;
  margin-top: 0.5rem;
  gap: 1rem;
}

.board__comment-badge-image {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
#########################################################
############### Neuer Standort ##########################
#########################################################
 */
.board__new-location-container {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  background-color: #edfeff;
  background: linear-gradient(145deg, rgb(223, 231, 255) 0%, rgb(237, 254, 255) 100%);
}

.board__new-location-heading {
  font-weight: bold;
  font-size: 1.1em;
  color: #0d3241;
  border-bottom: 1px solid #c7c7c7;
}

.board__new-location-content-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.board__new-location-picture {
  width: 10rem;
  height: 10rem;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.board__new-location-info-heading {
  color: #26464d;
  font-weight: bold;
}

.board__new-location-info-text {
  margin-top: 0.25rem;
  color: #26464d;
}

.board__new-location-button {
  margin-top: 1rem;
  color: white;
  background-color: #549aaa;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

/*
#########################################################
################# Bilderbereich #########################
#########################################################
 */
.board__images-card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.board__images-top-container {
  display: flex;
  gap: 1rem;
}

.board__images-top-information-heading {
  color: #0d3241;
  font-weight: bold;
}

.board__images-top-information-text {
  color: #26464d;
  margin-top: 0.2rem;
}

.board__images-image-container {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  max-width: 100%;
}

.board__images-two-image {
  display: block;
  flex: 1;
  background-size: cover;
  background-position: center;
  padding-top: calc(50% - 0.5rem);
  border-radius: 1rem;
  position: relative;
}

.board__images-two-image-shop {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  padding: 0.5rem;
  background-color: rgba(83, 83, 83, 0.6431372549);
}

.board__images-three-image {
  display: block;
  flex: 1;
  background-size: cover;
  background-position: center;
  padding-top: calc(33.33% - 0.33rem);
  border-radius: 1rem;
  position: relative;
}

.board__image-dotted-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
  font-size: 2em;
}

.board__image-user {
  margin-top: 1rem;
  font-size: 0.8em;
  padding-top: 0.5rem;
  border-top: 1px solid #e3e3e3;
  color: grey;
}

/*
#########################################################
#################### Info Cards #########################
#########################################################
 */
.board__information-red-card {
  color: #ffffff;
  background-color: #6d003c;
  border: 1px solid red;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.25rem;
}

.board__information-blue-card {
  color: #ffffff;
  background-color: #407682;
  border: 1px solid #26464d;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.25rem;
}

/*
#########################################################
################## Werbebereich #########################
#########################################################
 */
.board__advertisment-card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

/*
#########################################################
################## Buttons ##############################
#########################################################
*/
.feed__chest-image {
  width: 100%;
  height: 8rem;
  background: url("https://lostplace.club/images/chest/chest_closed.webp") no-repeat center center;
  background-size: contain;
}

.feed__chest-text {
  font-size: 1.2em;
  color: gold;
  text-shadow: 1px 1px 2px black;
}

.favorites__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.favorites__top-container {
  display: flex;
  gap: 1rem;
}

.favorites__top-information {
  flex-grow: 1;
}

.favorites__top-image {
  width: 8rem;
  height: 8rem;
  background-size: cover;
  background-position: center center;
  background-color: grey;
  border-radius: 1rem;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.favorites__top-information-heading {
  color: #0d3241;
  font-weight: bold;
}

.favorites__top-information-text {
  color: #26464d;
  margin-top: 0.25rem;
}

.favorites__card-footer {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e3e3e3;
  color: grey;
  font-size: 0.8em;
}

.listenansicht__login-information {
  margin-top: 1rem;
  background-color: #549aaa;
  color: white;
  padding: 1rem;
  border: 1px solid #26464d;
  border-radius: 0.25rem;
}

.listenansicht__search-form {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.listenasicht__search-input {
  flex-grow: 1;
  padding-left: 1rem;
  font-size: 1.2em;
  border-radius: 1rem;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.listenansicht__search-button {
  border: none;
  background-color: #549aaa;
  color: white;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1rem;
}

.listenansicht__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.listenansicht__flex-container {
  display: flex;
  gap: 1rem;
}

.listenansicht__image {
  height: 8rem;
  width: 8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.listenansicht__information {
  flex-grow: 1;
}

.listenansicht__top-information-heading {
  color: #0d3241;
  font-weight: bold;
}

.listenansicht__top-information-text {
  color: #26464d;
  margin-top: 0.25rem;
}

.settings__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.settings__heading {
  background-color: #407682;
  color: white;
  padding: 0.5rem;
  font-size: 1.2em;
  padding-left: 1rem;
  border-radius: 1rem;
}

.settings__data-container {
  padding-left: 1rem;
}

.settings__data-heading {
  font-size: 1.1em;
  color: rgb(35, 35, 35);
  margin-top: 0.5rem;
}

.settings__data-text {
  font-size: 1.1em;
  color: rgb(107, 107, 107);
}

.settings__data-input {
  border: none;
  margin-top: 0.5rem;
  padding-bottom: 0.25rem;
  padding-left: 0.25rem;
  border-bottom: 1px solid grey;
  font-size: 1.1em;
}

.settings__button-save {
  width: 100%;
  border: none;
  padding: 0.5rem;
  font-size: 1em;
  margin-top: 2rem;
  background-color: grey;
  color: white;
  border-radius: 1rem;
}

.setings__button {
  width: 100%;
  padding: 0.25rem;
  color: grey;
  margin-top: 1.5rem;
}

.settings__unlock-icon {
  margin-left: 5px;
  color: #ccc; /* graue Farbe, um es deaktiviert aussehen zu lassen */
}

.settings__profile-picture {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0.5rem;
}

.settings__profilepictures-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5rem;
}

.settings__profilepictures-item {
  flex: 0 0 calc(50% - 10px);
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  height: calc(50% - 10px);
  aspect-ratio: 1/1;
}

.settings__profilepictures-safe {
  width: 80%;
  padding: 1rem;
  position: fixed;
  font-size: 1.3em;
  color: white;
  bottom: 3rem;
  text-align: center;
  border-radius: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #407682;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.settings__profilepictures-item {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Teilt das Bild in zwei Spalten */
  grid-template-rows: 1fr 1fr; /* Teilt das Bild in zwei Reihen */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 5px solid grey;
  overflow: hidden; /* Verhindert, dass die Teile über den Container hinausgehen */
}

.settings__profilepictures-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.settings__profilepictures-item.selected {
  border: 5px solid #407682;
}

.urbex-f__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}
.urbex-f__card--dark {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  background-color: #0d3241;
  color: white;
  font-size: 1.2em;
}

.urbex-f__question {
  display: none;
  margin-bottom: 20px;
}

.urbex-f__progress-container {
  display: flex;
  justify-content: space-around;
}

.urbex-f__question.active {
  display: block;
}

.urbex-f__feedback {
  margin-top: 3rem;
  font-style: italic;
}

.urbex-f__button {
  width: 100%;
  margin: 0.5rem 0;
  border: none;
  background-color: #407682;
  color: white;
  font-size: 1em;
  padding: 1rem;
  border-radius: 1rem;
}
.urbex-f__button--red {
  background-color: #dc007a;
}
.urbex-f__button--red:active {
  background-color: #4e002b;
}
.urbex-f__button--green {
  background-color: #4CAF50;
}
.urbex-f__button--green:active {
  background-color: #19381a;
}
.urbex-f__button:active {
  background-color: #26464d;
}

.urbex-f__passed-heading {
  font-size: 1.2em;
  font-weight: bold;
  background-color: goldenrod;
  border-radius: 1rem;
  padding: 1rem;
  color: white;
  text-align: center;
  margin-top: 1rem;
}

.urbex-f__passed-image {
  width: 100%;
  padding-top: 100%;
  background-image: url("https://lostplace.club/images/design-images/urbex-licence.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.urbex-f__passed-text {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  color: #26464d;
}

.admin-new-location2__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.admin-new-location2__input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.2rem;
  font-size: 1em;
}

.admin-new-location2__input-button {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.2rem;
  font-size: 1em;
}

.admin-new-location2__map {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  margin-top: 1rem;
}

.admin-new-location2__map-screenshot {
  width: 400px;
  height: 400px;
  margin-top: 0.5rem;
  background-color: rgb(214, 214, 214);
}

.admin-new-location__user-informations-heading {
  color: #0d3241;
  font-size: 1.2em;
}
.admin-new-location__user-informations-text {
  color: grey;
  margin-top: 0.25rem;
}

.admin-new-location__place-informations-heading {
  color: #0d3241;
  font-size: 1.2em;
  margin-top: 1rem;
}

.admin-new-location2__place-informations-input {
  border: 1.5px solid #ecedec;
  border-radius: 0.75rem;
  width: 100%;
  font-size: 1em;
  padding: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}
.admin-new-location2__place-informations-input:focus-within {
  border: 1.5px solid #c0c0c0;
}

.admin-new-location2__place-informations-button {
  background-color: #c0c0c0;
  text-align: center;
  font-weight: bold;
  border-radius: 0.75rem;
  width: 100%;
  font-size: 1em;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.admin-new-location2__button {
  display: block;
  font-family: "Arial", sans-serif;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 1em;
  text-align: center;
  border-radius: 0.25rem;
  background-color: #dcdcdc;
}
.admin-new-location2__button:hover {
  background-color: #e3e3e3;
}

.admin-new-location2__place-informations-radio-group {
  margin-top: 1rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-new-location2__place-informations-radio {
  flex: 1 0 auto;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #dbdbdb;
  color: #0d3241;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-new-location2__place-informations-radio-name {
  margin-left: 0.5rem;
}

.admin-new-location2__place-informations-radio input[type=radio] {
  display: none; /* Den Punkt ausblenden */
}

.admin-new-location-release__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.admin-new-location-release__card-heading {
  color: #0d3241;
  font-size: 1.1em;
}

.admin-new-location-release__card-text {
  color: gray;
}

.admin-new-location-release__image {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0.5rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.admin-new-location-release__button--green {
  background-color: #52a600;
  color: white;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.admin-new-location-release__button--red {
  background-color: darkred;
  color: white;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
}

.upload-images-new__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  text-align: center;
}

.upload-images-new__heading {
  color: #0d3241;
  font-size: 1.1em;
  font-weight: bold;
}

.upload-images-new__subheading {
  color: #26464d;
  margin-top: 0.25rem;
}

.upload-images-new__text {
  margin-top: 0.25rem;
  color: grey;
}

.upload-images-new__file {
  display: none;
}

.upload-images-new__label {
  display: block;
  width: 100%;
  font-size: 1em;
  text-align: center;
  padding: 1rem;
  background-color: #E6E2E1;
  color: #0d3241;
  border-radius: 0.5rem;
  border: 1px solid grey;
}

.upload-images-new__submit {
  background-color: #407682;
  color: white;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  text-align: center;
  font-size: 1em;
  width: 100%;
}

.upload-images-new__checkbox {
  width: 100%;
  text-align: left;
  margin-top: 1rem;
  margin-left: 0.5rem;
}
.upload-images-new__checkbox-label {
  font-size: 1.2em;
}

.upload-images-new__image-container {
  display: flex;
  flex-wrap: wrap;
}

.upload-images-new__image-wrapper {
  position: relative;
  margin-top: 0.5rem;
}

.upload-images-new__image-wrapper img {
  max-width: 100%;
  border-radius: 0.25rem;
}

.upload-images-new__rotate, .upload-images-new__delete {
  position: absolute;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
}

.upload-images-new__rotate {
  left: 5px;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.upload-images-new__delete {
  right: 5px;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.admin_report__card {
  display: block; /* Macht den Link wie einen Block */
  text-decoration: none; /* Entfernt die Standard-Link-Dekoration */
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.admin_report__report-card {
  background-color: #efefef;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

.admin_report__report-card-username {
  font-size: 1.1em;
  color: #0d3241;
}

.admin_report__heading {
  color: #0d3241;
  font-size: 1.2em;
  margin-bottom: 0.5rem;
}

.admin_report__text {
  margin-top: 0.25rem;
  color: grey;
}

.admin__report-button-submit {
  width: 100%;
  border-radius: 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  font-size: 1.2em;
  padding: 1rem;
}

.admin__report-button-hide {
  margin-top: 1rem;
  width: 100%;
  border-radius: 1rem;
  background-color: indianred;
  color: white;
  border: none;
  font-size: 1.2em;
  padding: 1rem;
}

#chest {
  width: 100%;
  height: 200px;
  background: url("https://lostplace.club/images/chest/chest_closed.webp") no-repeat center center;
  background-size: contain; /* Sicherstellen, dass das Bild vollständig sichtbar ist */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border-radius: 1rem;
  user-select: none;
  margin-bottom: 20px; /* Platz für das Gewinn-Element */
  -webkit-tap-highlight-color: transparent;
}

#gewinnDiv {
  margin-top: 1rem;
  /*height: 200px;*/
  display: none;
  opacity: 0;
  background: rgba(255, 215, 0, 0.2); /* Goldene Farbe für das Gewinn-Div */
  border: 1px solid #ffd700;
  border-radius: 1rem;
  padding: 20px;
  text-align: center;
  font-weight: bold; /* Fettdruck */
  animation: slideIn 0.6s forwards; /* Schnellere und komplexere Animation */
}

.chest__daily-container {
  display: flex;
  margin-top: 1rem;
  align-content: center;
  justify-content: space-around;
}

.chest__daily-red {
  display: flex;
  font-size: 2em;
  color: red;
}

.chest__daily-green {
  display: flex;
  font-size: 2em;
  color: lawngreen;
}

.chest__daily-black {
  display: flex;
  font-size: 2em;
}

.chest__container {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 1rem;
  padding: 1rem;
}

.chest__already-opened-container {
  display: flex;
  width: 100%;
  text-align: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

.chest__already-opened-chest {
  display: flex;
  margin: 1rem 0;
  background: url("https://lostplace.club/images/chest/chest_open.webp") no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 10rem;
}

.chest__win-container {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

.chest__win-heading {
  width: 100%;
  color: #2C3E50;
  font-size: 1.4em;
}

.chest__win-icon {
  background: url("https://lostplace.club/images/chest/win_heart.webp") no-repeat center center;
  background-size: contain;
  margin: 1rem 0;
  width: 8rem;
  height: 8rem;
}

.chest__win-text {
  color: #2C3E50;
  font-size: 1.2em;
  margin: 1rem 0;
}

.chest__last-wins-item {
  margin-top: 0.5rem;
}

/* Wackeln der Schatzkiste in X Richtung */
@keyframes shakeX {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
}
/* Wackeln der Schatzkiste in Y Richtung */
@keyframes shakeY {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  75% {
    transform: translateY(-10px);
  }
}
/* Rotieren der Schatzkiste */
@keyframes shakeRotate {
  0%, 100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}
/* Aufploppen der Kiste und des Gewinns */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  } /* Startet kleiner und wächst */
  70% {
    opacity: 1;
    transform: scale(1);
  } /* Überschwingt leicht */
  85% {
    opacity: 1;
    transform: scale(0.9);
  } /* Fährt kurz zurück */
  100% {
    opacity: 1;
    transform: scale(1);
  } /* Endet in voller Größe */
}
.shakeX {
  animation: shakeX 0.2s;
}

.shakeY {
  animation: shakeY 0.2s;
}

.shakeRotate {
  animation: shakeRotate 0.2s;
}

.slideIn {
  animation: slideIn 0.6s forwards;
}

.change-language__item-container {
  display: flex;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
}

.change-language__item-flag {
  width: 10%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.change-language__item-text {
  margin-left: 1rem;
  color: #26464d;
}

.admin-content-release__button-image-yes {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background-color: rgba(82, 166, 0, 0.8);
  border: none;
  color: white;
  padding: 0.5rem;
  font-size: 1.5em;
  border-radius: 10rem;
}

.admin-content-release__button-image-no {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(110, 110, 110, 0.5);
  border: none;
  color: white;
  padding: 0.5rem;
  font-size: 1.5em;
  border-radius: 10rem;
}

.admin-content-release__button-comment {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-content-release__button-comment-yes {
  flex: 1;
  border: none;
  font-size: 1em;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #aaf683;
}

.admin-content-release__button-comment-no {
  flex: 1;
  background-color: darksalmon;
  border: none;
  font-size: 1em;
  padding: 1rem;
  border-radius: 1rem;
}

.board2__background-top {
  background-image: linear-gradient(180deg, #dadada 0%, #F3F3F3 100%);
}

.board2__admin-button {
  display: inline-block;
  margin-top: 2rem;
  border-radius: 1rem;
  color: #26464d;
  padding: 1rem;
  background-color: #e7e9e8;
}

.board2__follow-container {
  background-color: #26464d;
  margin-top: 2rem;
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  border-radius: 2rem;
  padding: 1rem 3rem;
  position: relative;
  overflow: hidden;
}
.board2__follow-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500%;
  height: 500%;
  background-color: rgba(12, 42, 54, 0.3);
  border-radius: 100%;
  z-index: 1;
}
.board2__follow-container::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0.25rem;
  width: 500%;
  height: 500%;
  background-color: rgba(12, 42, 54, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.board2__follow-items-container {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
}

.board2__follow-item {
  background-color: rgba(231, 233, 232, 0.5);
  border-radius: 0.5rem;
  height: 3rem;
  width: 3rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.board2__information-container {
  margin-top: 2rem;
  padding: 1rem;
}

.board2__information-heading {
  color: #656565;
  font-weight: bold;
}

.board2__information-text {
  margin-top: 0.5rem;
  color: #505050;
}

.board2__reward-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.board2__reward-row {
  display: flex;
  gap: 1rem;
}

.board2__reward-row.full {
  flex-direction: column;
}

.board2__reward-card {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: white;
  border-radius: 2rem;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
}

.board2__reward-card-icon {
  font-size: 2em;
  color: #0d3241;
}

.board2__reward-card-text--highlight {
  color: #7065ef;
  margin-top: 0.5rem;
  font-size: 1.25em;
}

.board2__reward-card-text {
  margin-top: 0.5rem;
  color: grey;
}

.board2__reward-card.half {
  flex: 1;
}

.board2__reward-row.full .board2__reward-card {
  width: 100%;
}

.board2__menu-container {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 1rem;
}

.board2__menu-item {
  background-color: white;
  padding: 0.5rem;
  border-radius: 1rem;
  flex: 0 0 auto;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.board2__menu-item--icon {
  background-color: rgba(241, 241, 241, 0.78);
  font-size: 2em;
  padding: 1rem;
  color: #0d3241;
  border-radius: 1rem;
}

.board2__menu-item--text {
  margin-top: 0.5rem;
  text-align: center;
  color: #0d3241;
  font-weight: bold;
}

.board2__standorte-top-container {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  justify-items: center;
  width: 100%;
  align-items: center;
}

.board2__standorte-top-item {
  padding: 10px;
  font-size: 1.4em;
  color: #0d3241;
}

.board2__standorte-container {
  position: relative;
}

.board2__standorte-container-items {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.board2__standorte-item {
  padding: 1rem;
  background-color: white;
  border-radius: 2rem;
  color: #0d3241;
  flex: 0 0 auto; /* Verhindert Wachstum in Flex-Box-Layouts */
  text-align: left;
  width: 14rem; /* Feste Breite, um Wachstum zu verhindern */
  max-width: 14rem; /* Stellt sicher, dass die Breite nicht überschritten wird */
  height: auto; /* Setzt die Höhe automatisch, kann angepasst werden, falls nötig */
  box-sizing: border-box; /* Nimmt die Padding-Werte in die Gesamtbreite auf */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.board2__standorte-item-image {
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.board2__standorte-item-heading {
  margin-top: 0.6rem;
  font-size: 1.2em;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board2__standorte-item-text {
  margin-top: 0.4rem;
  color: grey;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board2__standort-button {
  display: block;
  background-color: #407682;
  width: 100%;
  color: white;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 100rem;
  text-align: center;
}

.board2__community-head-container {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.board2__liste-heading {
  font-size: 1.4em;
  color: #0d3241;
  font-weight: bold;
}

.board2__comment-top-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.board2__comment-image-section {
  margin-right: 1rem;
}

.board2__comment-image {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
}

.board2__comment-info-section {
  flex-grow: 1;
}

.board2__comment-title {
  color: #26464d;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
}

.board2__comment-details {
  color: #777;
  margin: 0.2rem 0;
}

.board2__comment-location {
  color: #555;
}

.board2__comment-text {
  color: #666;
  margin-top: 1rem;
}

.board2__images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.board2__images-item {
  flex: 1 1 calc((100% - 2rem) / 3); /* Maximal 3 Items pro Reihe */
  aspect-ratio: 1/1;
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.board2__shop {
  position: absolute;
  bottom: 1rem; /* 1rem Abstand vom unteren Rand des Links */
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.5rem;
  background-color: rgba(95, 95, 95, 0.5);
  color: snow;
}

#board2__popup-distance {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  background-color: #ececec;
  padding: 1rem;
  border: 2px solid #7065ef;
  z-index: 1001;
  width: 300px; /* Feste Breite für das Popup */
}

#board2__popup-distance-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#board2__popup-distance-content label {
  width: 100%; /* Breite für das Label */
  text-align: center;
}

.board2__popup-distance-range {
  margin-top: 1rem;
  -webkit-appearance: none;
  width: 100%;
  height: 10px; /* Höhe des Tracks leicht erhöhen */
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

/* Slider Track */
.board2__popup-distance-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px; /* Gleiche Höhe wie der Slider */
  background: #7065ef; /* Lila */
  border-radius: 5px;
  cursor: pointer;
}

.board2__popup-distance-range::-moz-range-track {
  width: 100%;
  height: 10px; /* Gleiche Höhe wie der Slider */
  background: #7065ef; /* Lila */
  border-radius: 5px;
  cursor: pointer;
}

/* Slider Thumb */
.board2__popup-distance-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -5px; /* Thumb richtig positionieren */
  background: #7065ef; /* Lila */
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ececec;
}

.board2__popup-distance-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  margin-top: -5px; /* Thumb richtig positionieren */
  background: #7065ef; /* Lila */
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ececec;
}

/* Hover Effect */
.board2__popup-distance-range:hover {
  opacity: 1;
}

#board2__popup-distance-sliderValue {
  margin-top: 1rem;
  display: inline-block;
  min-width: 40px; /* Platz reservieren für die Slider-Werte */
  text-align: center;
}

#board2__popup-distance-content button {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
}

#board2__popup-distance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Abgedunkelter Hintergrund */
  z-index: 1000;
}

.board2__promotion-container {
  display: flex;
  background-color: #549aaa;
  color: white;
  margin-top: 1rem;
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.board2__promotion-image {
  height: 5rem;
  width: 5rem;
  margin: 0 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.board2__promotion-text {
  padding: 1rem;
}

.place2__heading-image {
  background-color: silver;
  height: 15rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.place2__heading-disclaimer {
  text-align: center;
  margin: 0 10%;
  padding: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  color: white;
  font-size: 0.9em;
}

.place2__heading-corner {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #F3F3F3;
  height: 2rem;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
}

.place2__title-container {
  display: flex;
  align-items: center;
}

.place2__title {
  font-size: 1.5em;
  font-weight: bold;
  color: #0d3241;
}

.place2__title-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  font-size: 2em;
  color: #0d3241;
  padding: 0.25rem;
  aspect-ratio: 1/1;
  margin-left: 1rem;
}

.place2__title-container > .place2__title + .place2__title-button {
  margin-left: auto;
}

.place2__title-subheading-container {
  position: relative;
}

.place2__upload-button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fafafa;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: #0d3241;
  font-size: 1em;
  border-radius: 10000rem;
  padding: 1rem 3rem;
}

.place2__place {
  color: #7065ef;
  font-weight: bold;
}

.place2__information {
  color: grey;
  margin-top: 0.5rem;
}

.place2__about-heading {
  margin-top: 2rem;
  font-size: 1.25em;
  color: #0d3241;
  font-weight: 600;
}

.place2__about-text {
  margin-top: 1rem;
  color: grey;
}

.place2__buttons-container {
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
}

.place2__buttons-item {
  font-size: 1.4em;
  color: #0d3241;
  background-color: #fafafa;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.place2__gallery-title {
  margin-top: 2rem;
  font-size: 1.25em;
  color: #0d3241;
  font-weight: 600;
}

.place2__gallery-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.place2__gallery-title-highlight {
  margin-top: 2rem;
  font-size: 1.2em;
  color: #7065ef;
}

.place2__images-container {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.place2__images-item-out {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.place2__images-inner-container {
  display: grid;
  gap: 1rem;
  width: 100%;
  height: 100%;
}

.place2__images-item-inner {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Layout für 1 Item */
.place2__images-inner-container.one-item {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Layout für 2 Items */
.place2__images-inner-container.two-items {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}

/* Layout für 3 Items: Gleichmäßiges Verhältnis für die Höhe */
.place2__images-inner-container.three-items {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; /* Gleichmäßige Verteilung der Zeilen */
  grid-template-areas: "image1 image1" "image2 image3";
}

.place2__images-inner-container.three-items .place2__images-item-inner:nth-child(1) {
  grid-area: image1; /* Großes Bild oben */
}

.place2__images-inner-container.three-items .place2__images-item-inner:nth-child(2) {
  grid-area: image2; /* Kleines Bild links unten */
}

.place2__images-inner-container.three-items .place2__images-item-inner:nth-child(3) {
  grid-area: image3; /* Kleines Bild rechts unten */
}

/* Layout für 4 Items */
.place2__images-inner-container.four-items {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.place2__comment-title {
  margin-top: 2rem;
  font-size: 1.25em;
  color: #0d3241;
  font-weight: 600;
}

.place2__comment-card {
  margin-top: 1rem;
  background-color: #fafafa;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  position: relative;
}

.place2__comment-like {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  font-size: 1.2em;
  background-color: rgba(243, 243, 243, 0.73);
  color: grey;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.place2__comment-like--active {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  font-size: 1.2em;
  background-color: #407682;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.place2__comment-top-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.place2__comment-picture {
  width: 4rem;
  height: 4rem;
  background-color: #F3F3F3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 100rem;
}

.place2__comment-name {
  color: #0d3241;
  font-weight: 500;
}

.place2__comment-subheading {
  color: grey;
  font-size: 0.9em;
  margin-top: 0.25rem;
}

.place2__comment {
  color: #505050;
  margin-top: 0.5rem;
}

.place2__comment-button {
  margin-top: 2rem;
  background-color: #26464d;
  color: whitesmoke;
  text-align: center;
  font-size: 1em;
  padding: 1rem;
  border-radius: 100rem;
  cursor: pointer;
}

/* Animation für das Einblenden */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Stil für das Textarea-Formular */
.place2__comment-textarea {
  margin-top: 2rem;
  padding: 1rem;
  font-size: 1.5em;
  width: 100%;
  resize: none;
  overflow: hidden;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  color: #26464d;
}

#commentForm {
  animation: fadeIn 0.5s ease forwards;
}

.place2__active {
  color: #7065ef;
}

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