/* ================================================================================================================

    Author: Tim David Saxen, netzmal GmbH

   =============================================================================================================== */

/* -------------------------------------------------------------------------------------------------------------- */
/* TOP MENU */
/* -------------------------------------------------------------------------------------------------------------- */

#menuTop {
    background-color: #002337;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    overflow: hidden;
}

.menuTopLogo {
    position: absolute;
    top: 20px;
    left: 20px;
    height:40px;
}

/* -------------------------------------------------------------------------------------------------------------- */
/* MOBILE MENU */
/* -------------------------------------------------------------------------------------------------------------- */

#menuTopMobileMenuLink {
    display: none;
}
@media (max-width: 999px) {
    #menuTopMobileMenuLink {
        display: block;
        position: fixed;
        overflow: hidden;
        top:40px;
        width:50px;
        height:35px;
        padding-top:5px;
        right: 170px;
        color: #241F20;
        cursor: pointer;
        background-color:white;
        text-align: center;
    }
}

#menuTopMobile {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 10;
    display: none;
}

#menuTopMobile ul {
    padding: 0;
    margin: 0;
    list-style: none;

    color: white;
    margin-bottom: 100px;
}

#menuTopMobile li {
    display: block;
    padding-left:40px;
    padding-right:40px;
    padding-top:0px;
    padding-bottom:5px;
}

#menuTopMobile li a {
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: white;
    background-color: #1c94c4;
    display: block;
    padding: 10px;
}
#menuTopMobile li a:hover {
    background-color: #002337;
    color: white;
}

#menuTopLoginMobile {
    padding-left:40px;
    padding-right:40px;
    padding-top:40px;
    padding-bottom:20px;
    text-align: right;
}

#menuTopLoginMobile a {
    text-decoration: none;
    color: black;
    font-family: 'Titillium Web', sans-serif;
    font-style: normal;
    font-weight: 700;
}

/* -------------------------------------------------------------------------------------------------------------- */
/* DESKTOP MENU */
/* -------------------------------------------------------------------------------------------------------------- */

#menuTopItems {
    position: fixed;
    top:46px;
    right: 340px;
    left: 250px;
}
@media (max-width: 999px) {
    #menuTopItems {
        display: none;
    }
}

#menuTopItems ul {
    padding: 0;
    margin: 0;
    list-style: none;

    color: white;
}


#menuTopItems li {
    display: inline-block;
    margin-right: 4px;
    padding: 5px;
    background-color: #1c94c4;
    box-shadow: inset 0 -3px 0 0 #002337, /*  inner border at the bottom */
                inset 0 3px 0 0 #002337;  /*  inner border at the top */
}

#menuTopItems li.menuTopItemActive {
    box-shadow: none;
    background-color: white;
}

#menuTopItems li a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Titillium Web', sans-serif;
    font-style: normal;
    font-weight: 700;
}

#menuTopItems li.menuTopItemActive a {
    color:#241F20;
}

#menuTopLogin {
    position: fixed;
    top:30px;
    width: 190px;
    right: 180px;
    overflow:hidden;

    text-align: center;
}
@media (max-width: 999px) {
    #menuTopLogin {
        display: none;
    }
}

#menuTopLogin a {
    text-decoration: none;
    color:#ffffff;
    margin-left:5px;
    font-family: 'Titillium Web', sans-serif;
    font-style: normal;
    font-weight: 700;
}

/* -------------------------------------------------------------------------------------------------------------- */
/* DROP DOWN */
/* -------------------------------------------------------------------------------------------------------------- */

#menuTopDropdownContainer {
    position: fixed;
    top: 85px;
    left: 250px;
    width:300px;
    z-index: 1000;
    background-color: #002337;
    overflow-x: hidden;
    overflow-y: auto;
    padding:3px;
    display: none;
}

#menuTopDropdownContainer a {
    display: block;
    padding: 6px;
    color: white;
    box-sizing: border-box;
    width:100%;
    text-decoration: none;
}

#menuTopDropdownContainer a:hover {
    color: #241F20;
    background-color: white;
    width:100%;
}
