@keyframes pulse {
  0% {
    transform: scale(1);
 }
  15% {
    transform: scale(1.02);
 }
  30% {
    transform: scale(1);
 }
  45% {
    transform: scale(1.02);
 }
  60% {
    transform: scale(1);
 }
}

.splashscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  overflow: hidden;
}

.splashscreen-left,
.splashscreen-right {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.splashscreen-left {
  z-index: 2;
  background: linear-gradient(-75deg, transparent 0%, transparent 50%, #F6FAFA 50%, #F6FAFA 100%);
}

.splashscreen-right {
  z-index: 1;
  background: linear-gradient(-75deg, #F6FAFA 0%, #F6FAFA 50%, transparent 50%, transparent 100%);
}

.splashscreen-left::after,
.splashscreen-right::after {
  content: '';
  position: absolute;

  background-repeat: no-repeat;
  background-size: 220px 220px;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  margin-top: -120px;
  margin-left: -95px;
  animation: pulse 1s infinite linear;
}

.splashscreen-left::after {
  background-image: url('/static/images/splash/logo_left.png');
}

.splashscreen-right::after {
  background-image: url('/static/images/splash/logo_right.png');
}

.splashscreen_exit .splashscreen-left,
.splashscreen_exit .splashscreen-right {
  transition: transform 1s;
}

.splashscreen_exit .splashscreen-left::after,
.splashscreen_exit .splashscreen-right::after {
  animation: none;
}

.splashscreen_exit .splashscreen-left {
  transform: translateX(-100%);
}

.splashscreen_exit .splashscreen-right {
  transform: translateX(100%);
}