/* ========================================
   WhatsApp Floating Button Styles
   ======================================== */

.float-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 124px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 12px;
}

.float-wa {
    position: fixed;
    right: 23px;
    bottom: 72px;
    z-index: 996;
    background: #25D366;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    transition: all 0.4s;
    opacity: 0.9;
}

.float-wa i {
    font-size: 28px;
    color: #ffffff;
    line-height: 0;
}

.float-wa:hover {
    background: #075E54;
}

.float-wa:hover i {
    color: #ffffff;
}

.float-wa.active {
    visibility: visible;
    opacity: 1;
}


