.bb-floating-widget .fab-container {
    position: fixed;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    background-color: orange;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.bb-floating-widget .fab-icon {
    fill: white;
    width: 30px;
    height: 30px;
}
.bb-floating-widget a.fab-container:after {
    content: "Buy Now";
    position: absolute;
    top: 64px;
    font-weight: 600;
    font-size: 14px;
}
@media screen and (max-width: 767px){
    .bb-floating-widget .fab-container {
        bottom: 15%;
        right: 2px;
        z-index: 99999;
    }
}