/* Available before the application bundle; shared by HTML and React loaders. */
body { margin: 0; }
.app-loading {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  margin: 0;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #05233a url("/icons/launch-background.svg?v=2") center / 100% 100% no-repeat;
  font: 14px/1.5 "Century Gothic", Arial, sans-serif;
}
.app-loading__artwork { display: block; width: min(320px, calc(100vw - 64px)); height: auto; }
.app-loading__indicator {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  margin-top: 12px;
  border: 2px solid #ffffff40;
  border-top-color: #fff;
  border-radius: 50%;
  animation: app-loading-spin 1s linear infinite;
}
.app-loading__label { margin-top: 12px; color: #fff; }
.app-loading__fallback { margin: 12px 0 0; text-align: center; }
@keyframes app-loading-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .app-loading__indicator { animation: none; } }
@media (max-height: 450px) { .app-loading__artwork { width: min(220px, 55vh); } }
