@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 4px #ddd solid;
  border-top: 4px #DE9C24 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
.spinner-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
