aside.mobile-header-menu {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 999;
    height: 100%;
    transform: translateX(-102%);
    transition: transform 0.3s ease-in-out;
    min-width: 90vw;
    box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-header-menu-inner {
    height: 100%;
    overflow-y: auto;
}

aside.mobile-header-menu.open {
    transform: translateX(0);
}

aside.mobile-header-menu h2 a {
    text-decoration: none;
    color: inherit;
}

aside.mobile-header-menu h2 {
    position: relative;
    z-index: 99999;
    font-weight: bold;
    font-size: 22px;
    padding: 20px 20px 20px 20px;
    margin: 0;
    position: sticky;
    top: 0;
    background-color: #fff;
    border-bottom: solid 1px #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

aside.mobile-header-menu h2 button {
    background: none;
    padding: 0;
    border: 0;
    margin: 0;
}

.mobile-header-menu ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

aside.mobile-header-menu h2 button.close img {
    width: 12px;
    opacity: .3;
}


.admin-bar aside.mobile-header-menu h2 {
    padding-top: calc(35px + 32px);
}

aside.mobile-header-menu .menu-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    border-bottom: solid 1px #eee;
    padding-left: 20px;
    height: 50px;
}

.expand-button {
    display: none;
    width: 50px;
    height: 50px;
    border-left: 1px solid var(--border-color);
    background-image: url('../images/chevron-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

@media (max-width: 1100px) {
    aside.mobile-header-menu {
        display: block;
    }

    .expand-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Other Menu */

.mobile-header-menu .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-header-menu .menu ul li a {
    text-decoration: none;
    color: var(--text);
}

ul#menu-mobil-menu-ekstra li a {
    font-size: 14px;
    border: none;
    height: 30px;
    line-height: 1.4;
    opacity: .6;
}

ul#menu-mobil-menu-ekstra {
    margin-top: 20px;
}

@media (max-width:1100px) {
    .slidein-menu-wrapper {
        min-width: 90vw;
    }

    .slidein-menu-level-1 {
        width: 100%;
        max-width: 90vw;
    }

    .slidein-menu-level-1 h2 {
        padding: 20px 20px 10px 20px;
    }

    .slidein-menu-level-1 h2 button.close img {
        width: 12px;
        opacity: .3;
    }

    .slidein-menu-level-1 .product-category-item {
        padding: 10px 20px;
        height: 50px;
        display: flex;
        align-items: center;
        font-weight: normal;
    }
}

a.expand-button {
    text-decoration: none;
    width: 95px;
    background-position: center right 15px;
}

a.expand-button:before {
    content: "Fäll ut";
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 13px 0 0;
    color: grey;
    border: 0;
    font-size: 13px;
}