nav{
    background: #23335e;
    border-bottom-left-radius: 36px;
    width: 25%;
    max-width: 400px;
    min-width: 300px;
    position: fixed;
    top:0;
    right:-40%;
    height:100%;
    z-index: 10000;
    transition: all 0.3s ease;
}

nav i{
    color:#fff;
}

nav a{
    color:#fff;
}

.nav__footer{
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
}

.nav__open{
    font-family: 'Amatic SC', cursive;
    cursor: pointer;
}

.nav__close{
    font-family: "Font Awesome 5 Pro";
    cursor: pointer;
    position: absolute;
    top:30px;
    right:30px;
    z-index: 20;
}

.nav__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__item:hover {
    color: #ffc107;
}

.nav__item:hover .navi-icon-i i {
    color: #ffc107;
}

.nav__item:hover img {
    filter: invert(77%) sepia(79%) saturate(1164%) hue-rotate(358deg) brightness(103%) contrast(104%);
}

.nav__item span {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    flex-shrink: 0;
}

.nav__item span i {
    font-size: 18px;
    font-weight: 300;
}

.nav__item img {
    filter: brightness(0) invert(1);
    display: block;
    max-width: 100%;
}

.nav__item > div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    flex-shrink: 0;
}

nav.active{
    right:0;
}

body.nav-backdrop::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.nav__open-seite{
    height: 100vh;
    overflow-y: auto;
}

@media screen and (max-width: 1400px){

    .nav__footer{
        position: relative;
    }
}

@media screen and (max-width: 1200px){

    nav{
        min-width: 450px;
        max-width: 600px;
        right: -60%;
    }
}

@media (max-width: 767.98px) {
    nav{
        width: 100%;
        right: -155%;
        min-width: 80vw;
        max-width: 100vw;
    }
    .nav__open-seite a{
        font-size: 16px;
    }
    .nav__open-seite .list__vertical li{
        margin-bottom: 0px;
    }
}