/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #00aeff;

  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  opacity: 0.7;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  margin-left: -30px;	
  margin-top: -30px;	
}

#nprogress .spinner-icon {
  width: 60px;
  height: 60px;
  box-sizing: border-box;

  border-radius: 50%;
  border-top: 3px solid #00aeff;
  border-right: 2px solid transparent;


  -webkit-animation: nprogress-spinner .7s linear infinite;
          animation: nprogress-spinner .7s linear infinite;
}

.nprogress-parent {
  overflow: hidden;
  position: relative;
}

body.nprogress-parent #nprogress .bar,
body.nprogress-parent #nprogress .spinner {
  position: fixed;
}

@-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); }
}