@use "settings";

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

.hor-sticky, .pos-sticky-horizontal, .pos-sticky-h {
  background-color: inherit;
  left: 0;
  position: sticky !important;
  z-index: 999;
}

.vert-sticky, .pos-sticky-vertical, .pos-sticky-v {
  background-color: inherit;
  position: sticky !important;
  top: 0;
  z-index: 1000;
}
