/* This is a compiled file, you should be editing the file in the templates directory */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

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

.pace.pace-inactive .pace-progress {
  /*display: none;*/
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.pace .pace-progress {
  position: fixed;
  z-index: 2000;
  background: #fff;
  top: 0;
  right: 0;
  height: 5rem;
  width: 100%;
  height: 100vh;
  -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: '';
  width: 70px;
  height: 70px;
  background: url('/assets/img/logo-loader.png') no-repeat;
  background-size: 70px;
  top: -10vh;
  left: 0px;
  right: 0px;
  position: absolute;
  bottom: 0;
  margin: auto;
}
.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 6vh;
  right: 0;
  left: 0;
  bottom: 0;
  content: attr(data-progress-text);
  font-family: 'Dosis', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  color: black;
  width: 100px;
  height: 20px;
  margin: auto;
}
