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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body > app > .spinner-container {
  background: #fcfcfc;
  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 > .plane-gif {
  display: none;
}

body > app > .spinner-container > .spinner {
  width: 128px;
  height: 128px;
  border: 4px solid #de0108;
  background: 0 0;
  -webkit-mask: none;
  border-radius: 50%;
  border-right: 4px solid #fff;
  -webkit-animation: spin 0.8s linear infinite;
  -moz-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

body {
  height: 100%;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
    -webkit-animation: none;
  }
}
