app-root {
  opacity: 0;
  transition: opacity 0.5s;
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f0f3f4; /* $body-bg */
  z-index: 999999;
  transition: opacity 0.65s;
}

.splash-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.splash-loader-inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: 100%;
  color: #ccc; /* $theme-color('gray-pure') */
  text-align: center;
}

.splash-loader-inner div {
  font-size: 20px;
  opacity: 0;
  display: inline-block;
}

@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }

  33% {
    opacity: 1;
    transform: translateX(0);
  }

  66% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}

.splash-loader-inner div:nth-child(6) {
  animation: lol 3s infinite ease-in-out;
}
.splash-loader-inner div:nth-child(5) {
  animation: lol 3s 0.1s infinite ease-in-out;
}
.splash-loader-inner div:nth-child(4) {
  animation: lol 3s 0.2s infinite ease-in-out;
}
.splash-loader-inner div:nth-child(3) {
  animation: lol 3s 0.3s infinite ease-in-out;
}
.splash-loader-inner div:nth-child(2) {
  animation: lol 3s 0.4s infinite ease-in-out;
}
.splash-loader-inner div:nth-child(1) {
  animation: lol 3s 0.5s infinite ease-in-out;
}
