.global-progress {
  position: fixed;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  width: 98%;
  max-width: 400px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none; /* So we can click what's underneath (the nav bar) */
  transition: opacity 2000ms ease, transform 500ms ease;
}

.global-progress.is-visible {
  opacity: 1;
}

.global-progress .progress-bar {
  width: 0%;
}