/* fonts-here */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/*===== VARIABLES CSS =====*/
:root{
    /*===== Colors =====*/
    --theme-color: #21791f;
    --primary-color: #21791f0a;
    --secondary-color: #524748;
    --gray-color: #404040;
    --text-color: #9A9A9A;
	--navbar-link-color: #fff;
    /* extra color */
    --white-color: #fff;
    --black-color: #000;
  
    /*===== Font and typography =====*/
    --body-font: 'Source Sans Pro', sans-serif;


    --biggest-font-size: 3.75rem;/*66px*/
    --h1-font-size: 2.75rem;/*44px*/
    --h2-font-size: 2.5rem;/*40px*/
    --h3-font-size: 2.375rem;/*38px*/
    --normal-font-size: 1.25rem;  /*20px*/
    --small-font-size: 1rem; /*16px*/
    --smaller-font-size: .875rem; /*14px*/
  
    /*===== Font weight =====*/
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
}

body{
    font-family: var(--body-font);
    font-size: var(--small-font-size);
    font-weight: normal;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0px;
}
.navbar-neu 
{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    border-radius: 0px !important;
    width: 100%;
    justify-content: center;
    width: 100%;
}
.navbar-links{
	padding:10px;
	color:var(--navbar-link-color);
}
.navbar-space {
	padding:5px;
	color:var(--navbar-link-color);
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0 0 15px;
    font-weight: var(--font-bold);
    line-height: 1.3;
    color: var(--theme-color);
}
p{
    margin: 0 0 15px;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    display: inline-block;
}
label {
	color: var(--text-color);
	cursor: pointer;
	font-size: 14px;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
*::-moz-placeholder {
	color: #B7B7B7;
}

*::placeholder {
	color: #B7B7B7;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
}
input:focus{
    outline: none;
}
input{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.overlay{
    position: relative;
    z-index: 1;
}
.overlay:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0,0,0, .6);
    z-index: -1;
}
.bg-defult{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.badge {
	background: var(--primary-color);
	font-size: 18px;
    color: var(--theme-color);
    font-weight: var(--font-semi-bold);
    text-transform: capitalize;
}
.badge.close-badge {
	background: #FFDFDE;
	color: #FC2018;
}

.container{
    max-width: 1450px;
}
.itembg{
    width: 310px;
    max-height: 150px;
    position: absolute;
    overflow-y: scroll;
	z-index:1000;
}
.itembg > div{
    padding: 10px;
    /* width: calc(100% - 20px); */
    cursor: pointer;
    background: rgb(246 247 244 / 90%);
}
.itembg > div:hover{
    /*color: white;*/
    background: #e9e9e9;
}
.activeautocomplete{
     color: white;
     background: #4CAF50 !important;
 }
.btn {
    padding: 12px 30px;
    background: var(--theme-color);
    border-radius: 6px;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    line-height: 1;
    border: none;
    color: var(--white-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.btn:hover{
    color: #ffffff;
    background-color: #599957;
}
.btn:focus{
    outline: none;
    box-shadow: none;
}
.dialogbox{
width:100%;
}
.itembg {
    width: 100%;
}
.owl-carousel .owl-nav div:hover{
    background-color: var(--primary-color);
    color: var(--theme-color);
}
.owl-carousel .owl-nav div {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    font-size: 24px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.owl-carousel .owl-nav .owl-next{
    left: auto;
    right: 0px;
}

/* ==========default css end============ */


/* =========css class=========== */


/* header-area */
.header-area{
    height: 66px;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 11111;
}

.logo-area a{
    display: inline-block;
}
.logo-area a h2{
    font-size: var(--normal-font-size);
    color: var(--white-color);
    margin-bottom: 0px;
    line-height: 1;
}


.delivery-area p{
    font-size: var(--small-font-size);
    color: var(--white-color);
    margin-bottom: 0px;
}
.delivery-area p strong{
    font-weight: var(--font-bold);
}
.delivery-area p span {
	margin: 0px 4px;
	font-size: var(--small-font-size);
}

.btn.login-btn{
    background-color: var(--white-color);
    color: var(--theme-color);  
}
.btn.login-btn span{
    margin-right: 8px;
}
.btn.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--theme-color);
}

/* header-area */

/* banner-area */
.banner-area{
    min-height: 640px;
    background-color: var(--primary-color);
    padding: 84px 0px;
}

.banner-content-wrapper h1 {
	font-size: var(--biggest-font-size);
	margin-bottom: 0px;
}
.banner-content-wrapper p{
    font-size: 25px;
    color: var(--gray-color);
}
.banner-form-wrapper {
	max-width: 533px;
	background: #fff;
	border-radius: 6px;
	padding: 18px;
	margin-top: 34px;
}
.banner-form-btns a.btn{
    width: 117px;
    padding: 12px 0px;
}
.banner-form-btns a.btn span {
	position: relative;
	top: -3px;
	margin-right: 4px;
}
.banner-form-btns a.btn.banner-btn{
    width: 117px;
    background-color: var(--primary-color);
    color: var(--theme-color);
}
.banner-form-btns a.btn.banner-btn-transparent{
    background-color: transparent;
    color: var(--gray-color);
}
.banner-form-btns {
	padding-bottom: 18px;
	border-bottom: 1px solid #E2E2E2;
	margin-bottom: 18px;
}
.input-area-banner{
    flex: 0 0 auto;
    width: 70%;
    position: relative;
}
.input-area-banner input{
    width: 100%;
    height: 42px;
    border-radius: 6px;
    border: none;
    color: var(--theme-color);
    border: 1px solid #DBDBDB;
    padding-left: 40px;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.input-area-banner span{
    position: absolute;
    left: 15px;
    top: 50%;
    color: var(--theme-color);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.banner-food-plate img {
	filter: drop-shadow(0px 0px 7px #666666);
	-webkit-filter: drop-shadow(0px 0px 7px #666666);
}
/* banner-end */

/* offer-area */
.offer-items-wrapper{
    padding: 80px 0px;
}
.offer-wrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 9px;
}
.offet-text h1{
    font-size: 44px;
    margin-bottom: 0px;
    font-weight: bold;
    color: var(--white-color);
    line-height: 1;
}
.offet-text h1 small{
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
}
.offet-text{
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 150px;
    min-height: 70px;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 16px;
}
.dish-image {
	border-radius: 16px;
	overflow: hidden;
    margin-bottom: 16px;
}
.remainig-badge {
	background: var(--primary-color);
	padding: 5px 22px;
	border-radius: 6px;
	line-height: 1;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: var(--font-semi-bold);
}
.offer-dish-info h6 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 16px;
	color: var(--gray-color);
}
/* offer-area end*/


/* how workd area */
.how-works-area{
    padding: 65px 0px;
    background-color: var(--primary-color);
}
.section-title h2 {
	margin-bottom: 0px;
}
.section-title {
	margin-bottom: 50px;
}
.works-icon {
	height: 112px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}
.works-icon img {
	max-height: 110px;
}
.works-content h6 {
	font-size: var(--normal-font-size);
	color: var(--gray-color);
	margin-bottom: 8px;
}
.works-content p {
    color: #959795;
}
.works-content {
	padding: 0px 12px;
}
/* how workd area end */

/* popular items-area */
.popular-items{
    padding: 78px 0px;
}
.popular-img img {
	max-height: 265px;
	max-width: 265px;
	border-radius: 16px;
	margin-bottom: 10px;
}
.popular-text h6 {
	font-size: 20px;
	font-weight: var(--font-semi-bold);
	margin-bottom: 6px;
    color: var(--black-color);
}
.popular-text p {
	color: var(--theme-color);
	font-size: var(--small-font-size);
	font-weight: var(--font-semi-bold);
	margin-bottom: 6px;
}
.popular-text span.price{
    color: var(--black-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
}
.popular-text p span{
    margin-right: 9px;
}
.btn.order-btn {
	width: 100%;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	margin-top: 12px;
}

.popular-items-slider-active .owl-nav div {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    font-size: 24px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.popular-items-slider-active .owl-nav .owl-next{
    left: auto;
    right: -60px;
}

/* popular items-area_End */


/* featured-items-area */
.features-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 64px 8px;
}

.featured-item-img img {
	max-width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
	border-radius: 16px;
	margin-bottom: 10px;
}
.shop-logo {
	height: 64px;
	width: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px rgba(0,0,0, .14);
	border-radius: 8px;
	margin-right: 15px;
}
.shop-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}   
.shop-text a {
	font-size: var(--normal-font-size);
	font-weight: var(--font-semi-bold);
	color: var(--theme-color);
	display: block;
	margin-bottom: 5px;
}
.shop-text p{
    font-size: 14px;
    color: #FED42D;
    margin-bottom: 0px;
    font-weight: var(--font-semi-bold);
}
.shop-text p span {
	margin-right: 4px;
}
.shop-info {
	margin-bottom: 16px;
}
.view-more-area{
    margin-top: 60px;
}
.btn.view-more-btn{
    border-radius: 0px;
    width: 170px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.btn.view-more-btn span{
    margin-left: 10px;
}
.btn.view-more-btn span {
	margin-left: 7px;
	font-size: 17px;
	position: relative;
	top: 1px;
}
/* featured-items-area_end */


/* search-area */

.search-food-area{
    padding: 78px 0px;
}
.area-title h2{
    margin-bottom: 0px;
}
.right-view-all a{
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size);
    color: var(--theme-color);
}  
.right-view-all {
	flex: 0 0 auto;
	width: 15%;
}
.right-view-all a span{
   margin-left: 10px;
}   
.section-title-wrapper{
    margin-bottom: 66px;
}

.search-food-img {
	display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: 12px;
}
.search-food-img img{
    max-width: 216px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.search-text a{
    font-size: var(--normal-font-size);
    color: var(--theme-color);
    font-weight: var(--font-semi-bold);
}

.search-products-active.owl-carousel .owl-nav div {
	right: 52px;
	top: -108px;
	left: auto;
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
}
.search-products-active.owl-carousel .owl-nav .owl-next{
    right: 0;
    left: auto;
}


/* search-area_End */

/* app-feature */
.app-feature {
	background-color: #F0F6EE;
    z-index: 1;
}
.app-feature-bottom-shape {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: -1;
}
/* .mobile-app img {
	filter: drop-shadow(0px 0px 5px #666666);
	-webkit-filter: drop-shadow(0px 0px 5px #666666);
} */
.app-feature-weap {
	margin-top: 120px;
	margin-bottom: 113px;
	align-items: center;
	background: #E1EEDD;
	padding: 22px 75px;
	border-radius: 16px;
	box-shadow: 0px 2px 6px rgba(0,0,0, .2);
}
.feature-icon {
	flex: 0 0 auto;
	width: 135px;
	text-align: center;
}
.feature-text h4 {
	font-size: 34px;
	line-height: 1.2;
	margin-bottom: 0px;
	font-weight: var(--font-bold)
}
.download-text {
	margin-top: 100px;
	max-width: 400px;
	margin-bottom: 100px;
}
.download-text p{
	font-size: var(--small-font-size);
}
.download-text h3 {
	margin-bottom: 4px;
}
.app-download-btns {
	display: flex;
	align-items: center;
}
.app-download-btns a{
	margin-right: 9px;
}
/* app-feature */



/* cta-area */
.cta-area {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 306px;
	display: flex;
	align-items: center;
	background-color: #f8f9fa;
}
.cta-content {
	max-width: 500px;
	text-align: center;
	margin: 0 auto;
}
.order-procid-btn {
	margin-top: 75px;
}
.btn.procide-btn {
	width: 230px;
	border-radius: 0px;
	text-transform: uppercase;
}
.btn.procide-btn span {
	margin-left: 5px;
	font-size: 17px;
	position: relative;
}
/* cta-area */




/* footer-area */
.footer-area{
    background-color: var(--theme-color);
    /* padding-top: 85px; */
}
.top-city-wrapper h5{
    font-weight: var(--font-semi-bold);
    color: var(--white-color);
    font-size: 18px
}
.top-city-wrapp {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
    margin-bottom: 58px;
}
.single-city-wrap ul li a{
    color: var(--white-color);
    display: block;
    padding: 5px 0px;
    line-height: 1;
}
.single-city-wrap ul li a:hover{
   text-decoration: underline;
}


.footer-menu h5 {
	color: var(--white-color);
	font-size: 18px;
	margin-bottom: 10px;
    font-weight: var(--font-semi-bold);
}
.footer-menu ul li a{
    color: var(--white-color);
    display: block;
    padding: 5px 0px;
}
.footer-menu ul li a:hover {
	text-decoration: underline;
}
.footer-menus{
    padding-bottom: 50px;
}

.follow-us h5 {
	color: var(--white-color);
	font-weight: var(--font-semi-bold);
	font-size: 18px;
	margin-bottom: 12px;
}
.follow-us h4{
    font-size: 28px;
    color: var(--white-color);
    color: var(--white-color);
}
.email-enput{
    flex: 0 0 auto;
    width: 63%;
}
.email-enput input {
	width: 100%;
	height: 42px;
	border: none;
	padding-left: 38px;
	color: var(--white-color);
	font-weight: var(--font-semi-bold);
	background-color: #A1A94F;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}
.email-enput input::placeholder{
    color: var(--white-color);
}
.btn.btn-subcribe {
	height: 42px;
	background: var(--white-color);
	color: var(--theme-color);
	width: 144px;
}
.copy-right span{
    color: var(--white-color);
    /*display: block;*/
    line-height: 1;
    opacity: 1;
}
.copy-right{
    padding: 16px 0px;
    /* border-top: 1px solid var(--white-color); */
}
.email-enput span {
	position: absolute;
	left: 12px;
	top: 53%;
	transform: translateY(-50%);
	color: #fff;
}
.btn.btn-subcribe:hover {
	background-color: #A1A94F;
	color: #fff;
}
/* footer-area */

/* offcanvas-menu */
.bar {
	color: #fff;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	border-radius: 4px;
	cursor: pointer;
}


/* offcanvas-menu */



/* resturent-filter--------------------------page-2 */
.banner_pesturent{
    height: 618px;
}

.filter-main-wrapper{
    padding: 78px 0px;
}
.banner_pesturent h2{
    font-size: 50px;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
}
.filter-wrapper{
    display: grid;
    grid-template-columns: 1fr 3fr;
    text-align: justify;
    grid-column-gap: 40px;
}
.filter-left-bar{
    min-width: 380px;
    padding-right: 40px;
    border-right: 1px solid rgba(112,112,112, .25);
}

/* results-widgets */
.single-result-widget {
	margin-bottom: 56px;
}
.single-result-widget h5{
    font-size: 22px;
    font-weight: var(--font-bold);
    color: var(--black-color);
    margin-bottom: 30px;
}

.custom-select input{
    display: none;
}
.custom-select label{
    min-width: 97px;
    height: 38px;
    border: 1px solid var(--theme-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    border-radius: 8px;
    margin-right: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.custom-select input:checked ~ label{
    background-color: var(--theme-color);
    color: var(--white-color);
}
.result-search input {
	width: 100%;
	height: 42px;
	border: none;
	border: 1px solid rgba(112,112,112, .25);
	border-radius: 6px;
	padding-left: 14px;
    color: #B7B7B7;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    text-transform: capitalize;
}
.categories-list ul li{
    position: relative;
    font-size: 18px;
    font-weight: var(--font-semi-bold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0px;
    border-bottom: 1px solid #DBDBDB;
    padding-left: 15px;
}
.categories-list ul li:first-child{
    padding-top: 0px;
}
.categories-list ul li:first-child::after {
	top: 4px;
}
.categories-list ul li::after {
	position: absolute;
	left: 0;
	top: 18px;
	content: "";
	width: 7px;
	height: 16px;
	background-image: url('./assets/img/icons/cat-icon.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.categories-list ul li span.cat-name{
    color: var(--black-color);
}
.categories-list ul li span.cat-posts{
    color: #7F7F7F;
}
a.cat-more{
    color: var(--theme-color);
    font-size: 18px;
    font-weight: var(--font-semi-bold);
    display: inline-block;
    margin-top: 15px    ;
}
.rangeslider-area .nstSlider .leftGrip, .nstSlider .rightGrip {
	position: absolute;
	width: 15px;
	height: 20px;
	background: #fff;
	border-radius: 4px;
	background: #798402;
    top: -7px;
}

.rangeslider-area .nstSlider {
	cursor: hand;
	cursor: pointer;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	width: 100%;
	height: 5px;
	background: #707070;
}
.rangeslider-area .nstSlider .bar {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: absolute;
	background: #EAEAEA;
	height: 8px;
	top: 0px;
}

.rangslider-value p {
	margin-bottom: 0px;
	font-size: var(--small-font-size);
	font-weight: var(--font-semi-bold);
	color: var(--black-color);
}



.rangslider-value .single-price-slider {
	position: relative;
	margin-left: 4px;
	font-size: 16px;
	font-weight: 600;
	color: #000;
}
.rangslider-value .single-price-slider:last-child::after {
    display: none;
}
.rangslider-value {
	margin-top: 24px;
}

.btn.reset-btn {
	width: 170px;
	border-radius: 0px;
    height: 42px;
}
.separators {
	display: block;
	width: 15px;
	text-align: center;
	margin-left: 3px;
	font-weight: 600;
	color: #000;
}





/* results-widgets */



/* search-right-content */
.search-result-info p{
    font-size: var(--normal-font-size);
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 0px;
}

.result-items-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 25px;
}

.result-item-img{
    flex: 0 0 auto;
    height: 134px;
    width: 120px;
    margin-right: 12px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0px 0px 8px rgba(0,0,0, .16);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.search-result-info {
	margin-bottom: 30px;
}
.result-item-content h6 {
	font-size: 20px;
	font-weight: var(--font-semi-bold);
	color: var(--black-color);
	margin-bottom: 0px;
}
.result-item-content h6 a{
    color: var(--black-color);
}
.result-item-content span.tags{
    color: #707070;
    font-size: var(--smaller-font-size);
    line-height: 1;
    display: inline-block;
    font-weight: var(--font-semi-bold);
}
.result-item-content ul {
	margin-top: 12px;
	margin-bottom: 9px;
}
.result-item-content ul li {
	font-size: var(--smaller-font-size);
	color: #707070;
	font-weight: var(--font-semi-bold);
	margin-right: 5px;
	position: relative;
	padding-left: 15px;
}
.result-item-content ul li span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #707070;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.result-bottom .badge {
	font-size: var(--smaller-font-size);
	color: var(--theme-color);
	height: 30px;
	display: flex;
	align-items: center;
	width: 100px;
	justify-content: center;
}
.stars-ratings{
    color: #FED42D;
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size);
    line-height: 1;
}
/* search-right-content */

.pagination-area ul li a{
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    margin: 0px 8px;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.pagination-area{
    margin-top: 95px;
}
.pagination-area ul li a.active{
    background-color: var(--theme-color);
    color: var(--white-color);
}

/* resturent-filter--------------------------page-2 */

/* resturnt-details-page */
.resturent-details-text h4{
    font-size: 30px;
    font-weight: var(--font-bold);
    color: var(--white-color);
    margin-bottom: 10px;
}
.resturent-stars span {
	color: #FED42D;
}
.space-line {
	color: #fff;
	font-size: 23px;
	line-height: .3;
	margin: 0px 10px;
}
.locations-resturent {
	margin-top: 22px;
    font-size: var(--small-font-size);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
}
.locations-resturent span {
	margin-right: 10px;
}
.banner-details-wrapper {
	max-width: 1110px;
}
.over-view-wrapper {
	margin-top: 38px;
}
.over-view-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.over-view-wrap p {
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	line-height: 1.8;
}
.over-view-wrap h4 {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
}
.over-view-wrap h4 {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 8px;
}
.over-view-wrap p {
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	line-height: 1.8;
}
.over-view-wrap {
	flex: 0 0 auto;
	width: 66%;
}
.share-btns .btn {
	width: 140px;
	height: 40px;
	position: relative;
}
.share-btns .btn span {
	position: relative;
	top: -2px;
	margin-right: 4px;
}
.share-btns .btn {
	width: 140px;
	height: 40px;
	position: relative;
	padding: 0px;
    margin-left: 7px;
}
.share-btns .btn:first-child {
	background-color: var(--primary-color);
    color: var(--theme-color);
}
.text-alert.text-center {
	padding-top: 25px;
	padding-bottom: 5px;
}
.text-alert p{
    margin-bottom: 0px;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
}
.details-bar-left {
	padding-right: 40px;
	border-right: 1px solid rgba(112,112,112, .25);
}
.side-bar-right-area{
    padding-left: 40px;
    border-left: 1px solid rgba(112,112,112, .25);;
}
.single-select-food {
	padding: 18px 0px;
	border-bottom: 1px solid var(--theme-color);
}
.resturent-commets p{
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--white-color);
    margin-bottom: 0px;
}
.resturent-details-page{
    grid-template-columns: 1fr 2fr 1fr;
    grid-gap: 0px;
}
.resturent-food-item-details-wrapper {
	padding: 0px 40px;
}
.single-dish{
    border: 1px solid transparent;
    box-shadow: 0px 0px 5px rgba(0,0,0, .14);
    border-radius: 16px;
	overflow: hidden;
    margin-bottom: 30px;
    transition: .3s;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.single-dish:hover {
	border-color: var(--theme-color);
}
.more-details-btn {
    height: 18px;
    width: 18px;
    padding: 0px;
    line-height: 1;
    border: none;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    top: 8px;
    background-color: var(--theme-color);
    font-size: 14px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.single-dish [aria-expanded="true"] .more-details-btn {
	background-color: #707070 !important;
	transform: rotate(42deg);
}
.dish-imag img {
	width: 120px;
	height: 134px;
	border-radius: 8px;
}
.dish-imag {
	margin-right: 12px;
}
.dish-details h4 {
	color: var(--black-color);
	font-size: var(--normal-font-size);
	font-weight: var(--font-semi-bold);
	margin-bottom: 6px;
}
.dish-details p{
	font-size: var(--smaller-font-size);
    color: #9A9A9A;
    font-weight: var(--font-semi-bold);
}
.dish-details span.dish-price{
    font-size: var(--smaller-font-size);
    color: var(--theme-color);
    font-weight: var(--font-semi-bold);
}
.dish-details span.dish-price strong{
    font-weight: 900;
}
.dish-details {
	max-width: 251px;
}


.basket-header{
    padding-bottom: 30px;
    border-bottom: 1px solid #DBDBDB;
}
.basket-header h5{
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--black-color);
    margin-bottom: 0px;
}
.empty-food{
    padding: 40px 0px 35px 0px;
    border-bottom: 1px solid #DBDBDB;
}
.empty-food img{
    margin-bottom: 10px;
}
.empty-food h6{
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: #8C8C8C;
    margin-bottom: 0px;
}
.single-select-food {
	padding: 20px 0px;
	border-bottom: 1px solid var(--theme-color);
}
.single-select-food h4{
    margin-bottom: 8px;
}
.single-select-food h4 a{
    font-size: 20px;
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
}
.single-select-food p{
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    color: #9A9A9A;
}
.food-price-details h6{
    font-size: var(--small-font-size);
    font-weight: 900;
    margin-bottom: 0px;
}
.food-count-area .nice-number button {
	background: transparent;
	border: none;
	font-weight: var(--font-semi-bold);
	color: #707070;
	font-size: 18px;
}
.food-count-area .nice-number input {
	border: none;
	font-size: 18px;
	font-weight: var(--font-semi-bold);
    color: #707070;
}
.totoal-cost-area{
    padding: 20px 0px;
    border-bottom: 1px solid #DBDBDB;
}
.totoal-cost-area ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #707070;
	font-weight: var(--font-semi-bold);
	padding: 3px 0px;
}
.totoal-cost-area ul li:last-child {
	font-weight: var(--font-bold);
    color: var(--black-color);
}
.additional-info textarea {
	height: 80px;
	padding: 10px 12px;
	border: none;
	border: 1px solid #B6B6B6;
	border-radius: 10px;
	resize: none;
	color: #C6C6C6;
	width: 100%;
}
.additional-info textarea:focus {
	border-color: var(--theme-color);
    outline: none;
}

.additional-info {
	padding-top: 20px;
}
.order--btn-area .btn {
	width: 100%;
	border-radius: 0px;
}
.order--btn-area{
    margin-top: 20px;
}
.resturent-logo img {
    width: 120px;
    height: 134px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.resturent-logo {
	margin-right: 40px;
}

.food-extra-single h6 {
	color: #707070;
	margin-bottom: 0px;
	font-size: 16px;
	font-weight: 600;
	flex: 0 0 auto;
	width: 21%;
	min-width: 87px;
}
.food-extra {
	margin-left: 132px;
	margin-right: 75px;
	padding-top: 20px;
	border-top: 1px solid #DBDBDB;
}

.food-extra-content {
	flex: 0 0 auto;
	width: 73%;
}
.food-extra-content input[type="text"] {
	width: 100%;
	height: 36px;
	border-radius: 6px;
	border: none;
	border: 1px solid #DBDBDB;
	padding-left: 14px;
    font-weight: var(--font-semi-bold);
}
.food-extra-single {
	margin-bottom: 20px;
}
.single-custom-check-box label {
	font-size: 14px;
	font-weight: 600;
	color: #9A9A9A;
	padding-left: 21px;
	line-height: 1;
	margin-bottom: 8px;
    position: relative;
}
.single-custom-check-box input{
    display: none;
}
.single-custom-check-box label span {
	position: absolute;
	left: 0;
	top: 2px;
	height: 13px;
	width: 13px;
	border: 1.3px solid #AFAFAF;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}
.single-custom-check-box input:checked ~ label span::after {
	position: absolute;
	left: 45%;
	top: 45%;
	transform: translate(-50%, -50%);
	height: 7px;
	width: 7px;
	content: "";
	border-radius: 2px;
	background-color: #AFAFAF;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}
.sow-more-extra{
    display: inline-block;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    color: #9A9A9A;
    margin-bottom: 10px;
}
.sow-more-extra span {
	padding-left: 3px;
	padding-right: 7px;
	position: relative;
	top: 1px;
}
.sow-more-extra:hover{
    color: var(--theme-color);
}
.extra-counter {
	background-color: var(--primary-color);
	min-width: 73px;
	max-width: 80px;
	text-align: center;
	height: 27px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	margin-bottom: 20px;
}
.extra-counter .nice-number button {
	background: transparent;
	border: none;
	color: var(--theme-color);
	font-size: var(--smaller-font-size);
	font-weight: var(--font-bold);
	padding: 0px;
	width: 14px;
}
.extra-counter .nice-number input {
	background: transparent;
	border: none;
    color: var(--theme-color);
    font-weight: var(--font-semi-bold);
}
.order--btn .btn{
    width: 100%;
    height: 42px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.btn.basket-btn-mobo {
	height: 52px;
	width: 100%;
	border-radius: 0px;
}
.btn.basket-btn-mobo:hover {
    color: #fff;
	background-color: #808824;
}
.basket-btn-tab-mobo{
    position: relative;
}
.btn.basket-btn-mobo span {
	position: absolute;
	left: 45px;
	top: 50%;
	transform: translateY(-50%);
}
.btn.basket-btn-mobo span sub {
	height: 16px;
	width: 16px;
	background: #FF9551;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	top: 10px;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	left: -6px;
}

/* resturnt-details-page_End */


/* =============================Checkout-Page====================== */
.banner_pesturent {
	height: 274px;
}

.filter-wrapper.checkout-page{
    grid-template-columns: 3fr 1fr;
}

.checkout-input-wrapper {
    max-width: 730px;
}
.checkout-input-wrapper h6 {
    font-size: 22px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}
.single-input-blk p {
    font-size: 18px;
    color: #6C6C6C;
    font-weight: normal;
    margin-bottom: 21px;
}
.single-input-wrap.half-input {
    flex: 0 0 auto;
    width: 48%;
}
.single-input-wrap label {
    display: block;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 11px;
}
.single-input-wrap input {
    width: 100%;
    height: 42px;
    border: none;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
    padding-left: 15px;
    font-size: 16px;
    font-weight: var(--font-semi-bold);
    color: #707070;
}
.single-input-wrapper {
    justify-content: space-between;
}
.single-input-wrap {
    margin-bottom: 20px;
}

.single-input-wrap textarea {
	height: 82px;
	width: 100%;
	border-radius: 6px;
	border: none;
	border: 1px solid #DBDBDB;
	resize: none;
	padding: 10px 14px;
	font-size: 16px;
	font-weight: 600;
}
.delivery-select .nice-select{
    width: 100%;
    height: 42px;
    line-height: 37px;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
    font-size: 16px;
    font-weight: var(--font-semi-bold);
    color: #707070;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 20px;
}
.delivery-select .nice-select::after {
	border-bottom: 2px solid #707070;
	border-right: 2px solid #707070;
	height: 8px;
	right: 18px;
	width: 8px;
    margin-top: -6px;
}
.nice-select .list{
    width: 100%;
}
.checkout-checkbox input{
    display: none;
}
.checkout-checkbox label{
    padding-left: 21px;
    position: relative;
    font-size: var(--smaller-font-size);
    color: #9A9A9A;
    font-weight: var(--font-semi-bold);
    line-height: 1;
}
.checkout-checkbox label span{
    position: absolute;
    left: 0;
    top: 0px;
    height: 14px;
    width: 14px;
    border: 1.4px solid #AFAFAF;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.checkout-checkbox input:checked ~ label span::after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background-color: #AFAFAF;
	content: "";
	border-radius: 2px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}


.payments-methods {
    padding-top: 20px;
}
.payment-method-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 7px;
}
.payment-method-header p {
    font-size: 14px;
    font-weight: 600;
    color: #9A9A9A;
    margin-bottom: 0px;
}
.payment-method-header {
    margin-bottom: 21px;
}
.single-payment input {
    display: none;
}
.single-payment label {
	display: flex;
	align-items: center;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0, .16);
	margin-bottom: 20px;
	position: relative;
	height: 60px;
}  
.single-payment label p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1;
    color: #9A9A9A;
}
.single-payment label h6 {
    font-size: 18px;
    color: #000;
    margin-bottom: 0px;
    line-height: 1.2;
}
.card-info {
    margin-left: 12px;
}
.single-payment label span {
    position: absolute;
    right: 8px;
    top: 8px;
    content: "";
    height: 18px;
    width: 18px;
    border: 2px solid #B7B7B7;
    border-radius: 50%;
    display: inline-block;
}
.single-payment input:checked ~ label span:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 10px;
    background: #B7B7B7;
    content: "";
    border-radius: 50%;
}
.card-logo img {
	height: auto;
	width: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}
.card-logo {
	flex: 0 0 auto;
	width: 90px;
	border-radius: 10px;
}
.single-payment:first-child .card-logo{
    background-color: #FFB3C7;
}
.single-payment:nth-child(2) .card-logo{
    background-color: #000268;
}
.single-payment:nth-child(3) .card-logo{
    background-color: #0353A5;
}
.single-payment:nth-child(4) .card-logo{
    background-color: #F5F5F5;
}
.single-payment:nth-child(5) .card-logo{
    background-color: #016FD0;
}
.single-payment:nth-child(6) .card-logo{
    background-color: #FFFFFF;
}
.single-payment:nth-child(6) .card-logo{
    background-color: #F7931A;
}
.banner_pesturent.checkout-banner {
	height: 270px;
}



/* order-conformed-page */
.filter-wrapper.order-conform-page {
	grid-template-columns: 3fr 1fr;
}
.map-area iframe {
	width: 100%;
	height: 630px;
}
.order-traking{
    padding-top: 60px;
}

.order-traking h4{
    font-size: 22px;
    color: var(--black-color);
    font-weight: var(--font-bold);
    margin-bottom: 28px;
}

.order-traking ul {
	position: relative;
	padding-top: 40px;
}
.order-traking ul::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 10px;
	background: #D4D4D4;
	content: "";
	border-radius: 10px;
}
.order-traking ul li {
	position: relative;
	width: 33.3333333%;
	flex: 0 0 auto;
	text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 18px;
    color: var(--black-color);
}
.order-traking ul li.active::after {
	background: #798402;
	border: 2px solid #B5BA83;
	box-shadow: 0px 0px 0px 2px #949C41;
}
.order-traking ul li::after {
	position: absolute;
	left: 50%;
	top: -44px;
	height: 18px;
	width: 18px;
	background: #B5B5B5;
	content: "";
	border-radius: 50%;
	z-index: 3;
	border: 2px solid #B5B5B5;
	box-shadow: 0px 0px 0px 2px #B5B5B5;
}

.order-traking ul li.active:first-child:before {
    position: absolute;
    width: 53%;
    height: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    content: "";
    top: -40px;
    background: #798402;
    left: 0;
    z-index: 1;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}
.order-traking ul li.active::before {
	position: absolute;
	width: 100%;
	height: 10px;
	content: "";
	top: -40px;
	background: #798402;
	left: 0;
	z-index: 1;
	transform: translateX(-50%);
}
.order-traking ul li.active:last-child:before {
	border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 200%;
}
.order-items{
    font-size: 18px;
    font-weight: var(--font-semi-bold);
}

.conformed-message {
	max-width: 520px;
	text-align: center;
}
.thanks-text h4 {
	font-weight: 700;
	color: #fff;
	font-size: 34px;
	margin-bottom: 8px;
}
.thanks-text p {
	font-size: 24px;
	color: #fff;
}
.banner_pesturent.banner-conformed {
	height: auto;
	padding-top: 120px;
	padding-bottom: 90px;
}


.order-conform-page .side-bar-right-area {
	padding-left: 40px;
	border-left: 1px solid rgba(112,112,112, .25);
	min-width: 270px;
}

.map-area iframe {
	width: 100%;
	height: 440px;
}
.inner-timer {
	height: 120px;
	width: 120px;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: var(--font-semi-bold);
	font-size: 34px;
	color: var(--theme-color);
	background-color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	position: relative;
	z-index: 2;
}

.bg-border {
	height: 130px;
	width: 130px;
	position: absolute;
	left: 50%;
	top: 50%;
	background: #798402;
	transform: translate(-50%,-50%);
	z-index: 1;
	border-radius: 50%;
}

.remove-product {
	position: absolute;
	top: 26px;
	right: 0;
	padding: 0px;
	line-height: 1;
	border: none;
	background: #707070;
	height: 18px;
	width: 18px;
	color: #fff;
	font-size: 13px;
	border-radius: 50%;
}

.checkout-page .side-bar-right-area {
	min-width: 315px;
}


/* order-conformed-page */


/* last-css */
.banner_pesturent.resturent-details-banner {
	height: auto;
	padding: 150px 0px;
}
.dilter-page-wrapper .filter-left-bar {
	min-width: auto;
	padding-right: 25px;
	min-width: 310px;
}
.basket-btn-tab-mobo {
	position: fixed;
	bottom: 0px;
	width: 100%;
	padding: 0px 15px;
	z-index: 111;
	left: 0;
	bottom: 5px;
}

.basket-content-popup{}
.basket-content-popup .modal-dialog {
	max-width: 100%;
	width: 100%;
	margin: 0px;
	border: none;
	border-radius: 0px;
}
.basket-content-popup .modal-content {
	border-radius: 0px;
	height: 100vh;
	border: none;
	overflow-y: scroll;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	padding: 75px 40px 0px 40px;
}
.basket-close {
	height: 24px;
	width: 24px;
	padding: 0;
	line-height: 1;
	font-size: 14px;
	color: #fff;
	background: #798402;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 40px;
	top: 74px;
}
.mobile-order-content {
	padding-bottom: 30px;
}
.share-btns .btn:hover {
	background: #798402;
	color: #fff;
}
.share-btns .btn:first-child:hover{
	background-color: var(--primary-color);
	color: var(--theme-color);
}
.dish-header-c {
	background: #fff;
	cursor: pointer;
}
.headeroben{
	display:none;
}
.headermitte {
	display:block;
}
.navbar-fonts {
	font-size: 18px;
	font-weight: 900;
	flex-shrink: 0;
}
@media (max-width: 432px) {
	.headeroben{
		display:block;
	}
	.headermitte {
		display:none;
	}
	.navbar-links{
		padding:2px;
		color:var(--navbar-link-color);
	}
	.navbar-space {
		color:var(--navbar-link-color);
	}
	.navbar-fonts {
		font-size: 14px;
    	font-weight: 900;
		flex-shrink: 0;
	}
}

/* last-css */