Thank you for posting, for the WordPress version, you can hide the filters from admin settings page, more details available in this knowledge base article here.
For standalone version using Mega Locator theme, you can hide the filter on mobile by using below CSS code (you can paste the code at the most bottom of css/mega-superstorefinder.css)
@media only screen and (max-width: 64em){
.store-locator__actions-bar .store-locator__filter-toggler-cell {
display: none !important;
}
}