.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 2000;
  /*position: fixed;*/
  /*height: 90px;*/
  /*width: 90px;*/
  /*margin: auto;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*bottom: 0;*/
}

.pace.pace-inactive .pace-activity {
  display: none;
}

.pace .pace-activity {
  font-family: serif;
  z-index: 2000;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #6EBF58 #6EBF58 transparent transparent;

  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);

}

.pace .pace-activity:before {
  content: ' ';	
  top: -6px;
  left: -8px;
  position: absolute;
  height: 20px;
  width: 20px;
  border-style: solid;
  border-width: 2px;
  border-color: #6EBF58 #6EBF58 transparent transparent;
  border-radius: 50%;

  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);

  -webkit-animation: spin 1.3s linear infinite;
  -moz-animation: spin 1.3s linear infinite;
  -o-animation: spin 1.3s linear infinite;
  animation: spin 1.3s linear infinite;

}

.pace .pace-activity:after {
  content: ':';
  font-size: 18px;
  left: -2px;
  top: -6px;
  font-weight: bold;
  position: absolute;
  color: #6EBF58;

  -webkit-transform: rotate(137deg);
  -moz-transform: rotate(137deg);
  -o-transform: rotate(137deg);
  transform: rotate(137deg);
}

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

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

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

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

.loading-container .loading {
  background-color: transparent;
}
