/* ------------------------------------------
	MENU NAVIGATION
------------------------------------------ */

.menu-nav {
    position: sticky;
    z-index: 50;
    top: 70px;
    left: 0;
    display: flex;
    margin: 0;
    width: 100%;
    min-height: 50px;
    padding: 5px 0;
    background-color: #FFF;
}

.menu-nav__items {
    display: flex;
    align-items: center;
    overflow-x: auto;
    margin: auto;
    transition: all 0.2s ease-in-out;
}

.menu-nav__item {
    flex-shrink: 0;
    padding: 10px;
}

.menu-nav__item:hover,
.menu-nav__item.active {
    color: var(--color_primary);
}

.menu-nav .space {
    width: 25px;
    height: 1px;
    flex-shrink: 0;
}


/* ------------------------------------------
	PAGE • MENU
------------------------------------------ */

.menu-category__price,
.menu-subcategory__price,
.dish__price {
    font-weight: 600;
}


/* Category */

.menu-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Subcategory */

.menu-subcategory {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Dish */

.dish-no-image,
.dish-w-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-no-image:last-child,
.dish-w-image:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dish-image-wrap {
    position: relative;
    flex-shrink: 0;
    width: 80px;
}

.dish-title-wrap {
    flex-grow: 1;
}

.dish-price-wrap {
    flex-shrink: 0;
}


/* .dish-image {
	position: relative;
	display: block;
	width: 100%;
	max-width: 80px;
	margin: 0;
	cursor: pointer;
} */

.three-dishes-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}

.three-dishes-wrap:last-child {
    margin-bottom: 0;
}

.dish-quant {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dish-quant:last-child {
    margin-right: 0;
}


/* Note */

.menu__note {
    margin-bottom: 0;
    text-align: center;
}


/* Allergens */

.btn-link.btn--allergens-list {
    display: none;
}

@media (max-width: 480px) {
    .btn-link.btn--allergens-list {
        display: block;
        text-align: center;
    }

    .allergens-wrap.allergens-wrap--desktop {
        display: none;
    }
}

.allergens-wrap {
    margin: 5px -5px -5px;
    display: flex;
    flex-wrap: wrap;
}

.allergen {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    margin: 5px;
    background-color: rgba(44, 48, 55, 0.10);
    padding: 4px 8px;
    border-radius: 32px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: #808387;
}

.allergen--icon {
    font-size: 16px;
    padding: 6px;
    font-weight: 500;
}

.allergen.allergen--icon i {
    margin-right: 0;
}

.dark .allergen {
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
}

.dark .allergen--icon {
    color: #FFF;
}

.allergen i {
    font-size: 16px;
    margin-right: 5px;
}