/* Put your custom css here */
.btn-whatsapp{
    position: fixed;
    bottom: 80px;
    right: 20px;
    padding: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #4AAE20;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px #00000050;
    transition: all .3s ease;
    z-index: 99999;
}

.btn-whatsapp:hover{
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}