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

  -webkit-
  transition: all .25s;
     -moz-transition: all .25s;
      -ms-transition: all .25s;
       -o-transition: all .25s;
          transition: all .25s;

  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 200px;
  background: #9fce08;
  border: 1px solid #fff;
}

.pace-done .pace {
  margin-top: -2rem;
  opacity: 0;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: width 1s ease-in-out 1s linear;
  -moz-transition: width 1s ease-in-out 1s linear;
  -ms-transition: width 1s ease-in-out 1s linear;
  -o-transition: width 1s ease-in-out 1s linear;
  transition: width 1s ease-in-out 1s linear;

  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  max-width: 200px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background: #fff;
}


.loader-overlay {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #9fce08;
  overflow: hidden;
  -webkit-transition: height 1s cubic-bezier(0.7,0,0.3,1);
     -moz-transition: height 1s cubic-bezier(0.7,0,0.3,1);
      -ms-transition: height 1s cubic-bezier(0.7,0,0.3,1);
       -o-transition: height 1s cubic-bezier(0.7,0,0.3,1);
          transition: height 1s cubic-bezier(0.7,0,0.3,1);
}

.pace-running .loader-overlay 
, .pace-done .loader-overlay 
{
  display: block;
}

.loader-overlay img {
  position: relative;
  top: 18px;
  }

  .loader-overlay .blurb {
    text-align: center;
    width: 100%;
    margin-top: 30%;
  }

.pace-done .loader-overlay {
  height: 0%;
/*  -webkit-animation: suck_up_overlay 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: suck_up_overlay 1s cubic-bezier(0.7,0,0.3,1) forwards;
*/}



@-webkit-keyframes suck_up_overlay {
  to { -webkit-transform: height 0%; transform: height 0%; }
}

@-webkit-keyframes slide_out_overlay {
  to { -webkit-transform: translate3d(0,-100%,0); }
}

@keyframes slide_out_overlay {
  to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}


@keyframes slide_out_fade {
  to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}

