/* Make clicks pass-through */

#np-main.active {
  position: relative;
}
#np-main.active:after {
  content: '';
  width: 100%;
  z-index: 98;
  position: absolute;
  background-color: rgba(255,255,255,0.55);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#np-main:before {
  content: '';
  opacity: 0;
  z-index: -1;
}
#np-main.active:before {
  content: url('/Image/icons/loader.svg');
  width: 100%;
  opacity: 1;
  z-index: 111;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 5s ease-in-out;
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #dd2d24;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #dd2d24, 0 0 5px #dd2d24;
  opacity: 1.0;

  -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: #dd2d24;
  border-left-color: #dd2d24;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-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); }
}

.amcharts-Sprite-group.amcharts-Container-group.amcharts-AmChartsLogo-group {
  display: none;
}