

#mainmenu {
    width: 70%;
    float: right;
    margin-top: 55px
}



#mainmenu ul {
    list-style-type: none;
    display: flex;
}

#mainmenu a {
    display: block;
    text-decoration: none;
    padding: 5px 10px;
}

ul.level1 {
    flex-direction: row;
    flex-wrap: nowrap;
}
ul.level1>li {
    
    position: relative;
    float: left;
    display: inline-block;
    flex: 1;
    text-align: center;
    height: 40px;
}

ul.level1>li>a { 
    display: block;
    font-size: 15px;
    line-height: 38px;
    outline: 0 none;
    text-transform: uppercase;
    font-weight: normal;
    color: rgba(255,255,255,.9);
}

ul.level1>li:hover {color: white}


ul.level2 { /* level 2 menu */
    position: absolute;
    width: 100%;
    min-width: 150px;
    top: 47px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border: 2px solid #035aa2;
    z-index: 9
}



ul.level2>li {
    background: white;
    border-bottom: 1px solid #f5f5f5
}

ul.level2>li:hover {background: #eee}





 /* mega menu format (produkte) */
 
ul.id157 {  /* level 2 */
    width: auto;
    position: absolute;
    flex-direction: row;
    left: -120px
}

ul.id157>li {border-left: 1px solid white}
ul.id157>li:hover {background: white}

ul.id157>li>a {
 font-weight: bold
}


/* level 3 - only produkte*/
ul.level3 {
    font-size: 90%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

ul.level3>li {
    padding: 3px 6px;
    background: #f5f5f5;
    border-bottom: 1px dotted #ccc;
    white-space: nowrap;
}

ul.level3 a {
    color: #444;
}


ul.level3>li:hover {
    background: #eee
}



/* mobile / small res */



@media only screen and (max-width: 1200px) {  
    
    ul.level1>li>a {
        font-size: 13px
    }
    
}