.ui-position {
  &--absolute {
    position: absolute;
  }
  &--fixed {
    position: fixed;
  }
  &--relative {
    position: relative;
  }
  &--sticky {
    position: sticky;
  }

  &--top {
    top: 0;
    right: 0;
    left: 0;
  }

  &--bottom {
    right: 0;
    bottom: 0;
    left: 0;
  }

  &--left {
    top: 0;
    bottom: 0;
    left: 0;
  }

  &--upper-right {
    top: 0;
    right: 0;
  }

  &--lower-right {
    right: 0;
    bottom: 0;
  }

  &--lower-left {
    bottom: 0;
    left: 0;
  }

  &--upper-left {
    top: 0;
    left: 0;
  }

  &--fill {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
