.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #fff;
    z-index: 999;
    text-align: center;
    transition: all .7s cubic-bezier(.1,.85,.99,1.02);
  -webkit-transition: all .7s cubic-bezier(.1,.85,.99,1.02);
}
.pace.pace-inactive { opacity: 0; background: none; }


.pace.pace-inactive .pace-progress {
  /*display: none;*/
}

.pace .pace-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  height: 5rem;
  width: 5rem;
  width: 100% !important;

  -webkit-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.pace .pace-progress:after {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    content: attr(data-progress-text);
    font-family: "Open Sans", sans-serif;
    font-weight: 900;
    font-size: 130px;
    line-height: 100vh;
    letter-spacing: -8px;
    text-align: center;
    color: rgba(0, 0, 0, 0.19999999999999996);
}