.blixt .statistik__count {
  font-weight: bold;
  font-size: 10rem;
  color: #b52f2f;
  text-shadow: 2px 2px 0 #000;
}

.blixt .statistik__count .glitch::after,
.blixt .statistik__count .glitch::before {
  display: none;
}

.blixt .blood {
  position: relative;
  /* background: rgba(0, 0, 0, 0.5); */
  width: 100%;
  height: 100%;
  margin: auto;
  filter: url(#blood-filter);
  z-index: 1000;
}

.drop {
  display: none;
}

.blixt .drop {
  display: block;
  opacity: 0;
  width: 20px;
  height: 25px;
  background: #b52f2f;
  border-radius: 1000px;
  position: absolute;
  animation: drip 3s infinite;
  border: 2px solid #dc6b6b;
  border-top: none;
  top: 10rem;
}

.blixt .drop:nth-child(2) {
  left: 11%;
  animation-delay: 0.5s;
}

.blixt .drop:nth-child(3) {
  left: 30%;
  animation-delay: 1s;
}

.blixt .drop:nth-child(4) {
  left: 50%;
  animation-delay: 0.75s;
}

.blixt .drop:nth-child(5) {
  left: 70%;
  animation-delay: 1.5s;
}

.blixt .drop:nth-child(6) {
  left: 90%;
  animation-delay: 0s;
}

@keyframes drip {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    transform: translateY(400px);
  }

  100% {
    transform: translateY(1000px);
  }
}