header {

    background: transparent;
}

/* Navigation */
#navigation {
    background-color: transparent;
    /* background-color: rgba(51, 51, 51, 0.85); */
    height: auto;
    width: 100%;
    z-index: 9999;
}

#navigation .nav-innen {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.logo img {
    padding: 5px;
    width: 100%;
    max-width: 170px;
    height: auto;
}

#navigation .nav-innen .nav-item a {
    margin-right: 15px;
    font-size: 1.1em;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

#navigation .nav-innen .nav-item a:hover {}

#navigation.solid {
    background-color: #333;
    transition: background-color 1s ease 0s;
    box-shadow: 0 0 4px grey;
}

#navigation.solid .nav-innen .nav-item a {
    color: #68b4cc;
    transition: color 1s ease 0s;
}

#navigation.solid .nav-innen .nav-item a:hover {
    color: white;
}

#navigation.solid .navbar-nav>li>a {
    color: #c57ed3;
    transition: color 1s ease 0s;
}

/* Navigation */



.sidenav {
    height: 100vh;
    width: 250px;
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.sidenav-view {
    transform: translateX(0);
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
    text-align: left;
    border-bottom: 0;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    word-wrap: normal;

}

.sidenav a:hover {
    color: #b1c903;
}



@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

#responsive-kopfzeile {
    width: 100%;
    height: auto;
    background: transparent;
    position: absolute;
    z-index: 9999;
    top: 2px;
}

#responsive-kopfzeile .info {
    position: absolute;
    bottom: 80px;
}