#rocket {
  position: absolute;
  top: -263px;
  left: 10%;
  transform-origin: center top;
  height: 263px;
  width: 163px;
  background: url("../img/rocket.png");
  z-index: 4 !important;  
}


#fire {
  left: 18px;
  width: 130px;
  height: 200px;
  background: radial-gradient(
    circle at center,
    yellow,
    rgb(253, 228, 1),
    rgb(255, 106, 0),
    rgb(202, 205, 11)
  );
  border-radius: 50% 50% 0 0;
  filter: blur(30px);
  position: absolute;
  bottom: -190px;
  opacity: 0;
}

.pin-spacer-erfahrung{
  z-index: 1;
}

.is-active {
  filter: blur(25px) !important;
  animation: fireHeight 0.1s infinite;
  opacity: 0.8 !important;
  bottom: -170px !important;
  transform-origin: center top;
  z-index: 99;
}

@keyframes fireHeight {
  0% {
    transform: scale(1, 1.2);
  }
  25% {
    transform: scale(1, 1.1);
  }
  50% {
    transform: scale(1, 1);
  }
  75% {
    transform: scale(1, 1.1);
  }
  100% {
    transform: scale(1, 1.2);
  }
}