/* #customwhatsapp-button{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50%;
    padding: 15px;
}
#customwhatsapp-button img{
    width: 30px;
    height: 30px;
    cursor: pointer;
} */


#customwhatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#customwhatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    animation: pulse 2s infinite;
}

#customwhatsapp-button img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

#customwhatsapp-button .whatsapp-text {
    font-size: 16px;
    font-weight: bold;
}
#customwhatsapp-button a:hover {
    background-color: #1ebe5d;
    text-decoration: none;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}