/*--- star -- Whastapp*/
    #whatsapp-fb-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            top: 77%;
    }

    #whatsapp-fb-container.whatsapp-fb-left {
        left: 20px;
        right: auto;
    }

    #whatsapp-fb-text {
        background: #ffffff !important;
        color: #000000 !important;
        padding: 5px 15px !important;
        border-radius: 10px !important;
        font-size: 17px !important;
        font-weight: 100 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
        white-space: nowrap !important;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
        overflow: visible!important;
        white-space: pre!important;
        margin: 0px 12px 0 0;
    }
    #whatsapp-fb-text::after {
        content: "" !important;
        position: absolute !important;
        right: 62px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        border-width: 8px 0 8px 10px !important;
        border-style: solid !important;
        border-color: transparent transparent transparent #ffffff !important;
    }

    #whatsapp-fb-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(37,211,102,0.5);
        flex-shrink: 0;
        transition: transform 0.3s ease;
        border-width: 0px;
    }

    #whatsapp-fb-btn:hover {
        transform: scale(1.1);
    }

    #whatsapp-fb-btn svg {
        width: 30px;
        height: 30px;
        fill: #ffffff;
    }

    @media (max-width: 768px) {
        #whatsapp-fb-container {
            bottom: 15px;
            right: 15px;
            top: 87%;
        }
        #whatsapp-fb-container.whatsapp-fb-left {
            left: 15px;
        }
        #whatsapp-fb-text {
            font-size: 13px;
            padding: 10px 16px;
        }
        #whatsapp-fb-btn {
            width: 55px;
            height: 55px;
        }
    }

    /*--- end -- Whastapp*/