.orange_pulse {
    background: #f4af29;
    height: 12px;
    width: 12px;
    border-radius: 20px;
    animation: pulse-yellow 2s linear infinite;
    transform: scale(1);
    margin-right: 8px;
}

@keyframes pulse-yellow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 175, 41, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(244, 175, 41, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 175, 41, 0);
    }
}
