.whatsapp-fix{
    position: fixed;
    z-index: 999;
    bottom: 15px;
    left: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(.9);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(69, 152, 27, 0);
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
    }
}

.whatsapp-fix.pulse-anime {
    box-shadow: 0 0 0 0 rgba(69, 152, 27, 0.3);
    border-radius: 50px;
    animation: pulse 1.5s infinite;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}