#loader {
  position: absolute;
  inset: 0;
  background: white;
  /* optional background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinning circle */
#spinner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: yellow;
  border-right-color: orange;
  border-bottom-color: red;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=loader.css.map */