#position-walter {

}

.temp-marker{
	background-color:#fff;
}

/*#walter-spot {
    width: 80px;
    height: 80px;
    background-image: url("../img/punkt_sm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

#walter-spot {
    width: 40px;
    height: 40px;
    background-image: url("../img/punkt_sm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

#walter-spot1 {
    width: 40px;
    height: 40px;
    background-image: url("../img/punkt_sm1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.pulse::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #0b2644;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.pulse:hover::after, .pulse:focus::after {
  animation: none;
  display: none;
}


@keyframes ring {
  0% {
    width: 70px;
    height: 70px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}