@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1340px;
    }
}

:root {
    --bs-white: #fff;
    --bs-black: #000;
    --bs-site-yellow: #faf60c;
    --bs-site-blue: #144f8b;
    /* --bs-site-navtext: #555555; */
    --bs-site-text: #5F5F5F;
    /* --bs-site-text2: #45474d;
    --bs-site-text3: #202226; */
    --bs-site-red: #f80000;
    --fontfamily-main: "Noto Sans", serif;
    --inputcolor: #3e3e3e;
    --bgcolorfooter: #dbe8f9;
    --lightredcolor: #fff5f4;
    --grencolor: #18AA4A;
    --textcolor: #475166;
    --darkgrey: #222222;

}

body {
    font-family: var(--fontfamily-main);
    color: var(--bs-site-text);
    font-size: 17px;
    line-height: 1.4em;
    font-weight: 400;
    color: var(--darkgrey);
}

* {
    padding: 0px;
    margin: 0px;
    transition: 0.5s ease-in-out;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
ul {
    padding: 0px;
    margin: 0px;
}
.restaurant-banner {
	background-color: #0ea800;
}
.res-item-image {
	width: 80px;
}
.res-item-image img {
	max-width: 70px;
	height: auto;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.10);
    background: #FA983B;
    padding: 5px;
    border-radius: 3px;
}
.menu-food-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* .menu-food-item  .list-res-item-name {
	display: block;
	width: calc(100% - 160px);
	padding-top: 0px;
} */
.menu-food-item  .res-con {
	display: block;
	width: calc(100% - 80px);
	padding-top: 0px;
}
.res-item-desc {
    font-size: 12px;
    line-height: 1.4em;
    padding-right: 10px;
    color: #9a9a9a;
    /* padding: 5px 10px; */
    /* border: 1px solid #ebebeb; */
    /* background: #eaf3e9;
    color: #10A800; */
    font-weight: 400;
    margin-right: 6px;
}
.menu-food-item .input-price {
	margin-top: 0px;
	padding-top: 0px;
	font-size: 15px;
	width: 80px;
}

.main-menu-container ul li a {
    color: var(--bs-black);
    font-size: 20px;
    line-height: 1em;
    font-weight: 400;
}

.main-menu-container ul li:not(:last-child) {
    padding-right: 25px;
}

.main-menu-container ul li a {
    color: var(--bs-black);
    transition: all .3s ease;
}

.main-menu-container ul li {
    display: inline-block;
}

.main-menu-container ul {
    text-align: right;
}

img {
    max-width: 100%;
}

header {
    padding: 0px 0px;
    border-bottom: 1px solid #dddddd;
    position: relative;
    z-index: 3;
    background: #fff;
	max-width: 500px;
	margin: 0px auto;
}
.body-wrapper-desktop {
	background-color: #fff;
}
.body-container {
	max-width: 1200px;
	margin: 0px auto;
}
.main-banner-menu {
	background-image: url(/images/my-menu.jpg);
	background-repeat: no-repeat;
	background-position: center center;
    width: 100%;
    height: 60px;
    background-size: 100%;
}
.form-left-res {
    background: #efe;
    min-height: 655px;
    border: 3px solid #ded;
}
h1.reg-heading {
    color: #ea2a18;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;	
}
.button-play.is-play .button-icon .triangle {
    animation: fadeIn 7s ease;
}
.button-play.is-play .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    animation: triangleStroke 3s;
    animation-timing-function: ease;
}

.has-scale-animation {
    animation: smallScale 3s infinite;
}
.has-delay-short {
    animation-delay: 0.5s;
}
.reg-note {
	font-size: 12px;
	background-color: #fee;
	padding: 5px 10px;
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-o-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.spacing-section {
    padding-bottom: 90px;
}






.animate__animated {
    animation: 0.5s ease-out 0s 1 slideInFromLeft forwards;
    animation-delay: 0.2s;
}

.animate__animated_right {
    animation: 1.5s ease-out 0s 1 slideInFromRight forwards;
    animation-delay: 0.2s;
}

.animate__animated_zoom {
    /* animation: 1.5s ease-out animateZoom; */
    /* animation: animateZoom 1.5s ease-out; */
    animation: zoom-in-zoom-out 2s ease-out;
    animation-delay: 0.2s;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes animateZoom {
    0% {
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.7, 0.7);
    }

    50% {
        transform: scale(1.15, 1.15);
    }

    100% {
        transform: scale(1, 1);
    }
}
/* MEDIA QUERIES */
.body-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

@media screen and (max-width: 1390px) and (min-width:769px) {}

body {
    background: #F4FDE5;
}

.main-banner {
	position: relative;
    padding: 0;
    box-shadow: 0px 0px 10px 0px #eee;
}
.main-banner-restaurant {
	background-size: auto 160px !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
	height: 160px;
}

.main-banner.main-banner-restaurant h2 {
    /* text-shadow: 0 0 7px #000;	 */
}
p.location {
    color: #000;
    font-size: 12px;
    font-weight: 300;
    padding: 5px 10px;
    line-height: 15px;
}
.res_name h2 {
    width: 100%;
    background-color: #0ea800;
    font-size: 12px;
    padding: 10px;
}
p.location i{
    color: #0ea800;
    padding-right: 2px;
}

.main-banner .image-restaurant {
	background-color: #eee;
}


.main-banner .img-top img {
    height: auto;
    width: 60px;
    object-fit: cover;
}
.sub-content {
    text-align: center;
    position: relative;
    z-index: 5;
}
.main-banner h2 {
    margin: 0 0 0px 0;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
}

.main-banner.main-banner-restaurant .img-top {
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    margin: auto;
    margin-top: 0px;
	padding: 0px;
	/* border: 1px solid rgba(194, 188, 188, 0.5); */
	width: 60px;
}
.r-spaced-header div img {
	max-width: 100px;
}
.r-menu-right ul.r-main-menu {
	display: flex;
    justify-content: end;
}
.r-menu-right ul.r-account-main-menu {
	display: flex;
    justify-content: end;	
	margin-bottom: 0px;
    font-family: "Barlow", serif;
}
.r-menu-right ul.r-account-main-menu li {
	margin-right: 10px;
}
.r-menu-right ul.r-account-main-menu  a{
	color: #0EA800;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    padding: 13px 10px;
}
.r-menu-right ul.r-account-main-menu li:last-child {
	margin-right: 0px;
}
ul.r-main-menu li {
	margin-right: 30px;
    font-family: "Barlow", serif;
}
ul.r-main-menu li:last-child {
	margin-right: 0px;
}
ul.r-main-menu li a {
	display: block;
	padding: 5px 15px;
	color: #fff;
}
ul.r-main-menu li:last-child a {
	padding-right: 0;
}
p.location {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}
.search-block {
    width: 100%;
    height: auto;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4rem;
    padding: 0px;
    height: 40px;
}
.search__box {
    float: left;
    width: 0;
    height: 40px;
    /*   display: inline; */
    background: none;
    color: #333;
    font-size: 15px;
    border-radius: 2rem;
    outline: none;
    border: none;
    position: relative;
    opacity: 1;
    transition: all .75s ease-in;
    cursor: pointer;
    /*   border: 2px solid tomato; */
    /*   margin-top: 5px; */
}

/* .search__box:focus, .search__box:hover {
        background-color: #f1f2f6;
      } */

.search__icon {
    box-sizing: border-box;
    float: right;
    font-size: 18px;
    display: inline-block;
    margin-left: 10px;
    margin-top: 0;
    cursor: pointer;
    position: absolute;
    color: #fa983a;
    transition: all .25s ease-in;
    padding: 6px;
    border-radius: 50%;
    top: 7px;
}

.search-block:hover>.search__box {
    width:calc(100% - 40px);
    padding: 0 1rem;
}

.search-block:hover>.search__icon {
    background-color: #fa983a;
    color: #fff;
    margin-left: 0px;
    top: 5px;
    /* right: 15px; */

}

.search-bar-container .show {
    width: 85%;
    border: 0px;
}

.search-bar-inner {
    position: relative;
}

.search-bar-container {
    margin-top: 40px;
    float: left;
    width: 100%;
}

#box::placeholder {
    color: #333;
}

.menu-listing-block {
    float: left;
    width: 100%;
}

.menu-listing-block {
    float: left;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 30px;
}
/*  */
.menu-inner-inner {display: block;width: 100%;/* overflow-x: auto; */-webkit-overflow-scrolling: touch;-ms-overflow-style: -ms-autohiding-scrollbar;}

#myTab {
    white-space: nowrap;
    background-color: #fbf0e6;
    border-radius: 20px;
    padding: 10px 15px;
    display: block;
    width: 1200px;
    border: 0px;
    width: auto;
    overflow-x: auto;
}
#myTab li {
    display: inline-block;
    font-size: 14px;
}

#myTab li .nav-link {
    color: #fa983a;
    padding: 6px 14px;
    line-height: 1em;
    color: #333;
    font-size: 13px;
}
#myTab li:last-child{
    margin-right: 10px;
}

#myTab.nav-tabs .nav-item.show .nav-link,
#myTab.nav-tabs .nav-link.active ,#myTab li .nav-link:hover{
    background-color: #fa983a;
    border-color: #fa983a;
    color: #fff;
}
.alert.alert-danger.justify-content-center{
    font-size: 12px;
    line-height: 1em;
    padding: 10px;
    width: 100%;
}
#myTab.nav-tabs .nav-link {
    border-radius: 10px;
}

.menu-block {
    /* display: flex; */
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    background-color: color(srgb 0.96 0.96 0.96);
    outline: 1px solid rgba(127,127,127,0.15);
    background-color: #fafafa;
}
.menu-block:hover{
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);

}
.res-item-price{
    position: relative;
    text-align: center;
    font-weight: 500;
    /* background-color: color(srgb 0.96 0.96 0.96); */
    position: relative;
    z-index: 2;
    padding-left: 10px;
    /* background-color: #fafafa; */
    font-size: 15px;
    color: #fa983a;
    font-weight: 600;
}
.menu-listing-block .row:not(.res-menu-heading) .col-12{
    padding: 0px;
}
/* .res-item-price:before {
    content: '';
    position: absolute;
    inset: 0 -12px -3px;
    background: #ffffff14;
    border-bottom: 1px solid #fa983a ;
    mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
    max-width: 40px;
    left: 50%;;
    margin-left: -13px;
    top: -2px;
} */
.rest-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-thumb img {
    width: 100%;
    display: block;
    border-radius: 5px 5px 0px 0px;
    height: 100px;
    object-fit: cover;
}

.post-thumb {
    margin-right: 0px;
    margin-bottom: 5px;
}

.menu-block .inner-box {
    position: relative;
    padding:10px 6px;
    /* background-color: #fff8f0; */
        background: linear-gradient(180deg, #fffbf7 0%, #fdf2e6 100%);
}


.menu-block .inner-box .text {
    font-size: 12px;
    line-height: 1.4em;
    font-weight: 300;
    color: #222;
}

.menu-block .inner-box span.menu-tag {
    font-size: 9px;
    line-height: 9px;
    margin-bottom: 5px;
    background: #e7272d;
    padding: 5px 5px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 5px;
    position: relative;
    top: 0;
    display: inline-block;
    color: #fff;
    background-color: #89b758;
}

.menu-item-box {
    display: flex;
    flex-wrap: wrap;
	
}

.menu-block .inner-box .info {
    position: relative;
    
}

.menu-block .inner-box .info .post-title {
    font-size: 15px;
    line-height: 1.1em;
    /* margin: 0px 0px -5px 0px; */
    font-weight: 600;
    color: #222;
	margin-bottom: 0px;
    /* background-color: color(srgb 0.96 0.96 0.96); */
    position: relative;
    z-index: 2;
    padding-right: 0px;
    /* background-color: #fafafa; */
    line-height: 1em;
    color: #FA983A;

}
.res-right-top:after{
    border-color: #c59d5f;
    border-style: dashed;
    border-width: 0 0 1px;
    bottom: 10px;
    content: '';
    height: 0;
    left: 0;
    position: absolute;
    width: 88%;
    height: 1px;
    background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%), linear-gradient(90deg, #10A800, #10A800, #10A800, #f38630, #fa6900);
    background-size: 7px 1px, 100% 1px;
    border: none;

}
.res-right-bottom{
    margin-top: 5px;
}
.res-right-bottom{
    display: flex
;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
}
.res-right-bottom .input-bottom.input-price{
    width: 70px;
   
}
.res-des{
    width: calc(100% - 70px);
}
.res-right-top{
    position: relative;
}
#myTabContent {
    padding: 30px 0px;
}

.menu-block:nth-child(odd) {

    margin-bottom: 10px;
}

.menu-block:nth-child(even) {

    margin-bottom: 10px;
}

.qty-input {
    color: #000;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.error {
  font-size: 12px;
  background: #fee;
  color: #800;
  margin-top: 5px;
  padding: 2px 10px;	
}
.qty-input .product-qty,
.qty-input .qty-count {
    background: transparent;
    color: inherit;
    font-weight: normal;
    font-size: inherit;
    border: none;
    display: inline-block;
    min-width: 0;
    height: 16px;
    line-height: 1;
    font-size: 12px;
    font-weight: 400;
    color: #222;
}

.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
    outline: none;
}

.qty-input .product-qty {
    width: 20px;
    min-width: 0;
    display: inline-block;
    text-align: center;
    appearance: textfield;
    border: 1px solid #ebebeb;
    margin: 0px 2px;

}

.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.qty-input .qty-count {
    padding: 0;
    cursor: pointer;
    width: 16px;
    font-size: 15px;
    text-indent: -100px;
    overflow: hidden;
    position: relative;
    background-color: #fa983a;
    border: 1px solid #fa983a;
    border-radius: 2px;

}

.qty-input .qty-count:before,
.qty-input .qty-count:after {
    content: "";
    height: 1px;
    width: 6px;
    position: absolute;
    display: block;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.qty-input .qty-count--minus {
    border-right: 1px solid #e2e2e2;
    border: 0px;
    border-radius: 2px;
}

.qty-input .qty-count--add {
    border-left: 1px solid #e2e2e2;
    border: 0px;
    border-radius: 2px;
}

.qty-input .qty-count--add:after {
    transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
    color: #ccc;
    background: #f2f2f2;
    cursor: not-allowed;
    border-color: transparent;
}

.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
    background: #ccc;
}


.qty-input {
    border-radius: 4px;
    /* box-shadow: 0 1em 2em -0.9em rgba(0, 0, 0, 0.7);
transform: scale(1.5); */
}

/* .input-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    align-items: center;

} */

.res-right-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    line-height: 1em;
}
.input-bottom.input-price {
	display: block;
}

h3.price.pull-right {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    color: #fa983a;
}

.qun-btn.active .qty-input {
    display: flex;

}

.qun-btn.active a.add-btn {
    display: none;

}

.qun-btn .qty-input {
    display: none;

}

.add-btn {
  border: 1px solid #fa983a;
  color: #fff;
  font-size: 11px;
  padding: 4px 19px 5px;
  font-weight: 400;
  line-height: 1.3em;
  border-radius: 12px;
  background-color: #fa983a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
}
.view-all-cat .btn{
     border: 1px solid #fa983a;
  color: #fff;
  font-size: 13px;
  padding: 4px 12px 5px;
  font-weight: 500;
  line-height: 1.3em;
  border-radius: 12px;
  background-color: #fa983a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
  .view-all-cat{
    text-align: center;
    padding-bottom: 20px;
  }
  #view-all-cat .modal-body{
    background-color: #fbf0e6;
  }
  #view-all-cat .modal-body #myTab li .nav-link{
    background-color: #fafafa;
  }
    #view-all-cat #myTab.nav-tabs .nav-item.show .nav-link,
    #view-all-cat #myTab.nav-tabs .nav-link.active,
     #view-all-cat #myTab li .nav-link:hover {
    background-color: #fa983a;
    border-color: #fa983a;
    color: #fff;
}
    #view-all-cat #myTab{
        white-space: inherit;
    overflow: inherit;
    border-radius: 0px;
    padding: 0px;
    }
 #view-all-cat   .modal-footer .btn{
    background-color: #fa983a;
    border-color: #fa983a;
 }
 .view-all-cat-1{
    background-color: #fff;
    padding-top: 20px;
 }
 .menu-list h4.category-title{
    grid-column: 1/-1;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    background-color: #fa983a;
    padding: 8px;
    margin-left: -20px;
    margin-right: -20px;
         padding: 12px 20px;
    border-radius: 15px 15px 0px 0px;
 }


.main-checkout-block {
    position: relative;
}

.checkout-block-container {
	padding: 10px;
    background-color: #0ea800;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    float: left;
    width: 100%;
    position: fixed;
    bottom: -43.8px;
    overflow: hidden;
    z-index: 9;
    bottom: 0px;
    max-width: 500px;
    margin: 0px auto;
    z-index: 100;
    max-width: 500px;
    /* margin-left: 12px; */
}

/* .checkout-block-container.checkout-ver-1 {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 30px 30px 0px 0px;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 0px;
    bottom: 0px;
    margin-left: 0px;
} */
.view-all-table-orders {
	display: flex;
	cursor: pointer;
    display: flex;
}
.view-all-table-orders img {
	width: 30px;
}
.view-all-table-orders span {
    width: calc(100% - 30px);
    color: #800;
    padding: 3px 10px;
}
.modal-backdrop.show {
    z-index: 2;
}
.cart-item-note {
  color: #222;
  background: rgba(250,152,58,0.1);
  padding: 0;
  font-size: 12px;
  padding: 0px 5px;
  border-radius: 0px; 
  font-weight: bold;
  display: flex;
  align-items: center;
  background-color: #fafafa;
}
.cart-item-note .item-comment {
  line-height: 16px;
  display: block;
  font-weight: normal;
  padding-left: 5px;
}
/* .checkout-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.no-checkout {
    text-transform: uppercase;
    font-weight: 500;
}

.main-checkout-block.active .checkout-block-container {
    bottom: 0px;
}
.empty-cart-msg {
	color: #222;
	font-size: 17px;
}

#addModal .modal-body,
#cartModal .modal-content {
    background-color: #fafafa;
}

#addModal .modal-item-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3em;
    color: #fa983a;
}

#addModal .modal-item-price {
  color: #4A4A4A;
  opacity: 1;
  font-size: 20px;
  line-height: 1em;
  font-weight: 400;
}

.textbox-cart label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2em;
  color: #333;
}

.textbox-cart {
    display: flex;
    flex-direction: column;
}

.textbox-cart textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ebebeb;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    padding: 15px;
    margin-top: 5px;
}

#addModal .qty-input {
    padding: 10px 15px;
    margin-bottom: 20px;
        margin-top: 10px;
}
.modal-header .modal-title{
    color: #fff;
}
#addModal .qty-input .qty-count {
    height: 28px;
    width: 28px;
}

#addModal .qty-input .product-qty {
    width: 34px;
    margin: 0px 4px;
    height: 28px;
}

#addModal .modal-body {
    padding: 16px 0px;
    padding-bottom: 0px;
}

#addModal .modal-body-top {
    padding: 0px 16px;
}

.modal-body-bottom {
    background-color: #F4FDE5;
    padding: 16px;
    background-color: #FCF0E6;
}

#cartModal .modal-body {

    border: 0px;

}

#cartModal .modal-header ,.cartModal .modal-header{
    border: 0px;
    background-color: #fa983a;
}

#cartModal .modal-header .btn-close ,.cartModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}{
    filter: brightness(0) invert(1);
}

.cart-main-top {
    margin-bottom: 20px;
}
.row-bagde {
  position: absolute;
  /* top: 8px; */
  font-size: 12px;
  /* background: #800; */
      padding: 3px 20px;
  /* color: #fff; */
  height: 30px;
  line-height: 22px;
  border-radius: 20px;
}
.row-badge-added{
    background-color: #0ea800;
    color: #fff;
position:absolute;
    font-size: 12px;
    padding: 3px 20px;
    height: 30px;
    line-height: 22px;
    border-radius: 20px;
}

#cartModal .modal-body .cart-top {
    padding: 10px;
    background-color: #FCF0E6;
    border: 0px;
    display: flex;
    align-items: start;
}
#cartModal .modal-body .cart-top.cart-top-header {
	background: #0ea800;
	color: #fff;
}
#cartModal .modal-body .cart-top-all {
	position: relative;
	padding-top: 24px;
}
#cartModal .modal-body .cart-top-all-not-ordered {

}
#cartModal .modal-body .cart-top-all-preparing {
	background: #afa;
}
#cartModal .modal-body .cart-top-all-preparing * {
	/* color: #0ea800; */
}
#cartModal .modal-body .cart-top-all-preparing .row-bagde.preparing {
	color: #fff;
	background: #0ea800;
}
.item-cart-left {
    color: #4A4A4A;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1em;
    font-weight: 300;
}

.item-cart-right {
    color: #4A4A4A;
    font-size: 12px;
    line-height: 1em;
    font-weight: 600;
    /* opacity: 0.4; */
}
#modal-subtotal{
    font-size: 12px;
}

.item-total-grand .item-cart-right {

    opacity: 1;
}

.item-total-grand b {
    font-weight: 600;
}

#cartModal .modal-body .cart-top .item-quantity {
    width: 10%;
	align-self: flex-start;
}

#cartModal .modal-body .cart-top .item-name {
    /* width: 70%; */
    padding: 0px 10px;
    margin-top: 6px;
}

#cartModal .modal-body .cart-top .item-price {
    width: 20%;

}

#cartModal .item-total ,.cartModal .item-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.modal-body-bottom .form-group {
    align-items: center;
    justify-content: space-between;
}

#cartModal .modal-body .cart-top:not(:last-child),.cartModal .cart-top:not(:last-child)  {
    /* border-bottom: 1px solid #ebebeb; */
}

.cartModal .modal-body .bill-header-main .items-details-header{
    padding: 10px;
    background-color: #FCF0E6;
    border: 0px;
    display: flex
;
    align-items: start;
}
.cartModal .modal-body .bill-header-main .items-details-header {
    background: #0ea800;
    color: #fff;
}
.cartModal .modal-body .bill-header-main .items-details-header p:nth-child(1){
    width: 45%;
}
.cartModal .modal-body .bill-header-main .items-details-header p:nth-child(2){
    width: 15%;
}
.cartModal .modal-body .bill-header-main .items-details-header p:nth-child(3){
    width: 20%;
}
.cartModal .modal-body .bill-header-main .items-details-header p:nth-child(4){
    width: 20%;
}
.cartModal .modal-body .items-details-content p:nth-child(1){
    width: 45%;
}
.cartModal .modal-body .items-details-content p:nth-child(2){
    width: 15%;
}
.cartModal .modal-body .items-details-content p:nth-child(3){
    width: 20%;
}
.cartModal .modal-body .items-details-content p:nth-child(4){
    width: 20%;
}
.cartModal .modal-body .items-details-content{
    display: flex;
    gap: 5px;
        color: #fa983a;
        width: 100%;
}
.cartModal .modal-body .items-details-content p{
    margin: 0px;
}
.bill-top{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.bill-top h2{
    color: #0ea800;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 5px;

}
.bill-details p:first-child{
    padding-bottom: 5px;
    color: #f38630;
}
.cart-item .bill-amount{
    padding: 10px;
    background-color: #FCF0E6;
    border: 0px;
    display: flex
;
    align-items: start;
}
.cart-item .bill-amount:not(:last-child) {
    border-bottom: 1px solid #ebebeb;
}
.bill-top p{
    color: #232323;
    font-size: 13px;
    line-height: 1em;
    font-weight: 400;
}

#modal-item-id,
.btn.btn-secondary.btn-checkout {
    position: relative;
    display: inline-block;
    border: none;
    outline: none !important;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    width: auto;
    padding: 10px 15px;
    background-image: linear-gradient(to bottom, #ff9a3b, #fa983a);
    line-height: 1em;
}

.delivery-block-cart a i {
    color: #89b758;
    padding-left: 3px;
    font-size: 12px;
}

.resturant-name-block {
    padding:0px 5px;
    background-color: #FCF0E6;
    border: 0px;
    border: 1px solid #ebebeb;
    background: #fafafa;
    margin-bottom: 0px;
    

}

.cart-top {
    color: #fa983a;
}

.cart-top.cart-top-head {
    color: #000;
	font-weight: bold;
}

.resturant-name-block h3 {
    margin: 0px;
    font-size: 14px;
    line-height: 1.3em;
    color: #333;
    font-weight: 500;
}

#addModal .modal-body-bottom .form-group .modal-item-price {
    opacity: 1;
}

.textbox-cart textarea:focus-visible,
.textbox-cart textarea:focus {
    outline: none;
}
button.delete-cart-item{
    /* border: 0px;
    background-color: red;
    color: #fff;
    margin-left: 3px;
    padding: 0px;
    font-size: 10px;
	width: 24px; */
    border: 0px;
    background-color: red;
    color: #fff;
    margin-left: 3px;
    padding: 0px;
    font-size: 11px;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}
.checkout-block-container .container{
    max-width: 768px;
}

/* #cartModal {
    z-index: 9;
} */
.checkout-block-container .cart-basket-link{
    border: 0px;
    background: transparent;
}
.checkout-block-container .cart-icon{
  
    font-size: 16px;
    color: #fff;
}
.checkout-block-container #cart-item{
    background-color: #fff;
    height: 17px;
    width: 17px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1em;
    border-radius: 0px 5px 5px 0px;
    color: #fa983a;
    position: absolute;
    top: -2px;
    right: -2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cart-item:empty {
	display: none;
}
.checkout-block-container .no-item{
    font-weight: 400;
    font-size: 15px;
    line-height: 1em;
    display: block;
    margin-top: 5px;
    padding-left: 0px;
    margin-bottom: 3px;
}
.checkout-block-container .total-sum{
    font-weight: 600;
    font-size: 16px;
    line-height: 1em;
    
}

.checkout-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
}
.checkout-container .icon-circle.icon-circle-bas{
    display: flex;
    align-items: center;
    background-color: #fa983a;
    position: relative;
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    justify-content: center;
        margin: 0 auto;
}
.checkout-container{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.checkout-container span{
    color: #fff;
    font-size: 13px;
}
.cart-icon-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-con-right{
    background-color: #fff;
    padding: 5px;
 color: #fa983a;
 font-size: 15px;
    
}
.checkout-main-left .main-form-container .form-control {
	background-color: #FFF;
	
}
.back-to-menu {
	margin-bottom: 10px;
}
.heading-your-order {
	
}
.back-to-menu a {
	color: #eee;
	background-color: #fa983a;
	padding: 5px 10px;
	font-size: 12px;
}
.main-form-container .form-control{
    font-size: 12px;
    outline: none;
    color: #535353;
    border-radius: 3px;
    font-weight: 400;
    border: 1px solid #aaa;
    background: #effed6;
    width: 100%;
    padding: 6px 50px 6px 11px;
    border-radius: 3px;
    height: auto;
}

.main-form-container .form-group {
    margin-bottom: 25px;
    display: block;
    width: 100%;
}
.main-form-container .form-group.last {
	margin-bottom: 0px;
}

.main-form-container .form-group-block{
    position: relative;
}
.main-form-container .form-box i {
    position: absolute;
    top: 5px;
    right: 11px;
    font-size: 14px;
    color: #687553;
}
.checkout-main-container {

    font-family: var(--fontfamily-main);
    background-color: #fff;
   
}
.open-login, .open-register {
	color: #fa983a;
    font-weight: 500;	
}
.new-customer-label {
	font-weight: 400;
    font-size: 15px;
    line-height: 1em;
    margin: 0px;
    color: #535353;	
}


.checkout-main-container .form-top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.checkout-main-container label{
    font-weight: 400;
    font-size: 15px;
    line-height: 1em;
    margin: 0px;
    color: #535353;
    
}

.checkout-main-container label a{
    color:#89b758 ;
    font-weight: 500;
}
.checkout-main-container .form-group:not(:last-child){
    margin-bottom: 12px;
}

.main-form-container h3{
    font-size: 15px;
    line-height: 1em;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}
h3.lower-h3{
    margin-top: 0px;
    display: inline-block;
}

.form-group .pay-btn{
    position: relative;
    display: inline-block;
    border: none;
    outline: none !important;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    border-radius: 0;
    width: 100%;
    padding: 0 50px;
    line-height: 50px;
    background-image: linear-gradient(to bottom, #6a7857, #84966a);
}
.block-your-info {
	display: flex;
	justify-content: space-between;
}
.checkout-main-right-min{
    background-color: #FCF0E6;
    padding: 20px 15px;
}
.checkout-main-half {
	background-color: #f1f1f1;
    padding: 20px 15px;
}

.checkout-main-right-min .cart-top {
    padding: 10px;
    background-color: #fff;
    border: 0px;
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1em;
}
.checkout-main-right-min  .cart-top .item-quantity {
    width: 10%;
}

.checkout-main-right-min  .cart-top .item-name {
    width: 70%;
    padding: 0px 10px;
}

.checkout-main-right-min  .cart-top .item-price {
    width: 20%;

}

.checkout-main-right-min .item-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}



.checkout-main-right-min  .cart-top:not(:last-child) {
    border-bottom: 1px solid #ebebeb;
}
.checkout-main-right-min .resturant-name-block{
    border: 0px;
    background-color: #fa983a;
    color: #fff;
}
.checkout-main-right-min .resturant-name-block h3{
  
    color: #fff;
}

.radio {
   margin: 5px;
}
.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type="radio"]:checked + .radio-label:before {
    background-color: #89b758;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: #89b758;
}
.radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
}
.payment-option-listing li{
    width: 50%;
}
.payment-option-listing ul{
    display: flex;
    align-items: center;
}

.payment-option-listing ul label{
    color: #4A4A4A;
    font-size: 12px;
    line-height: 1em;
    font-weight: 300;
}
.cart-payment-option{
    background-color: #fff;
    margin-top: 15px;
}

.cart-payment-option h3{
    background: #FDFCFC;
    padding: 8px 5px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(74, 74, 74, 0.125);
    color: #2d2c2c;
}

.checkout-main-right-min .item-total-grand{
    margin-top: 20px;
}

.checkout-main-right-min .delete-cart-item{
    padding: 1px;
    line-height: 1em;
}
.checkout-main-right-min .delete-cart-item:focus,.checkout-main-right-min .delete-cart-item:hover{
    border:0px;
    background-color: #fa983a;
    outline: none;
}
.payment-option-listing .time-part{
    position: relative;
    padding: 10px 8px;
    float: none;
    width: 100%;
    display: inline-block;
    font-family: var(--fontfamily-main);
}
.time-part i {
    position: absolute;
    top: 13px;
    right: 12px;
    font-size: 20px;
    color: #687553;
    cursor: pointer;
}

.time-part .form-control{
    font-size: 16px;
    outline: none;
    color: #535353;
    border-radius: 3px;
    font-weight: 400;
    border: 1px solid transparent;
    background: #effed6;
    float: left;
    width: 100%;
    padding: 10px 50px 10px 15px;
    border-radius: 3px;
    height: auto;
    transition: none;
    line-height: 1em;
    font-family: var(--fontfamily-main);
    

}
.ui-timepicker-viewport,.ui-timepicker-viewport li, .ui-timepicker-viewport a,.ui-timepicker{
    transition: none;
}
.ui-timepicker-standard a:hover,.ui-timepicker-standard a:focus,.ui-timepicker-container{
    transition: none;
}
.ui-timepicker-standard a{
    text-align: left;
    font-size: 14px;
    color: #535353;
    font-weight: 400;
    font-family: var(--fontfamily-main);
}

.ui-timepicker-standard .ui-state-hover {
    /* overwrites .ui-state-hover */
    background-color: #fafafa;
    border: 1px solid #ccc;
    font-weight: 400;
    color: #535353;
}


.time-part .form-control:focus,
.time-part .form-control:hover{
    outline: none;
    box-shadow: none;
    border: 1px solid #687553;
}

/* checkbox */
.checkout-main-container form {
	padding: 0px;
}
#delivery-time {
	border: 1px solid #ddd;
    padding: 5px;
    font-size: 14px;
    width: 88%;	
}
.listing-checkbox-group .checkbox-label{
    display: inline-flex;
    align-content: center;
    cursor: pointer;
    position: relative;
    width: 100%;
    margin-bottom: 5px;
    flex: 0 50%;
    font-size: 12px;
}
.listing-checkbox-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main-checkbox-input {
    margin-right: 5px;
    width: 16px;
	margin-top: -2px;
}
.listing-checkbox-group .main-checkbox {

    position: absolute;

    opacity: 0;

    z-index: 2;

    width: 60px;

    height: 30px;

    top: 0;

    left: 0;

    margin: 0;

    padding: 0;

    cursor: inherit;

}

.main-checkbox-indicator {

    position: relative;

    pointer-events: none;

    user-select: none;

     transition: 200ms background-color ease-out, 200ms color ease-out, 200ms border-color ease-out, 200ms opacity ease-out, 200ms box-shadow ease-out;

    width: 16px;

    height: 16px;

    background-color:  #FFFFFF;

    border: 1px solid #D0D3D9;

    text-align: center;

    border-radius: 3px;

}

input:checked ~ .main-checkbox-indicator,

 input:checked ~ * .main-checkbox-indicator, 

 input:indeterminate ~ .main-checkbox-indicator,

  input:indeterminate ~ * .main-checkbox-indicator{

    border: 0px;

  }

.checkbox-indicator-icon {

    border-radius: 2px;

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    transition: opacity 200ms cubic-bezier(0.4,0,0.23,1);

    background-color:  #fa983a;

    opacity: 0;

}



.listing-checkbox-group .main-checkbox:checked ~ * .checkbox-indicator-icon{

    opacity: 1;

}

.checkbox-indicator-icon-1 {

    position: absolute;

    margin: auto;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    position: absolute;

    margin: auto;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    transform: translate(14px, 1px) rotate(-57deg) scale(1);
    top: -2px;
    left: -6px;

}



.listing-checkbox-group .main-checkbox:checked ~ * .checkbox-indicator-icon-1::before,

 .listing-checkbox-group .main-checkbox:checked ~ * .checkbox-indicator-icon-1::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    border-radius: 1px;

    height: 2px;

    background-color:#FAFBFC;

}

.listing-checkbox-group .main-checkbox:checked ~ * .checkbox-indicator-icon-1::before {

    width: calc(24px* 0.5);

}

.listing-checkbox-group .main-checkbox:checked ~ * .checkbox-indicator-icon-1::after {

    width: calc(24px* 0.25);

    transform-origin: 1px 1px;

    transform: rotate(-78deg);

}

.checkbox-indicator-icon-2 {

    position: absolute;

    margin: auto;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

}

.listing-checkbox-group .main-checkbox:checked ~ * .checkbox-indicator-icon-1  {

    

    transform: translate(7px, 1px) rotate(-57deg) scale(0.7);

    transform: translate(14px, 1px) rotate(-57deg) scale(1);

}

/* checkbox end */
.label-deli {
	font-size: 14px;
}
.delivery-addr-wrapper {
	width: 100%;
	padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5px;	
}
.delivery-addr-wrapper .form-group-block #address {
	padding-left: 30px;
}
.delivery-addr-wrapper .form-group-block  i {
    position: absolute;
    top: 4px;
    left: 9px;
    font-size: 13px;
}
.checkbox-main {
    border: 1px solid #ebebeb;
    padding: 10px;
    background: #fafafa;
	margin-bottom: 20px;
}
.checkbox-inner-box{
    display: flex;
    padding: 10px;
    padding-bottom: 5px;
}
.checkbox-left{
    width: 70px;
}
.checkbox-right{
    width: calc(100% - 70px);
}
.checkbox-left h6{
    font-size: 14px;
    font-weight: 500;
    color: #fa983a;
}

.adresss-ind{
    background-color: #FCF0E6;
    padding:10px;
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    margin-top: 10px;
    padding-bottom: 4px;
    margin-bottom: 0px;
}
.adresss-ind .checkbox-label{
   margin-bottom: 0px;
}
.top-main-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-main-heading h3 span{
    color: #fa983a;

}

.payment-option-listing p{
    color: #333;
    padding: 5px 5px;
    font-size: 13px;
    font-weight: 400;
}

h3.order-title{
    margin: 0px;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    background-color: #fa983a;
}
.form-alert{
    padding: 10px;
    background-color: #fafafa;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    border: 1px solid #ebebeb;
    margin: 10px 0px;
}
.order-al{
    padding-left: 10px;
}
.order-al h3 span{
    color: #fa983a;
}
.order-al h3{
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}
.checkout-main-container .card-box{
        display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
}
.checkout-main-container .card-box h3{
    width: 100%;
    color: #0EA800;
    font-size: 16px;
}
.order-item-left .img-item{
    height: auto;
    width: auto;
    border:0px;
}
.order-item-left .img-item img{
    object-fit: cover;
    height: 60px;
    width: 60px;
    border: 5px solid #f7f7f7;
}
.order-al p{
        color: #666;
    font-weight: 400;
    font-size: 13px;
    margin: 0px;
    line-height: 1.4em;
}

.card-box{
    padding: 10px;
    border: 1px solid #ebebeb;
	margin-bottom: 10px;
}
.card-box h3{
    margin: 0px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1em;
    margin-bottom: 5px;
}
.card-box p{
    color: #555;
    font-size: 13px;
    line-height: 1.4em;
    font-weight: 400;
}

.cus-con{
    display: flex;
    margin: 10px 0px;
}
.cus-con p{
    color: #555;
    font-size: 13px;
    line-height: 1.4em;
    font-weight: 400;

}
.cus-left{
    width: 70%;
    padding-right: 10px;
}
.cus-right{
    width: 30%;
    padding-left: 10px;
}
.order-item-left .img-or-con{
    width: calc(100% - 60px);
}
.order-main{
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
}
.order-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: 2px;
}
.img-item{
    height: 60px;
    width: 60px;
    border: 5px solid #f7f7f7;
    position: relative;
}
.order-item-left{
    display: flex;
    align-items: center;
	width: calc(100% - 90px);
}
.multiply-item {
	font-size: 13px;
}
.ind{
    height: 20px;
    width: 20px;
    font-size: 9px;
    font-weight: 700;
    background-color: #fa983a;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-or-con h2{
    font-weight: 500;
    font-size: 15px;
    line-height: 1em;
    color: #555;
    padding-left: 10px;
}
.order-item-right h3{
    font-weight: 600;
    font-size: 16px;
    color: #333;
}
.order-item-right h3 span{
    color: #fa983a;
}
.order-price ul{
    margin: 0px;
    padding: 0px;
    border-top: 1px solid #ebebeb;
    padding-top: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.order-price ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order-price ul li p{
    font-size: 13px;
    line-height: 1.4em;
    color: #555;
    font-weight: 400;
}
.order-price ul li:not(:last-child){
    margin-bottom: 5px;
}
.main-total p{
    font-size: 15px;
    line-height: 1.4em;
    color: #333;
    font-weight: 500;
    
}
.main-total{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-items h3{
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.ui-timepicker-standard {
   
    z-index: 99 !important;
}

.adresss-ind-box.main-form-container{
    border: 1px solid #ebebeb;
    padding: 10px;
    background: #fff;
    display: inline-block;
    width: 100%;
    border-top: 0px;
}
.adresss-ind-box.main-form-container p{
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    padding-bottom: 10px;
    color:#fa983a;
    display: block;
}
.adresss-ind-box.main-form-container .form-group .pay-btn {
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    width: 100%;
    padding: 1px 36px;
    line-height: 36px;
    margin-top: 5px;
}
.adresss-ind-box.main-form-container .form-group:last-child{
    margin-bottom: 0px;
}

ul.table-list li a{
    padding: 3px 8px;
    background: #0f0;
}

ul.table-list li a.occupied{
    background: #f00;
}

table.dataTable {
	max-width: 100%;
	margin-left: 0px;
}
/* kritima */
.image-restaurant{
    padding: 0px;
}
.res_name h2{
    width:100%; 
    /* background-color: #0ea800; */
    font-size: 11px;
    /* padding: 10px; */
    padding: 0px;
    background-color: transparent;
    color: #0ea800;
    font-weight: 600;
}
.content-restaurant{
    padding: 0px;
    height: 142px;
}
.content-top{
    padding: 10px;
    background: #fafafa;
    width: 200px;
    border-radius: 5px;
}
.img-top-wrapper {
  display: inline-block;
  background-color: #fff;
  padding: 2px;
}
p.location {
    color: #000;
	font-size: 11px;
	font-weight: 300;
	padding: 5px 10px;
	line-height: 15px;
    padding: 0px;
    padding-top: 5px;
}
.right-part-nav  .dl-menu.btm-name {
	display: flex;
	justify-content: right;
}
.right-part-nav  .dl-menu.btm-name li {
	margin-right: 7px;
	font-size: 12px;
}
.right-part-nav  .dl-menu.btm-name li p {
	font-size: 12px;
}
.res-menu-heading {
	margin-bottom: 20px;
}
.res-menu-heading h3 {
  text-align: center;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
}
.content-restaurant{
    background: url(/images/bg.png) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-basket-link .no-item {
  margin-left: -10px;
  font-size: 13px;
  color: #fff;
  font-weight: 400;	
}
.pay-counter-btn{
    background-color: #fa983a;
    font-size: 12px;
    border: 0px;
    float: right;
    margin-top: 10px;
}
#pay-btn{
    background-color: #fa983a;
    font-size: 12px;
    border: 0px;
    margin-top: 10px;
}
#stripe-payment-block .btn{
     font-size: 12px;
    border: 0px;
}
 .modal-header .btn-close {
    color: #fff;
    --bs-btn-close-bg: url(data:../img/downlod.png);
    opacity: 1;
    font-size: 40px;
    --cui-btn-close-bg: none;
}
.main-popup .modal-header{
      background-color: #fa983a;
}
#addModal .modal-item-name {
    color: #fff;
}
#addModal  .modal-body-sp{
    padding: 15px;
}

.cart-main{
    padding: 10px;
    background-color: #fff;
    border: 8px solid #ded6ff;
    border-radius: 5px;
}
.cart-main .main-title{
   color: #000;
   font-size: 14px;
   font-weight: 400;
   line-height: 1.2em;
   margin-bottom: 10px;
}


#cartModal .modal-body ,.cartModal .modal-body{
    border: 0px;
    padding: 12px 12px;
    
}
#cartModal .modal-footer {
    border: 0px;
    padding:0px;
    margin-bottom: 10px;
    margin-right: 3px;
    
}
#cartModal .item-total {
    margin-top: 0px;
}
.cart-main-top {
    margin-bottom: 10px;
}
.item-cart-left {
    color: #4A4A4A;
    font-size: 12px;
    text-transform: capitalize;
    line-height: 1em;
    font-weight: 600;
}
.item-total-grand b {
    font-weight: 600;
}
.item-total-grand{
    margin-top: 5px;
}
#cartModal .item-total {
    margin-top: 3px;
}
.cart-bottom{
    margin-bottom: 20px;
}
.table-popup .cart-bottom{
    margin-bottom: 0px;
}

.table-popup .btn-checkout.order-checkout{
    float: right;
    clear: both;
    margin-top: 10px;
}

.table-menu-cart.active{
    display: block !important;
}
.table-menu-cart{
    margin-top: 10px;
}
.table-popup .table-menu-cart .cart-bottom{
    margin-top: 10px;
}

.token-label h6{
    color: #fdd29b;
    font-size: 25px;
    font-weight: 600;
    text-align: right;
    margin: 0px;
    line-height: 1em;
    font-size: 18px;
}

#token-block form {
    background: #FCF0E6;
    padding: 15px 15px;
    width: 100%;
}
#token-block form .form-inner-token{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#token-block{
    width: 100%;
}
#token-block button{
    background-color: #fa983a;
    border: 0px;
    color: #fff;
    border-radius: 5px;
    position: relative;
    top: 3px;
}
#token-block input[type="text"]{
    border: 1px solid #ebebeb;
    border-radius: 5px;
    height: 38px;
    line-height: 38px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}
#token-block label{
    color: #555;
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
    padding-right: 3px;
}
#token-block p{
    color: #fa983a;
    font-size: 13px;
    line-height: 1em;
    font-weight: 500;
    margin-top: 5px;
}

#token-block{
    position: relative;
}
#token-block  form{
    position: fixed;
    max-width: 476px;
    /* left: 0px; */
    bottom: 79px;
    margin: 0 auto;
    z-index: 100;
    max-width: 500px;
}

.res-menu-heading{
    background:#fa983a url('/images/menu_pattern3-min.png') center bottom no-repeat;
    background-size: cover !important;
    height: 100px;
    align-items: center;

}

.main-banner-container{
   
      height: 800px;
        position: relative;
        width: 100%;
        display: block;   
        padding-top: 100px;
        margin-top: -140px;
        font-family: "Barlow", serif;
    
    
}
.main-banner-container:before {
    position: absolute;
    content: '';
    background: rgb(156, 150, 145);
    background:  linear-gradient(90deg, #4DAE2B 0%, #0EA800 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.banner-img{
    position: relative;
    display: block;
    width: 100%;
    margin-left: -80px;
    z-index: 9;
    top: 80px;
}
.bottom-img-absolute {
    bottom: -40px;
    width: 100%;
    position: absolute;
}
 .bottom-img-absolute img {
    width: 100%;
}
.banner-content{
    position: relative;
    z-index: 9;
}
.r-main-menu li{
    display: inline-block;
}

.r-main-menu{
    text-align: right;
}

.header-container{
    position: relative;
    z-index: 9;
    padding: 10px 0px;
}
.banner-content h2{
	color: #fff;
    font-weight: 800;
    font-size: 50px;
    text-transform: capitalize;
	margin-top: 30px;
    margin-bottom: 38px;
    line-height: 60px;
}
.banner-content h2 span{
    color: #ff0;
}
.banner-content p{
	color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    padding-left: 25px;
    background-image: url(../images/banner-qr.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 2px 7px;
    margin-bottom: 10px;
}

.banner-content a.view-more{
    font-family: 'Barlow';
    font-style: 500;
    font-size: 24px;
    line-height: 26px;
    background: #ebbd00;
    border-radius: 5px;
    padding: 17px 38px;
    color: #fff;
    font-size: 22px;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 30px;
}
.main-title{
    font-family: "Barlow", serif;
    position: relative;
    z-index: 9;
    background-color: #F7F7F7;
}
.main-title-inner{
    text-align: center;
    margin-bottom: 0px;
	z-index: 10;
}
.main-title-inner h2{
    color: #000;
    font-size: 58px;
    font-weight: 800;
    line-height: 1em;
}
.main-title-inner h2 span{
    color: #58A531;
}
.main-title-inner  p{
	color: #000;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3em;
    padding-top: 28px;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto;
}
.main-title-inner p.ask-for-help {
    font-size: 17px;
    text-transform: inherit;
}
.image-main-block{
    background-color: #f7f7f7;
    padding:30px 0px;
    font-family: "Barlow", serif;
}
.image-main-block .step-title{
    display: flex;
    align-items: center;
}
.image-main-block .step-title .circle{
    display: flex;
    align-items: center;
    background-color: #58A531;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
}
.image-main-block .step-title h2{
    color: #000;
    font-weight: 600;
    font-size: 28px;
    padding-left: 15px;
    margin: 0px;
}
.img-block-content h3{
    font-weight: 500;
    font-size: 28px;
    margin: 40px 0px;
    text-transform: capitalize;
}
.img-block-content h3 span{
    color: #58A531;

}
#main-contact-container .main-title-inner h2{
    color: #0EA800;
}
#main-contact-container .main-title-inner{
    margin-bottom: 60px;
}
.img-block-content li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}
.img-block-content ul{
    margin: 30px 0px;
}

a.link-btn{
    background-color: #FB3A1B;
    margin-top: 20px;
    color: #fff;
    font-weight: 400;
    border-radius: 10px;
    font-size: 18px;
    padding: 14px 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    display: inline-block;
    text-transform: uppercase;
}

.image-main-block-last{
    background: #f7f7f7 url(../images/menu-bg.png) center no-repeat;
}
.why-container{
	background-color: #fff;
    padding: 100px 0px 60px;
    font-family: "Barlow", serif;
    position: relative;
}
.why-container .main-title-inner {
	margin-bottom: 60px;
}
.why-content h2{
    color: #000;
    font-size: 35px;
    line-height: 1.3em;
    font-weight: 600;

}
.why-content h2 span{
    color: #58A531;

}
.why-content p{
    color: #555;
    font-size: 16px;
    line-height: 1.6em;
    margin: 20px 0px;
    font-weight: 400;
}
.why-content ul li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.why-content ul p{
    color: #555;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 400;
    margin: 0px;
}
.why-content ul li img{
    width: 50px;
}
.why-img{
    padding-left: 100px;
    position: relative;
    z-index: 9;
}
.why-container:before{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    background: url(../images/need.png) top no-repeat;
    height: 510px;
    width: 511px;
    background-size: cover;
}

.footer-top{
    background-color: #0EA800;
    padding: 30px 0px;
    font-family: "Barlow", serif;
}
.footer-menu ul li{
    display: inline-block;
}
.footer-menu ul li:not(:last-child){
    margin-right: 20px;
}
.footer-menu ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;

}
.footer-img img{
    height: 70px;
}
.footer-social ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-social a{
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #0EA800;
    border-radius: 50%;
}
.footer-social li:not(:last-child){
    margin-right: 6px;
}
.footer-menu ul{
    text-align: center;
}
.footer-bottom{
    background-color: #000;
    padding: 10px 0px;
}
.footer-bottom p{
    margin: 0px;
    color: #fff;
    font-family: "Barlow", serif;
    font-size: 14px;
    line-height: 1em;
    font-weight: 400;
    text-align: center;
    justify-content: center;
}

/* Subscription */

.sub-headings h3{
    color: #0ea800;
    font-size: 20px;
    line-height: 1em;
    margin-bottom: 5px;
    font-weight: 600;
}
.sub-headings p{
    color: #333;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
}

.sub-box{
    border: 1px solid #E1E1E1;
    margin-top: 50px;
    margin: 50px 0px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #F0FEEF;
    font-family: "Barlow", serif;
}
.sub-heading{
    padding: 30px 30px 30px 30px;
    background: #0ea800;
    text-align: center;
}
.sub-heading h2{
    color: #fff;
    font-size: 18px;
    line-height: 1em;
    margin-top: 0px;
    font-weight: 400;
    margin-bottom: 15px;
}
.sub-main-contain .sub-btn{
    background: transparent;
    border: 0px;
    margin-bottom: 30px;
}

h2.subscription-sel-heading {
	font-size: 18px;
    font-weight: 700;
}
h2.subscription-sel-heading .selected-subscription {
    background: linear-gradient(135deg, #ea2a18, #ff3d1a);
    padding: 10px 20px;
    color: #fff;
}
.main-price{
	color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
span.ico{
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 1em;
    padding-right: 5px;

}
span.price-sub{
	color: #fff;
    font-weight: 700;
    font-size: 32px;
    padding-right: 5px;
}

span.per-month{
    font-weight: 400;
    font-size: 18px;
    line-height: 1em;
    color: #555;
}
.sub-main-contain{
    padding: 20px;
    background: #f0fdef;
}
.sub-main-contain img{
    width: 220px;
    text-align: center;
    margin: 20px auto;
    display: block;
}
.sub-box-container .col-md-4:last-child .sub-main-contain img{
    width: 390px;
}
.content-sub li {
    color: #555;
    font-size: 15px;
    line-height: 1.4em;
    margin-bottom: 15px;
    align-items: flex-start;
    list-style: none;
    display: flex;
}
.content-sub li img{
    width: 25px;
    
    display: inline-block;
    margin:0px;
    margin-right: 10px;
}
.content-sub ul{
    margin: 0px;
    padding: 0px;
}
.sub-heading{
    position: relative;
    margin: 0 30px;
    padding: 30px 0 45px 0;
    width: auto;
    background: #10A800;
    overflow: hidden;
}

.sub-heading::before,
.sub-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 100px solid #F0FEEF;
}
.sub-heading:before {
    right: 50%;
    border-right: 250px solid transparent;
}
.sub-heading::after {
    left: 50%;
    border-left: 250px solid transparent;
}
a.buy-btn{
    position: relative;
    display: inline-block;
    border: none;
    outline: none !important;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    width: 100%;
    padding: 0 50px;
    line-height: 50px;
    background-image: linear-gradient(135deg, #ea2a18, #ff3d1a);
    text-align: center;
    margin-top: 20px;
}

.sub-box-container .col-md-4:nth-child(even) .sub-heading{
    background: #0ea800;
}
.sub-box-container .col-md-4:nth-child(even) .main-price span,.sub-box-container .col-md-4:nth-child(even) .sub-heading h2{
    color: #fff;
}
.qr-main-container .main-title{
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.qr-main-container .main-title .main-title-inner{
  
    margin-bottom: 0px;
}
.qr-main-container .main-title .main-title-inner h2{
    color: #0ea800;
}
.qr-main-container .sub-box-container .container{
    max-width: 1200px;
}
.footer-menu{
    display: none;
}

ul.subscription-li li {
	background: url(../images/circle.png) top left no-repeat;
	background-size: 30px;
	padding-left: 30px;
	margin-bottom: 10px;
}
.subscription-li{
    min-height: 255px;
    min-height: 243px;
}

#contact-container{
    
    background: #159A08 url(../images/menu_pattern3-min.png) center no-repeat;
    height:200px;
    font-family: "Barlow", serif;
}
#contact-container h2{
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 1em;
    margin-bottom: 15px;
}
.contact-container .container,.contact-container .row{
    height: 100%;
}
.contact-content ul li{
    display: flex;
    align-items: center;
    margin-bottom:10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.contact-content p{
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 0px;
    color: #fff;
}
.contact-content p span{
    color: #F59024;

}
.contact-content a{
    color: #fff;
}
.contact-content ul {
    display: flex;
        align-items: center;
        gap: 20px;
        margin: 15px 0px;
        margin-bottom: 0px;
}
.contact-content li .icon-con{
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0EA800;
    font-size: 20px;
    background-color: #fff;
    margin-right: 10px;

}

.contact-content h6{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
}
.contact-content h6 img{
    height: 30px;
    padding: 4px;
    margin: 0px 5px;
    background-color: #fff;
}
.contact-con-bottom{
    display: flex;
    align-items:center;
    justify-content: space-between;
}
.contact-content h6 b{
    padding-left: 3px;
}

.contact-content  img {
       height: 80px;
    padding: 5px 7px;
    background: #fff;
}
.footer-social i{
    color: #0EA800;
}
#howitworks,#ownersblock,.main-section-owners{
    background-color: #f7f7f7;
       font-family: "Barlow", serif;
}
.main-section-owners .why-content ul li {
    display: flex
;
    align-items: flex-start;
    margin-bottom: 0px;
    align-items:flex-start;
    margin-bottom: 4px;
}
.footer-social ul{
    gap:0px
}
.free-container{
    background-color: #F2FFF1;
    padding: 90px 0px;
        font-family: "Barlow", serif;
    position: relative;
}
#howitworks{
    padding-top: 60px;
}
.free-container p{
    text-transform: none;
    font-size: 20px;
}
#main-contact-container{
    padding: 60px 0px;
    background: #f2fff1;
    font-family: "Barlow", serif;
}
.own-content h3{
    color: #333;
    font-size: 25px;
    line-height: 1.2em;
    padding-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.own-content h3 span{
    display: flex
;
    align-items: center;
    background-color: #58A531;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin-right: 10px;

}
.own-content .why-content ul li img {
    width: 35px;
    position: relative;
    top: -3px;
}
.own-content .why-content ul {
    padding-bottom: 20px;
}
.own-content h6{
    color: #58A531;
    font-size: 21px;
    line-height: 1.2em;
    padding-bottom: 10px;
    font-weight: 600;
}
.main-section-owners{
   padding-top: 80px;
}

.contact-left{
    padding: 30px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}
.contact-left h2{
    font-size: 38px;
    font-weight: 800;
    line-height: 1em;
    color: #0EA800;
    margin-bottom: 10px;

}
.contact-left p{
    color: #555;
    font-size: 15px;
    line-height: 1.4em;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-left .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #828282;
    border: 1px solid #020D1914;
    border-radius: 5px;
    padding: 10px 15px;

}
.contact-left{
    margin-right: 40px;
}
.contact-left .form-group:not(:last-child){
    margin-bottom: 20px;
}
.contact-left input[type="submit"] {
    background-color: #ebbd00;
    margin-top: 0px;
    color: #fff;
    font-weight: 400;
    border-radius: 10px;
    font-size: 18px;
    padding: 14px 40px;
    display: inline-block;
    text-transform: capitalize;
    border:0px;
    width: 100%;
}

.testimonial-item-inner {
    display: block;
    color: #5d6371;
    font-weight: 300;
    padding: 70px 40px 30px 40px;
    border-radius: 3px;
    background: #f2fff1;
    font-family: "Barlow", serif;
}
.testimonial-item-inner:before{
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f6b0";
    display: block;
    color: rgba(0, 0, 0, .1);
    z-index: 100;
    font-size: 25px;
    background: none;
    left: 0px;
    position: absolute;
    padding: 10px 20px 10px 20px;
    background-color: #0EA800;
    color: #fff;
    top: 0px;
    border-radius: 0 0 15px 0;

}
.testimonial-item-inner h4 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 26px;
    color: #161C2D;
}
.testimonial-item-inner p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    color: #555;
}
.de_testi_by {
    font-style: normal;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 20px;

}
.de_testi_by img {
    width: 50px ;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}
.de_testi_by span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    font-style: normal;
    color: #161C2D;
    opacity: 0.8;
}
.testimonail-item{
    margin: 0px 10px;
    position: relative;
}
#testimonial-container{
    font-family: "Barlow", serif;
    padding: 60px 0px;
}
#testimonial-container .main-title-inner h2{
    color: #0EA800;
}
#testimonial-container .main-title-inner{
    margin-bottom: 60px;
}
#testimonial-container .slick-dots{
    margin-top: 30px;
    bottom: -50px;
}
#testimonial-container .slick-dots li button{
    background-color: #000;
    border-radius: 50%;
    font-size: 0px;
    height: 15px;
    width: 15px;
}
#testimonial-container .slick-dots li{
    height: 15px;
    width: 15px;
}
#testimonial-container .slick-dots li.slick-active button{
    background-color: #0EA800;
  
}
#testimonial-container .slick-dots li button:before{
    display: none;
  
}

.version-inner .header-container{
    background-color: #0EA800;
}
body.order-body .body-wrapper{
    max-width: 650px;
}
.menu-list.menu-list-ver2 {
    background-color: #fff;
}
 .menu-inner.menu-inner-2{
    background-color: #ffebd8;
}
 .menu-inner.menu-inner-2 #myTab_menu{
   padding-top: 22px;
}
.hide-itemimg .menu-list-ver2  .res-item-desc{
    margin-right: 0px;
}
 .menu-inner.menu-inner-2  #myTab_menu li{
    background-color: #fff;
    border-radius: 20px;
    margin-right: 3px;
 }
 .menu-inner.menu-inner-ver1  #myTab li{
    background-color: #fff;
    border-radius: 20px;
    margin-right: 3px;
 }
 .show-itemimg .menu-list-ver2 .res-item-desc{
    margin-right: 0px;
    padding-right: 0px;
}
.hide-itemimg .menu-item-listing-ver2 .menu-food-item .res-con{
    width: 100%;
}
.hide-itemimg .menu-item-listing-ver2 .inner-box {
    position: relative;
    padding: 15px 10px;
}
.hide-itemimg .menu-item-listing-ver2 .res-right-top{
    padding-right: 0px;
}
.hide-itemimg .menu-item-listing-ver2 .input-bottom.input-price{
    width: auto;
}
.token-wrapper {
	background: #fff;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    color: #f90;
    margin-top: 5px;	
}
.token-wrapper .token-label h6 {
	text-align: center;
	color: #f00;
}
.not_subscribed .menu-item-listing-ver1 {
    padding-bottom: 120px;
}
.tabletemp-version1.menu-item-listing-ver1 {
    padding-bottom: 120px;
}
.body-menu-ver-1 .hide-itemimg .add-btn{
    margin-top: 10px;
}
.menu-item-listing-ver1.menutemp-version1 {
    padding-bottom: 75px;
    padding-bottom: 135px;
}
.view-all-cat{
    display: none;
}
.menu-main-sub.menu-display{
    display: flex;
    /* gap: 15px; */
    justify-content: space-between;
    align-items: center;
}
.menu-main-sub.menu-display .view-all-cat{
   display: block;
    width: 20%;
    height: 92px;
    background: #f90;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-main-sub.menu-display .menu-inner-inner{
    width: 80%;
}


.view-all-cat{
    display: block;
}

.view-all-cat .btn{
border: none;
    color: #fff;
    font-size: 13px;
    padding: 0px;
    font-weight: 500;
    line-height: 1.3em;
    border-radius: 12px;
    background-color: transparent;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12); */
    box-shadow: none;
    height:92px;
    width: 100%;
    display: block;
}
.view-all-cat .btn:hover{
    background-color: transparent;
    border: 0px;
}

#variant-options-container .variant-row .qty-input {
    padding: 10px 15px;
    margin-bottom: 0px;
    margin-top: 0px;
}
#variant-options-container .variant-row {
    background-color: #fff2e7;
    border: 0px;
}
button.instruction-btn{
    background-color: #00B33C;
    color: #fff;
    border: 0px;
}
button.instruction-btn:hover{
    background-color: #fa983b;

}
.variant-row strong{
    color: #fa983b;
        font-size: 15px;
    font-weight: 600;
}
.variant-row .text-muted{
    font-size: 14px;
    color: #000;
}
#variant-options-container h6{
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}
html #variant-options-container{
    padding-top: 0px;
}
#addModal .modal-footer {
    border: 0px;
    padding:10px;
    /* margin-bottom: 10px;
    margin-right: 3px; */
    background-color: #fff4ea;
    
}
#modal-summary p{
    font-size: 15px;
        margin-top: 0px !important;
}
#modal-summary p strong{
     color: #fa983b;
        font-size: 15px;
    font-weight: 600;

}
#modal-summary li{
    color: #666;
    font-size: 14px;
}
#modal-add-to-cart-btn:hover {
    background-color: #e08830;
}
#modal-add-to-cart-btn {
    background-color: #fa983b;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s 
ease;
}
html .cart-item-name {
    font-weight: 500 ;
    color: #e08830 ;
    font-size: 12px;
    line-height: 18px;
}
html .resturant-name-block h3{
    margin-bottom: 0px;
}
html .cart-col-rate ,html .cart-col-total,html .cart-col-qty{
    font-size: 14px;
}
html .cart-col-total {
    width: 21%;
}



#cart-details .cart-table-container .delete-cart-item {
    padding-left: 0px;
    font-size: 17px;
    margin-left: 0px;
    color: red;
    margin: 0px;
    text-align: right;
    width: auto;
    height: auto;
    display: block;
    border-radius: 0px;
}
#cart-details .cart-table-container  .cart-col-action {
    width: 10%;
    text-align: right;
    /* flex-shrink: 0; */
    display: flex;
    align-items: self-start;
    justify-content: right;
}
#cart-details .cart-table-container  .cart-table-header .cart-col-item{
   font-size: 10px;
}

#cart-details .cart-main .cart-bottom {
    border-top: 0px;
    padding-top: 0px;
    margin-top: 1rem;
    margin-bottom: 0px;
}
#cart-details .cart-main .main-title {
    border-bottom: 1px solid #ebebeb;
    font-size: 22px;
}

#cart-details  .item-total-grand b,
#cart-details  .item-cart-left{
    font-size: 14px;
}
 
 .menu-item-listing.menu-item-listing-ver1 .res-item-image.res-item-image-no{
    background-color: #fadcc0;
    border-radius: 12px;
    max-height: 104px;
    width: auto;
    padding: 10px;
}
.menu-list.menu-list-ver2 .card-img-holder.card-img-holder-no{
   background: #fadcc0;
    text-align: center;
}
.menu-list.menu-list-ver2 .card-img-holder.card-img-holder-no img{
   width: auto;
    margin: 0 auto;
    background: #fadcc0;
    padding: 10px;
}
html .menu-item-listing.menu-item-listing-ver1 .res-item-image.res-item-image-no img {
    max-width: 84px;
} 

html #topping-options-container{
    margin: 10px;
    margin-top: 0px;
    background-color: #ebfff2;
    margin-top: -15px;
}
#topping-options-container h6{
    margin: 0px !important;
    color: #00B33C;
    padding-bottom: 5px;
}
#topping-options-container label{
    font-size: 13px;
    color: #666;
}
#topping-options-container span{
    font-size: 13px;
    color: #333;
    font-weight: 500;
}
.menu-inner.menu-inner-2 .menu-inner-inner{
    position: relative;
}
#topping-options-container:empty {
        display: none;
    }

    .hide-catimg .menu-inner.menu-inner-ver1 .view-all-cat .menu__button {
        height: 25px;
        width: 25px;
    }


    .resturant-name-block h3 span{
        color: #fa983a;
        font-weight: bold;
font-size: 14px;
display: block;
margin-bottom: 2px;
    }

     .resturant-name-block h3{
         font-size: 12px;
    padding: 7px 4px;
    margin-bottom: 0px;

     }
@media screen and (min-width:769px) {

    #mob-menu{
        display: none;
    }
    .menu-inner.menu-inner-2 .menu-inner-inner .view-all-cat{
        top: 22px;
        right: 0px;
        /* border-left: 1px solid #fff; */
    }
    .menu-inner.menu-inner-2 .menu-inner-inner .view-all-cat .menu__button{
       height: 86px;
        width: 50px;
        border-radius: 0px;
        border-left: 1px solid #fff;
    }
    .menu-inner.menu-inner-ver1  .view-all-cat .menu__button{
        height: 76px;
        width: 50px;
        border-radius: 0px;
        border-left: 1px solid #fff;
    }
     .menu-inner.menu-inner-ver1  .view-all-cat{
        top: 11px;
        right:0px;
     }
      .hide-catimg  .menu-inner.menu-inner-2 .menu-inner-inner .view-all-cat .menu__button {
        height: 35PX;
        width: 25PX;
        border-radius: 0px;
        
    }

}
@media screen and (max-width:768px) {
    .hide-catimg .menu-inner.menu-inner-ver1 .view-all-cat .menu__button {
    height: 27px;
    width: 25px;
}
.hide-catimg  .menu-inner.menu-inner-2 .menu-inner-inner .view-all-cat .menu__button {
    height: 24px;
    width: 25px;
}
.hide-catimg  .menu-inner.menu-inner-2 .menu-inner-inner .view-all-cat {
    TOP:15PX;
}
  
    #cart-details .cart-table-container .delete-cart-item {
    padding-left: 0px;
    font-size: 12px;
    color: #f38630;
    }
    #cart-details .cart-item-name {
  
    font-size: 13px;
}

 #cart-details .cart-col-rate, #cart-details .cart-col-total,  #cart-details .cart-col-qty {
    font-size: 10px;
}
 #cart-details .item-cart-left {
    font-size: 10px;
}
#cartModal  #modal-grand-total b{
    font-size: 12px;
}
#cartModal  .item-cart-left  b{
    font-size: 10px;
}
#cart-details  .resturant-name-block h3 {
    
    padding:5px 5px;
    
    font-size: 13px;
    margin-bottom: 0px;
}
#cart-details .cart-main .main-title {
   
    font-size: 19px;
    padding-bottom: 5px;
}
    html .checkout-container h6{
        font-size: 14px;
    }
    html .checkout-container .form-control{
        font-size: 14px;
    }
    .not_subscribed .menu-item-listing-ver1 {
    padding-bottom: 110px;
}
    .token-label h6{
       
        font-size: 18px;
    }
    .checkout-block-container .col-md-6:first-child{
        width: 84px;
    }
    .checkout-block-container .col-md-6:nth-child(2){
        width: calc(100% - 84px);
    }
    #token-block input[type="text"]{
        margin-left: 0px;
        margin-top: 5px;
        padding-left: 10px;
        font-size: 14px;
        line-height: 1em;
        color: #333;
    }
    #token-block form {
        padding: 10px;
        max-width: 330px;
        bottom: 65px;
    }
    #token-block {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F4FDE5;
    }
    #token-block label{
        font-size: 13px;
        width: 100%;
        line-height: 1.3em;
    }
    #token-block button {
       
        position: relative;
        top: 3px;
    }
    .checkout-block-container {
        max-width: 440px;
        max-width: 100%;
        margin: 0px
    }
    .contact-content ul{
        display: block;
    }
    .banner-content h2{
        font-size: 25px;
        line-height: 1.3em;
        margin-bottom: 20px;
        font-weight: 500;
        padding-top: 30px;
    }
    .banner-content p {
       
        font-size: 14px;
        margin-bottom: 6px;
    }
    .banner-content a.view-more {
        font-size: 24px;
        line-height: 26px;
        padding: 12px 23px;
        color: #fff;
        font-size: 16px;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .banner-img {
       
        margin-left: 0px;
        top: -40px;
        text-align: center;
    }
    .banner-img img{
    max-width: 300px;
    }
    .main-banner-container {
        height: 650px;

    }
    .r-spaced-header div img {
        max-width: 70px;
    }
    .r-menu-right ul.r-account-main-menu a {
       
        font-size: 12px;
        padding: 0px;
        color: #fff;
        background: transparent;
    }
    #menu1{
        display: none;
    }
.r-menu-right ul.r-account-main-menu li {
    margin-right: 5px;
}
html  .view-all-cat .menu__button{
    height: 63px;
    width: 40px;
    border-left: 1px solid #fff;
    border-radius: 0px;
}
    .main-title-inner h2 {
     
        font-size: 30px;
        padding-top: 30px;
    }
    .main-title-inner p {
        font-size: 17px;
        line-height: 1.3em;
        padding-top: 10px;
    }
    .image-main-block .step-title h2 {
        font-size: 23px;
        padding-left: 7px;
        margin: 0px;
    }
    .why-container:before{
        display: none;
    }
    #testimonial-container{
        padding: 0px;
        padding-bottom: 50px;
    }
    #testimonial-container .main-title-inner,#main-contact-container .main-title-inner,.why-container .main-title-inner{
        margin-bottom: 30px;
    }
    .contact-con-bottom{
        display: block;
    }
    .contact-content img {
        height: 50px;
    }
    .contact-content li .icon-con {
        
        height: 30px;
        width: 30px;
        color: #0EA800;
        font-size: 15px;
        margin-right: 5px;
    }
    .contact-content p {
        font-size: 13px;
    }
    .contact-content ul li {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        font-size: 13px;
    }
    .contact-content h6 img{
        margin-left: 0px;
    }
    .footer-social ul{
        display: flex ;
        justify-content: flex-start;
        margin: 0px;
        margin-top: 10px;
        }
        #contact-container {
            
            height: 270px;
        }
        .footer-bottom p {
    
            font-size: 13px;
        }
        .footer-bottom {
            padding: 5px 0px;
        }
        .contact-left {
            margin-right: 0px;
        }
        #main-contact-container .col-md-6:nth-child(1){
            order: 2;
        }
        #main-contact-container{
            padding: 0px;
            padding-bottom: 30px;
        }
        .sub-box{
            margin: 0px;
            margin-bottom: 30px;
        }
        .qr-main-container .main-title{
            padding-top: 0px;
            padding-bottom: 30px;
        }
        .why-img{
            padding: 0px;
        }
        .why-container{
            padding: 0px;
            padding-bottom: 0px;
        }
        .why-container .col-md-5{
            order: 2;
        }
        a.link-btn {
            border-radius: 10px;
            font-size: 15px;
            padding: 10px 20px;
            text-transform: uppercase;
            margin-top: 0px;
        }
        .image-main-block .col-md-5{
            order: 2;
            padding-top: 20px;
        }
        .image-main-block {
           
           
            padding-top: 0px;
        }
        .bottom-img-absolute {
            bottom: -1px;
           
        }
        .subscription-li{
            min-height: inherit;
        }
        .mean-container .mean-bar {

            background-color: transparent;
    
            z-index: 999;
    
            right: 0px;
    
            top: 2px;
    
        }
        #mob-menu{
            font-size: 30px;
            color: #fff;
            position: absolute;
            top: 23px;
            right: 7px;
        }
        .r-menu-right{
            position: absolute;
            right: 30px
        }
        #testimonial-container{
            overflow: hidden;
        }
        ul.r-main-menu li{
            display: block;
            text-align: left;
            margin: 0px;
        }
        .mm-menu--opened .mm-panel--noanimation{
            background-color: #0EA800;
            font-family: "Barlow", serif;
        }
        ul.r-main-menu li a{
            color: #fff;
            padding: 13px 15px;
            font-size: 15px;
            line-height: 1em;
        }
        .mm-listitem:after {
            content: "";
            border-color:rgba(0, 0, 0, .1);
            border-bottom-width: 1px;
            border-bottom-style: solid;
            display: block;
            position: absolute;
            inset-inline-start: 0px;
            inset-inline-end: 0;
            bottom: 0;
        }
        html .menu-inner.menu-inner-ver1 #myTab li {
            border-radius: 3px;
        }
        html .mm-navbar{
            width: 305px;
        }
        .mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited{
            color: #fff;
           
        }
        html .mm-navbar__title{
            background-color: #ebbd00;
        }
        .content-top {
           
            width: 150px;
            
        }
        .menu-listing-block .row:not(.res-menu-heading) .col-12{
    padding: 0px 12px;
}
.res-menu-heading{
    /* margin: 0px 12px; */
    margin: 0px;
        margin-bottom: 15px;
}
.main-banner-restaurant{
    margin: 0px 12px;
}
html .menu-list-ver2 .card{
    width: 100%;
}
.menu-list-ver2.menu-list {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;

    /* grid-template-columns:100%;
    gap: 10px; */
    padding: 10px;
}
html .menu-list h4.category-title {

    font-size: 15px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px 10px;
 
}
html .price_menu {
    
    font-size: 12px;
}
html .restaurant-item-image img {
    width: 38px;
    padding: 3px;
    border-radius: 38px;
    height: 38px;
}
html #myTab_menu li .nav-link {
    color: #fa983a;
    padding: 5px 10px;
    line-height: 1em;
    color: #333;
    font-size: 12px;
}
.menu-inner.menu-inner-2 #myTab_menu {
    padding-top: 14px;
}
.menu-search-container .form-control {
   
    font-size: 14px;
}
html #myTab_menu {
    
    border-radius: 20px;
    padding: 0px 15px 12px 15px;
    display: block;
}
html .top_header {
    height: 150px;
    opacity: 80%;
}
html .res_name_menu h2 {

    font-size: 13px;
        line-height: 1rem;
        padding-right: 50px;
}
html .body-menu-ver-1 .add-btn{
    border-radius: 4px;
}
html p.location_menu {
   font-size: 10px;
        padding: 3px 10px;
        line-height: 13px;
        padding-right: 50px;
        display: flex;
        align-items: flex-start;
        padding-left: 0px;
        gap: 2px;
    
}
html .img-top-menu{
    padding:12px;
    margin: 0px 15px;
}
html .img-top-menu-wrapper img {
    
    right: 15px;
    height: 40px;
    top: 11px;
}

html p.location_menu i{
    font-size: 13px;
}
html .container-menu{
    padding-bottom: 0px;
}
html .card img{
    border-radius: 10px 10px 0px 0px;
}
html .add-btn {
    
    font-size: 11px;
}
.token-wrapper .token-label h6{
    font-size: 14px;
}
html .cart-button img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
html .cart-button {

    padding: 6px 15px;
    font-size: 11px;
    border-radius: 20px;
}
html .checkout-container .icon-circle.icon-circle-bas {

    height: 30px;
    width: 30px;
}
html .checkout-container span {
    color: #fff;
    font-size: 12px;
}
#cartModal .modal-body, .cartModal .modal-body {
    border: 0px;
    padding: 12px 8px;
}
.modal.show.cartModal  .modal-dialog {
    transform: none;
    margin: 0px;
    margin-top: 20px;
}
h5#cartModalLabel {
    color: #fff;
    font-size: 16px;
}
#cartModal .cart-top .item-quantity,#cartModal .modal-body .cart-top .item-name,#cartModal .modal-body .cart-top .item-price {
   
    font-size: 13px;
}
.tabletemp-version2.menu-list.menu-list-ver2 {
    margin-bottom: 105px;
}
.menu-list.menu-list-ver2 {
    margin-bottom: 45px;
}
html .body-menu-ver-1 .menu-food-item {
            /* display: flex
;
        flex-wrap: wrap; */
}
html .body-menu-ver-1 .menu-food-item .res-con{
    /* width: 100%;
    order: 2; */
    width: calc(100% - 100px);
    padding-right: 10px;
}
html .body-menu-ver-1 .menu-food-item .res-con .res-item-desc{
    padding-right: 0px;
    margin-right: 0px;
    font-size: 11px;
}
html .body-menu-ver-1 .menu-block .inner-box {
    padding: 10px 10px;
    border: none;
}
html .body-menu-ver-1 .res-item-price {
    
    font-size: 13px;
}
html .body-menu-ver-1 .add-btn {
   padding: 4px 8px;
        font-size: 9px;
}
.body-menu-ver-1 .hide-itemimg .menu-food-item .res-con{
    padding-right: 0px;
}
html .content_menu

 {
    padding: 6px;
 }
 html .title_menu {
    
    font-size: 13px;
  
    margin-bottom: 0px;
}
html .show-itemimg .menu-list-ver2 .res-item-desc{
    font-size: 11px;
}
html .hide-itemimg .menu-item-listing.menu-item-listing-ver1 .res-item-desc {
    padding-top: 11px;
}
html .hide-itemimg .menu-item-listing.menu-item-listing-ver1 .add-btn {
   
    top: 4px;
    right: 10px;
}
html .menu-block .inner-box .info .post-title {
    font-size: 14px;
}
html .body-menu-ver-1 .menu-food-item .res-item-image img {
    max-width: 100%;
    border: 0px;
    border-radius: 6px;
    padding: 0px;
    margin-bottom: 6px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}
       
.body-menu-ver-1 .menu-food-item .res-item-image {
    width:100px;
}

html .body-menu-ver-1 .container-menu {
        padding-bottom: 10px;
    }
   html .view-all-cat .btn {

    font-size: 10px;
    padding: 4px 6px 5px;
    border-radius: 13px;
    margin-right: 5px;
  
}
.menu-main-sub.menu-display {

    gap: 10px;
       

}
html #cartModal .cart-top .item-name > div {
            font-size: 13px;
        font-weight: 400;
    
}
html .top-heading h2 {
    padding: 5px 0px;
    font-size: 18px;
}
html .modal-header .btn-close {
   
    font-size: 30px;
    padding: 0px;
}
/* html #cartModal .cart-top .item-name {
    width: 78%;
} */
html #cartModal .btn-checkout {

    padding: 13px;
    font-size: 14px;
    margin-bottom: 0px;

}
#addModal .qty-input .qty-count {
    height: 25px;
    width: 25px;
}
#addModal .qty-input .product-qty {
    width: 27px;
    margin: 0px 4px;
    height: 25px;
}
#variant-options-container .variant-row .qty-input {
    padding: 6px 6px;
}
html .instruction-btn {
    border-radius: 50%;
    width: 28px;
    height: 28px;
}
.variant-row strong {
    
    font-size: 14px;
    line-height: 1.1em;



}
.variant-row .text-muted {
    font-size: 14px;
    color: #000;
    line-height: 1em;
}
#modal-summary p strong {
    
    font-size: 14px;
    line-height: 1em;
}
#modal-summary li {
    font-size: 13px;
    line-height: 1em;
    padding: 3px 0px;
}
#modal-summary p {
    font-size: 14px;
}

#modal-add-to-cart-btn {
   
    font-size: 13px;
}
html #cartModal .cart-top .item-status {
    font-size: 11px;
    display: inline-block;
    margin-bottom: 0px;
    width: auto;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    gap: 4px;
}
.bill-heading h4{
    font-size: 18px;
    text-align: center;
}
.bill-preparing-message{
    font-size: 16px;
}
.bill-heading{
    text-align: center;
}
/* .menutemp-version2  .bottom_menu{
    display: block;
} */
/* .menutemp-version2  .bottom_menu .price_menu{
    display: inline-block;
} */
 html .price_menu span{
           display: block;
        padding-right: 0px;
        font-size: 10px;
 }
 .token-wrapper {
    
    margin-top: 0px;
    padding-bottom: 8px;
}
html .checkout-block-container.checkout-ver-1{
    padding-top: 10px;
}
.menu-list.menu-list-ver2.menutemp-version2{
    margin-bottom: 110px;
}
html .view-all-cat {
    position: absolute;
    top: 14px;
    right: 0px;
}
.menu-inner.menu-inner-ver1 .view-all-cat{
    top: 10px;
}
.menu-inner.menu-inner-ver1 .view-all-cat .menu__button{
    height: 67px;
}
html .menu-search-container{
    padding: 5px;
}
html #myTab_menu.nav-tabs .nav-item.show .nav-link,
 html #myTab_menu.nav-tabs .nav-link.active,
  html #myTab_menu li .nav-link:hover,html html #myTab_menu li .nav-link,html #myTab.nav-tabs .nav-link{
    border-radius: 6px;
  }
  html .menu-inner.menu-inner-2 #myTab_menu li,html #myTab.nav-tabs .nav-link{
    border-radius: 6px;
  }
}
.container-menu{
max-width: 1340px;
    background-color: #ffffff;
    padding-bottom: 20px;
}
/* .show-none .table-menu-cart{
	display: none;
} */
.top-menu-image {
    width: 100%;
    height: 200px;
    background: cover;
}
.top_header {
  height: 200px;
  opacity: 80%;
}
.img-top-menu{
    background-color: white;
    position: relative;
    margin:0px 30px;
    padding: 20px;
    margin-top: -34px;
  border-radius: 12px;
box-shadow: 0px 4px 20px rgba(26, 26, 26, 0.1);
}
.img-top-menu-wrapper img{
    position: absolute;
    right: 20px;
    height: 50px;
    top:23px;
    box-shadow: 0px -1px 4px 1px rgba(0, 0, 0, 0.07);
}
p.location_menu {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 10px;
    line-height: 15px;
    padding-left: 0px;
}
p.location_menu img{
    width: 15px;
}
.res_name_menu h2 {
    width: 100%;
    color: #121212;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.9rem;
}
.body-menu-ver-1 #myTab{
    background-color: #fff;
    border-radius: 0px;
    padding-bottom: 20px;
}
.body-menu-ver-1 .res-right-bottom{
    
}
.body-menu-ver-1 .res-item-price{
    color: #000;
    margin: 5px 0px;
    
}
.body-menu-ver-1 .menu-food-item .res-con{
 width: calc(100% - 110px);
}
.body-menu-ver-1 .menu-block .inner-box{
    padding: 14px 16px;
    border: none;
}
.body-menu-ver-1 .menu-food-item .res-item-image img{
  max-width: 100px;
  border: 0px;
  border-radius: 12px;
  box-shadow: none;
  background: transparent;
}
.body-menu-ver-1 .menu-food-item{
    align-items: inherit;
}
.body-menu-ver-1 .res-menu-heading{
   margin-bottom: 0px;
}
.body-menu-ver-1 .res-des{
   width: 100%;
}
.menu-inner.menu-inner-ver1{
    margin-top: 0px;
    background-color: #fff;
    padding:20px 0px;
    padding-top:0px;
}
.body-menu-ver-1 .main-banner-restaurant{
    height: auto;
    box-shadow: none;
}
.body-menu-ver-1 .menu-block{
    margin: 0px 15px;
    margin-bottom: 20px;
    outline: none;
}
.body-menu-ver-1 .add-btn{
   background: transparent;
   border-radius: 100px;
   padding: 4px 30px;
   text-transform: capitalize;
   font-weight: 500;
   font-size: 13px;
}
.menu-list-ver2 .add-btn{
   background: #fa983b;
   border-radius: 80px;
   padding: 4px 13px;
   text-transform: capitalize;
   font-weight: 500;
   font-size: 12px;
   color: #fff;
}
.menu-list-ver2 .add-btn:hover{
    background-color: transparent;
     color: #fa983b;
}
.price_menu span{
    display: block;
    line-height: 1em;
    color: #fa983b;
}
.checkout-block-container.checkout-ver-1{
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
	border-radius: 30px 30px 0px 0px;
	padding: 10px;
	padding-top: 20px;
	padding-bottom: 0px;
	bottom: 0px;
	margin-left: 0px;
}
.menu-item-listing-ver1 {
	padding-bottom: 120px;
}
button.my-bill{
    background: transparent;
    border: 0px;
    /* align-self: flex-end; */
    margin-left: auto;
}
.menu-inner.menu-inner-ver1 #myTab li{
    background-color:#F3F4F6 ;
}
.body-menu-ver-1 .menu-item-box{
    background-color: #fff;
	border-radius: 0px 0px 25px 25px;
}
h2.main-sub-heading{
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1em;
     background-color: #fa983a;
        padding: 12px 20px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px 15px 0px 0px;
}

.body-menu-ver-1 .res-item-price{
    padding-left: 0px;
    text-align: left;
}
.res-right-top:after{
    display: none;
}
.body-menu-ver-1 .img-top-menu{
top:inherit;
margin-top: -34px;
}
.body-menu-ver-1 .menu-listing-block{
    margin-top: 0px;
}
p.location_menu i{
    color: #0ea800;
    padding-right: 2px;
}
.body-menu-ver-1 .hide-itemimg  .menu-food-item .res-con{
    width: 100%;
}
.body-menu-ver-1 .hide-itemimg  .menu-food-item .res-con .res-right-top{
    margin: 0px;
}
.body-menu-ver-1 .hide-itemimg  .menu-food-item .res-con .res-item-desc{
    margin-right: 0px;
    padding-right: 0px;
}
.body-menu-ver-1 .hide-itemimg  .menu-food-item .res-con .res-item-price{
    margin-bottom: 0px;
    line-height: 1em;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.menu-item-listing-ver1 {
   padding-bottom: 0px;
}
.menu-search-container{
    padding: 20px 20px;
    background-color: #f7f7f7;
        margin-bottom: 0px !important;
}
.hide-itemimg .menu-search-container {
   
    margin-bottom: 0px !important;
}
.menu-search-container .form-control{
    border-color: #ebebeb;
}
.menu-list.menu-list-ver2{
    margin-bottom: 60px;
}
.tabletemp-version2.menu-list.menu-list-ver2{
    margin-bottom: 120px;
}
 .card {
      background: #EEEEEE;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 220px;
      display: grid;
  column-gap: 50px;
    }

    .card img {
      width: 100%;
      height: 130px;
      object-fit: cover;
      border-radius: 10px;
    }

    .tag_menu {
        background: #FF7916;
        color: white;
        font-size: 12px;
        padding: 3px 8px;
       border-radius: 0px 12px 0px 9px;
        position: relative;
        top: -29.5px;
        width: fit-content;
    }

    .content_menu {
      padding: 10px;
       background: linear-gradient(180deg, #fffbf7 0%, #fdf2e6 100%);
       border-radius: 0px 0px 12px 12px;
      
    }

    .title_menu {
      font-weight: bold;
      font-size: 15px;
      font-style: "Plus Jakarta Sans";
      margin-bottom: 5px;
    }

    .desc_menu {
      font-size: 12px;
      color: #666;
      margin-bottom: 10px;
    }

    .bottom_menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #efe9e9;
    padding-top: 10px;
    }

    .price_menu {
      font-weight: bold;
      font-size: 14px;
    }

    .add-btn {
      background: none;
      border: 1px solid #FA983B;
      color: #FA983B;
      padding: 4px 10px;
      border-radius: 15px;
      font-size: 12px;
      cursor: pointer;
      background-color: #fff;
    }

    .add-btn:hover {
      background: #FA983B;
      color: white;
    }
   .hide-itemimg .menu-item-listing.menu-item-listing-ver1 .res-item-desc{
    padding-top: 12px;
   }
   .hide-itemimg .menu-item-listing.menu-item-listing-ver1 .add-btn{
        position: absolute;
    top: 16px;
    right: 16px;
    margin: 0px;
    padding: 4px 15px;
    font-size: 12px
   }
   

 .hide-itemimg .menu-item-listing.menu-item-listing-ver1  .menu-block .inner-box .info{
    position: static;
    
   }
    #myTab_menu {
    white-space: nowrap;
    border-radius: 20px;
    padding: 10px 22px 22px 22px;
    display: block;
    width: 1200px;
    border: 0px;
    width: auto;
    overflow-x: auto;

}
#myTab_menu li {
    display: inline-block;
    font-size: 14px;
    background-color: #F3F4F6;
  border-radius: 20px;
}

#myTab_menu li .nav-link {
    color: #fa983a;
    padding: 10px 20px;
    line-height: 1em;
    color: #333;
    font-size: 13px;
}
#myTab_menu li:last-child{
    margin-right: 15px;
}

#myTab_menu.nav-tabs .nav-item.show .nav-link,
#myTab_menu.nav-tabs .nav-link.active ,#myTab_menu li .nav-link:hover{
    background-color: #fa983a;
    border-color: #fa983a;
    color: #fff;
    border-radius: 20px;
}
#myTab_menuContent {
    padding: 30px 0px;
}
 .cart-container {
    position: fixed;
    bottom: 0;
    background-color: #00B33C; /* Green background */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Stay above other elements */
    border-radius: 50px;
   width: 460px;
  margin: 0px 20px;
}
    .price-menu-cart {
      font-size: 16px;
    }
    .price-menu-cart span {
      display: block;
      font-size: 20px;
    }
    .cart-button {
      background-color: white;
      color: #00b42a;
      border: none;
      padding: 10px 16px;
      font-size: 14px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      cursor: pointer;
      font-weight: bold;
    }
    .cart-button img {
      width: 20px;
      height: 20px;
      margin-right: 8px;
    }
    /* .restaurant-item-image{
        width:80px
    } */
    .restaurant-item-image img {
width: 50px;
  
    padding: 3px;
    border-radius: 50px;
    height: 50px;
    object-fit: cover;
    /* border: 3px solid #fff; */
    background: #fff;
    margin-bottom: 2px;
}
.menu-list-ver2 .card{
    box-shadow: none;
    /* background-color: #FAFAFA; */
    border: 0px;
    display: block;
    outline: none;
    margin: 0px;
     /* background: linear-gradient(180deg, #fffbf7 0%, #fdf2e6 100%); */
     background-color: #fff;
    
}
.menu-list-ver2 .card img{
    border-radius: 10px 10px 0px 0px;
}
.tag_menu img{
        width: 14px;
    height: auto;
    border-radius: 0px;
    margin-right: 2px;
}
.tag_menu{
    position: absolute;
    left: 0px;
    bottom: 0px;
    top: unset;
    font-weight: 500;
    background-color: #FA983B;
    display: flex;
    align-items: center;
    display: none;
}
.card-img-holder{
    position: relative;
}

.cart-container.card-ver2  .price-menu-cart{
    background-color: #FA983B;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1em;
    margin-left: 5px;
    border-radius: 3px;
}
.cart-container.card-ver2 .price-menu-cart span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 3px;
}
    

/* Cart Modal Styles */
#cartModal .cart-main {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    /* padding: 15px; */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#cartModal .cart-main-top h2.main-title {
       font-size: 17px;
    font-weight: 700;
    margin: 15px;
    color: #222;
    text-align: center;
    margin-top: 8px;
}
h5#cartModalLabel{
    color: #fff;
}
/* CORRECTED - Using a more specific selector to override original styles */
#cartModal .modal-body .cart-top.cart-top-header {
    background-color: #0ea800 !important; /* Added !important for extra certainty */
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

#cartModal .cart-top-header .item-quantity { width: 15%; }
#cartModal .cart-top-header .item-name { width: 75%; }
#cartModal .cart-top-header .cart-remove { width: 10%; }

#cartModal .cart-main-top .cart-top {
    display: flex;
    align-items: flex-start;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
}

/* Corrected alternating colors */
#cartModal .cart-main-top .cart-top:nth-child(even) {
    background-color: #ffffff;
}
#cartModal .cart-main-top .cart-top:nth-child(odd) {
    background-color: #fafafa;
}

#cartModal .cart-main-top .cart-top:last-of-type {
    border-bottom: none;
}

#cartModal .cart-top .item-quantity {
    width: 15%;
    font-size: 14px;
    /* color: #555; */
    padding-top: 5px;
}

#cartModal .cart-top .item-name {
    width: 55%;
    padding: 0 10px;
    line-height: 1.3em;
}

#cartModal .cart-top .item-name > div {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

#cartModal .cart-top .item-status {
    font-size: 12px;
    font-weight: normal;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

#cartModal .cart-top .item-name .remark-text {
    font-size: 13px;
    font-weight: normal;
    color: #777;
    display: block;
    margin-top: 5px;
    line-height: 1.4;
}

#cartModal .cart-top .cart-remove {
    width: 10%;
    text-align: right;
}

#cartModal .delete-cart-item {
    background-color: transparent;
    border: none;
    color: #fa983a;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

#cartModal .delete-cart-item:hover {
    color: #fa983a;
}

#cartModal .btn-checkout {
    background-color: #fa983a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px; 
    width: calc(100% - 40px); /* shrink width by margin */
    margin: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cartModal .btn-checkout:hover {
    background-color: #e08830;
}

.main-title{
    background-color: #fff;
}
.top-heading h2{
        font-family: var(--fontfamily-main);
    font-weight: 600;
    color: #000000;
      margin: 0;
      padding: 6px 0px;
      justify-content: center;
      width: 100%;
      text-align: center;
      font-size: 25x;
    }

p.subtext {
      text-align: center;
      font-size: 14px;
      color: #555;
      margin: 0 0 18px 0;
    }
    .style-down{
        margin-bottom: 10px;
    }



 .view-all-cat input {
	 display: none;
}
 /* .clicked .view-all-cat input:checked ~ div.menu {
	right: -370px;
}
 .clicked .view-all-cat input:checked ~ label.menu__close {
	  opacity: 0;
	 visibility: hidden;
} */
 /* .view-all-cat input:checked ~ div.menu {
	 right: -50px;
}


 .view-all-cat input:checked ~ label.menu__close {
	 opacity: 1;
	 visibility: visible;
} */

 .view-all-cat input:checked ~ label.menu__button::before {
	 /* content: "Collapse Menu"; */
}
 .view-all-cat .menu__button {
	    /* border: 1px solid #fa983a; */
    color: #fff;
    font-size: 13px;    padding: 4px 12px 5px;
    background-color: #fa983a;
    width: 100%;
        font-size: 15px;
    padding: 0px;
    font-weight: 600;
    line-height: 1.3em;
    border-radius: 10px;

    box-shadow: none;
    height: 78px;
    width: 78px;
    display: block;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .view-all-cat .menu__button::before {
	 /* content: "All Categories"; */
}
 .view-all-cat .menu__button:hover {
	 background: #00B33C;
     border-color: #00B33C;
}
 .view-all-cat .menu__close {
	 position: fixed;
	 top: 0;
	 left: 0;
	 background: rgba(0, 0, 0, 0.4);
	 height: 100%;
	 width: 100%;
	 opacity: 0;
	 visibility: hidden;
	 transition: 0.3s ease;
	 z-index: 111;
}
 .view-all-cat .menu {
	 height: 100%;
	 width: 350px;
	 position: fixed;
	 right: -370px;
	 top: 0;
	 background: #fa983a;
	 transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	 z-index: 222;
}
 .view-all-cat .menu .menu__container {
	 width: 100%;
	 height: 100%;
	 display: flex;
	 background: #fdf8f4;
}
 .view-all-cat .menu .menu__container::before {
	 content: "";
	 position: absolute;
	 z-index: -1;
	 left: 0;
	 box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	 border-radius: 50%;
	 top: 15%;
	 width: 10%;
	 height: 70%;
}
 .view-all-cat .menu nav {
	 width: 100%;
	 height: 100%;
	 background: #fdf8f4;
}
 .view-all-cat .menu nav h3, .view-all-cat .menu nav a {
	 text-align: left;
	 padding: 20px calc(20px + 30px) 20px 20px;
	 margin: 0;
	 font-weight: 300;
	 color: #fa983a;
}
 .view-all-cat .menu nav h3{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
 }
 .view-all-cat .menu nav h3 {
	   
    font-size: 19px;
    line-height: 1em;
      padding: 0px;
}
 .view-all-cat .header-cat {
	    background: #fa983a;
   
    padding: 20px;
    display: flex;
    align-items: center;
  
    justify-content: space-between;
  
}
.view-all-cat .menu__container .header-cat a i{
    color: #fff;
}
.view-all-cat .menu__container .header-cat a{
    color:#fff;
    padding: 0px;
    text-decoration: none;
    margin-right: 40px;
    font-size: 25px;
    border: 0px;
}
 .view-all-cat .menu nav a {
	 font-size: 16px;
	 border-bottom: 1px solid #fdab5e;
	 transition: 0.3s ease;
	 cursor: pointer;
	 display: block;
	 text-decoration: none;
}
 /* .view-all-cat .menu nav a:hover {
	 background: #a44537;
} */

 .view-all-cat .menu #myTab{
    white-space: inherit;
    padding: 0px;
    overflow: inherit;
    padding: 20px;
    background: #fdf8f4;
 }
 
  .view-all-cat .menu #myTab li{
    width: 100%;
    background: transparent;
  }

  .view-all-cat .restaurant-item-image img {
    width: 40px;
    padding: 3px;
    border-radius: 40px;
    height: 40px;
    object-fit: cover;
    /* border: 3px solid #fff; */
    background: #fff;
    margin-bottom: 2px;
}
 .view-all-cat{
   position: absolute;
    right: 15px;
    top: 10px;
    padding: 0px;
 }

 .menu-inner{
    position: relative;
 }
 .view-all-cat .menu #myTab li button{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    border: 0px;
 }

 .view-all-cat #myTab.nav-tabs .nav-item.show .nav-link,
 .view-all-cat  #myTab.nav-tabs .nav-link.active, 
  .view-all-cat  #myTab li .nav-link:hover{
    background: transparent;
    color: #fa983a;
    border: 0px;
  }