/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #0073a8;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #0073a8, 0 0 5px #0073a8;
  opacity: 1;
  -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: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #0073a8;
  border-left-color: #0073a8;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  position: relative;
  overflow: hidden;
}
#site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, .97);
  z-index: 10000;
}
#site-preloader.load-complete {
  display: none;
}
#site-preloader .nprogress-loading-text {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  margin-top: -30px;
}
#site-preloader .nprogress-loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #0073a8;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
#site-preloader .nprogress-loading-text span:nth-child(1) {
  -webkit-animation: nprogress-blur-text 1.5s 0s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 0s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(2) {
  -webkit-animation: nprogress-blur-text 1.5s 0.2s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 0.2s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(3) {
  -webkit-animation: nprogress-blur-text 1.5s 0.4s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 0.4s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(4) {
  -webkit-animation: nprogress-blur-text 1.5s 0.6s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 0.6s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(5) {
  -webkit-animation: nprogress-blur-text 1.5s 0.8s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 0.8s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(6) {
  -webkit-animation: nprogress-blur-text 1.5s 1s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 1s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(7) {
  -webkit-animation: nprogress-blur-text 1.5s 1.2s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 1.2s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(8) {
  -webkit-animation: nprogress-blur-text 1.5s 1.4s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 1.4s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(9) {
  -webkit-animation: nprogress-blur-text 1.5s 1.6s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 1.6s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(10) {
  -webkit-animation: nprogress-blur-text 1.5s 1.8s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 1.8s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(11) {
  -webkit-animation: nprogress-blur-text 1.5s 2s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 2s infinite linear alternate;
}
#site-preloader .nprogress-loading-text span:nth-child(12) {
  -webkit-animation: nprogress-blur-text 1.5s 2.2s infinite linear alternate;
  animation: nprogress-blur-text 1.5s 2.2s infinite linear alternate;
}
#site-preloader #nprogress {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #eaeaea;
  margin-top: 12px;
}
#site-preloader #nprogress .spinner, #site-preloader #nprogress .bar {
  position: absolute;
}
#site-preloader #nprogress .bar {
  height: 4px;
}
#site-preloader #nprogress .peg {
  -webkit-transform: unset;
  transform: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
@-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);
  }
}
@-webkit-keyframes nprogress-blur-text {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }
}
@keyframes nprogress-blur-text {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }
}
