@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}
@font-face {
    font-family: 'clash_groteskbold';
    src: url('../fonts/clash_grotesk/clashgrotesk-bold-webfont.woff2') format('woff2'),
         url('../fonts/clash_grotesk/clashgrotesk-bold-webfont.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'clash_groteskextralight';
    src: url('clashgrotesk-extralight-webfont.woff2') format('woff2'),
         url('clashgrotesk-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'clash_grotesklight';
    src: url('clashgrotesk-light-webfont.woff2') format('woff2'),
         url('clashgrotesk-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'clash_groteskmedium';
    src: url('../fonts/clash_grotesk/clashgrotesk-medium-webfont.woff2') format('woff2'),
         url('../fonts/clash_grotesk/clashgrotesk-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'clash_groteskregular';
    src: url('../fonts/clash_grotesk/clashgrotesk-regular-webfont.woff2') format('woff2'),
         url('../fonts/clash_grotesk/clashgrotesk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'clash_grotesksemibold';
    src: url('../fonts/clash_grotesk/clashgrotesk-semibold-webfont.woff2') format('woff2'),
         url('../fonts/clash_grotesk/clashgrotesk-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
	--primary-color: #000000;
	--secondary-color: #000000;
	--placeholder-color: #e0e0e0;
	--highlight-color: #333333;
	--gray-color: #f1f3f4;
	--black-color: #000000;
	--white-color: #ffffff;
	/* font-sizes */
	--big-bannertitle-font-size: 5.5rem;
	--bannertitle-font-size: 5rem;
	--big-title-font-size:3.5rem;
	--title-font-size: 2.5rem;
	--subtitle-font-size: 2rem;
	--mobile-links-size: 2rem;
	--big-paragraph-font-size: 1.5rem;
	--paragraph-font-size: 1.3rem;
	--content-font-size: 1.125rem;
	--small-font-size: 1rem;
	/* font-families */
	--light-font-family: "";
	--regular-font-family: "clash_groteskregular";
	--medium-font-family: "clash_groteskmedium";
	--bold-font-family: "clash_groteskbold";
	--semibold-font-family: "clash_grotesksemibold";
	/* other variables */
	--common-transition: all 0.6s ease;
	--web-border-radius: 1.2rem;
	--mobile-border-radius: 0.6rem;
	--common-gap-size: 0.5rem;
	--small-gap-size: 1.5rem;
	--medium-gap-size: 3rem;
	--big-gap-size: 4rem;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	
	color: #000;
}

html {
	height: auto;
	scroll-behavior: smooth;
}

* {
	line-height: 1.2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	line-height: 1.2;
	width: 100%;
	font-family: var(--regular-font-family);
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	background-color: transparent;
	color: unset;
	outline: none;
	text-decoration: none;
	-webkit-transition: var(--common-transition);
	-moz-transition: var(--common-transition);
	-ms-transition: var(--common-transition);
	-o-transition: var(--common-transition);
	transition: var(--common-transition);
}

a:focus,
a:hover {
	outline: 0;
	text-decoration: unset;
	color: var(--secondary-color);
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
	transition: var(--common-transition);
	margin: 0 auto;
	cursor: pointer;
	object-fit: cover;
	display: block;
}


@-webkit-keyframes fade_top {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fade_top {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		-ms-transform: translateY(100px);
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fade_top {
	-webkit-animation-name: fade_top;
	animation-name: fade_top;
}

img {
    max-width: 100%;
}

@-webkit-keyframes slide_left {
	0% {
		left: 0%;
	}

	100% {
		left: -30%;
	}
}

@keyframes slide_left {
	0% {
		left: 0%;
	}

	100% {
		left: -30%;
	}
}

.slide_left {
	-webkit-animation-name: slide_left;
	animation-name: slide_left;
}

@-webkit-keyframes slide_right {
	0% {
		right: 0%;
	}

	100% {
		right: -30%;
	}
}

@keyframes slide_right {
	0% {
		right: 0%;
	}

	100% {
		right: -30%;
	}
}

.slide_right {
	-webkit-animation-name: slide_right;
	animation-name: slide_right;
}

.rotate_right {
	-webkit-animation: rotationRight 12s infinite linear;
	animation: rotationRight 12s infinite linear;
}

@keyframes rotationRight {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

.wow {
	visibility: hidden;
}




.relative {
	position: relative;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

.black_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all ease 0.4s;
	background: rgb(0 0 0 / 15%);
	z-index: 0;
}

.main-container {
	width:	90%;
	margin: 0 auto;
}

.main-container-2 {
	width: 95%;
	margin: 0 auto;
}

/* .main-container-2 {
	width: 100%;
	padding: 0 3rem;
} */

.content_accordian {
	display: none;
}

.main-section-padding {
	padding: 6rem 0 10rem 0;
}
.section-padding{
	padding: 10rem 0rem;
}

.hover-enable {
	display: none;
}

.hover-disable {
	display: inline-block;
}

.mobile-image {
	display: none;
}

.web-image {
	display: block;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
	outline: none;
	border: none;
}

body.no-scroll-body {
	overflow-y: hidden;
}

.visible-tab-mobile {
	display: none !important;
}

.hide-tab-mobile {
	display: block !important;
}


/* header CSS End */

.inner-flex {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.inner-flex.inner-flex-common {
	gap: var(--common-gap-size);
}

.inner-flex.inner-flex-small {
	gap: var(--small-gap-size);
}

.inner-flex.inner-flex-medium {
	gap: var(--medium-gap-size);
}

.inner-flex.inner-flex-big {
	gap: var(--big-gap-size);
}

.inner-flex-smallest {
	gap: 0.5rem;
}

.inner-flex.inner-flex-center {
	align-items: center;
	text-align: center;
}

.inner-flex.inner-flex-start {
	align-items: start;
	text-align: left;
}

.inner-flex.inner-flex-end {
	align-items: end;
	text-align: right;
}


.text-uppercase {
	text-transform: uppercase;
}



.swiper-slide {
	background-color: transparent;
	background: transparent;
	font-size: 1rem;
}

.secondary-color {
	color: var(--secondary-color) !important;
}

.highlight-color {
	color: var(--highlight-color) !important;
}

.regular-fonts {
	font-family: var(--regular-font-family) !important;
}

.medium-fonts {
	font-family: var(--medium-font-family) !important;
}

.bold-fonts {
	font-family: var(--bold-font-family) !important;
}


.material-symbols-outlined {
	font-family: 'Material Symbols Outlined' !important;
}

.banner-title h1,
.banner-title h2,
.banner-title h2 span {
	font-size: var(--banner-font-size);
	font-family: var(--medium-font-family);
	line-height: 1;
}

.banner-title h2 span {
	color: var(--secondary-color);
}

.section-title h1,
.section-title h2,
.section-title h2 span {
	font-size: var(--title-font-size);
	font-family: var(--bold-font-family);
	line-height: 1.4;
}

.section-title h2 span {
	color: var(--secondary-color);
}

.section-subtitle h3,
.section-subtitle h3 span {
	font-size: var(--subtitle-font-size);
	font-family: var(--medium-font-family);
}

.section-subtitle h3 span {
	color: var(--secondary-color);
}


.section-content p,
.section-content a,
.section-content p span,
.section-content span {
	font-size: var(--content-font-size);
	font-family: var(--regular-font-family);
	line-height: 1.2;
}

.section-content p span {
	color: var(--secondary-color);
}

.link-font a,
.link-font span,
.link-font a span {
	font-size: 1rem;
	color: var(--primary-color);
	font-family: var(--regular-font-family);
}

.link-font a:hover,
.link-font span:hover,
.link-font a:hover span {
	color: var(--secondary-color);
}

.header_wrapper {
	background-color: #ffffff;
	padding: 0rem 0rem;
	position: fixed;
	top: 0%;
	width: 100%;
	z-index: 999999;
	transition: var(--common-transition);
	border-bottom: 1px solid #E9E9E9;
}

.header_change {
	top: -100%;
	transition: var(--common-transition);

}
/*.header-logo{
	width: 10%;
}*/
.header_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0rem;
}
.header-links{
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}
.mobile-links{
	margin-left: auto;
}
.header-links ul{
    display: flex;
    gap: 2rem;
    align-items: center;
}
.row-flex{
    display: flex;
	gap: 1rem;
}
.header-links a:hover span,.header-links a:active span,.header-links .active a span{
	color: var(--primary-color);
}
.header-links a span{
	font-family: var(--regular-font-family);
	font-size: var(--content-font-size);
	color: var(--secondary-color);
}
.loginHeaderImage{
	width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.orderOnlineButtonHomepage{
	white-space: nowrap;
}
.addressSubMenu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px;
    list-style: none;
    text-align: left;
    background-color: #fff;
    z-index: 9999;
    white-space: nowrap;
    width: 100%;
}
.addressSubMenu>li {
    padding: 10px 0;
    border-bottom: dashed 1px #eee;
    transition: color ease 0.3s;
    -moz-transition: color ease 0.3s;
    -webkit-transition: color ease 0.3s;
    -ms-transition: color ease 0.3s;
    -o-transition: color ease 0.3s;
}
.addressSubMenu>li:last-child {
    border-color: transparent;
}
.link {
    color: var(--primary-color);
}

.round-button{
	padding: 1rem 2rem;
	border: 1px solid var(--primary-color);
	border-radius: 25px;
}
.rect-button{
	padding: 1rem 2rem;
	border: 1px solid var(--primary-color);
	border-radius: 5px;
}
.red-button{
	background-color: var(--primary-color);
	transition: var(--common-transition);
}
.cal-icon{
	color: var(--white-color);
}
.red-color{
	color: var(--primary-color) !important;
}
.round-button span{
	font-family: var(--medium-font-family) ;
	font-size: var(--small-font-size);
	color: var(--white-color) !important;
}
/* .round-button:hover{
	background-color: var(--secondary-color);
	transition: var(--common-transition);
	border: 1px solid transparent;
}
.round-button:hover a{
	color: var(--white-color) !important;
	transition: var(--common-transition);
} */

.aic{
	align-items: center;
}
.book-icon{
	width: 15px;
}
.footer_wrapper{
	background-color: var(--secondary-color);
	padding-bottom: 2rem;
	position: sticky;
}
.main-footer{
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.footer-img{
	width: 40%;
	margin: 0 auto;
}
.footer-container{
	width: 75%;
	margin: 0 auto;
}
.footer-links{
	display: flex;
	justify-content: space-between;
}
.footer-title span{
	font-family: var(--medium-font-family);
	color: var(--white-color);
	font-size: var(--paragraph-font-size);
}
.footer-content span{
	font-family: var(--regular-font-family);
	color: var(--white-color);
	font-size: var(--paragraph-font-size);
}
.border-div{
	border-top: 1px solid var(--white-color);
}

.search-content{
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	width: 70%;
	margin: 0 auto;
}
.search-bar{
	width: 100%;
	background-color: #ffffff;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	padding: 0rem 1rem;
	position: relative;
}
.search-bar .locationSearchBoxWrapper{
	width: calc(100% - 150px);
}
.search-bar ::placeholder {
	font-family: var(--regular-font-family);
	font-size: var(--paragraph-font-size);
}

.search-bar input,.addressBoxMain{
	padding: 1.1rem 0rem 1rem;
	outline: 0;
	border: 0;
	width: 100%;
	font-family: var(--regular-font-family);
	font-size: var(--paragraph-font-size);
	color: #787878;
}
.home-sec-1-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	width: 55%;

}
.banner-title h1{
	font-family: var(--medium-font-family);
	font-size: var(--big-bannertitle-font-size);
	color: var(--white-color);
}
.section-title h3{
	font-family: var(--regular-font-family);
	font-size: var(--big-paragraph-font-size);
	color: var(--white-color);
}
.big-gap{
	gap: var(--big-gap-size);
}
.rect-button{
	width: fit-content;
}
.red-button:hover{
	background-color: var(--secondary-color);
	transition: var(--common-transition);
	border: 1px solid transparent;
}


.rect-button span{
	font-size: var(--paragraph-font-size);
	color: var(--white-color);
	font-family: var(--regular-font-family);
	transition: var(--common-transition);
}
.location-bar a{
	font-family: var(--regular-font-family);
	font-size: var(--paragraph-font-size);
	color: #787878;
}
.black-button span{
	font-size: var(--content-font-size);
	font-family: var(--regular-font-family);
	transition: var(--common-transition);
}
.black-button{
	background-color: var(--secondary-color);
	border: none;
	transition: var(--common-transition);
}
.black-button:hover{
	background-color: var(--primary-color);
	transition: var(--common-transition);
}
.home-sec-2-img{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40%;
	margin: 0;
}
.home-section-2{
	padding-top:25rem ;
	padding-bottom: 25rem;
}

.section-title h2{
	font-size: var(--title-font-size);
	color: var(--secondary-color);
	font-family: var(--bold-font-family);
}
.section-title h2 span{
	font-size: var(--title-font-size);
	color: var(--primary-color);
	font-family: var(--bold-font-family);
}
.section-para p{
	font-family: var(--regular-font-family);
	font-size: var(--paragraph-font-size);
	color: #787878;
}
.width-70{
	width: 70%;
}
.round-border{
	width: 12rem;
	height: 12rem;
	position: absolute;
	top: 20%;
	right:5%;
	border-radius: 50%;
	border: 1px solid var(--primary-color);
}
.round-text-img{
	padding: 0.5rem;
	position: relative;
	animation: fullRotate 6s linear infinite;
}

@keyframes fullRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes crescendo {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}
.round-img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}
.round-img img{
	animation: crescendo 0.5s alternate infinite ease-in;
}
.section-title h1{
	font-family: var(--bold-font-family);
	font-size: var(--big-title-font-size);
	color: var(--white-color);
	line-height: 1.1;
}
.grey-bg{
	background-color: var(--secondary-color);
}
.semibold-family{
	font-family: var(--semibold-font-family) !important;
}
.offer-text{
	position: absolute;
	bottom: 5%;
	left: 0%;
	width: 100%;
	padding: 0rem 3rem;
	align-items: center;
	justify-content: space-between;
	z-index: 3;
}
.section-content h3{
	font-family: var(--medium-font-family);
	font-size: var(--title-font-size);
	color: var(--white-color);
}
.width-50{
	width: 50%;
}
.yellow-bg{
	background-color: #FAF6F3;
}
.product-price{
	display: flex;
	justify-content: space-between;
}
.home-dishes-grid{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 3rem;
}
.product-content{
	padding: 2rem;
	background-color: var(--white-color);
	border-radius: 15px;
	width: 100%;
}
.product-height{
	min-height: 435px;
	justify-content: space-between;
}
.product-name p{
	font-family: var(--medium-font-family);
	font-size: var(--paragraph-font-size);
	color: var(--secondary-color);
}
.bigger-gap{
	gap: 6rem;
}
.product-img{
	height: 200px;
	width: 100%;
	margin: 0 auto;
}
.product-img>img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.medium-gap{
	gap: 2rem;
}
.section-title-big h1{
	font-size: var(--bannertitle-font-size);
	font-family: var(--bold-font-family);
	color: var(--secondary-color);
}
.section-title-big h1 span{
	font-size: var(--bannertitle-font-size);
	font-family: var(--bold-font-family);
	color: var(--primary-color);
}

.marquee {
    height: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    margin-bottom: 0rem;
    border-bottom: 1px solid var(--coffee);
    border-top: 1px solid var(--coffee);
    background: transparent;
}

.marquee .marquee-1 {
    position: absolute;
    width: max-content;
    height: auto;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    animation: marquee 25s linear infinite;
}

.align-flex-center {
    align-items: center;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}
.loop-text{
	padding: 3rem 0rem;
}
.grey-color{
	color: var(--secondary-color) !important;
}
.justify-spacebet{
	justify-content: space-between;
}
.round-border-2{
	width: 12rem;
	height: 12rem;
	position: relative;
	border-radius: 50%;
	border: 1px solid #00833E;
}
.round-border .round-img{
	width: 40%;
}
.round-border-2 .round-img{
	width: 30%;
}
.article-img{
	min-height: 450px;
	border-radius: 30px;
	overflow: hidden;
}
.article-grid{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 3rem;
}
.article-date p{
	font-size: var(--paragraph-font-size);
	color: #787878;
	font-family: var(--regular-font-family);
	text-align: left;
}
.article-content p{
	font-size: var(--big-paragraph-font-size);
	color: #4f4f4f;
	font-family: var(--regular-font-family);
	text-align: left;
}
.article-title p{
	font-size: var(--subtitle-font-size);
	color: var(--secondary-color);
	font-family: var(--medium-font-family);
	text-align: left;
}
.home-sec-7-img{
	position: absolute;
	top: 0%;
	right: 0%;
}
.home-section-7{
	padding-top: 15rem;
	padding-bottom: 25rem;
}
.email-search-bar{
	width: 40%;
	background-color: #D9D9D9;
	border-radius: 5px;
	padding: 0rem 1rem;
}

.email-search-bar ::placeholder {
	font-family: var(--regular-font-family);
	font-size: var(--paragraph-font-size);
}

.email-search-bar input{
	padding: 1.1rem 0rem 1rem;
	outline: 0;
	border: 0;
	width: 100%;
	font-family: var(--regular-font-family);
	font-size: var(--paragraph-font-size);
	color: #787878;
	background-color: #D9D9D9;
}
.small-size-btn{
	font-family: var(--regular-font-family) !important;
	font-size: var(--paragraph-font-size) !important;
}

.menubar {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.menubar .bar {
	width: 3.2rem;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--common-transition);
}

.mobile-menu {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 100%;
	left: -100%;
	background-color: #ffffff;
	padding: 5rem 2rem;
	transition: var(--common-transition);
	z-index: 999;
}

.mobile-header-navigation-link a span {
	color: var(--black-color);
	font-family: var(--medium-font-family);
	font-size: var(--mobile-links-size);
}

.mobile-header-navigation-link ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.side-menu{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.mobile-menu.open {
	left: 0%;
	transition: var(--common-transition);
}

.menubar.open .topbar {
	transform: rotate(-45deg) translate(-5px, 6px);
	transition: var(--common-transition);
}

.menubar.open .middlebar {
	transform: rotate(45deg) translate(-5px, -6px);
	transition: var(--common-transition);
}

.menubar.open .bottombar {
	width: 0px;
	transition: var(--common-transition);
}
.scroll-lock {
	overflow: hidden;
}
.master-food_wrapper{
	padding-top: 6rem;
}
.testimonial-blog{
	padding: 3rem 2rem;
	background-color: #ffffff;
	border: 1px solid #A4A4A4;
	border-radius: 20px;
}
.testimonial-content p{
	font-family: var(--medium-font-family);
	font-size: var(--paragraph-font-size);
	color: var(--secondary-color);
	text-align: left;
}
.light-grey-color{
	color: #A4A4A4 !important;
}
.ais{
	align-items: flex-start;
}
.profile-img{
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50%;
}
.rating {
  color: #afafaf;
  margin: 0;
  padding: 0;
  font-size: 26px;
}
ul.rating {
  display: inline-block;
}
.rating li {
	color: #afafaf;
  list-style-type: none;
  display: inline-block;
  padding: 1px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.rating .filled {
  color: #ffac33;
}
.listingRates .rating{
    font-size: 20px;
}
.swiper-pagination.testimonial_swiper-pagination{
    position: relative;
    justify-content: center;
    margin-top: 5rem;
    right: 0rem;
}
.swiper-pagination.product_swiper-pagination{
    position: relative;
    justify-content: center;
    margin-top: 5rem;
    right: 0rem;
}
.home_wrapper .swiper-pagination-bullet {
	margin-left: 5px;
}
.home_wrapper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}
.swiper-pagination.article_swiper-pagination{
    position: relative;
    justify-content: center;
    margin-top: 5rem;
    right: 0rem;
}
.header-logo img{
	max-height: 65px;
	object-fit: contain;
}
.template_login_page {
    width: 100%;
    height: auto;
}
.login_s_wrapper {
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.login_main_wrapper_baisi1 {
    flex-basis: 70%;
}
.template_login_left {
    background-color: #ddd;
    height: 100vh;
    width: 100%;
}
.template_login_left img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.login_main_wrapper_baisi2 {
    flex-basis: 30%;
    padding: 4rem;
}
.masterfood_logo_login {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 2rem;
}
.template_login_page .template_login_right_2 .form-line {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
}
label.error {
    position: absolute;
    top: -20px;
    right: 20px;
    color: white;
    background: #f00;
    font-weight: 100;
    padding: 2px 5px;
    border-radius: 5px;
    font-family: inherit;
}
label.error:after {
    content: "";
    display: block;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #ff0000 transparent transparent;
    margin-left: -20px;
    position: absolute;
    bottom: -10px;
    left: 30%;
}
.template_login_page .template_login_right_2 .form-line .icon-label p{
	color: #000;
}
.template_login_page .template_login_right_2 .form-line .icon-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#myMainBody{
	min-height: 100vh;
}
.template_login_page .template_login_right_2 .form-control {
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    padding-left: 90px;
    outline: unset;
    font-size: 16px;
    line-height: 1.42857143;
        border: 1px solid var(--primary-color);
    font-family: var(--regular-font-family);
}
.or_login_text {
    position: relative;
    padding: 20px 0;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.login_btn_main>p{
    color: #fff;
    font-weight: bold;
}
.login_btn_main {
    height: 50px;
    width: 100%;
    box-shadow: none;
    outline: none !important;
    background-color: #000;
    border-radius: 8px;
    border: 0px;
}
.or_login_text p {
    position: relative;
    z-index: 2;
    padding: 0 10px;
    text-align: center;
    background-color: #fff;
    width: max-content;
    margin: 0 auto !important;
    font-size: 16px;
    color: var(--primary-color);
}
.or_login_text:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    top: 50%;
    background-color: #606060;
    content: "";
    z-index: 1;
}
.template_login_page .template_login_mob_left_line {
    height: 25px;
    position: absolute;
    top: 25%;
    left: 70px;
    background-color: #000;
    width: 1px;
}


.template_login_page .template_login_right_2 .template_login_google_bg .form-control::placeholder {
    color: #000 !important;
}

.template_login_page .template_login_right_2 .template_login_facebook_bg .form-control {
    color: #000 !important;
}
.testimonial-swiper-div .swiper-slide{
	padding-bottom: 1px;
}
.template_login_page .template_login_right_2 .template_login_facebook_bg .form-control::placeholder {
    color: #000 !important;
}
.template_login_right_4_content>a:hover{
	color: #000;
}
.template_login_right_4_content>a{
	color: var(--primary-color);
}
.template_login_page .template_login_right_4_content p {
    padding-top: 15px;
    text-align: center;
    color: #000;
    font-weight: bolder;
}
.imageOverlay{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(360deg, rgba(0,0,0,0.9416141456582633) 0%, rgba(255,255,255,0) 30%);
}
.text-left .ratingCenter{
	text-align: left !important;
}
.enter_otp_text p {
    font-size: 18px;
}
/*.template_login_page .template_login_right_2 .form-group {
     width: 75%; 
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 0 0 50px 0;
}*/
.content .input-code {
    margin-top: 20px;
    /* padding: 0 100px; */
    display: flex;
    flex-direction: auto;
    justify-content: space-around;
    align-content: space-between;
}
.some_div_timer_text {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
}
.content .otp-number-input {
    background-color: transparent;
    text-align: center;
    line-height: 1.3;
    font-size: 35px;
    outline: none;
    width: 20%;
    transition: all .2s ease-in-out;
    border-radius: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #484848;
    color: #000;
    background: transparent;
}
.content .otp-number-input:focus {
    border-bottom: 2px solid var(--primary-color);
}

.content .otp-number-input::selection {
    background: transparent;
}
.template_login_page .template_login_right_3_btn {
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    background: var(--primary-color);
    border: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    padding: 15px 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.chef_main_img {
	padding-bottom: 3rem;
	width: 60%;
	margin: 0 auto;
}

.our_chef_main {
	padding: 5.5rem 0 15rem 0;
	text-align: center;
}

.our_chef_main .customer_blog {
	width: 40%;
	margin: 0 auto;
}

.rossi_title p {
	padding: 2rem 0 1rem 0;
	font-size: 40px;
	font-family: var(--regular-font-family);
}

.main_pd_about_pg {
	padding-bottom: 9.5rem;
}

.about_us_container_main {
	width: 85%;
	margin: 0 auto;
}

.about_master_main {
	text-align: center;
}

.about_title_master p {
	font-size: 56px;
	font-family: var(--medium-font-family);
}

.about_title_master span {
	color: var(--primary-color);
}

.about_1_content {
	font-size: 20px;
	font-family: var(--regular-font-family);
	padding-bottom: 1.5rem;
}

.about_2_content {
	font-size: 18px;
	font-family: var(--regular-font-family);
	width: 40%;
	margin: 0 auto;
}

.customer_service_flex {
	display: flex;
	align-items: center;
	gap: 5rem;
}

.customer_service_flex>div {
	flex-basis: 50%;
}

.customer_title p {
	font-size: 32px;
	font-family: var(--regular-font-family);
	background: radial-gradient(circle farthest-side at center center, #D32628 0%, #DB4728 80%, #D32628 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 1.3rem;

}

.customer_blog p {
	font-size: 24px;
	font-family: var(--regular-font-family);
	line-height: 40px;
}



/*shop item listing page start*/
.template_detail_page {
    width: 100%;
    height: auto;
}
.store_search_sticky_mian {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 9999;
    padding: 1rem 1rem;
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out .2s;
    margin:20px 0 0 0;
}
.footer-wrapper .store_search_sticky_mian {
	opacity: 0;
	visibility: hidden;
}
.footer-wrapper .mobileCategoriesTab {
    top: 0px;
    position: fixed;
    transition: all ease-in-out .1s;
    width: 100%;
}
.store_search_main {
    border: 0.5px solid rgb(232, 232, 232);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
}
.search_store_image {
    width: 25px;
    height: 25px;
}
.search_store_content {
    width: 100%;
}
.search_menu_store_btn {
    border: unset;
    width: 100%;
    font-weight: 700;
}
.template_detail_banner {
    width: 100%;
    height: auto;
    background-image: url(../images/thumb.jpg);
    background-size: cover;
    background-position: center bottom;
}
.restaurantDetailsBannerWrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.restaurantDetailsBannerWrapper .swiper-container {
    width: 100%;
    height: 100%;
}
.restaurantDetailsBannerWrapper .bannerImage {
    width: 100%;
    height: 100%;
}
.restaurantDetailsBannerWrapper .bannerImage>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.template_detail_sec1_social_content {
    position: absolute;
    z-index: 99;
    top: 0;
    width: 100%;
    left: 0;
}
.template_detail_sec1 {
    padding: 4rem 0;
}
.template_detail_sec1_bg {
    width: max-content;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 3%;
    margin: 0 0 0 2rem;
}
.thumbRightDetails.fullwidth {
	width: 100%;
	float: left;
}

.information_icon_desktop {
	position: absolute;
	top: -15px;
	right: -15px;
	max-width: 32px;
}

.restaurent_detail_content_wraper {
	position: relative;
}
.template_detail_sec1_content1 {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.template_detail_sec3 {
    width: 100%;
    height: auto;
    padding: 10px 0 15px 0;
    background-color: #fff;
}
.detailsItemsMainWrapper {
    width: 100%;
    min-height: 60vh;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}
.detailsItemCategory.maxheightcategories {
    position: sticky;
    top: 15px;
    margin: 15px 0 0 0;
}
.itemsWrapper {
    flex-basis: 60%;
}
.restaurant_item_csrd_basiss_flex {
    flex-basis: 40%;
}
.template_detail_sec3_left {
    width: 100%;
    height: auto;
    display: inline-flex;
    align-items: center;
}
.template_detail_sec3_left_cont {
    padding-left: 10px;
}
.color_blue {
    color: var(--primary-color);
}
.template_detail_sec3_mob {
    display: none;
}
#sidebarWrap {
    min-height: 50px;
    width: 100%;
    background-color: #fff;
    float: left;
    position: relative;
    box-shadow: none;
    border: none;
    margin: 0;
    margin-top: 25px;
    padding: 15px 16px 15px 20px;
}
#sidebarWrap>a {
    padding: 5px 0;
    width: calc(100% - 25px);
    margin: 0 auto;
    float: none;
    display: block;
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#sidebarWrap>a:hover, #sidebarWrap>a.active {
    color: var(--primary-color);
}
.mobileCategoriesTab {
    display: block;
    overflow: auto;
    background-color: #F5F5F5;
    white-space: nowrap;
    position: sticky;
    top: 60px;
    margin-bottom: 15px;
    z-index: 999;
    max-width: 992px;
}
.mobileCategoriesTab ul {
    margin: 0;
    padding: 0;
    /* overflow: auto; */
}
.mobileCategoriesTab li {
    display: inline-block;
    margin: 0;
    padding: 15px 15px;
    border-bottom: solid 2px transparent;
}
.mobileCategoriesTab li.activeTab {
    border-bottom: solid 1px #1B9F9B;
}
.mobileCategoriesTab li.activeTab a {
    color: #1B9F9B;
}
.mobileCategoriesTab li a {
    color: #AEAEAE;
    font-size: 17px;
    font-weight: 500;
}
.template_detail_sec3_right_tab {
    width: 100%;
    height: auto;
}
.template_detail_page .tabcontent {
    border: 0px solid transparent;
    width: 100%;
    border-left: none;
    height: fit-content;
}
.template_detail_sec3_sign_pizza {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}
.font_20 {
    font-size: 20px;
    line-height: 25px;
}
.color_lightblue {
    color: #7e808c;
}
.template_detail_sec3_line {
    width: 100%;
    margin: 25px 0;
    height: 1px;
    background-color: #EBEDED;
}
.template_detail_sec3_line.dark {
    background-color: #333333;
}
.template_detail_sec3_width45 {
    padding-right: 0;
    padding-left: 0;
}
.itemLink {
    display: block;
    width: 100%;
    margin-bottom: 25px;
}
.template_detail_sec3_width45 .itemLink {
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid #ECECEC;
    min-height: 95px;
    display: flex;
    gap: 1rem;
}
.itemBlockWrapper {
    flex-basis: 80%;
}
.itemBlockWrapper {
    width: 100%;
    position: relative;
    background: #fff;
    overflow: hidden;
}
.noItemPadding {
    padding-left: 0px;
}
.image_basis_qr_mian {
    flex-basis: 20%;
}
.itemBlockContent {
    width: 100%;
}
.itemName {
    margin: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.font_18 {
    font-size: 18px;
    line-height: 24px;
}
.itemPrice {
    margin: 8px 0 8px 0;
}
.font_14 {
    font-size: 14px;
    line-height: 18px;
}
.itemBlockContent>h3.itemDescription {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    line-height: 1.6;
    min-height: 4rem;
    font-weight: normal;
}
.hidden, .visible-lg, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
    display: none !important;
}
.itemImage_Wrap_details>img {
    border: 1px solid #eaeaea;
    border-radius: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.add_to_cart_sidebar span{
	color: var(--primary-color);
}
.add_to_cart_sidebar {
    border: 1px solid var(--primary-color);
    padding: 6px !important;
    text-align: center;
    border-radius: 7px;
    color: var(--primary-color);
    cursor: pointer;
    background: rgb(2 30 77 / 9%);
    position: relative;
    z-index: 99;
}
.main_container_web_page {
    width: 1280px;
    margin: 0 auto;
}
.itemImage_Wrap_details {
    width: 100%;
    height: 100px;
    border-radius: 7px;
    object-fit: cover;
    /* margin-bottom: -10px; */
}
.wrapper_hidden {
	opacity: 0;
	transition: all ease-in-out 0.3s;
}
.wrapper_hidden.visible {
	opacity: 1;
}
.restaurantMenuOverLay.active {
	opacity: 1;
	visibility: visible;
}

.restaurantMenuOverLay {
	background: rgba(0, 0, 0, 0.5);
	height: 100vh;
	width: 100vw;
	position: fixed;
	overflow: hidden;
	z-index: 9999999;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all ease-in-out 0.3s;
}

.mobileMenuRestaurantConetent>ul>li>a {
	color: #fff;
}

.mobileMenuRestaurantTitle,
.mobileMenuRestaurantConetent {
	padding: 15px;
}

.mobileMenuRestaurantConetent {
	max-height: 250px;
	overflow-y: auto;
	border-top: 1px solid #fff;

}

.mobileMenuRestaurantWrapper {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	background-color: #000;
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	border-radius: 5px;
	transform: translateX(-50%);
	transition: all ease-in-out 0.3s;
}

.mobileMenuRestaurantWrapper.active {
	width: 320px;
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%);
}

.restaurantMenuFloating {
	position: fixed;
	bottom: 100px;
	left: 50%;
	z-index: 99999999;
	transform: translateX(-50%);
}

.restaurantMenuFloating>a .menuImage {
	width: 20px;
}

.restaurantMenuFloating>a {
	background-color: #000;
	border-radius: 5px;
	padding: 8px 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}

.bottom_buzz_sticky_main {
	position: fixed;
	bottom: 75px;
	right: 10px;
	width: max-content;
	padding: 1rem;
	z-index: 999;
}

.buzz_main_calls_flex {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.buzz_main_calls_basis_image img {
	width: 25px;
	height: 25px;
}

.tableCheckoutButtonsWrapper_buzz_main {
	border-radius: 200px;
	padding: 1rem 2rem;
	align-items: center;
	justify-content: center;
}


.add_to_cart_sidebar_relative {
	position: relative;
	transform: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}




.ratingPopupWrapper {
	padding: 15px;
}

.ratingPopupWrapper .tableCheckoutButtonsWrapper {
	justify-content: flex-start;
	gap: 10px;
}

.main_font_ingre {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}

.myTooltip {
	position: absolute;
	bottom: 0px;
	right: 0;
}

.myTooltip .tooltip {
	position: relative;
	display: inline-block;
	opacity: 1;
	background: var(--primary-color);
	color: #fff;
	padding: 3px 5px;
	font-family: inherit;
	border-radius: 3px;
	line-height: 1;
}

.myTooltip .tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: #fff;
	color: #7e808c;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 0.3s;
	-webkit-box-shadow: 0px 0px 6px -2px #000;
	box-shadow: 0px 0px 6px -2px #000;
}

.myTooltip .tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
}

.myTooltip .tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.noItemPadding {
	padding-left: 0px;
}

.label-offer {
	border: solid 1px var(--primary-color);
	color: var(--primary-color);
	border-radius: 30px;
	display: inline-block;
	margin: 0 3px;
}

.label-offer small {
	font-size: 11px;
	font-weight: bold;
	line-height: 20px;
}

.badge_ten_main_change {
	padding-top: 1rem;
}
.add_to_cart_sidebar_disabled span{
	color: #ccc;
}
.add_to_cart_sidebar_disabled {
    border: 1px solid #ccc;
    padding: 6px;
    border-radius: 6px;
    color: #ccc;
    cursor: pointer;
    position: relative;
    z-index: 99;
    text-align: center;
}
.bold{
	font-weight: bolder;
}
.color_blue2 {
    color: #0d0e0e;
}
.template_detail_sec4_cart {
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}
.template_sec_4_flex_mian_cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.template_detail_sec4_cart_heading {
    background-color: var(--primary-color);
    padding: 15px 15px;
}
.color_white ,.color_white>span, .color_white i{
    color: #fff !important;
}
.tableCheckoutFormWrapper_web_verion {
    display: block !important;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1rem;
}
.you_order_content {
    padding: 10px 15px;
}
.main_restaurant_wrapper_card {
    padding: 10px 15px;
}
.restaurantCartWrapper {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
}
.restaurantCartBlock {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding: 5px 0;
}
.pd_20_15 {
    padding: 15px 0;
}
.cart_res_content img{
	width: 24px;
	display: inline-block;
}
.restaurantCartBlock:last-child {
    border-bottom: unset;
}
.cartItemsVariationWrapper {
    width: 100%;
    position: relative;
    /* margin: 10px 0 20px 0; */
}
.restaurantCartQuantityRelative>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.add_to_cart_updatate_bar .restaurantCartQuantityRelative>ul>li {
    width: 24px;
}
.restaurantCartQuantityRelative>ul>li {
    text-align: center;
}
.restaurantCartQuantityRelative>ul>li.inputCart {
    width: 27px;
    padding: 0;
    margin: 0;
}
.add_to_cart_updatate_bar .restaurantCartQuantityRelative>ul>li p ,.add_to_cart_updatate_bar .restaurantCartQuantityRelative>ul>li p  i{
    color: var(--primary-color);
}
.restaurantCartQuantityRelative>ul>li.inputCart input {
    width: 100%;
    border: 0;
    height: 100%;
    background: transparent;
    color: #fff;
}
.add_to_cart_updatate_bar .restaurantCartQuantity {
    border-radius: 7px;
    background: #fcecec;
    border: 1px solid var(--primary-color);
    padding: 6px 2px;
    width: 100%;
}
.restaurantCartQuantityRelative>ul>li i {
    font-size: 10px;
}
.add_to_cart_updatate_bar .restaurantCartQuantityRelative>ul>li.inputCart input {
    color: var(--primary-color);
    background: #fcecec;
}
.sidebar_main_web_view_design {
	background-color: #fff;
}

.sidebar_main_web_view_design .tableCheckoutFormWrapper_web_verion {
	border: unset;
}

.main_cart_mian_position {
	display: block;
	width: max-content;
	margin: 0 auto;
}

.footer_images-generator {
	display: block !important;
}

.footer_images-generator_active {
	display: none !important;
}

.toggle_active_tab.active .footer_images-generator {
	display: none !important;
}

.toggle_active_tab.active .footer_images-generator_active {
	display: block !important;
}

.footer_content_clamp {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cart_position_maintain {
	position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cart_maintain_circle {
	padding: 3px 3px 4px 4px;
}

.cart_maintain_circle p {
	line-height: 0.8;
	font-size: 12px;
    font-weight: bold;
    color: var(--primary-color);
}


.tableCheckoutButtonsWrapper .add_to_cart_sidebar {
    color: #ffffff;
    background: unset;
    border: unset;
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    display: block;
    width: unset;
    white-space: nowrap;
    transform: translate(0px, 0px);
}



.footer_wrapper_checkout {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: calc(100% - 4rem);
	margin: 0 auto;
}

.footer_wrapper_checkout li {
	flex-basis: 25%;
}

.footer_wrapper_checkout li .footer_images-generator,
.footer_wrapper_checkout li .footer_images-generator_active {
	border-radius: 0px;
	width: 22px;
	height: 22px;
	object-fit: contain;
	margin: 0 auto;
}

.footer_wrapper_checkout li .footer_images-generator:first-child() {
	width: auto;
}

.footer_wrapper_checkout li .footer_content_main {
	font-size: 12px;
	text-align: center;
	padding: 3px 0 0 0;
	color: #000;
}

.footer_wrapper_checkout li.active .footer_content_main {
	color: var(--primary-color);
}


.sidebarItemDetails {
    width: 360px;
    position: fixed;
    height: 100vh;
    /* background: #e2e2e2; */
    right: -360px;
    top: 0;
    z-index: 99999999;
    transition: all ease-in-out 0.3s;
}
.sidebarItemDetails.open {
    right: 0px;
}
.sidebarOverlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.2s;
}
.sidebarOverlay.open {
    visibility: visible;
    opacity: 1;
}
.sidebarInnerWrapper {
    position: relative;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
}
.itemDetailsDescritption {
    padding: 10px 0 0 0;
    float: left;
    width: 100%;
}
.sidebarTitleWrap {
    width: 100%;
    padding: 10px 50px 10px 15px;
    position: relative;
    /* float: left; */
    background: #fff;
    border-bottom: 1px solid #a5a5a5;
}
.sidebarContentWrapper {
    width: 100%;
    height: calc(100vh - 130px);
    top: 45px;
}
.sidebarContentInner {
    height: 100%;
    width: 100%;
    float: left;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 15px 20px 15px;
}
.sidebarDivider {
    margin: 15px 0;
    width: calc(100% - 0px);
    border-bottom: 1px solid #ddd;
}
.optionTitle {
    margin: 0 0 10px 0;
}
.green ,.green>span{
    color: #0baea9;
}
.optional_selection {
    background: #e1e1e1;
    color: #737373;
    display: inline-block;
    padding: 3px 10px 2px 10px;
    border-radius: 7px;
    float: right;
    font-size: 12px;
}
.foodCheckBox label {
    position: relative;
    z-index: 9;
    width: 100%;
    cursor: pointer;
}
.foodCheckBox [type="checkbox"]:not(:checked), .foodCheckBox [type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.foodCheckBox [type="checkbox"]+span:not(.lever) {
    position: relative;
    width: 100%;
    cursor: pointer;
    z-index: -1;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.foodCheckBox [type="checkbox"]+span:not(.lever):before, .foodCheckBox [type="checkbox"]:not(.filled-in)+span:not(.lever):after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #5a5a5a;
    border-radius: 1px;
    margin-top: 3px;
}
.foodCheckBox [type="checkbox"]:checked+span:not(.lever):before {
    top: 2px;
    right: 10px;
    width: 6px;
    height: 12px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    z-index: 999;
}
.foodCheckBox [type="checkbox"]:checked+span:not(.lever):after {
    background: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
}
.itemDetailsComment label {
    display: block;
    float: left;
    width: 100%;
}
.pull-right {
    float: right !important;
}
.itemDetailsComment textarea {
    width: 100%;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-family: var(--regular-font-family);
}
.sideBarTotalWrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    padding: 10px 20px;
    z-index: 999999;
}
.green_bg {
    background: #0CB813 !important;
}
.sideBarTotalInner {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    padding: 0 35px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.white,.white>span,.white>a>span{
    color: #fff;
}
.main_restaurant_wrapper_quantity {
    background: var(--primary-color);
    width: 75px;
    padding: 0.3rem;
    border-radius: 5px;
}
.restaurantCartQuantityRelative>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.main_restaurant_wrapper_quantity .restaurantCartQuantityRelative>ul>li {
    width: 20px !important;
    text-align: center;
}
.restaurantCartQuantityRelative>ul>li>a.minusBtn {
    color: var(--primary-color);
}
.restaurantCartQuantityRelative>ul>li.buttonCart>a {
    vertical-align: middle;
    width: 100%;
    float: left;
}
.main_restaurant_wrapper_quantity .restaurantCartQuantityRelative>ul>li i {
    color: #ffffff !important;
}
.main_restaurant_wrapper_quantity .restaurantCartQuantityRelative>ul>li.inputCart {
    width: 27px !important;
    padding: 0;
    margin: 0;
}
.name_of_restarant_details {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}
.card_bloxck_flex_need {
    display: flex;
    padding: 0.5rem 0 0 0;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}
.template_detail_sec4_cart_item {
    width: 100%;
    /*padding: 20px 15px;*/
    border-top: 1px solid #ddd;
}
.template_detail_sec4_cart_2_main {
    width: 100%;
    height: auto;
    position: relative;
    padding: 20px 15px;
}
.cart_items_flex_complete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.font_12 {
    font-size: 12px;
    line-height: 16px;
}
.color_blue2 {
    color: #0d0e0e;
}
.cartBlockPriceRecommanded, .suggestedItems .cart_item_image_product, .suggestedItems .itemBlockWrapper, .suggestedItems .itemBlockContent>h3.itemDescription, .suggestedItems .cartBlockPrice, .suggestedItems .cartItemsVariationWrapper {
    display: none;
}
.pd_top_19 {
    margin-top: 2rem;
}
.template_detail_page .template_home_create_btn {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-color);
}
.template_home_create_btn {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin: 0 auto;
}
.template_detail_page .template_home_create_btn p {
    padding-right: 12%;
    white-space: nowrap;
}
.font_15 {
    font-size: 15px;
    line-height: 20px;
}
.template_home_create_btn p::after {
    position: absolute;
    content: "";
    height: 5px;
    background-image: url(../images/arrow.png);
    width: 27px;
    margin-left: 15px;
    top: 48%;
}
.font_25 {
    font-size: 25px;
    line-height: 30px;
}
.otherpages_padding{
	padding-top: 8rem;
}
.webCheckoutWrapper{
	display: flex;
	justify-content: space-between;
	gap:15px;
	margin: 20px 0 0 0;
}
.leftSideWrapper{
	border:solid 1px #CCCCCC;
	border-bottom: 0;
	border-radius: 5px;
	width: 70%;
	height: max-content;
}
.addressTypeWrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding:5px 15px;
	border-bottom: 1px solid #ccc;

}
.rightSideWrapper{
	width: calc(30%);
	border: 1px solid #ccc;
	border-radius: 5px;
}
.takeAwayDelivery{
	width: 120px;
}
.rightSideWrapper .template_detail_sec4_cart_2_main,
.rightSideWrapper .you_order_content{
	display: none;
}
.light_gary{
	color: #959595;
}
.rightSideWrapper .grand_total_pd {
	margin-top: 0;
}
.rightSideWrapper .template_detail_sec4_cart_item{
	padding: 0;
}
.font_17 {
    font-size: 17px;
    line-height: 22px;
}
.blue {
    color: var(--primary-color);
}
.webCheckoutWrapper {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0 0 0;
}
.leftSideWrapper {
    border: solid 1px #CCCCCC;
    border-bottom: 0;
    border-radius: 5px;
    width: 70%;
    height: max-content;
}
.addressTypeWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 15px;
    border-bottom: 1px solid #ccc;
}
.takeAwayDelivery {
    width: 120px;
}
.paymentMethodWrapper {
    display: block;
    width: 100%;
    position: relative;
}
[role=button] {
    cursor: pointer;
}
.selectPaymentTitle>p {
    padding: 10px 15px;
    cursor: pointer;
}
.checkoutPaymentOptions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: solid 1px #ccc;
    border-radius: 5px;
    background: #fff;
    z-index: 99999;
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
}
.checkoutPaymentOptions>p {
    width: 100%;
    padding: 5px 15px;
    border-bottom: 1px solid #ccc;
}
.checout_content_flex_address {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.delivery_lebel_address:first-child {
    margin: 0 0 0 0;
}
.delivery_lebel_address {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}
.selectArrow {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease-in-out 0.3s;
}
.selectArrow.open {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -moz-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    -o-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.checkoutPaymentOptions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: solid 1px #ccc;
    border-radius: 5px;
    background: #fff;
    z-index: 99999;
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
}
.checkoutPaymentOptions.open {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.text-capitalize {
    text-transform: capitalize;
}
.add_NewAddressButton {
    padding: 1rem;
    background-color: var(--primary-color);
}
.white_main_color {
    color: #fff;
}
.restaurantNote {
    padding: 1rem;
    width: 100%;
    border-top: 1px dotted #ccc;
    margin: 0;
}
.restaurant_request {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.restaurant_request h2 {
    margin: 0 !important;
    border: 0;
}
.restaurant_request a {
    color: var(--primary-color);
}
.restaurantInstructionContent {
    width: 100%;
    max-height: 0px;
    overflow: hidden;
}
.restaurantInstructionContent.open {
    margin: 2rem 0 0 0;
    max-height: unset;
}
.restaurantInstructionContent textarea {
    border: 0;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding: 5px 0px;
    width: 100%;
    resize: none;
}
.tip_content_main_template {
    background: #fff;
    padding: 1rem;
    border: 1px solid #fff;
    border-radius: 10px;
}
.checkout_label_input input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
}
.checkout_label_input label {
    border: 1px solid #7a7a7a;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
}
.rightSideWrapper .checkout_label_input label {
    border-radius: 3px;
    padding: 5px;
}
.tip_input_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0;
}
.rightSideWrapper .tip_input_section {
    gap: 10px;
    padding: 15px 0;
}
.tip_input_section .active_tip {
    border: 1px solid var(--primary-color) !important;
    background: rgb(2 30 77 / 9%);
}
.inputAddress_tip {
    resize: none;
    width: calc(100% - 2rem);
    padding: 6px 10px;
    line-height: 1.5;
    border: solid 1px #ccc;
    border-radius: 5px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}
input[type=number] {
    -moz-appearance: textfield;
}
.width_100{
	width: 100%;
}
.font_16 {
    font-size: 16px;
}
.bill_summary_main_div {
    background: #fff;
    padding: 1rem;
    border: 1px solid #fff;
    border-radius: 10px;
}
.template_detail_sec4_cart_flex_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 0.5rem;
}
.grey_shade {
    color: #454545;
}
.template_detail_sec4_cart_flex_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 0.5rem;
}
.rightSideWrapper .grand_total_pd {
    margin-top: 0;
}

.bottom_sticky_bar_mg {
    margin: 10px 0;
}
.rightSideWrapper .tableCheckoutButtonsWrapper {
    padding: 16px 10px;
    border-radius: 4px;
    height: unset;
    width: calc(100% - 2rem);
    margin: 0 auto;
}
.tableCheckoutButtonsWrapper {
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    background: #0cb816;
    border-radius: 10px;
    height: 5rem;
}
.addressFormBlockWrapper {
    width: 100%;
    margin: 10px 0;
}
.restaurantNote h2 {
    border-bottom: 1px solid #d5d5d5;
    width: max-content;
    margin: 0 auto !important;
}
.addressFormBlockWrapper .inputAddress {
    resize: none;
    width: 100%;
    padding: 6px 10px;
    line-height: 1.5;
    height: 50px;
    border: solid 1px #F6F6F6;
    background: #F6F6F6;
    border-radius: 5px;
    font-family: var(--regular-font-family);
    font-weight: 500;
}
.checkoutButton {
    border: transparent;
    background-color: transparent;
}
.border_otp_main_sec {
    padding: 20px 15px;
}
.checkoutButton i{
	color: #fff;
}
.font_22 {
    font-size: 22px;
    line-height: 27px;
}
.browse_restaurants_btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 15px;
}
.browse_restaurants_btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.map_contact_details iframe {
	width: 100%;
}
.map_contact_details {
    padding-bottom: 4rem;
}
.template_contact_left_container {
    width: 75%;
    margin: 0 auto;
}
.contact_basis_1:first-child {
    flex-basis: 40%;
}
.contact_basis_1:last-child {
    flex-basis: 60%;
}
.contact_pd_40 {
    padding-bottom: 40px;
}
.font_30 {
    font-size: 30px;
    line-height: 35px;
}
.contact_main_flex {
    display: flex;
    align-items: self-start;
    gap: 10rem;
    justify-content: space-between;
    box-shadow: 0px 0px 5px -1px #c1c1c1;
    padding: 4rem;
    border-radius: 10px;
}
.template_address_map_loc a {
    display: flex;
    align-items: self-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
}
.location_icon{
	width: 25px;
	margin: unset;
}
.font_50 {
    font-size: 50px;
    line-height: 1.3;
}
.form_group_wrapper img {
    position: absolute;
    top: 12px;
    left: 0;
    width: auto;
}
.message_form_wrapper img {
	position: absolute;
	top: 8px;
	left: 0;
	width: auto;
}
.aboutTitle {
    margin-bottom: 40px;
}
.contact_form .contact_form_flex {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "one two""three four""five five";
	gap: 2rem;
}
.contact_form .contact_form_flex>div:nth-child(1) {
	grid-area: one;
}

.contact_form .contact_form_flex>div:nth-child(2) {
	grid-area: two;
}

.contact_form .contact_form_flex>div:nth-child(3) {
	grid-area: three;
}


.contact_form .contact_form_flex>div:nth-child(4) {
	grid-area: four;
}

.contact_form .contact_form_flex>div:nth-child(5) {
	grid-area: five;
}
.home_btn_wrapper {
	margin: 0 auto;
	width: max-content;
	padding-top: 4rem;
}

.home_btn_wrapper .home_btn {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	padding: 1rem 2rem;
}

.home_btn_wrapper .home_btn p {
	color: #fff;
}
.contact_form .form_group_wrapper input, .contact_form .form_group_wrapper textarea {
    resize: none;
    width: 100%;
    padding: 6px 10px 6px 40px;
    line-height: 1.5;
    height: 50px;
    border: navajowhite;
    border-bottom: solid 1px #141313;
    border-radius: inherit;
    font-weight: 500;
    box-shadow: none;
}
.template_contact_page {
	padding-bottom: 75px;
}
.foodRadioButton [type="radio"]:not(:checked)+span, .foodRadioButton [type="radio"]:checked+span {
    padding-right: 1rem;
    position: relative;
    width: 100%;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    -webkit-transition: .28s ease;
    transition: .28s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
}
.foodRadioButton [type="radio"]+span:before, .foodRadioButton [type="radio"]+span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
}
.foodRadioButton [type="radio"]:not(:checked)+span:before, .foodRadioButton [type="radio"]:not(:checked)+span:after {
    border: 2px solid #5a5a5a;
    border-radius: 50%;
}
.foodRadioButton [type="radio"]:not(:checked)+span:before, .foodRadioButton [type="radio"]:not(:checked)+span:after, .foodRadioButton [type="radio"]:checked+span:before, .foodRadioButton [type="radio"]:checked+span:after {
    border-radius: 50%;
}
.foodRadioButton [type="radio"]:checked+span:before {
    border: 2px solid #5a5a5a;
}
.foodRadioButton [type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:after {
    background-color: var(--primary-color);
    width: 8px;
    height: 8px;
    right: 4px;
    top: 4px;
}
.sidebarContentInner::-webkit-scrollbar {
    width: 5px;
}

.sidebarContentInner::-webkit-scrollbar-track {
    background: #fff;
}

.sidebarContentInner::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

.sidebarContentInner::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}
.optionTitle {
    margin: 0 0 10px 0;
}
.foodRadioButton label {
    position: relative;
    z-index: 2;
    width: 100%;
    cursor: pointer;
}
.foodRadioButton [type="radio"]:not(:checked), .foodRadioButton [type="radio"]:checked {
    position: absolute;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 9999;
}
.mandatory_selection {
	border: 1px solid var(--primary-color);
    background: #FCF3EC;
    color: var(--primary-color);
    display: inline-block;
    padding: 3px 10px 2px 10px;
    border-radius: 7px;
    float: right;
    font-size: 12px;
    background: #fcecec;
}
.bottom_sticky_footer_wrapper_main {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #ffffff;
    padding: 0;
    z-index: 9999;
    box-shadow: 0px 0px 5px -1px #ccc;
    max-width: 992px;
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out .3s;
}
.footer-wrapper .bottom_sticky_footer_wrapper_main {
    opacity: 0;
    visibility: hidden;
}
.poweredby>a:hover,.poweredby>a:active {
	color: var(--primary-color);
}


.footer_wrapper_checkout {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: calc(100% - 4rem);
    margin: 0 auto;
}
.footer_wrapper_checkout li {
    flex-basis: 25%;
}
/*shop item listing page end*/

.table_check_mian_wrapper .tabele_square_main_pd_mian_check {
    border: 1px solid #ededed;
}

.ratingCenter {
    text-align: left !important;
}

.testimonial_body_label_mian label {
    font-size: 16px;
    font-weight: 400;
}

.rating {
    color: #a9a9a9;
    margin: 0;
    padding: 0;
}

ul.rating {
    display: inline-block;
}

.rating li {
    list-style-type: none;
    display: inline-block;
    padding: 1px 7px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-size: 30px;
}

.rating .filled {
    color: #F3C117;
}

.rating li:first-child {
    padding-left: 0;
}


.main_testimonial_cress_pic {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
    background-color: #fff;
}

.close_testimonial_image {
    width: 15px;
    height: 20px;
}

.add_testimonial_details {
    padding: 1rem;
    border-radius: 10px;
    overflow: auto;
    height: calc(100% - 7rem);
}

.testimonial_body_label_mian {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.testimonial_fields_submit.active_testimonial {
    bottom: 0;
    right: initial;
}

.testimonial_fields_submit {
    height: 100%;
    width: 520px;
    right: -520px;
    bottom: 0;
    top: initial;
    z-index: 999999999;
    transition: all ease-in-out 0.3s;
    position: fixed;
    background-color: #F8F8F8;
    max-width: 992px;
}

.submitButton {
    background: #D83128;
    margin-top: 1rem;
    height: 45px;
    display: block;
    width: 100%;
}
.testimonial_fields_submit.active_testimonial {
    bottom: 0;
    right: 0;
}

.signaturePrev {
    width: 110px;
    /*height: 100px;*/
    position: relative;
    padding: 5px;
}

.signaturePrev img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.signaturePrev .uploadtestimonialLabel {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.signaturePrev input.upload {
    position: absolute;
    top: 20px;
    right: 0;
    margin: 0;
    padding: 25px 0 0 0;
    font-size: 20px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    opacity: 0;
}


.testimonial_body_button {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    left: 0;
    background-color: #fff;
}

.tabele_square_overflow_auto {
    overflow: auto;
    height: 100%;
}

.tabele_square_main_pd_mian_check {
    width: 100%;
    padding: 2rem 1rem;
    height: calc(100% - 60px);
    position: relative;
    background: #fff;
    border-radius: 10px;
}

.testimonial_fields_submit .tableCheckoutFormWrapper {
    height: 100%;
}
.customer_reveiew_testi_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer_edit_pop_up {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer_edit_image_pop {
    width: 15px;
    height: 25px;
}

.customer_edit_content_pop p {
    font-size: 12px;
    color: #FF7E8B;
}

.photo_ad_padding {
    padding-top: 30px;
}



.testimonial_repeat_content {
    flex-basis: calc(33.33% - 1.5rem);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}



.customer_review_main_flex {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 1rem;
}

.profile_main_flex {
    display: flex;
    gap: 1.5rem;
}

.profile_customer_image img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.customer_review_description p {
    margin: 1rem 0 0 0 !important;
    border-top: 2px solid #ddd;
    font-size: 14px;
    padding: 1rem 1rem;
}

.testimonial_main_bd {
    padding: 0 0 3rem 0;
    display: flex;
    gap: 2rem;
    flex-flow: row wrap;
}

.customer_border_pd {
    padding: 3rem 0;
}
.prifile_s_3_wrapper_pro .prifile_s_3_wrapper:last-child {
    padding: 0;
}
.border_rating p {
    color: #fff;
    border: 1px solid green;
    background: green;
    width: max-content;
    font-size: 10px;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
}
.border_rating i{
	color: #fff;
}

.offer_title {
    padding-bottom: 2rem;
}

.profile_customer_name p {
    font-size: 16px;
    font-weight: 500;
}
.template_home_sec1_main {
    width: 100%;
    height: auto;
}
.login_account_wrapper {
    padding: 20px 15px 15px 15px;
    margin: 40px 0;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px -1px #c1c1c1;
    box-shadow: 0px 0px 5px -1px #c1c1c1;
}
.center_3 {
    display: flex;
    align-items: center;
}
.color_black {
    color: #000;
}
.font_19 {
    font-size: 19px;
    line-height: 24px;
}
.ml_auto {
    margin-left: auto;
}
.profile_left_s_2_img img {
    width: 200px;
    height: 200px;
    max-width: 80px;
    max-height: 80px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    border-radius: 100%;
}
.profile_s_2_options_ul {
    margin: 15px 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}
.profile_s_2_options_li {
    width: calc(100% / 3);
}
.profile_s_2_options_li_in_img {
    width: 20px;
    height: 20px;
    margin: 0 auto 10px auto;
}
.profile_s_2_options_li_in_img img {
    object-fit: contain;
}
.prifile_s_3_wrapper {
    padding: 0 0 15px 0;
}
.profile_s_title {
    padding: 0 0 10px 0;
}
.color_gray_impo {
    color: #666666 !important;
}
.profile_s_title p, .profile_s_title a {
    font-size: 18px;
}
.profile_s_3_ul {
    padding: 0 10px;
}
.profile_s_3_li {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #f7f7f7;
}
.profile_s_3_li_img img {
    width: 200px;
    height: 200px;
    max-width: 20px;
    max-height: 20px;
    margin: 0 15px 0 0;
}
.profile_s_3_li_p p {
    font-size: 16px;
    line-height: 16px;
}
.otp_input_wrapper {
	margin: 0 auto;
    margin-bottom: 20px;
    padding: 0 0 50px 0;
}
.content .otp-number-input:focus {
    border-bottom: 2px solid var(--primary-color);
}
/* Chrome, Safari, Edge, Opera */
.otp-number-input::-webkit-outer-spin-button,
.otp-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.otp-number-input[type=number] {
  -moz-appearance: textfield;
}
.otp-number-input::selection {
    background: transparent;
}

.template_listing_banner {
    width: 100%;
    height: 30vh;
    background-image: url(../images/9.jpg);
    background-size: cover;
    background-position: center bottom;
}
.template_listing_sec1_mob {
    display: none;
}
.template_listing_sec1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form-control, output {
    font-size: 17px;
    line-height: 1.42857143;
    color: #555;
    display: block;
}
.form_control_rofile {
    height: 40px;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 13px;
}
.profile_main_controller {
    width: 70%;
    margin: 0 auto;
}
.image-upload {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pro_edit_img {
    width: 110px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
}
.image-upload>input {
    display: none;
}
.oder_list_btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 7px 10px;
    border: 1px solid var(--primary-color);
}

.address_main_page_flex {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
}

.address_main_page_flex>div {
    flex-basis: calc(50% - 1rem);
}
.checkedAddress {
    margin: 15px 0;
    flex-basis: calc(100% / 3);
    position: relative;
    cursor: pointer;
    /* float: left; */
}
.checkedAddress input {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkedAddress span {
    background: rgba(11, 174, 169, 0.48);
    border-radius: 15px;
    line-height: 1.8;
    color: #fff;
    margin: 0 5px 0 0;
    padding: 5px 15px;
    float: left;
    transition: all ease-in-out 0.3s;
}
.checkedAddress span {
    color: black;
}
.checkedAddressInner.active span {
    color: #0baea9 !important;
}
.checkedAddress input:checked~span, .checkedAddress:hover span, .checkedAddress span {
    background-color: #fff !important;
}
.checkedAddress input:checked~span, .checkedAddress:hover span {
    background: #0baea9;
}
.checkedAddressInner .addressTypeIcon>img{
	transition: unset;
}
.checkedAddressInner .addressTypeIcon {
    width: 17px;
    float: left;
    margin: 0px 6px 0 0;
}
.check_Address_flex_main {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.sidebarInnerWrapper_addresses .sidebarItemDetails {
    max-height: 100%;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    max-height: unset;
    height: unset;
}
.sidebarInnerWrapper_addresses .addressSideBarWrapper {
    position: initial;
    padding-top: 80px;
}
.sidebarInnerWrapper_addresses .font_20 {
    font-size: 20px;
    padding-top: 10px;
    color: #000;
}
.sidebarInnerWrapper_addresses .gray_font {
    color: #ACACAC;
    padding: 15px 0 0 0;
}
.sidebarInnerWrapper_addresses .saved_add_title {
    background: #fff;
    padding: 15px 15px 0 15px;
}
.sidebarContentWrapper {
    width: 100%;
    height: calc(100vh - 130px);
    top: 45px;
}
.sidebarInnerWrapper_addresses .sideBarOptions .form-group {
	padding: 15px 0px;
	margin-bottom: 0;
}
.singleAddressDisplayBlock {
	position: relative;
	width: 100%;
	float: left;
	padding: 0 0 0 35px;
}
.sidebarContentWrapper.manage_addresses_wrap {
    margin-bottom: 50px;
    min-height: 50vh;
    max-height: unset;
    background: #fff;
    height: unset;
}
.iconAddressWrapper {
	position: absolute;
	top: 0px;
	left: 0;
	width: 17px;
	height: 17px;
}
.iconAddressWrapper>img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.editDeleteAddress {
	margin: 10px 0 0 0;
	float: left;
	width: 100%;
}
.sidebarInnerWrapper_addresses .list-inline>li {
	display: inline-block;
	padding-right: 0;
	padding-left: 0;
	background-color: transparent;
	border-radius: 0px;
	margin: 0 10px 0 0;
}
.sidebarInnerWrapper_addresses .address_list_mo_wraper {
	height: unset;
	min-height: 34vh;
}

.sidebarContentWrapper.manage_addresses_wrap {
	margin-bottom: 50px;
	min-height: 50vh;
	max-height: unset;
	height: unset;
}

.sidebarInnerWrapper_addresses .sidebarItemDetails {
	max-height: unset;
	height: unset;
}

.sidebarInnerWrapper {
	box-shadow: 0px 0px 5px -1px #c1c1c1;
	margin: 40px 0;
	border-radius: 10px;
	padding: 20px 15px 15px 15px;
}

.sidebarInnerWrapper_addresses .submitButton {
    background: var(--primary-color);
    padding: 15px 20px;
    width: 100%;
    font-size: 16px;
}
.sidebarItemDetails .submitButton {
    margin-top: 5rem;
}
.addressFormBlockWrapper {
    position: relative;
}
.default_main_flex_texture {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    padding: 2rem;
}
.listing_wraper_past_order {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    margin: 20px 15px;
    padding: 20px;
}
.btn_wraper {
    display: inline-block;
    width: 100%;
    padding: 20px 0 0px 0;
}
.restaurant_list_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.line_clamp_1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.border_light {
    border-bottom: 1px solid #e8e8e8;
    margin: 13px 0;
}
.item_image_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.order_listing_wraper h2 {
    font-weight: normal;
    opacity: 0.7;
}
.order_listing_wraper p {
    padding-bottom: 15px;
}
.placed {
    color: #fff;
    background: var(--primary-color);
    padding: 3px 10px;
    border-radius: 5px;
}
.oder_list_btn.green {
    color: #fff;
    background: #599943;
    border: 1px solid #599943;
}
.order_detail_flex_main {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
}
.listing_wraper_past_order_detail {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    margin-top: 20px;
    padding: 20px;
}
.order_detail_bsis_1 {
    flex-basis: 70%;
}
.item_list_wrap {
    padding-bottom: 10px;
}
.order_detail_bsis_2 {
    flex-basis: 30%;
}
.float_right {
    float: right;
}
.float_left {
    float: left;
}
.order_number_detail_flex {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
.order_detail_btn_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.total_detail_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.order_number_basis_1 {
    flex-basis: 50%;
}
.order_number_basis_2 {
    flex-basis: 50%;
}
.well-sm {
    padding: 9px;
    border-radius: 3px;
}
#post-review-box {
    padding: 0 5px;
}
.rating_wraper {
    display: none;
}

.rating_wraper.open {
    display: block;
}
.layout-row {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.layout, .layout-column, .layout-row {
    box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.jk_rating_wraper{
	margin-top: 2rem;
}
.jk_rating_wraper .jk-rating-stars-container a:first-child {
    display: none;
}

.jk_rating_wraper .jk-rating-stars-container .star-button.star-on .material-icons {
    color: #f5bf1f;
}

.jk_rating_wraper .jk-rating-stars-container .star-button {
    text-shadow: none;
}


.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.sidebarItemDetails .sidebarInnerWrapper{
	margin-top: 0;
	border-radius: 0;
    padding: 0;
}
.noAddressFound>img {
    width: 50px;
    margin: 0 auto 20px auto;
}
.search-bar input, .addressBoxMain{
	white-space: nowrap;
	overflow: hidden;
}
.checkout_otp_btn {
    border: 1px solid #D83128;
    background: #D83128;
    margin: 2rem 0 0 0;
    padding: 1rem 1.5rem;
    width: 100%;
}
.sidebarInnerWrapper.border_otp_main_sec  .fa-spinner{
	color: #fff;
}
.sidebarInnerWrapper.border_otp_main_sec {
    padding: 20px 15px;
}

.search_menu_store_btn{
    border: 1px solid transparent;
    outline: none;
    font-family: var(--regular-font-family);
    font-size: var(--content-font-size);
    color: var(--secondary-color);
}
.tableOrderPopup .detailsItemCheckout {
    position: relative;
    display: block;
    width: 100%;
}
.addressFormBlockWrapper>div{
	margin-bottom: 15px;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.pagination>li>a, .pagination>li>span {
    color: var(--primary-color);
}
.green-color-btn{
    background-color: #0cb816 !important;
}
.template_home_create_btn_main .template_home_create_btn{
	background: #0cb816;
}
body.compensate-for-scrollbar{
	overflow: auto !!important;
}
.fancybox-container{
	z-index: 999999999;
}
md-toast.md-bottom{
    position: fixed;
    border: 0;
}
.NoDataFoundWrapper{
	padding: 5rem 0 0 0;
	width: 100%;
	text-align: center; 
}
.semi_bold{
	font-family: var(--semibold-font-family);
}
.medium{
	font-family: var(--medium-font-family);
}
.bottom_sticky_footer_wrapper_main.visible-xs.visible-sm{
	display: none !important;
}
.footer_wrapper_checkout li:first-child .footer_images-generator,
.footer_wrapper_checkout li:first-child .footer_images-generator_active{
	width: 100%;
	border-radius: 0;
}
.deliveryNotAvailable>p {
	color: #fff;
}
.deliveryNotAvailable {
    width: 76%;
    margin: 10px auto;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}
/*.testimonial_fields_submit.active_testimonial {
    bottom: 0;
    right: 0;
    width: 520px;
}*/
.testimonial_body_button {
    bottom: 25px;
    
}
.main_testimonial_cress_pic {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
    background-color: #fff;
}
.close_testimonial_image {
    width: 15px;
    height: 20px;
}
.testimonial_fields_submit .tableCheckoutFormWrapper {
    height: 100%;
}
.tabele_square_main_pd_mian_check {
    width: 100%;
    padding: 2rem 1rem;
    height: calc(100% - 60px);
    position: relative;
    background: #fff;
    border-radius: 10px;
}
.table_check_mian_wrapper .tabele_square_main_pd_mian_check {
    border: 1px solid #ededed;
}
.tabele_square_overflow_auto {
    overflow: auto;
    height: 100%;
}
.add_testimonial_details {
    padding: 1rem;
    border-radius: 10px;
    overflow: auto;
    height: calc(100% - 7rem);
}
.testimonial_body_label_mian {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.addressFormBlockWrapper img.testi_thumb{
	width: 22px;
	display: inline-block;
	vertical-align: middle;
}
.testimonial_body_button {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    left: 0;
    background-color: #fff;
}
.mobileItemsMenu{
	display: none;
}
.home-section-5  .row-flex.justify-spacebet{
	align-items: center;
}
.social_media>li {
    display: inline-block;
    width: 30px;
    margin: 0 10px 0 0;
}