body{
  @media (min-width: 1024px) {
    .smartphone-only {
      display: none !important;
    }
  }

  /* Desktop-only class */
  @media (max-width: 1023px) {
    .desktop-only {
      display: none !important;
    }
  }
}
