div#hamburger {
    display: none;
}
nav {
    width: var(--navigation-width);
    background-color: var(--color-yellow);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
}
nav > a {
    padding-bottom: 0 !important;
}
nav > a img {
    margin: 0 auto;
    display: block;
    width: 65%;
}
nav p.subtitle {
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
}

nav section {
    font-size: 1rem;
}
nav section:first-child {
    --space-top: 10px;
    margin-top: var(--space-top);
    padding-top: var(--space-top);
}

nav hr {
    width: 80%;
    border: none;
    border-top: 1px solid black;
    margin: auto;
}

nav ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav section li {
    --li-height: 6.5vh;
    padding-left: 10%;
    height: var(--li-height);
    display: flex;
}
nav li.active {
    background-color: black;
}
nav li.active a {
    color: white;
}
nav li.active img {
    filter: invert(100%);
}
nav li img {
    margin-right: 5%;
    max-height: calc(0.5 * var(--li-height));
}
nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 22px 0;
    font-weight: normal;
    width: 100%;
    font-size: 1.5vh;
}


nav#navigation button.KettleSelector {
    display: none;
}

@media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 480px) {
    div#status_container div.LanguageSelector, div#status_container button.KettleSelector {
        display: none;
    }
    nav#navigation button.KettleSelector {
        display: initial;
        margin: 10px 15px;
        font-size: 0.7rem;
        text-transform: uppercase;
    }

    div#hamburger {
        display: flex;
        background-color: var(--color-yellow);
        width: var(--status-height);
        height: var(--status-height);
        justify-content: center;
        position: fixed;
        align-items: center;
        z-index: 110;
    }
    nav {
        display: flex;
        background-color: var(--color-yellow);
        width: var(--status-height);
        height: var(--status-height);
        justify-content: center;
        position: fixed;
        align-items: center;
        z-index: 110;
        transition: none;
        white-space: nowrap;
    }
    nav.activated {
        --padding-top: 40px;
        width: 65vw;
        height: calc(100vh - var(--padding-top));
        padding-top: var(--padding-top);
    }
    nav.activated {
        transition: width 0.5s ease-out;
    }
    nav.activated div#hamburger {
        position: absolute;
        top: 0;
        left: 0;
    }
    nav > a {
        display: none;
    }
    nav section {
        font-size: 1rem;
        width: 100%;
    }
    nav section li {
        height: 55px;
    }
    nav li img {
        width: 22px;
    }
    nav section h1 {
        font-size: 0.85rem;
    }
    nav section.Account h1 {
        margin-top: 30px;
    }
    nav section.Account {
        font-size: 0.8rem;
    }
}