/* === Burger Icon === */
.oeko-burger {
    position: fixed;
    top: 0.5em;
    left: 0.5em;
    background: #3A5F43;
    color: #F9F8F4;
    border: 2px solid #F9F8F4;
    font-size: 2em;
    border-radius: 50%;
    z-index: 1001;
    cursor: pointer;
    width: 2em;
    height: 2em;
}

/* === Slide Nav === */
.oeko-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    max-width: 15em;
    height: 100%;
    background: #2C4935;
    color: #F9F8F4;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: left 0.3s ease-in-out;
    z-index: 1002;
}

.oeko-mobile-nav.open {
    left: 0;
}

.oeko-mobile-nav-head {
    background: #37492D;
    border-bottom: 1px solid #F9F8F4;
}

.oeko-mobile-nav-body {
    padding: 1em;
    display: inline-grid;
}

/* === Close Button === */
.oeko-close {
    background: none;
    border: none;
    color: #F9F8F4;
    font-size: 3em;
    cursor: pointer;
    position: absolute;
    right: .3em;
}

/* === Logo in nav slider === */
.oeko-slide-logo {
    background: none !important;
}

.oeko-slide-logo img {
    max-width: 3em;
    margin-top: .3em;
    height: auto;
}

/* === Nav Links === */
.oeko-mobile-nav a {
    background: #3a5f43;
    color: #F9F8F4;
    text-decoration: none;
    font-size: 1.6em;
    padding: .3em .5em;
    margin-bottom: .5em;
}

.oeko-mobile-nav a:hover {
    text-decoration: underline;
}
