// NPM Modules
@import 'normalize.css';

// Helpers
@import 'helpers/variables';
@import 'helpers/mixins';
@import 'helpers/fonts';
@import 'helpers/animations';
@import 'helpers/basics';
@import 'blocks/root';

// Blocks
@import 'blocks/**/*';

.desktop-size {
  @include screen(lg, max) {
    display: none !important;
  }
}

.mobile-size {
  @include screen(lg, min) {
    display: none !important;
  }
}

.ios .ios-hide {
  display: none;
}

.android .android-hide {
  display: none;
}