.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 100ms ease, transform 100ms ease;*/
}

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

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