/* Input field for token */
div.hidden {
  display: none;
}

.otp-input {
    display: flex;
    gap: 0.5em;
}
.otp-input input {
    width: 2em;
    padding: 0.5em 0;
}
.pin-input {
    display: flex;
    gap: 0.5em;
    width:25px;
}

/* Hotspots for Stationen */
.hotspots--wrapper {
  position: relative;
  margin: auto;
  max-width: 960px;
  font-weight: 500;
}

.hotspots--figure {
  max-width: 100%;
}

.hotspot {
  position: absolute;
  display: block;
}

.hotspot--title {
  display: inline-block;
  padding-right: 10px;
  color: #ff0000;
  text-transform: uppercase;
  line-height: 50px;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all cubic-bezier(.8,0,.2,1) .4s;
}

.hotspot--title__right {
  float: right;
  padding-right: 0;
  padding-left: 10px;
}

.hotspot--cta {
  position: relative;
  float: right;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fffc23;
  opacity: 0.4;
  transition: all cubic-bezier(.8,0,.2,1) .4s;
}

.hotspot--cta::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f00;
  z-index: 2;
  opacity: 1;
  transition: opacity .6s;
  animation: pulse 1.5s cubic-bezier(.8,0,.2,1) 0s infinite;
}

.hotspot:hover .hotspot--cta {
  transform: scale(.6);
}

.hotspot:hover .hotspot--cta:after {
  opacity: 0;
}

@keyframes pulse {
  0% {transform: scale(0.4);}
  33% {transform: scale(1);}
  66% {transform: scale(0.4);}
  100% {transform: scale(0.4);}
}

.hotspot--station1 {
  top: 50%;
  right: 11%;
}
.hotspot--station2 {
  top: 39%;
  right: 9%;
}
.hotspot--station3 {
  top: 44%;
  right: 10%;
}
.hotspot--station4 {
  top: 45%;
  right: 14%;
}
.hotspot--station5 {
  top: 48%;
  right: 22%;
}
.hotspot--station6 {
  top: 85%;
  right: 59%;
}
.hotspot--station7 {
  top: 54%;
  right: 93%;
}
.hotspot--station8 {
  top: 22%;
  right: 64%;
}
.hotspot--station9 {
  top: 20%;
  right: 55%;
}
.hotspot--station10 {
  top: 52%;
  right: 16%;
}


@media screen and (max-width: 640px) {
  .hotspot--title {
    line-height: 40px;
    font-size: 10px;
  }
  .hotspot--cta {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 420px) {
  .hotspot--title {
    line-height: 30px;
    font-size: 9px;
  }
  .hotspot--cta {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 320px) {
  .hotspot--title {
    display: none;
  }
  
  .hotspot--cta {
    width: 20px;
    height: 20px;
  }
  .hotspot--cta::after {
    width: 5px;
    height: 5px;
  }
}
/* Anmeldeportal */

.w3-uni,.w3-hover-uni:hover{color:#fff!important;background-color:#00457d!important}
.lit-green,.lit-green:hover{color:#000!important;background-color:#ddea76!important}
.lit-back{
	color:#000!important;
	background-color:#c2e3e7!important;
	transition: background-color 0.3s ease;
}
.lit-back:hover{
	color:#000!important;
	background-color:#2bc5d3!important;
	transform: scale(1.1);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* Button */
.lit-button{
	color:#000!important;
	background-color:#f7ac4f!important;
	transition: background-color 0.3s ease;
}
.lit-button:hover{
	color:#000!important;
	background-color:#eecb30!important;
	transform: scale(1.1);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.lit-titel{
	color:#eecb30!important;
}
.lit-beg{
	background-color:#ccc8d1!important;
}
.lit-stat{
	background-color:#f3df86!important;
}
