  /* By default, display the element (for mobile) */
  .mobile-only {
    display: block;
  }
  /* Hide the element on screens 768px and wider (desktop/tablet) */
  @media (min-width: 768px) {
    .mobile-only {
      display: none;
    }
  }