.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: xx-large;

  .splash-screen__text {
    margin: 10px;
  }

  .splash-screen__loader {
    margin-top: 20px;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 8px solid rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    animation: splash-screen__spin 1s linear infinite;
  }
}

.splash-screen.splash-screen--loading,
.splash-screen.splash-screen--launching {
  color: #3498db;

  .splash-screen__loader {
    border-top: 8px solid #3498db;
  }
}

@keyframes splash-screen__spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
