.spinner_overlay {
  background: rgba(255, 255, 255, 0.5);
  z-index: 10000009;
}

.spinner {
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 10000010;
}

/* Spinner Circle Rotation */
.spinner {
  animation: spCircRot 0.6s infinite linear;
  -webkit-animation: spCircRot 0.6s infinite linear;
  border: 4px rgba(0, 136, 204, 0.25) solid;
  border-radius: 50%;
  border-top: 4px #0088cc solid;
}

@-webkit-keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spCircRot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}