I think you can try this code. That should help. You can adjust the media querry to the with you need. When the screen is smaller than that width, the element with id sb_super_bar (which is the whole swifty bar) is set to display none.
@media screen and (max-width: 800px) {
.sb_super_bar{
display:none;
}
}