Oops! Page not found

404

We couldn't locate the page you requested. It may have been removed, renamed, or is temporarily unavailable.

Back to Homepage

Explore More

translate is used as a longhand (not transform) so it composes ahead of any transform the vendor animates with, rather than overwriting it. NOTE: assumes the LiveChat widget offset is 0 - the container's inline style should read `max-height: calc(100% + 0px)`. If a non-zero offset is set in the LiveChat dashboard the vendor writes bottom:Ypx/right:Xpx, which `auto` below would discard and snap the widget flush into the corner. In that case use: translate: calc(-100% - Xpx) calc(-100% - Ypx) !important; */ @supports (translate: 1px 1px) { @media (max-width: 767px) { #chat-widget-container { top: 100% !important; left: 100% !important; right: auto !important; bottom: auto !important; margin: 0 !important; translate: -100% -100% !important; } } }