.pace.pace-inactive {
  display: none;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 2000;
  position: fixed;
  height: 60px;
  width: 100px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pace .pace-progress {
  z-index: 2000;
  position: absolute;
  height: 120px;
  width: 100px;
  -webkit-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.pace .pace-progress:before {
  content: attr(data-progress-text);
  text-align: center;
  color: #777;
  border-radius: 50%;
  font-family: "Helvetica Neue",sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 0.66;
  display: block;
  z-index: 999;
  position: absolute;
  top: 100%;
  width: 100%;
}

.pace .pace-activity {
  font-size: 15px;
  line-height: 1;
  z-index: 2000;
  position: absolute;
  height: 60px;
  width: 100px;

  display: block;
}

/*NSC Custom*/
#nscLoader {
  width: 300%;
  display: flex;
  flex-direction: column;
  align-content: center;
  position: relative;
  top: -175%;
  left: -100%;
}
#nscLoader #NSC_logo #Ellipse_1 {
  /* No transform-origin */
  animation: bigpulse2 1.5s ease-in-out infinite;
  animation-delay: 1s;
}
#nscLoader #NSC_logo #Ellipse_2 {
  /* transform-origin same as circles center location */
  animation: bigpulse2 1.5s ease-in-out infinite;
  animation-delay: 0.9s;
}
#nscLoader #NSC_logo #Ellipse_3 {
  /* Trying transform-origin center center keyword */
  animation: bigpulse2 1.5s ease-in-out infinite;
  animation-delay: 0.8s;
}
#nscLoader #NSC_logo #Ellipse_4 {
  /* Trying transform-origin center center keyword */
  animation: bigpulse2 1.5s ease-in-out infinite;
  animation-delay: 0.7s;
}
#nscLoader #NSC_logo #Path_258 {
  /* Trying transform-origin center keyword */
  transform-origin: 165px 173px;
  animation: bigpulse2 1.5s ease-in-out infinite;
  animation-delay: 0.2s;
}
#nscLoader #NSC_logo #Path_259 {
  /* This goes off screen as soon as animation starts */
  transform-origin: 65px 80px;
  animation: pulse 1.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
#nscLoader #NSC_logo #Path_284 {
  /* centered */
  transform-origin: 90px 62px;
  animation: pulse 1.5s ease-in-out infinite;
  animation-delay: 0.5s;
}
#nscLoader #NSC_logo #Path_285 {
  transform-origin: 119px 77px;
  animation: bigpulse 1.5s ease-in-out infinite;
  animation-delay: 0.4s;
}
#nscLoader #NSC_logo #Path_286 {
  /* This goes off screen as soon as animation starts */
  transform-origin: 150px 80px;
  animation: pulse 1.5s ease-in-out infinite;
  animation-delay: 0.3s;
}
#nscLoader .load-6 .letter-holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: auto;
}
#nscLoader .load-6 .letter-holder .letter {
  font-size: 1rem;
  color: #777;
  font-family: "Inter", sans-serif;
  font-feature-settings: "tnum";
}
#nscLoader .load-6 .letter-holder .anim {
  animation-name: loadingF;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
#nscLoader .load-6 .letter-holder .l-1 {
  animation-delay: 0.3s;
}
#nscLoader .load-6 .letter-holder .l-2 {
  animation-delay: 0.4s;
}
#nscLoader .load-6 .letter-holder .l-3 {
  animation-delay: 0.5s;
}
#nscLoader .load-6 .letter-holder .l-4 {
  animation-delay: 0.6s;
}
#nscLoader .load-6 .letter-holder .l-5 {
  animation-delay: 0.7s;
}
#nscLoader .load-6 .letter-holder .l-6 {
  animation-delay: 0.8s;
}
#nscLoader .load-6 .letter-holder .l-7 {
  animation-delay: 0.9s;
}
#nscLoader .load-6 .letter-holder .l-8 {
  animation-delay: 1s;
}
#nscLoader .load-6 .letter-holder .l-9 {
  animation-delay: 1.1s;
}
#nscLoader .load-6 .letter-holder .l-10 {
  animation-delay: 1.2s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
  5% {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
  }
  10% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes bigpulse {
  0% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
  5% {
    transform: scale(1.3);
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
  }
  10% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes bigpulse2 {
  0% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
  5% {
    transform: scale(1.8);
    -ms-transform: scale(1.8);
    -webkit-transform: scale(1.8);
  }
  10% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes loadingF {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
