/* This is a compiled file, you should be editing the file in the templates directory */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  z-index: 9999999999;
  position: fixed;
  height: 148px;
  width: 148px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:url(../images/preloader.png) center no-repeat #fff;
  border-radius:50%;
  border:2px solid #37995c;
}
.pace:before {
    border-radius: 50%;
    bottom: 0;
    box-shadow: 0 0 0 4px #e22525 inset;
    content: "";
    height: 119%;
    left: -13px;
    margin: 0 auto;
    padding: 10px;
    position: absolute;
    right: 0;
    top: -13px;
    width: 119%;
}
.pace.pace-inactive .pace-activity {
  display: block;
}
.pace .pace-activity {
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: -15px;
  top: -15px;
  height: 178px;
  width: 178px;
  display: block;
  border-width: 8px;
  border-style: double;
  border-color: #37995c transparent transparent;
  border-radius: 50%;

  -webkit-animation: spin 1s linear infinite;
     -moz-animation: spin 1s linear infinite;
       -o-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}



@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(359deg); }
}

@-moz-keyframes spin {
  100% { -moz-transform: rotate(359deg); }
}

@-o-keyframes spin {
  100% { -moz-transform: rotate(359deg); }
}

@keyframes spin {
  100% {  transform: rotate(359deg); }
}
