.whatsapp_us_product {
    text-align: center;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 15px;
    z-index: 9999;
    .img {
        width: 65px;
        height: 65px;
        background: #ddd;
        border-radius: 50em;
        display: inline-block;
        background-size: cover!important;
        background-repeat: no-repeat!important;
        background-position: center center!important;
    }
    .text {
        display: block;
        font-weight: 500;
        background: #fff;
        padding: 8px 16px;
        border-radius: 5px;
        font-size: 14px;
        line-height: 20px;
        color: #333;
        border: 1px solid #ccc;
        transition: all 0.25s;
    }
    &:hover,
    &:focus,
    &:active {
        .text {
            background: #ccc;
            color: #000;
        }
    }
}

@media (max-width: 991px) {

    .whatsapp_us_product {
        padding: 10px;
        .img {
            width: 55px;
            height: 55px;
            position: absolute;
            left: -25px;
            top: 7px;
        }
        .text {
            text-align: left;
            padding-left: 30px!important;
            font-size: 13px;
            line-height: 17px;
            padding: 7px 12px;
            border-width: 2px;
        }
    }

}