body #app-splash-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background-color: #111827;
  color: #f9fafb;
  z-index: 999999;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body #app-splash-screen img {
  width: 120px;
  max-width: 120px;
}

#spinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 56px;
}

#spinner > div {
  width: 12px;
  height: 12px;
  background-color: #1e96f7;
  border-radius: 100%;
  display: inline-block;
  animation: app-bouncedelay 1s infinite ease-in-out both;
}

#spinner .bounce1 {
  animation-delay: -0.32s;
}

#spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes app-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}
