@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
.wfb-whatsapp-button {
    position: fixed;
    bottom: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: scale(1);
    animation:pulse 2s infinite;
    padding:10px;
}

.wfb-whatsapp-button i:hover {
    color: #fff;
    
}
.wfb-whatsapp-button:hover {
    color: #fff;
    
}

.wfb-whatsapp-button i {
    font-size: 30px;
}

.wfb-button-left {
    left: 20px;
    right: auto;
}

.wfb-button-right {
    left: auto;
    right: 20px;
}

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

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

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