@charset "utf-8";
/* CSS Document */
section#preloader {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 9998;
  position: fixed;

  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

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

  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: display 500ms;
}

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

.pace .pace-progress {
  position: fixed;
  z-index: 12000;
  top: 0;
  right: 0;
  height: 5rem;
  width: 5rem;

  -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: block;
  position: absolute;
  top: 50%;
  right: 50%;
  /* transform: translate(-50%,-50%); */
  content: attr(data-progress-text);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  text-align: right;
  color: #1c1c1c;
}
