/*Strip the ul of padding and list styling*/
.responsive-navigation ul {
    background: #fff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
}

.responsive-navigation .repsonsive-seperator {
    height: 16px;
}

/*Create a horizontal list with spacing*/
.responsive-navigation li {
    display: inline-block;
    float: left;
    margin-right: 1px;
}

/*Style for menu links*/
.responsive-navigation li a {
    background: #eee;
    color: #222;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    height: 42px;
    line-height: 42px;
    min-width: 140px;
    text-align: center;
    text-decoration: none;
}

/*Hover state for top level links*/
.responsive-navigation li:hover a {
    background: #309D19;
    color: #fff;
}

/*Style for dropdown links*/
.responsive-navigation li:hover ul a {
    background: #f3f3f3;
    color: #309D19;
    height: 40px;
    line-height: 40px;
}

/*Hover state for dropdown links*/
.responsive-navigation li:hover ul a:hover {
    background: #309D19;
    color: #fff;
}

/*Hide dropdown links until they are needed*/
.responsive-navigation li ul {
    display: none;
}

/*Make dropdown links vertical*/
.responsive-navigation li ul li {
    display: block;
    float: none;
}

/*Prevent text wrapping*/
.responsive-navigation li ul li a {
    min-width: 100px;
    padding: 0 20px;
    width: auto;
}

/*Display the dropdown on hover*/
.responsive-navigation ul li a:hover + .hidden, .hidden:hover {
    display: block;
}

/*Style 'show menu' label button and hide it by default*/
.responsive-navigation .show-menu {
    background: #309D19;
    color: #fff;
    display: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
}

.responsive-navigation .show-menu i {
    font-size: 25px;
    margin: 0;
    padding: 5px 10px;
    width: 54px;
}

/*Hide checkbox*/
.responsive-navigation input[type=checkbox] {
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
.responsive-navigation input[type=checkbox]:checked ~ #menu {
    display: block;
    /*width: calc(100% - 16px);*/
    /*margin-left: 16px;*/
}

.responsive-navigation .hauptMenue_aktiv {
    background: #309D19;
    color: #fff;
}

.responsive-navigation .unterNav a {
    background: #fff;
    color: #222;
    height: 36px;
    line-height: 36px;
}

.responsive-navigation .unterNav a:hover {
    background: #ccc;
}

.responsive-navigation .unterNav .unterMenue_aktiv {
    background: #ccc;
    color: #fff;
}

/*Responsive Styles*/

@media all and (max-width: 768px) {
    /*Make dropdown links appear inline*/
    .responsive-navigation ul {
        display: none;
        position: static;
    }

    .responsive-navigation .unterNav {
        display: block;
        position: static;
    }

    /*Create vertical spacing*/
    .responsive-navigation li {
        margin-bottom: 1px;
    }

    /*Make all menu links full width*/
    .responsive-navigation ul li,
    .responsive-navigation li a {
        width: 100%;
    }

    /*Display 'show menu' link*/
    .responsive-navigation .show-menu {
        display: block;
        /*width: calc(100% - 16px);*/
        /*margin-left: 16px;*/
    }
}

