#titleModelDeleteAccount{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
}

#cancelSubscription .modal-body{
    background-color: var(--layer-02);
}

#confirmDeleteAccount .modal-body p {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
}

.spinner {
    height: 1rem;
    width: 1rem;
    border: 3px solid transparent;
    border-top: 3px solid var(--bs-btn-hover-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
  
@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}