/* Spinner CSS */
.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #fd7e14;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

div#spinnerContainer.active {
  background: rgb(0,0,0,0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

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