/* Render-blocking, same-origin styles shared by the HTML bootstrap and React.
   Keep independent of the application bundle and permitted by style-src 'self'. */
html, body, #root { min-height: 100%; margin: 0; }
html:root .access-loading {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  z-index: 90;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  overflow: hidden;
  background: #ffffff;
  color: #1d1d1f;
  font: 400 16px/1.4 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}
html:root .access-loading--overlay { z-index: 140; }
html:root .access-loading__copy { width: min(430px, 86vw); display: grid; justify-items: center; gap: 9px; }
html:root .access-loading__copy > span { margin-bottom: 10px; color: #0071e3; font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
html:root .access-loading__copy strong { max-width: 420px; color: #1d1d1f; font-size: clamp(20px, 3vw, 28px); font-weight: 450; line-height: 1.17; letter-spacing: -.035em; }
html:root .access-loading__copy small { max-width: 370px; color: #6e6e73; font-size: 11px; line-height: 1.55; }
html:root .access-loading__progress { width: 100%; display: grid; margin-top: 19px; }
html:root .access-loading__progress > span { height: 5px; display: block; overflow: hidden; border-radius: 999px; background: #e8f1fc; }
html:root .access-loading__progress i { width: 42%; height: 100%; display: block; border-radius: inherit; background: #0071e3; animation: access-progress 1.35s cubic-bezier(.65, 0, .35, 1) infinite; }
@keyframes access-progress { 0% { transform: translateX(-112%); } 62%, 100% { transform: translateX(250%); } }
@media (prefers-reduced-motion: reduce) {
  html:root .access-loading__progress i { width: 72%; opacity: .72; animation: none; transform: none; }
}
@media (max-width: 760px) {
  html:root .access-loading { padding: 22px; }
  html:root .access-loading__copy { width: min(360px, 88vw); }
  html:root .access-loading__copy strong { font-size: clamp(19px, 6.2vw, 24px); }
}
