/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(33,28): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-background-color'
(43,21): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-text-color'
(48,17): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-text-color'
(53,17): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-text-color'
(58,32): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-background-color'
(59,21): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-text-color'
(69,28): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-background-color'
(70,17): run-time error CSS1039: Token not allowed after unary operator: '-sherman-toolbar-text-color'
 */
:root {
    --sherman-toolbar-text-color: black;
    --sherman-toolbar-background-color: #ab8c4c;
}

.sherman-banner {
    padding: 5px;
    background-color: #78372f;
}

    .sherman-banner img {
        margin: 0;
        height: 75px;
        position: relative;
    }

.sherman-header {
    color: white;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    display: inline-block;
    height: 75px;
}

#navbar-container,
.navbar,
.navbar-default,
.navbar .navbar-brand,
.navbar .navbar-brand span,
.navbar .navbar-brand:hover,
.navbar .navbar-brand:hover span {
    background-color: var(--sherman-toolbar-background-color);
}

    #logout-link,
    .icon-user,
    .navbar-default,
    #navbar-container .navbar-header .navbar-brand,
    #navbar-container .navbar-header .navbar-brand span,
    #navbar-container li a,
    #navbar-container li a span {
        color: var(--sherman-toolbar-text-color);
    }

.navbar-header > .navbar-brand:hover,
.navbar-header > .navbar-brand:hover > span {
    color: var(--sherman-toolbar-text-color);
}

.navbar-header > .navbar-brand > span {
    vertical-align: baseline;
    color: var(--sherman-toolbar-text-color);
}

    .navbar .navbar-collapse ul:not(.dropdown-menu) > li > a:hover,
    .navbar .navbar-collapse ul:not(.dropdown-menu) > li > a:hover > span {
        background-color: var(--sherman-toolbar-background-color);
        color: var(--sherman-toolbar-text-color);
    }


/* hamburger */
#collapsed-navbar-button,
.navbar-collapse collapse in,
.navbar-toggle,
.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--sherman-toolbar-background-color);
    color: var(--sherman-toolbar-text-color);
}

/* help box and pullbox and results toolbar*/
.help-box, .pullbox, .results-toolbar {
    background-color: #F2EDE3;
}

/* shrink title font at smaller sizes */
@media(max-width: 391px) {
    .sherman-header h1 {
        font-size: 30px;
    }
}

@media(max-width: 330px) {
    .sherman-header h1 {
        font-size: 21px;
    }
}

/* hide text completely but keep vertical space */
@media(max-width: 237px) {
    .sherman-header h1 {
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }
}

/* hide image completely at smaller size*/
@media (max-width: 812px) {
    .sherman-banner img {
        display: none;
        max-width: none;
    }
}

