/* animations-state.css */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0% {
        transform: scale(0.3) translateY(30px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, .5);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(212, 168, 67, 0);
    }
}

.bisi-dot-on {
    animation: pulse-gold 2.2s infinite;
}