////
/// Position Classes
/// @group Base:Position
/// @author Basscss@v8, Michael Becker
////

///
.relative {
    position: relative
}

///
.absolute {
    position: absolute
}

///
.fixed {
    position: fixed
}

///
.sticky {
    position: sticky
}

///
.top-0 {
    top: 0
}

///
.right-0 {
    right: 0
}

///
.bottom-0 {
    bottom: 0
}

///
.left-0 {
    left: 0
}

///
.inset {
    inset: 0
}

///
.z-behind {
    z-index: -1
}

///
.z0 {
    z-index: 0
}

///
.z1 {
    z-index: $base-z1
}

///
.z2 {
    z-index: $base-z2
}

///
.z3 {
    z-index: $base-z3
}

///
.z4 {
    z-index: $base-z4
}
