.splash-logo-wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100vh;
  width: 100vw;
}

.rev-logo {
  position: relative;
  margin: 0;
  height: 48px;
  width: 60px;
}

.rev-logo:after,
.rev-logo:before {
  width: 30px;
  height: 5px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  display: block;
  content: ' ';
  left: 50%;
}

.rev-logo:before {
  background-image: linear-gradient(200deg, #00ffa3 0%, #7687d4 100%);
  animation: rev-logo-animation 0.9s infinite;
}

.rev-logo:after {
  background-image: linear-gradient(200deg, #7687d4 0%, #dc1fff 100%);
  animation: rev-logo-animation-bottom 0.9s infinite;
}

@keyframes rev-logo-animation {
  0% {
    transform: translate3d(0, 5px, 0);
  }

  25% {
    transform: translate3d(-30px, 5px, 0);
    background-image: linear-gradient(200deg, #7687d4 0%, #dc1fff 100%);
  }

  100% {
    transform: translate3d(-30px, 0, 0);
    background-image: linear-gradient(200deg, #7687d4 0%, #dc1fff 100%);
  }
}

@keyframes rev-logo-animation-bottom {
  0% {
    transform: translate3d(-30px, 0, 0);
  }

  25% {
    transform: translate3d(0, 0, 0);
    background-image: linear-gradient(200deg, #00ffa3 0%, #7687d4 100%);
  }

  100% {
    background-image: linear-gradient(200deg, #00ffa3 0%, #7687d4 100%);
    transform: translate3d(0, 5px, 0);
  }
}
