/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 23 2026 | 03:31:22 */
/* WOODY SNIPPET: CSL Spinner Safety Net [CSS]
 * Priority: 400
 * 
 * Auto-fades the BuddyBoss loading spinner after 8 seconds.
 * Prevents infinite spinner when JS callbacks fail to dismiss it.
 * Does NOT interfere with normal fast-loading pages (spinner gone
 * before the animation triggers).
 */
.bb-activity-loader,
#buddypress .bb-activity-loader,
.buddypress-wrap .activity-update-form .ajax-loader,
.buddypress_object_nav .bb-loading,
body .loading-pulse {
    animation: csl-spinner-safety 8s ease-in forwards;
}

@keyframes csl-spinner-safety {
    0%, 90% { opacity: 1; }
    100%    { opacity: 0; pointer-events: none; }
}