@charset "UTF-8";

body > div.content > header div.menu-top {
    background-color: var(--green-dark);
}

body > div.content > header ul.mod-menu {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    height: 3.75rem;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}

body > div.content > header nav ul li > a {
    display: inline-block;
    font-family: var(--menu-top-font-family);
    /*margin: var(--item-hmargin);*/
    text-decoration: none;
}

body > div.content > header nav ul li.alias-parent-active > a,
body > div.content > header nav ul li.active.deeper.parent > a,
body > div.content > header nav ul li.current.active > a {
    color: var(--kdp-orange);
    text-decoration: underline;
}

/* menuDropDown */
body > div.content > header nav ul.mod-menu__sub {
    background: var(--green-dark);
    border-bottom-left-radius: var(--radius-menu);
    border-bottom-right-radius: var(--radius-menu);
    box-shadow: 0 4px 10px rgba(10, 20, 30, .4);
    display: none;
    position: absolute;
    padding: .875rem 0;
}

body > div.content > header nav ul.mod-menu__sub li {
    clear: both;
    display: block !important;
    float: none;
    transition: all .3s ease-in-out;
}

body > div.content > header nav ul ul.mod-menu__sub li > a {
    font-size: var(--regular);
    margin: var(--menu-top-dropdown-item-margin);
}

.fa-solid.fa-bars {
    font-size: var(--regular-half);
}
