@media screen and (min-width: 48em) {
  .show-mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .hide-mobile-only {
    display: none !important;
  }
}
