.p {
    &-absolute {
        position: absolute !important;
    }

    &-fixed {
        position: fixed !important;
    }

    &-relative {
        position: relative !important;
    }

    &-static {
        position: static !important;
    }

    &-sticky {
        position: sticky !important;
    }
}

// top-0 bottom-0 etc.
@each $side in (top, right, bottom, left) {
    .#{$side}-0 {
        #{$side}: 0;
    }
}
