#nprogress {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
  top: 0;
}

#nprogress .bar {
  background: rgba(248,85,10, 0.8);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 50px;
  height: 100%;
  box-shadow: 0 0 10px rgba(95, 158, 160, 0.95), 0 0 5px rgba(95, 158, 160, 0.95);
  background: rgba(248,85,10, 0.9);
  opacity: 1.0;
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 100;
  top: 20px;
  right: 20px;
}

#nprogress .spinner-icon {
  width: 15px;
  height: 15px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: rgba(248,85,10, 0.8);
  border-left-color: rgba(248,85,10, 0.8);
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

