/*Admin-Bereich*/
.kompass-welcome_page_kompass_termine .widefat th, .kompass-welcome_page_kompass_termine .widefat td, .kompass-welcome_page_kompass_termine .row-title, .kompass-welcome_page_kompass_termine .row-actions a {
  color: #000 !important;
}

.kompass-frontend-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.kompass-frontend {
  position: relative;
  z-index: 0;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: sans-serif;
  padding-bottom: 60px; 
}

.kompass-clock {
  position: absolute;
  top: 10.5vh;
  right: 2vh;
  font-size: 2.4vw !important;
  font-weight: bold;
  z-index: 10;
}

.kompass-logo {
  position: absolute;
  z-index: 10;
  right: 2vh;
  top: 2vh;
  width: 24vw;
}

.kompass-logo img {
  width: 100%;
  height: auto;
}

.kompass-infos {
  position: relative;
  text-align: center;
  padding: 20px;
  z-index: 10;
}

#kompass-termin-container {
  position: absolute;
  width: 100vw;
  top: 20vh;
  left: 0;
  padding: 1vw;
  text-align: center;
  z-index: 10;
}
#kompass-ticker-container {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
  background: #000;
  padding: 2px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 60s linear infinite;
  -webkit-animation: tickerScroll 60s linear infinite;
  will-change: transform;
}

.ticker-content {
  white-space: nowrap;
  padding-right: 0.1vw;
  color: #fff;
  font-size: 18px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.kompass-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

#herzlich-willkommen {
  position: fixed;
  top: 0vh;
  left: 3vh;
  font-size: 6vw;
}

.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.slider-bg:first-child {
  opacity: 1;
}

.kompass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

#termin-teilnehmer {
  display: flex;
  justify-content: center;
  column-gap: 1vw;
}

#termin-teilnehmer li {
  color: black;
  display: block;
  margin-left: 1vw;
}

#termin-teilnehmer li::after {
  content: "|";
  margin-left: 1vw;
}

#termin-teilnehmer li:last-of-type::after {
  content: "";
  margin-left: 1vw;
}

#begruessung {
  margin: 0;
}