/* WhatsApp Floating Button CSS */
/* WhatsApp Floating Button */
#whatsapp-button{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    z-index:999999;          /* Always above slides */
    display:flex;
    align-items:center;
    justify-content:center;
}

#whatsapp-button a{
    display:block;
    width:100%;
    height:100%;
}

#whatsapp-button img{
    width:100%;
    height:100%;
    border-radius:50%;
    cursor:pointer;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

#whatsapp-button img:hover{
    transform:scale(1.1);
}

