html {
  height: 100%;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body > app > .spinner-container {
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body > app > .spinner-container > .spinner-logo {
  display: none;
}
body > app > .spinner-container > .spinner {
  /* -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border: 3px solid #12ADEF;
  border-top: 3px solid #ddd;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  opacity: 0.8; */
  display: none;
}
body {
  height: 100%;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
    -webkit-animation: none;
  }
}
