@charset "UTF-8";
.its-squest-left, .its-squest-right {
  margin: -1.2rem 0.5rem 0 0.5rem;
  color: silver;
  opacity: 0.2;
  pointer-events: none;
  text-align: center;
  flex: 0 0 auto; /* Kein Wachstum oder Schrumpfen, feste Breite */
  display: none;
}
.its-squest-left.visible, .its-squest-right.visible {
  display: inline-block;
}
.its-squest-left.active, .its-squest-right.active {
  color: #cee82e;
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}

div.quest-stations {
  position: relative;
}
div.quest-stations > div {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.squest-bubble.inactive {
  cursor: default;
  color: rgba(0, 0, 0, 0.38);
}
.squest-bubble.inactive:before, .squest-bubble.inactive:hover:before {
  background: #a5b4a8;
}

.navi-container {
  display: flex;
  justify-content: space-between; /* Elemente gleichmäßig verteilen */
  align-items: center; /* Vertikal zentrieren */
  padding: 10px;
}

.squest-bubbles {
  flex: 1; /* Nimmt den verbleibenden Platz ein */
  overflow: auto;
  text-align: center; /* Text horizontal zentrieren */
  white-space: nowrap;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.squest-bubbles::-webkit-scrollbar {
  display: none;
}

.squest-bubble {
  display: inline-block;
  margin: 0 1rem 0.6rem 1rem;
  position: relative;
  padding-top: 3rem;
  text-align: center;
  cursor: pointer;
  min-width: 180px;
}
.squest-bubble:hover:before {
  background: #b7c56f;
}
.squest-bubble:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1rem;
  border-radius: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: #F4F7E2;
  z-index: 2;
}
.squest-bubble:after {
  content: "";
  position: absolute;
  top: 1.65rem;
  left: -2rem;
  right: -2rem;
  height: 0.2rem;
  background: #F4F7E2;
  z-index: 1;
}
.squest-bubble.active:before {
  background: #929956;
}
.squest-bubble.active {
  cursor: default;
}
.squest-bubble.disabled {
  pointer-events: none;
  cursor: default;
}
.squest-bubble.disabled:before {
  opacity: 0.3;
}

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