@import '../../variable';

@media (min-width: $sm-breakpoint) {
  .position-static-sm {
    position: static !important;
  }

  .position-relative-sm {
    position: relative !important;
  }

  .position-absolute-sm {
    position: absolute !important;
  }

  .position-fixed-sm {
    position: fixed !important;
  }

  .position-sticky-sm {
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .fixed-top-sm {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
  }

  .fixed-bottom-sm {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
  }
}
