.pace-running #skrollr-body{
  opacity: 0; 
  -webkit-transition: all 0ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -moz-transition: all 0ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -o-transition: all 0ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  transition: all 0ms cubic-bezier(0.445, 0.050, 0.550, 0.950); /* easeInOutSine */     
}

#skrollr-body{
  opacity: 1;  
}

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

.pace .pace-progress {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 12px;
  background: #29d;

  -webkit-transition: -webkit-transform .3s, width 1s;
  -moz-transition: width 1s;
  -o-transform: width 1s;
  transition: transform .3s, width 1s;

  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);

  pointer-events: none;
}

.pace.pace-active .pace-progress {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media all and (max-width: 1024px) {

  #skrollr-body{
    -webkit-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
    -moz-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
    -o-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
    transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950); /* easeInOutSine */    
  }  

}

@media all and (min-width: 1024px) {


  #skrollr-body{
    -webkit-transition: all 2000ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
    -moz-transition: all 2000ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
    -o-transition: all 2000ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
    transition: all 2000ms cubic-bezier(0.445, 0.050, 0.550, 0.950); /* easeInOutSine */    
  }  

}