#chatbot-icon-gw {
    position: fixed;
    bottom: 200px;
    right: 42px;
    width: 50px;
    height: 50px;
    z-index: 9990;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
#chatbot-icon-gw.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    #chatbot-icon-gw {
        bottom: 140px;
        right: 15px;
        width: 45px;
        height: 45px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        background-color: white;
        display: none !important;
    }
}
