Hello,
I have a Cart Canvas element which should be appeared only with Sticky Bar; I defined .sticky-cart-icon class for this element and used this css to work:
.sticky-cart-icon {
display: none;
}
.x-bar-fixed .sticky-cart-icon {
display: block;
}
When I click on Cart Off Canvas icon on the sticky bar , the pane of added items does not open.

How can I correct it?