.loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  gap: 4px;
  background-color: var(--neutral-000);
  opacity: 90%;
}
.loader__spiner {
  width: 3rem;
  height: 3rem;
  border: 5px solid var(--base-500);
  border-bottom-color: var(--secondary-500);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader--active {
  display: flex;
}
