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

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

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

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

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

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

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

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