How to hide custom sidebar on mobile

You don’t provide lots of details on your code. Something like this should work:

@media only screen and (max-width: 599px) {
  #sidebar-left {
    display: none;
  }
}