.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #101E8E;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

#loader_wrap {
opacity: 0;
transition: all 0.3s ease;
}

.pace-done #loader_wrap {
opacity: 1;
}

body.pace-running {
background: url("../img/loading.png") no-repeat center center;
background-size: 240px;
height: 100vh;
opacity: 1;
overflow: hidden;
}

@media screen and (max-width: 767px) {
.pace-running {
background: #FFF url("../img/loading.png") no-repeat center center;
background-size: 200px;
}
}

@media screen and (max-width: 320px) {
.pace-running {
background: #FFF url("../img/loading.png") no-repeat center center;
background-size: 240px;
}
}