.pace {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 0.5s linear;
}

.pace .pace-progress {
  background: #c80000;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-activity {
    background-image: url("/../../../../../storage/app/media/Images/loader.png");
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50% !important;
    left: 50% !important;
    margin: -50px 0 0 -50px;
    -webkit-animation: turn 2s infinite;
    -moz-animation: turn 2s infinite;
    -ms-animation: turn 2s infinite;
    -o-animation: turn 2s infinite;
    animation: turn 2s infinite;
}

@-webkit-keyframes turn { to { -webkit-transform: rotateY(360deg); }}
@-moz-keyframes turn { to { -moz-transform: rotateY(360deg); }}
@-ms-keyframes turn { to { -ms-transform: rotateY(360deg); }}
@-o-keyframes turn { to { -o-transform: rotateY(360deg); }}
@keyframes turn { to { transform: rotateY(360deg); }}
