#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}


body.loading {
  overflow: hidden;
  pointer-events: none;
}


.spinner-base {
  width: 60px;
  height: 60px;
  border: 8px solid #ccc;
  border-top: 8px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}


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

  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  background-repeat: no-repeat;
  width: 25px;
  height: 100px;
  background-image: url(/images/WF/images/indicator.gif);
  background-size: contain;
  background-position: center;
}