/* .navbar-fixed {
    position: fixed;
}

.navbar-absolute {
    position: absolute;
}

.navbar-sticky {
    position: sticky;
}

.navbar-relative {
    position: relative;
    background: var(--navbar-bg);
    
} */

.fixed{
    position: fixed;
}

.absolute{
    position: absolute;
}

.sticky{
    position: sticky;
}

.relative{
    position: relative;
    background: var(--navbar-bg);
}