/* =============================================================================
   utilities/loading-states.css - Loading States
   ============================================================================= */

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #585858;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
