@import "../helpers/breakpoints";
// Visibility classes
.smartphone-only {
  @include for-desktop {
    display: none !important;
  }
}
.desktop-only {
  @include for-mobile {
    display: none !important;
  }
}
