.loader-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--backdrop-color);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-section .loading-spinner {
  color: var(--color-106);
  fill: var(--accent-color);
  animation: spin 1s linear infinite;
  width: 2.5rem;
  height: 2.5rem;
  display: inline;
}

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

  to {
    transform: rotate(360deg);
  }
}