#appLoadingBar {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.55);
  height: 3px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease, opacity 0.2s ease;
  width: 100%;
  z-index: 2000;
}

#appLoadingBar.is-loading {
  opacity: 1;
  transform: scaleX(0.82);
}

#appLoadingBar.is-complete {
  opacity: 0;
  transform: scaleX(1);
}
