If you are watching CART via Otter•ai and need the scrollbars at all (to scroll, to see where you are in the page, etc), then you can fix the WCAG SC 1.4.11 and 2.5.5 failures by adding this CSS to the page:
```
.otter-scrollbar {
scrollbar-width: unset;
scrollbar-color: unset;
}
```