#header-search-field {
    width: 180px;
}

#nomen-header-search-button {
    position: static;
    margin-top: 18px;
    height: 32px;
    padding: 0 12px;
    width: 45px;
    min-width: 2rem;
}

#menu-search-button {
    height: calc(2rem + 2px);
    margin-bottom: 1rem;
}

.logo-box {
    display: flex;
    flex-wrap: nowrap;
    padding: 13px;
    height: 95px;
}

.logo-bar {
    display: flex;
    flex-direction: row;
}

.name-bar {
    margin: auto;
}

.nomen-name {
    font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: large;
    font-style: normal;
}

.topnav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #f0f0f0;
}

.topnav-container > button {
    cursor: pointer;
}

.sidenav-container {
    width: 250px;
}

.usa-nav__close {
    cursor: pointer;
}


/* USWDS Nav Styling applied to Details/Summary collapsable blocks */
.usa-sidenav__item details summary {    
    color: #565c65;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-bottom: none;
    background-color: transparent;
    font-size: 1.06rem;
    line-height: 1.3;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.usa-sidenav__item details summary:hover {    
    color: #005ea2;
    background-color: #f0f0f0;
    cursor: pointer;
}


/* + and – (en dash) expansion/collapse indicators */
.usa-sidenav__item details > summary::after {    
    content: "+";
    color: black;
    font-size: xx-large;
    line-height: 0.6;
    position: relative;
    right: 0.5rem;
}

.usa-sidenav__item details[open] > summary::after {    
    content: "–";
}

/* Indent/De-emphasize Sublist */
.usa-sidenav__sublist > .usa-sidenav__item > details > summary {
    padding-left: 2rem;
    font-size: 1rem;
}

.usa-sidenav__sublist > .usa-sidenav__item > details > summary::after {
    right: 1rem;
    color: gray;
}

/* Slightly wider than default */
.usa-nav {
    width: 18rem;
}

/* Wide Screens */
@media screen and (min-width: 801px) {
    .narrow-only {
        display: none;
    }
}

/* Narrow Screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
    .wide-only {
        display: none;
    }
}

/* Extremely Narrow*/
@media screen and (min-width: 0px) and (max-width: 420px) {
    .hide-xnarrow {
        display: none !important;
    }
}