.btn-primary {
  @apply bg-primary-base hover:bg-primary-lighter text-white text-sm;
}

.btn-primary .btn-spinner {
  @apply border-white;
}

.btn-primary.disabled {
  @apply bg-neutral-20 hover:bg-neutral-20 text-white;
}

.btn-secondary {
  @apply bg-secondary hover:bg-black-light text-white;
}

.btn-secondary .btn-spinner {
  @apply border-white;
}

.btn-secondary.disabled {
  @apply bg-neutral-20 hover:bg-neutral-20 text-white;
}

.btn-outline {
  @apply bg-white border hover:bg-secondary hover:text-white;
}

.btn-outline .btn-spinner {
  @apply border-secondary;
}

.btn-outline.disabled {
  @apply hover:bg-white text-neutral-20 hover:text-neutral-20;
}

.btn-sm {
  @apply h-[2.5rem] text-sm;
}

.btn-sm .btn-spinner {
  @apply w-5 h-5;
}
/*# sourceMappingURL=Button.css.map */