.desktop-only {
    display: inherit;
  }
  
  .mobile-only {
    display: none;
  }
  
  @media only screen and (max-width: 900px)  {
    .mobile-only {
      display: inherit;
    }
  
    .desktop-only {
      display: none;
    }
  }
  