.navbar {
    display: flex;
    flex-direction: row;
    margin: 0 -15px;
    min-height: 30px;
    border-bottom: 1px solid #EEEEEE;
    z-index: initial;
}
.navbar--sub { }
.navbar__env {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    color: white;
    padding: 1px 6px;
    letter-spacing: 2px;
    vertical-align: middle;
}
.navbar__menu {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar__menu .dropdown-menu { min-width: 80px; }
.navbar__menu--left {
    margin-left: 220px;
}
.navbar__menu--right {
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    width: 300px;
}
.navbar__menu--children { display: none; margin: 0; }
.navbar__menu--children-active { display: flex; }
.menu__item {
    display: inline-block;
    padding: 5px 12px;
    font-size: 15px;
    color: #333333;
    vertical-align: middle;
}
.menu__item:hover, .menu__item:focus {
    text-decoration: none;
}
.menu__item--selected { }
.menu__item--slim { padding: 5px 12px; }
.menu__item-label { padding: 6px 10px; }
.menu__item--selected .menu__item-label { color: white; background-color: #FAA519; }
.navbar--sub .menu__item--selected .menu__item-label {
    padding: 2px 10px 3px;
    color: #333333;
    background-color: transparent;
    border-bottom: 4px solid #D9534F;
}
