.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-perspective: 12rem;
  -ms-perspective: 12rem;
  -o-perspective: 12rem;
  perspective: 12rem;
  z-index: 9999999;
  position: fixed;
  height: 6rem;
  width: 6rem;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.pace.pace-inactive .pace-progress {
  visibility: hidden;
  box-shadow: 0 0 0 0 white;
  z-index: -1;
}
.pace .pace-progress {
  z-index: 9999999;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 6rem;
  width: 6rem !important;
  line-height: 6rem;
  font-size: 2rem;
  border-radius: 50%;
  background: #e87a67;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 100;
  text-align: center;
  box-shadow: 0 0 0 99999px white;
  -webkit-transition: 1s ease;
          transition: 1s ease;
  visibility: visible;
}
.pace .pace-progress:after {
  content: attr(data-progress-text);
  display: block;
}
