/**
 * Hide GHL Chat Widget when popups are open
 * Target the shadow host element since the button is in Shadow DOM
 */

/* When buyzone calculator is open */
body.bzc-panel-open chat-widget {
    display: none !important;
}

/* When registration popup is open */
body.em-popup-open chat-widget {
    display: none !important;
}

/* When any popup sets body overflow to hidden */
body[style*="overflow: hidden"] chat-widget {
    display: none !important;
}
