// Positioning
.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: $zindex-fixed;
}
.fixed-bottom {
bottom: 0;
.sticky-top {
@supports (position: sticky) {
position: sticky;
z-index: $zindex-sticky;