@keyframes pulse {
    0% {
        transform: scale(0.9);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);*/
    }

    70% {
        transform: scale(1.3);
        /*box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);*/
    }

    100% {
        transform: scale(0.9);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);*/
    }
}


.animate-pulse {
    transform: scale(1);
    animation: pulse 2s infinite;
    border-radius: 100px;
}