/* ----------
    BTN PULSE */
.btn-pulse {
    animation: pulse-animate-primary 1.9s infinite !important;
}
    
@keyframes pulse-animate-primary {
    0% {
        box-shadow: 0px 0px 0px 2px rgb(0, 15, 255);
    }
    50% {
        box-shadow: 0px 0px 0px 6px rgb(0, 103, 255);
    }
    100% {
        box-shadow: 0px 0px 0px 16px rgba(0, 103, 255, 0.05);
    }
}