/* This is a compiled file, you should be editing the file in the templates directory */
.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: 100px;
  width: 100px;
  margin: auto;
  top: 45%;
  left: 46%;
  /* right: 0; */
  /* bottom: 0; */
}


.pace-running:not(.pace-done) #forms:not(.pace) {
  filter: blur(1px);
}
.pace-running:not(.pace-done) #scan-section:not(.pace) {
  filter: blur(1px);
}
.pace.pace-inactive .pace-activity {
  display: none;
}

.pace .pace-activity {
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: -30px;
  top: -30px;
  height: 95px;
  width: 95px;
  display: block;
  border-width: 10px;
  /* border-style: double; */
  border-color: #2299dd #c0d7e4 #c0d7e4;
  border-radius: 75%;

  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

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

.pace .pace-activity:before {
  content: ' ';
  position: absolute;
  /* top: 10px;
  left: 10px; */
  height: 85px;
  width: 85px;
  display: block;
  border-width: 5px;
  border-style: solid;
  border-color: #2299dd #c0d7e4 #c0d7e4;
  border-radius: 100%;

  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

@-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); }
}
