/* 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;

  -webkit-perspective: 12rem;
  -moz-perspective: 12rem;
  -ms-perspective: 12rem;
  -o-perspective: 12rem;
  perspective: 12rem;

  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  zoom: 1; /* ie 5,6,7 bug fix */ filter: alpha(opacity=80); opacity: 0.8;
  background:rgba(0, 0, 0, 0.7);

}

.pace-running > *:not(.pace) {
  opacity:1;
}

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

.pace .pace-progress {

  position:absolute;
  margin-top:-30px;
  margin-left:-30px;
  top:50%;
  left:50%;
  width:58px;
  height:58px;
  border-radius:30px;
  /* border:1px solid #fc71b2; */
  background:url("../images/loading.gif") 50% 50% no-repeat;
  background-size:60px 60px;
  font-size:0;
}

.pace .pace-progress:after {
  content: attr(data-progress-text);
  display: block;
}
