:root {
    --color1: #BB9F6D;
    --color2: #BB9F6D;
    --color-check: #BB9F6D;
    --color-lb-disable: #aaa;
    --dish-item-height: 108px;
    --dish-item-img-top: -25px;
    --menu-bg: #f8f8f8;
    --menu-text: #777777;
    --menu-active-bg: #fff;
    --menu-active-text: #000;
    --menu-tag-bg: #f8f8f8;
}

.menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 33%;
    height: 100%;
    padding-top: 45px;
    padding-bottom: 60px;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: var(--menu-bg);
    -webkit-overflow-scrolling: touch;
}

.menu-title {
    display: block;
    width: 100%;
}

.menu ul {
    margin: 0 0 50px 0;
    padding: 0;
    list-style: none;
}

.menu ul li {
    background-color: var(--menu-bg);
    padding: 12px 0;
}

.menu ul li.active {
    background: var(--menu-active-bg);
}

.menu ul li.active span {
    color: var(--menu-active-text);
    border-left: 4px solid var(--color1);
    padding-left: 4px;
}

.menu ul li span {
    display: block;
    color: var(--menu-text);
    padding: 5px 2px 5px 8px;
    font-size: 15px;
}

.collapse {
    background-color: #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.col-label {
    padding: 6px 0;
    color: #eee;
    background: var(--menu-bg);
    font-size: 14px;
    margin: 0;
}
.col-label.active {
    background: #fff;
    color: #000;
}
.col-label.active .col-label-span {
    color: var(--menu-active-text);
    background: var(--menu-active-bg);
    border-left: 4px solid var(--color1);
}
.col-label .col-label-span {
    color: var(--menu-text);
}
.col-label-span{
    border-left: 4px solid var(--menu-bg);
    margin: 0;
    padding: 2px 0 2px 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.dish-view {
    position: fixed;
    left: 33%;
    top: 0;
    width: 67%;
    height: 100%;
    overflow-y: scroll;
    padding-top: 45px;
    padding-bottom: 68vh;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
}

.dish-list {
    padding: 4px;
    background: #fff;
}

.dish-section {
    /*margin-bottom: 15px;*/
}

.dish-head {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 30px;
    background: #fff;
    z-index: 10;
    font-size: 15px;
    padding: 5px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dish-item {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    height: var(--dish-item-height);
    overflow: hidden;
}

.dish-item-image {
    width: var(--dish-item-height);
}

.dish-item-image img {
    border-radius: 8px;
    width: var(--dish-item-height);
    height: var(--dish-item-height);
    transition: .8s;
    object-fit: cover;
}

.dish-item-text {
    margin-left: 8px;
}

.dish-item-text-title {
    font-size: 14px;
    text-align: left;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
           line-clamp: 2;
   -webkit-box-orient: vertical;
}

.dish-item-text-price {
    position: absolute;
    bottom: 0;
    color: var(--color2);
    font-size: 18px;
}

.dish-add-to-cart {
    right: 4px;
    bottom: 2px;
}

/* cart */
.lb {
    background: var(--color-check);
}

.cart-info-text-price {
    color: var(--color2);
}

.cart-list-item {
    display: inline-flex;
    width: 100%;
    background-color: #fff;
    margin-top: 8px;
    padding: 13px 0;
}

.cart-list-item-display-name {
    display: flex;
    flex-direction: column;
    width: 55%;
    text-align: left;
    margin-left: 10px;
}
.cart-list-item-name {text-align: left;}
.cart-list-item-desc {
    font-size: 14px;
    color: darkgrey;
    text-align: left;
}

.cart-list-item-price {
    color: var(--color2);
}

.cart-filter{
    padding: 0px 10px 60px;
    max-height: 45vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.cart-filter-tags{padding: 0;}
.filter-list{

}
.filter-item{margin-bottom: 15px;}
.filter-item-title{
    font-size: 15px;
    padding: 5px;
}
.filter-item-label{}
.filter-item-label-text{
    margin: 4px 4px;
    padding: 5px 16px;
    display: inline-block;
    font-size: 14px;
    border-radius: 3px;
    background-color: #f6f6f6;
    color: #666;
    transition: .3s;
    font-weight: bold;
}
.filter-item-label-text.active{
    background-color: var(--color2);
    color: #fff;
}

