/*
 * This CSS contains all style informations for header and the menu band (on top of the page)
 * (CSS style for small screens is on the bottom of this file)
 */

.menuBand
{
    display: flex;

    background-color: rgb(255, 255, 255);

    align-items: center;

    border-top-color: white;
    border-top-style: solid;
    border-top-width: 1px;
}

.meueBandSmall
{
    display: none;
}

.menuBandEntry
{
    line-height: 40px;
}

.menuBandEntry .menuBandContainer
{
    display: flex;

    border-top-width: 2px;
    border-bottom-width: 2px;
    border-color: white;
}

.menuBandEntry .menuBandContainer > .menuHeaderStyle,
.menuBandEntry .menuBandContainer > a
{
    margin-left: auto;
    margin-right: 5px;

    color: black;

    font-weight: bold;
}

.menuBandEntry .menuBandContainer > .menuHeaderStyle:hover
{
    cursor: default;
}

.menuBandEntry .menuBandContainer > a:hover
{
    color: #E36C0A;
    cursor: pointer;
}

.menuBandEntry .menuBandContainer > .menuBandSymbol
{
    width: 15px;
    height: 15px;

    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.menuBandEntry > .subMenu
{
    position: absolute;
    display: none;

    z-index: 1;

    background-color: rgb(180, 204, 0);
    box-shadow: 5px 5px 10px white;

    margin-top: -40px;

    text-align: center;
}

.menuBandEntry > .subMenu > a
{
    color: black;

    font-weight: bold;
}

.menuBandEntry > .subMenu > a:hover
{
    color: #E36C0A;
    cursor: pointer;
}

@media only screen and (max-width: 900px)
{
    .menuBandEntry .menuBandContainer > .menuBandSymbol
    {
        display: none;
    }

    .menuBandEntry .menuBandContainer > .menuHeaderStyle,
    .menuBandEntry .menuBandContainer > a,
    .menuBandEntry > .subMenu > a
    {
        margin-left: auto;
        margin-right: auto;
        font-variant-caps: all-small-caps;
    }
}

/*@media only screen and (max-width: 820px)
{
    .menuBand
    {
        display: none;
    }

    .menuBandSmall
    {
        display: block;
    }
}*/
