.menu-toggle,a{
    -webkit-tap-highlight-color: transparent;
}

nav,ul{
    display: flex;
    flex-direction: row;
}

nav{
    padding: 12px;
    /* background-color: var(--c80); */
    background: var(--major);
    box-shadow: 5px 5px 10px 2px rgb(0 0 0 / 10%);
}

ul{
    margin-top: 5px;
}

li{
    list-style: none;
    margin-left: 50px;
    font-size: 18px;
    cursor: pointer;
    border-bottom: var(--underline);
    color: white;
}

a{
    color: inherit;
    text-decoration: none;
}

.app{
    display: none;
    min-height: 100vh;
}

.sidebar{
    flex: 1 1 0;
    max-width: 300px;
    padding: 2rem 1rem;
    background-color: #303A46;
}

.sidebar .menu, .sidebar-others{
    margin: -1rem -1rem;
    font: var(--font);
}

.sidebar .menu .menu-item,.other-item{
    display: block;
    padding: 1em;
    color: #fff;
    text-decoration: none;
    transition: 0.2s linear;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.is-active,
.other-item:hover{
    color: var(--c20);
}

.menu-toggle{
    display: none;
    position: fixed;
    top: 5px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.hamburger{
    position: relative;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-35%, -50%);
    width: 32px;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after{
    display: block;
    position: absolute;
    width: 75%;
    height: 3px;
    border-radius: 99px;
    background-color: #8fda56;
    transition-duration: .25s;
}

.hamburger > span::before{
    content: "";
    top: -8px;
}
.hamburger > span::after{
    content: "";
    top: 8px;
}

.menu-toggle.is-active .hamburger > span{
    transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger > span:before{
    top: 0;
    transform: rotate(0deg);
}

.menu-toggle.is-active .hamburger > span:after{
    top: 0;
    transform: rotate(90deg);
}

.sidebar hr{
    width: 200px;
    margin: 1rem -1rem;
}

.cart{
    position: absolute;
    top: 1rem;
    right: 20px;
}

.shopping-cart-icon{
    width:30px;
    height:30px;
    color: white;
}

.item-counter{
    background-color: var(--c20);
    border-radius: 50%;
    width: 85%;
    color: white;
    text-align: center;
    position: absolute;
    top: -7px;
    right: -7px;
    font-size: 18px;
}

nav h2{
    cursor: default;
    color: white;
}

nav h2:nth-child(1){
    color: var(--c20);
    margin-right:7px;
}