.preloader svg {
  fill: #5e627e;
}
.preloader-overlay {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  top: 90px;
  align-items: center;
  justify-content: center;
  width: 80%;
  width: -webkit-fill-available;
  height: 100%;
  text-align: center;
  background-color: #1c1b1a;
  z-index: 9999;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.55s;
  min-height: 180px;
}
.preloader {
  width: 100%;
}
.preloader-is--active .preloader-overlay {
  transform: translateY(0);
}
.preloader-inner {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: z;
}
.pong-loader {
  top: 36.5%;
}
.pong-loader-left {
  top: 35.5%;
  height: 20px;
  width: 3px;
  background-color: transparent;
  animation: w 0.75s ease-out infinite;
  box-shadow: -12.5px -5px 0 #fff;
}
.pong-loader-right {
  top: 35.5%;
  height: 20px;
  width: 3px;
  background-color: transparent;
  animation: x 0.75s ease-out infinite;
  box-shadow: 12.5px 12px 0 #fff;
}
.pong-loader-left,
.pong-loader-right,
.pong-loader,
.pong-loader:before {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.pong-loader:before {
  content: '';
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #a3ff12;
  border-radius: 50%;
  animation: y 0.6s ease-out infinite;
}
@keyframes w {
  50% {
    transform: translateY(16px);
  }
}
@keyframes x {
  50% {
    transform: translateY(-16px);
  }
}
@keyframes y {
  0% {
    transform: translateX(-10px) scaleY(1.2);
  }
  25% {
    transform: scaleX(1.2);
  }
  50% {
    transform: translateX(7.5px) scaleY(1.2);
  }
  75% {
    transform: scaleX(1.2);
  }
  to {
    transform: translateX(-10px);
  }
}
@keyframes z {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

