#nprogress .inner,
.nprogress-auto .inner {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#nprogress .lds-ring,
.nprogress-auto .lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#nprogress .lds-ring div,
.nprogress-auto .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #4cb9ff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #4cb9ff transparent transparent transparent;
}
#nprogress .lds-ring div:nth-child(1),
.nprogress-auto .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
#nprogress .lds-ring div:nth-child(2),
.nprogress-auto .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
#nprogress .lds-ring div:nth-child(3),
.nprogress-auto .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#nprogress,
.nprogress-auto  {
  pointer-events: none;
}

#nprogress,
.nprogress-auto  {
  position: fixed;
  z-index: 1031;
  height: 100vh;
  width: 100vw;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#nprogress .bar,
.nprogress-auto .bar {
  background: #969696;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  padding: 0;
}

#nprogress .peg,
.nprogress-auto .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #969696, 0 0 5px #969696;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
}

#nprogress .spinner,
.nprogress-auto .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon,
.nprogress-auto .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #969696;
  border-left-color: #969696;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 0.4s linear infinite;
  animation: nprogress-spinner 0.4s linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent .nprogress-auto .bar,
.nprogress-custom-parent .nprogress-auto .spinner {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

#nprogress .spinner,
.nprogress-auto .spinner  {
  display: none;
}
