:root{
    --footer-background: #111;
    --footer-color: #CCC;
}

.pointer {
    cursor: pointer !important;
}

/* start top nav */

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 95;
}

.topnav .logo-container {
    display: flex;
    align-items: center;
}

.topnav .logo {
    height: 40px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 100%;
}


.topnav .menu-items {
    display: flex;
    align-items: center;
}

.topnav .search-container {
    position: relative;
    margin: 0 15px;
}

.topnav .search-container input {
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    width: 200px;
}

.topnav .search-container .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
}

.topnav .user-actions {
    display: flex;
    align-items: center;
}

.topnav .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    cursor: pointer;
}

[dir=rtl] .topnav .icon {
    margin-left: 0px;
}

.topnav .cart-container {
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}

.topnav .cart-icon {
    font-size: 24px;
    color: #fff;
}

.topnav .cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.topnav .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.topnav .bar {
    width: 20px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
}

.topnav .fa,
.topnav .fas {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .topnav .search-container {
        display: none;
    }

    .topnav .menu-toggle {
        display: flex;
    }

    .topnav .menu-items {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #333;
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    .topnav .menu-items.active {
        display: flex;
    }

    .topnav .search-container.mobile {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .topnav .search-container.mobile input {
        width: 100%;
    }
}

/* nav */
.top-nav,
#page>.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 95;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-top: 0;
    background-color: #272727 !important;
    /* fallback color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.top-nav .right-section,
.top-nav .left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-nav .icon {
    font-size: 20px;
    color: #e2e2e2;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.top-nav .icon:hover {
    /* color: #000; */
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.top-nav .left-section .icon {
    padding: 0 6px;
}

.top-nav .logo img {
    height: 50px;
    max-height: 100%;
    object-fit: contain;
    border-radius: 100%;
}

.top-nav .cart-icon .cart-badge {
    position: absolute;
    top: -9px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    width: 16px;
    border-radius: 100%;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-nav .icon.account-phone {
    font-size: 12px;
    color: #FFF;
    box-shadow: 0px 1px 5px #CCC;
    border-radius: 5px;
    ;
}

@media (max-width: 768px) {
    .top-nav {
        padding: 8px 12px;
    }

    .top-nav .logo img {
        height: 35px;
    }

    .top-nav .icon {
        font-size: 18px;
    }
}

/* end top nav */
/* start sidebar  */
/* Base Styles */
#web-sidebar {
    position: relative;
    z-index: 100;
    color: var(--rest-category-color);
}

/* Dropdown Menu Styles */
.em-dropdown-menu {
    position: relative;
    margin-bottom: 10px;
}

.em-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    color: var(--rest-category-color);
    border-bottom: 1px solid var(--rest-category-color);
}

.em-dropdown-toggle i {
    transition: all 0.3s ease;
    font-size: 12px;
}

.em-dropdown-menu.em-active>.em-dropdown-toggle i ,
.em-dropdown-item.em-active>.em-dropdown-toggle i {
    transform: rotate(180deg);
}

.em-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-right: 0;
}

.em-dropdown-menu.em-active>.em-dropdown-content {
    max-height: 2000px;
}

.em-dropdown-item {
    position: relative;
}

.em-dropdown-submenu {
    padding-right: 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.em-dropdown-item.em-active>.em-dropdown-submenu {
    max-height: 2000px;
}

.em-dropdown-item .em-dropdown-toggle {
    padding: 10px 15px 10px 0px;
    border-bottom: none;
    font-size: 0.9em;
}

.em-dropdown-item .em-dropdown-toggle.em-level-2 {
    padding-left: 20px;
}
[dir=ltr].em-dropdown-item .em-dropdown-toggle.em-level-2 {
    padding-left: 0px;
    padding-right: 20px;
}
[dir=ltr] .em-dropdown-item .em-dropdown-toggle {
    padding: 10px 0px 10px 15px;
}
.em-dropdown-submenu a {
    display: block;
    padding: 8px 0 8px 30px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85em;
    border-bottom: none !important;
}

.em-dropdown-submenu a:hover {
    color: var(--rest-category-color);
    padding-left: 35px;
}

.em-level-1>span {
    font-weight: bold;
}

.em-level-2>span {
    font-weight: 500;
}

.em-level-3 {
    color: #888 !important;
}
.em-level-1, .em-level-2{
    border-bottom: 1px solid #e8e8e8 !important;
    padding-bottom:5px;
}
.em-dropdown-item .em-dropdown-toggle{
    border-bottom: 1px solid #949393;
}
.em-dropdown-toggle span,
.em-level-1,.em-level-2{
    font-size:16px;
}
.em-level-1{
    margin-right: 15px;
}
[dir=ltr] .em-level-1{
    margin-left: 15px;
    margin-right: 0;
}
#web-sidebar .sidebar {
    padding: 20px;
}

#web-sidebar .sidebar-header .logo {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 30px;
}

#web-sidebar .sidebar-header .logo img {

    width: 100%;
    height: 100%;
    border-radius: 100%;
}

#web-sidebar .sidebar-header .title {
    position: absolute;
    top: 60px;
    right: 92px;
    font-size: 16px;
    font-weight: bold;
}

#web-sidebar .sidebar-content .close-sidebar {
    width: 40px;
    height: 40px;
    background-color: #CCC;
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 20px;
    display: flex;
    justify-content: center;
}

#web-sidebar .sidebar-content .close-sidebar i {
    font-size: 18px;
    margin-top: 12px;
}

#web-sidebar .sidebar-content {
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: #0000001c;
    height: 100%;
    z-index: 99;
}

#web-sidebar .tail {
    position: absolute;
    bottom: 0;
    right: 67px;
    display: block;
}

#web-sidebar .sidebar-content.open {
    transform: translateX(0%);
    opacity: 1;
    transition: 0.3s ease;
}

#web-sidebar .sidebar-content.close {
    transform: translateX(100%);
    opacity: 0;
    transition: 0.3s ease;
}

#web-sidebar .sidebar-body {
    padding-top: 0px;
    border-top: 2px solid var(--rest-category-color);
}

#web-sidebar .sidebar-body a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0;
    color: var(--rest-category-color);
    border-bottom: 1px solid var(--rest-category-color);
}

#web-sidebar .sidebar-body a:focus {
    color: var(--rest-category-color);
}

#web-sidebar .sidebar-content .sidebar {
    /* position: fixed;
    top: 0px; */
    width: 270px;
    z-index: 101;
    background-color: var(--rest-category-bcolor);
    height: 100%;
}

.sidebar-body {
    color: var(--rest-category-color);
}

/* end sidebar */
#page .page-content {
    margin-top: 55px;
}

.product-theme-1 .product-image>img {
    /* height: 100px !important;
    width: 100px !important;
    max-width: 100px !important; */
    width: 100% !important;
}

.prod .product-image {
    width: 100px !important;
    max-height: 150 !important;
}

.prod>div>p {
    height: auto !important;
    max-height: 50px !important;
}

.prod .prod-price {
    display: inline-block !important;
    /* position: absolute;
    bottom: 0;
    left: 9px; */
}

.prod .prod-bottom {
    display: flex;
    justify-content: space-between;
    /* position: absolute;
    bottom: 4px;
    right: 0; */
    width: 100%;
    margin-bottom: 10px !important;

}

.prod .prod-description {
    position: relative;
    padding-bottom: 27px !important;
}

.prod p.product-description {
    position: relative;
    font-size: 11px !important;
    color: var(--rest-description-color);
    line-height: 1.4;
    margin-top: 5px;
    max-height: 34px !important;
}

.calories {
    margin-left: auto;
    /* Pushes the calories span to the right */
}

.prod .prod-price.background {
    /* background-color:  var(--rest-background); */
    background-color: var(--rest-price-background-color);
    /* border: 1px solid var(--rest-icon-color); */
    border-radius: 5px;
    padding: 4px 8px;
    line-height: 1;
    padding-top: 5px;
    margin-top: 2px;
}

.category-slide .category-image-container {
    height: 120px !important;
    background-size: cover;
    background-position: center;
}

.category-title {
    color: var(--rest-category-title-color, '#000') !important;
    margin: 15px 10px;
}

.itemCat {
    min-width: 110px !important;
    width: 110px !important;
}

.sub-category-image img {
    max-height: 70px;
}

#online-offer .list .item {
    width: 55px;
}

#online-offer .list .item .img img {
    width: 55px;
    height: 55px;
}

.menu-box-bottom.menu-box-detached {
    z-index: 103 !important;
}

.scroll-to-top {
    z-index: 102 !important;
}

#fixed-categories {
    z-index: 102;
}

body.product-menu-open #fixed-categories,
body.product-menu-open .header-logo-app,
body.product-menu-open #scroll-to-top,
body.hide-category #fixed-categories,
body.hide-category #scroll-to-top {
    display: none !important;
}

.oldprice del {
    margin-top: 2px !important;
    display: inline-block !important;
}

.prod .size-hint {
    position: absolute;
    left: 0;
    width: 120px;
    font-size: 10px;
    text-align: center;
}

.prod .size-hint+.product-image {
    margin-top: 25px !important;
}

.content.no-slider {
    margin-top: 19px !important;
}

.content .site-title .restaurant-logo {
    margin-top: 10px !important;
}

.content.no-slider .site-title .restaurant-logo {
    margin-top: 10px !important;
}

.news-ticker {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 14px;
    ;
    background-color: var(--rest-news-background);
    border-radius: 2px;
}

.news-ticker .ticker-list {
    list-style-type: none;
    padding: 5px;
    margin: 0;
    white-space: nowrap;
    /* Ensures the ticker list items stay in one line */
    animation: ticker-animation 20s linear infinite;

    /* animation-play-state: paused; */
}

[dir=ltr] .news-ticker .ticker-list {
    animation: ticker-animation-en 20s linear infinite;
}

.news-ticker .ticker-list li {
    display: inline-block;
    /* Display the list items in a row */
    margin-right: 20px;
    /* Add some spacing between items */
    font-size: 14px !important;
    color: var(--rest-main-header-color, '#FFF');
}

.news-ticker.paused .ticker-list {
    animation-play-state: paused;
}

@keyframes ticker-animation {
    0% {
        transform: translateX(-100%);
    }

    /* Start from the right */
    100% {
        transform: translateX(100%);
    }

    /* End at the left */
}

@keyframes ticker-animation-en {
    0% {
        transform: translateX(100%);
    }

    /* Start from the right */
    100% {
        transform: translateX(-100%);
    }

    /* End at the left */
}

#menu-voice-alert {
    display: none;
}

.site-title {
    position: relative;
}

.restaurant-title>h5 {

    padding-left: 50px;
    margin-bottom: 1px !important;
}

#rest-icons {
    position: absolute;
    top: 8px;
    left: 0;

}

#rest-icons .icon {
    padding: 6px;

    cursor: pointer;
    border-radius: 5px;
}

#rest-icons .icon:hover {
    background-color: #e8e8e8;

}

#rest-icons .icon i {
    font-size: 20px;
}

.sidebar-header .image-container {
    text-align: center;
}

.sidebar-header .image-container .logo {
    display: inline-block !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 10px !important;
    ;
}

.sidebar-header .image-container .logo img {
    border-radius: 10px !important;
    ;
}

#web-sidebar .sidebar {
    padding: 10px;
    position: relative;
}

#web-sidebar .sidebar-body {
    border-top: 2px solid #CCC !important;
}

#web-sidebar .sidebar-content .sidebar {
    width: 292px !important;
}

#web-sidebar .sidebar-body a {
    border-bottom: 1px solid #e8e8e8 !important;
}

#web-sidebar .tail {
    width: 291px !important;
    right: 0 !important;
}

.header .header-title.header-subtitle {
    padding-top: 13px;
}

.header .header-title.header-subtitle i {
    font-size: 16px;
    ;
}

.splide.splide.is-initialized {
    padding-bottom: 0px !important;
}

.splide__pagination__page {
    width: 4px;
    height: 4px;
    ;
}

#online-offer {
    padding: 10px 0;
}

#web-sidebar .sidebar-body .itemCatTop a {
    padding: 0;
}

.product-image {
    position: relative;
}

.product-image .product-available,
.itemCat .product-available {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    background-color: #f00;
    line-height: 1.9;
    padding: 0 6px;
    border-radius: 3px;
    font-size: 11px;
}

.restaurant-logo img {
    border-radius: 100%;
}

#product-search {
    margin: 10px;
}

#product-search input,
#menu-product-search .content-body input {
    padding: 0 36px;
    height: 34px;
    width: calc(100%);
    background-color: transparent;
    border: 1px solid #CCC;
    border-radius: 20px;
}

#product-search input::placeholder,
#menu-product-search .content-body input::placeholder {
    font-size: 16px !important;
    color: #767676;
}

#product-search .search-section {
    position: relative;
}

#product-search .search-section .search-icon {
    position: absolute;
    top: 6px;
    right: 13px;

}

#product-search .search-section .search-icon i {
    font-size: 16px;
    color: #bcbcbc;
}

#product-search .search-section .filter-icon {
    position: absolute;
    top: 6px;
    left: 10px;
}

#product-search .search-section .filter-icon i {
    font-size: 20px;
    color: #bcbcbc;
}

#menu-product-search .content-body {
    margin: 20px;
}

#menu-product-search .search-input input {
    padding-top: 0px;
    height: 40px;
    color: #000;
    width: 100%;
    font-size: 16px !important;
}

#menu-product-search .search-input {
    position: relative;
}

#menu-product-search .search-input .search-icon {
    position: absolute;
    top: 11px;
    right: 13px;

}

#menu-product-search .search-input .search-icon i {
    font-size: 18px;
    color: #bcbcbc;
}

.prod-theme-1,
.product-view-1 .product-theme-1 .prod-theme-1 {
    display: block !important;
    overflow-y: auto;
    overflow-x: hidden;
}



.search-result.prod {
    margin-top: 30px;
    margin-bottom: 20px;
}

.header .header-title {
    line-height: 34px !important;
}

#page>.header {
    z-index: 100% !important;
}

body.modal-open #fixed-categories,
body.modal-open #scroll-to-top,
body.modal-open #page>.header {
    display: none !important;
}

span#menu-restaurant-description2 {
    height: 42px;
    display: block;
    overflow: hidden;
    text-align: justify;
}

.mobile-width {
    max-width: 1024px !important;
}

@media (min-width:750px) {

    .image-slider img,
    .image-slider {
        height: 350px !important;
        max-height: 350px !important;
    }

    .product-theme-2 .product-image {
        height: 450px;
    }

    .product-theme-3 .product-image {
        height: 300px;
    }

    .menu.menu-box-bottom {
        max-width: 700px !important;
    }

    #fixed-categories {
        max-width: 100%;
    }

    .category-slide .category-image-container {
        max-height: 350px !important;
    }
}

@media (min-width:950px) {

    .image-slider img,
    .image-slider {
        height: 450px !important;
        max-height: 450px !important;
    }

    .product-theme-2 .product-image {
        height: 500px;
    }

    .product-theme-3 .product-image {
        height: 400px;
    }

    .menu.menu-box-bottom {
        max-width: 900px !important;
    }

    .category-slide .category-image-container {
        max-height: 450px !important;
    }
}

.currency-image {
    display: inline-block;
    width: 15px;
    height: 15px;
    padding: 1px;
    margin: 0;
}

.currency-image img {
    width: 100%;
    height: 100%;
}

.currency-image svg,
.currency-image svg g {
    fill: #000000;
}

.currency-image svg {
    fill: var(--rest-main-header-color);
    width: 100%;
    height: 100%;
}

.currency-image svg g {
    fill: var(--rest-main-header-color);
}

.cart-buttons button.cart svg g {
    fill: #FFF;
}

.t-theme-1 .product-content {
    width: 48% !important;
    position: relative;
    float: left;
    margin: 1% !important;
}

/* .t-theme-1 .product-content:nth-child(odd) {
    margin-left: 2%;
}

.t-theme-1 .product-content:nth-child(even) {
    margin-right: 2%;
} */

.t-theme-1 .prod-description {
    width: 100% !important;

}

.t-theme-1 .product-content .product-image {
    width: 100% !important;
    overflow: hidden;
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 200px;
    margin: 0px;
    border-radius: 0 !important;
    border-top-right-radius: 15px !important;
    border-top-left-radius: 15px !important;
}

.t-theme-1 .product-content .product-image img {
    max-width: 100% !important;
    border-radius: 0 !important;
}

@media (min-width: 768px) {
    .t-theme-1 .product-content .product-image {
        max-width: 300px;
        max-height: auto;
    }
}

@media (min-width: 1200px) {
    .t-theme-1 .product-content .product-image {
        max-height: 400px;
    }
}

@media (min-width: 1600px) {
    .t-theme-1 .product-content .product-image {
        max-height: 500px;
    }
}

.product-content>.prod {
    height: 315px;
}

.product-content .add-one-cart .btn-add {
    width: 100%;
    padding: 10px 0px;
    margin: 0;
    background-color: var(--cart-btn-color);
    color: #FFF;
    font-weight: bold;
    font-size: 12px;
    border: 0;
    border-radius: 7px;
    display: block;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    justify-content: space-between;
    cursor: pointer;
    position: absolute;
    bottom: 16px;
    right: 0;
    outline: none;
}

.product-content .add-one-cart .btn-add:hover,
.product-content .add-one-cart .btn-add:focus {
    outline: none;
    box-shadow: none;
}

.product-content .add-one-cart .btn-add p {
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin-left: 30px !important;
    color: #FFF
}

.product-content .add-one-cart .icon {
    position: absolute;
    left: 15px;
    top: 10px;
}

.product-content .product-rates .star {
    color: #e1bf00;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    margin: auto;
    color: white;
    font-size: 12px;
    z-index: 95;
}

.bottom-nav .nav-item {
    text-align: center;
    position: relative;
}

.bottom-nav .nav-item span {
    display: block;
    margin-top: 3px;
    line-height: 1;
}

.bottom-nav .nav-item {
    width: 25%;
    max-width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    cursor: pointer;
}

.bottom-nav .nav-item i {
    font-size: 18px;
}

.bottom-nav .nav-item.cart {
    position: relative;
}

.bottom-nav .nav-item.cart .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-open .bottom-nav {
    display: none;
}

@media (min-width: 700px) {
    .bottom-nav {
        display: none;
    }
}

@media (min-width:750px) {

    .product-content .product-image {
        height: 300px;
    }

}

@media (min-width:950px) {

    .product-content .product-image {
        height: 400px;
    }

}

/* start footer */

.tfooter {
    background-color: var(--footer-background);
    color: var(--footer-color);
    padding: 40px 20px 40px;
    direction: rtl;
}

.tfooter h3 {
    color: var(--footer-color) !important
}

.tfooter .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.tfooter .footer-col {
    flex: 1 1 141px;
}

.tfooter .footer-col h4 {
    font-size: 1.6rem !important;
    font-weight: bold;
    margin-bottom: 10px;
    /* border-bottom: 1px solid #ffffff; */
    padding-bottom: 5px;
    color: var(--footer-color);
}


.tfooter .footer-col ul {
    list-style: none;
    /* padding-left: 20px; */
}

.tfooter .footer-col ul li {
    /* margin-bottom: 8px; */
    color: var(--footer-color);
    font-size: 15px !important;
    font-weight: bold;
    /* width: 48%; */
    /* float: left; */
    /* margin: 0%; */
}

.tfooter .footer-col p {
    font-size: 14px;
    margin: 4px 0;
    color: var(--footer-color);
}

.tfooter .logo {
    max-width: 84px;
    margin-bottom: 10px;
}

.tfooter .contact-icons {
    display: flex;
    justify-content: right;
    align-items: center;
}

.tfooter .contact-icons a {
    display: block;
    margin-bottom: 8px;
    color: var(--footer-color);
    background-color: var(--footer-color);
    text-decoration: none;
    font-size: 14px;
    width: 30px;
    height: 30px;
    margin: 5px 5px;
    /* border: 1px solid #ccc; */
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}

.tfooter .contact-icons a i {
    font-size: 18px;
    color: var(--footer-background);
}

.tfooter .app-links img {
    width: 130px;
    margin: 5px 0;
}

.tfooter .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.tfooter .social-icons a {
    color: var(--footer-color);
    font-size: 18px;
    margin: 0 6px;
    text-decoration: none;
}

.tfooter .social-icons a:hover {
    color: #a1b100;
}

@media (max-width: 768px) {
    .tfooter .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .tfooter .footer-col {
        width: 100%;
    }

    .tfooter .social-icons {
        margin-bottom: 10px;
    }
}
.tfooter .restaurant-description{
    font-size: 15px !important;
    font-weight: bold !important;
}
/* end footer */
@media (max-width: 766px) {

    .top-nav .cart-icon,
    .top-nav .search-icon {
        display: none;
    }
}

@media (min-width: 768px) {
    .t-theme-1 .product-content {
        width: 31% !important;
        position: relative;
        margin: 1% !important;
    }

    .product-content>.prod {
        height: 362px !important;
    }

    .t-theme-1 .product-content .product-image {
        width: 100% !important;
        max-height: 150px !important;
        margin: 0 !important;
    }

    .t-theme-1 .product-content .product-image img {
        height: 100% !important;
        /* border-radius: 10px; */
    }

    .product-name,
    .price-content,
    .prod p.product-description {
        text-align: center;
    }

    .product-rates {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4px;
        margin-bottom: 5px;
    }

    .top-nav .cart-icon,
    .top-nav .search-icon {
        margin: 0 10px;
    }
}
#nav-search-product , #product-search{
    background-color : #272727 !important;
    overflow: hidden;
}
#nav-search-product  #product-search input{
    background-color:#ffffff !important;
}
.no-fixed{
    position: sticky !important;
}
.no-nav-fixed{
    margin-top: 0 !important;
}

.prod-center .product-name,
.prod-center .product-rates,
.prod-center .price-content{
    text-align: center !important;
}
.product-name.no-poster{
    padding-left:0;
}
.o-rate .add-rate{
    font-size:12px;
    font-style: italic;
    /* color: var(--rest-main-header-color); */
    text-decoration: underline !important;
}
