.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: transparent !important;
}
  
  .spinner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid var(--color-primary-red);
    border-top: 3px solid;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  