/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 08:13:28 */
.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #ff8e32; /* orange */

    display: inline-block;
    margin-right: 12px;

    animation: pulseGlow 1.5s infinite ease-in-out;
} 


@keyframes pulseGlow {
    0% {
        background: #ff8e32;
        box-shadow: 0 0 0 0 rgba(255, 142, 50, 0.4);
    }

    50% {
        background: #c46a2c;
        box-shadow: 0 0 12px rgba(255, 142, 50, 0.25);
    }

    100% {
        background: #ff8e32;
        box-shadow: 0 0 0 0 rgba(255, 142, 50, 0);
    }
}