/* Extract the splash style into this file to load it immediately */
.splash-screen {
  background: rgb(0, 229, 218);
  background: linear-gradient(214deg, rgba(0, 229, 218, 1) 0%, rgba(163, 71, 255, 1) 100%);
  height: 100%;
  width: 100%;
  position: fixed;
}
.splash-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  margin: auto;
  animation: spin 0.8s steps(8) infinite;
}
.splash-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.splash-loading-container {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
}

.splash-logo {
  width: 224px;
  height: 63px;
  object-fit: contain;
}

html,
body {
  margin: 0;
  padding: 0;
}
