// ============================================================================
// Classes | Head Position | Fixed
// ============================================================================

@use "../../mixins/head_layout/position/fixed" as *;

// ============================================================================
// Utility Classes
// ============================================================================

.position--fixed--top {
    @include position--fixed(top, both);
}

.position--fixed--bottom {
    @include position--fixed(bottom, both);
}

.position--fixed--top--left {
    @include position--fixed(top, left);
}

.position--fixed--top--right {
    @include position--fixed(top, right);
}

.position--fixed--bottom--left {
    @include position--fixed(bottom, left);
}

.position--fixed--bottom--right {
    @include position--fixed(bottom, right);
}

.position--inherit {
    @include position--inherit;
}
