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

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

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

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

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

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

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

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