

.no-data-avail {
    padding: 0px 10px;
    font-size: 12px;
    color: #afafaf;
}

.menu-categories-tabs-container {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap;
    display: flex;
    gap: 10px;
    margin-left: -15px;
    padding-left: 15px;
    margin-right: -15px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #207550;
    z-index: 1;
    border-bottom: 1px solid #20614a;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.menu-categories-tabs-container::-webkit-scrollbar {
    display: none;

}

.menu-categories-tabs-container.menu-fixed {
    position: fixed;
    width: 100%;
    top: 130px;
    padding-top: 20px;
    /* border-bottom: 1px solid #eee; */
}

.menu-category-tab {
    padding: 10px 20px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-wrap: nowrap;
    white-space: nowrap;
    /* border: 2px solid transparent; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    cursor: pointer;
}

.menu-category-tab .title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.menu-category-tab.active {
    color: #fff;
    background-color: var(--nb-primary-color);
    position: relative;
    cursor: pointer;
    /* border: 2px solid #fff; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/* .menu-category-tab.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: -1;
} */

/* .menu-category-tab.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/client/images/general/header-bg.png') center/cover no-repeat;
    border-radius: 10px;
    z-index: -2;
} */

.menu-category-tab.hoverable:hover,
.menu-category-tab.hoverable:active {
    color: #fff;
    background-color: var(--nb-primary-color);
    position: relative;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/* .menu-category-tab.hoverable:hover::before,
.menu-category-tab.hoverable:active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: -1;
}

.menu-category-tab.hoverable:hover::after,
.menu-category-tab.hoverable:active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/client/images/general/header-bg.png') center/cover no-repeat;
    border-radius: 10px;
    z-index: -2;
} */

.menu-category-tab.active .title {
    color: #fff;
}

.menu-category-tab.hoverable:hover .title,
.menu-category-tab.hoverable:active .title {
    color: #fff;
}

.truncate-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.6em;
    line-height: 1.8em;
}

.menu-container {
    margin-top: 10px;
}

.menu-category {
    display: none;
    margin-bottom: 10px
}

.menu-category.active {
    display: block;
}

.menu-category-body {
}

.menu-category-header {
    /* border-bottom: 1px solid #eeeeee; */
    padding: 0px 10px 5px 10px;
    margin-bottom: 10px;
}

.menu-category-header .title {
    font-size: 24px;
    color: var(--colorPrimary);
    font-family: "One little font", sans-serif;
    margin-bottom: 10px;
}

.menu-product {
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 10px;
    background-color: var(--colorPrimary);
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.75) 0px 2px 5px -1px, rgba(0, 0, 0, 0.7) 0px 3px 3px -1px;
}

/* .menu-product.inactive {
    border-radius: 0px;
} */

.menu-product-img {
    width: 75px !important;
    height: 75px !important;
    border-radius: 10px;
    overflow: hidden;
}

.menu-product-text {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.menu-product-text .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--nb-primary-text-color);
    line-height: 14px;
}

.menu-product-text .description {
    color: #595959;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    margin-bottom: 5px;
}

.menu-product-text .bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.menu-product-text .category-container {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--nb-secondary-color);
    color: #fff;
    align-self: flex-start;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
    gap: 5px;
    margin-top: auto;
}

.menu-product-text .nutrition-facts-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#waved-overlay-path {
    display: none;
}

.inactive #waved-overlay-path {
    display: block;
}

.menu-product-text .nutrition-fact, .category-icon-wrapper {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-wrapper.small {
    width: 16px;
    height: 16px;
}

.menu-product-text .category-container .text {
    color: #fff;
    font-size: 10px;
    font-weight: 500;
}

.menu-product-details {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    gap: 10px;
}

.menu-product-details .price {
    color: var(--nb-primary-text-color);
    font-size: 14px;
    font-weight: 700;
    margin-left: auto;
    position: relative;
}

.menu-product-details .price > strike {
    color: #afafaf;
    font-size: 12px;
    font-weight: 500;
}

.menu-product .menu-product-details .badge-section {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-product .menu-product-details .product-badge {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #4b92ff;
    padding: 2px 8px;
    border-radius: 5px;
}

.menu-product .menu-product-details .badge-section .not-available {
    display: none;
}

.menu-product.inactive .menu-product-details .badge-section .not-available {
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    color: #9b9b9b;
    background: #f1f1f1;
    padding: 2px 8px;
    border-radius: 5px;
}

.menu-product.inactive .menu-product-details .price {
    color: #9b9b9b;
    font-size: 14px;
    font-weight: 700;
    margin-left: auto;
    position: relative;
}

.menu-product.inactive .menu-product-details .price > strike {
    color: #9b9b9b;
    font-size: 12px;
    font-weight: 500;
}

.menu-product.inactive .menu-product-text .category-container {
    color: #9b9b9b;
    background: #f1f1f1;
}

.menu-product.inactive .menu-product-text .category-container .text {
    color: #9b9b9b;
    font-size: 10px;
    font-weight: 500;
}

.menu-product.inactive .menu-product-text .name {
    color: #9b9b9b;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

.menu-product.inactive .menu-product-img img {
    -webkit-filter: grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
    filter: grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
    mix-blend-mode: none;
}

.menu-product.inactive .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 60%);
}