@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('./btn.css');

body {
	font-family: "Inter", sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

footer {
	margin-top: auto;
}

:root {
	--primary-color: #4EB711;
	--secondary-color: #4EB711;
	--white-color: #fff;
	--black-color: #000;
	--mainColor: #4EB711 !important;
	--bg-main: #4EB711 !important;
	--bs-btn-border-color: #4EB711 !important;
	--bs-btn-bg: #4EB711 !important;
}

.bg-main {
	background-color: var(--bg-main) !important;
}


a {
	color: var(--primary-color);
	transition: all .5s ease-in-out;
	text-decoration: none !important;
}

a:hover {
	color: #000;
}

p {
	color: #4D4D4D;
	font-size: 16px;
}

.pd-100 {
	padding: 100px 0;
}

.pd-40 {
	padding: 40px 0;
}

.pd-80 {
	padding: 80px 0;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-50 {
	margin-bottom: 50px;
}

ul {
	padding-left: 0 !important;
	list-style: none;
}

.bg-grey {
	background: rgba(239, 239, 239, 0.44);
}

/***Common Title Start***/
.common-title h4 {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
}

.common-title p {
	color: #707070;
	margin-bottom: 0;
	font-size: 16px;
}

/***Common Title End***/

/***Common Button Start***/
.common-btn {
	display: inline-block;
	padding: 12px 25px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid var(--primary-color);
}

.common-btn:hover {
	background-color: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.common-bd-btn,
.btn.btn-outline-primary {
	display: inline-block;
	padding: 12px 25px;
	background: transparent;
	color: var(--primary-color);
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid var(--primary-color);
}

.common-bd-btn:hover,
.btn.btn-outline-primary:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}

.common-lt-btn {
	display: inline-block;
	padding: 12px 25px;
	background: rgba(78, 183, 17, 0.05);
	color: var(--primary-color);
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid transparent;
}

.common-lt-btn:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}

.black-btn {
	display: inline-block;
	padding: 12px 22px;
	background: #000;
	color: #fff;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid #000;
}

.black-btn:hover {
	background-color: #fff;
	border-color: #000;
	color: #000;
}

.wht-btn {
	display: inline-block;
	padding: 12px 22px;
	background: #fff;
	color: #000;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid #fff;
	/* width: 100px; */
	max-width: 180px;
}

.wht-btn:hover {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

.wht-btn svg {
	width: 20px;
	margin-left: 5px;
	stroke: #000;
	transition: all .5s ease-in-out;
}

.wht-btn:hover svg {
	stroke: #fff !important;
}

.black-bd-btn {
	display: inline-block;
	padding: 12px 22px;
	background: transparent;
	color: #000;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid #000;
}

.black-bd-btn:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}

.learn-btn {
	display: inline-block;
	margin-top: 40px;
}

.common-btn-red {
	display: inline-block;
	padding: 12px 25px;
	background: #CD112A;
	color: #fff;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all .5s ease-in-out;
	border: 1px solid #CD112A;
}

.common-btn-red:hover {
	background-color: transparent;
	border-color: #CD112A;
	color: #CD112A;
}

/***Common Button End***/

/****Common Form Start****/
.common-form .form-label {
	color: #000;
}

.common-form .form-control {
	min-height: 45px;
	border-radius: 4px;
}

.common-form .form-control:focus {
	border: 1px solid var(--primary-color);
	box-shadow: none;
}

.common-form .form-select {
	min-height: 45px;
	border-radius: 4px;
}

.common-form .form-select:focus {
	border: 1px solid var(--primary-color);
	box-shadow: none;
}

.common-form textarea.form-control {
	min-height: 150px;
	border-radius: 4px;
}

.common-form textarea.form-control:focus {
	border: 1px solid var(--primary-color);
	box-shadow: none;
}

.common-form .form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	box-shadow: none;
}

.common-form .form-check-label {
	color: #000;
}

/****Common Form End****/

/****Bredcrum Start****/
.page-title-area {
	height: 250px;
	display: flex;
	align-items: center;
	background-image: url('../img/breadcrum-img.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.page-title-area::before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, .5);
	content: '';
}

.page-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.277;
	color: #fff;
	position: relative;
}

.breadcrumb-menu li {
	position: relative;
}

.breadcrumb-menu li span {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.breadcrumb-menu li a {
	font-weight: 900;
	display: inline-block;
}

.breadcrumb-menu li a span {
	color: var(--primary-color);
}

.breadcrumb-menu ul {
	display: flex;
	justify-content: center;
	gap: 25px;
}

.page-title-wrapper {
	position: relative;
}

.trail-begin a {
	color: var(--primary-color);
	font-weight: 900;
}

.trail-items li:not(:last-child)::after {
	display: inline-block;
	color: #fff;
	content: "";
	position: absolute;
	right: -16px;
	top: 0px;
	font-family: "Font Awesome 5 Pro";
}

/****Bredcrum End****/

/***Terms & Conditions Start***/
.terms-content:not(:last-child) {
	margin-bottom: 25px;
}

.terms-content h3 {
	margin-bottom: 13px;
	position: relative;
	color: #000;
	font-weight: 600;
}

.terms-content ul li {
	margin-bottom: 10px;
}

.terms-content p {
	color: #5e5e5e;
	line-height: 30px;
}

.terms-list li:not(:last-child) {
	margin-bottom: 16px;
}

/***Terms & Conditions End***/

/***About Us Start***/
.about-section {
	background: #f8f9fa;
}

.about-section h2 {
	font-weight: 700;
}

.about-section ul li {
	margin-bottom: 12px;
	font-size: 16px;
	color: #6c757d;
}

/***About Us End***/

/****Contact Us Pages Start****/
.contact-info-icon i {
	font-size: 35px;
	color: #fff;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 50px;
	background: var(--primary-color);
}

.contact-info h5 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #000;
}

.contact-info:hover {
	transform: translateY(-8px);
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
	padding: 12px;
	position: relative;
	margin-bottom: 25px;
	border-radius: 15px;
	background-color: hsla(0, 0%, 89%, .52);
	backdrop-filter: blur(8px);
	min-height: 205px;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 5%);
	transition: all .5s ease-in-out;
}

.contact-info-content p a {
	color: #000;
}

.contact-wrapper {
	background-color: #f0f0f0;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 5%);
}

.contact-img {
	height: 520px !important;
}

.contact-img img {
	width: 100%;
	border-radius: 12px;
	height: 100%;
	object-fit: contain;
}

.contact-form {
	padding: 20px 0;
}

.contact-form-header h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}

.contact-form-header p {
	color: #000;
}

.contact-form .form-control {
	height: 45px;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
	/* //background: hsla(0, 0%, 89%, .52); */
}

.contact-form textarea.form-control {
	height: 130px !important;
	border-radius: 4px;
}

.contact-form-header {
	margin-bottom: 30px;
}

.contact-form-header p {
	margin-bottom: 0;
	line-height: 28px;
}

/****Contact Us Pages End****/

/****Faq Page Start****/
.choose-right .accordion-button:focus {
	z-index: 3;
	border: none;
	outline: 0;
	box-shadow: none;
}

.choose-right .accordion-item {
	border: 1px solid #eaebee;
	margin-bottom: 20px;
	border-radius: 5px;
	overflow: hidden;
}

.choose-right .accordion-collapse {
	border: 0;
}

.choose-right .accordion-button {
	padding: 25px;
	font-size: 16px;
	color: #242629;
	font-weight: 600;
	padding-right: 35px;
	border: 0;
}

.choose-right .accordion-button:not(.collapsed) {
	color: var(--clr-common-heading);
	background-color: #fff;
	box-shadow: none;
	border: 0;
}

.choose-right .accordion-body {
	padding: 0px 25px 20px 25px;
	margin-top: -10px;
}

.choose-right .accordion-body p {
	line-height: 30px;
	margin-bottom: 0;
}

.choose-right .accordion-button:not(.collapsed)::after {
	background: none;
	transform: rotate(180deg);
	content: "";
	position: absolute;
	right: 25px;
	top: 25px;
	font-family: "Font Awesome 5 Pro";
}

@media (max-width : 767px) {
	.choose-right .accordion-button:not(.collapsed)::after {
		right: 20px;
	}
}

.choose-right .accordion-button::after {
	background: none;
	color: var(--clr-common-heading);
	content: "";
	position: absolute;
	right: 20px;
	top: 25px;
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
}

@media (max-width : 767px) {
	.choose-right .accordion-button::after {
		right: 15px;
	}
}

/****Faq Page End****/

/****Home Page Start****/
.header-card {
	width: 100%;
	height: auto;
	padding: 10px 0;
	z-index: 99;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-card ul li {
	margin-right: 45px;
}

.header-card ul li:last-child {
	margin-right: 0px;
}

.header-card ul li a {
	font-weight: 400;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.header-card ul li .nav-link.active,
.header-card ul li .nav-link:hover {
	color: var(--primary-color);
}

.header-logo img {
	max-width: 140px;
}

.banner-sec {
	min-height: 600px;
	display: flex;
	justify-content: center;
	background: url('../img/banner-bg.png');
	background-size: cover;
	background-position: bottom;
}

.banner-dis h4 {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 64px;
}

.banner-dis p {
	font-size: 18px;
	margin-bottom: 25px;
	color: rgba(0, 0, 0, 0.54);
}

.search-card {
	background: rgba(78, 183, 17, 0.05);
}

.makes-dining-inr {
	border-top: 1px solid rgba(33, 33, 33, 0.05);
	border-bottom: 1px solid rgba(33, 33, 33, 0.05);
}

.make-dinig-hd h4 {
	font-size: 30px;
	line-height: 42px;
	font-weight: 600;
}

.make-dining-dis h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
}

.smart-card .ftr-icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	background: #fff;
	text-align: center;
	line-height: 46px;
	margin-bottom: 20px;
}

.smart-card h4 {
	font-size: 22px;
	margin-bottom: 8px;
	color: #000;
}

.smart-card p {
	font-size: 16px;
	margin-bottom: 0;
}

.smart-ftr-left {
	display: flex;
	flex-flow: wrap;
}

.smart-card {
	flex: calc(33%);
	max-width: calc(33%);
	padding: 25px 25px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.how-card {
	text-align: center;
}

.how-icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	background: rgba(78, 183, 17, 0.05);
	text-align: center;
	line-height: 50px;
	margin-bottom: 24px;
}

.how-card h4 {
	font-size: 24px;
	margin-bottom: 12px;
	color: #000;
}

.news-sec {
	background: url('../img/news-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.news-img {
	background: url('../img/transfoem.png');
	height: 400px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px 40px;
	display: flex;
	align-items: center;
}

.news-img h4 {
	color: #fff;
	font-size: 40px;
	margin-bottom: 18px;
}

.news-img p {
	color: rgba(255, 255, 255, 0.54);
	font-size: 16px;
	margin-bottom: 18px;
}

.faq-accordion .accordion-item {
	border-radius: 0 !important;
	margin-bottom: 15px;
	border-left: 0;
	border-right: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: #000;
	font-weight: 600;
	background-color: transparent;
	box-shadow: none;
}

.faq-accordion .accordion-button:focus-visible {
	border: none;
	box-shadow: none !important;
}

.explore-img {
	text-align: center;
}

.ftr-card {
	background: var(--primary-color);
	padding-top: 50px;
	padding-bottom: 10px;
}

.ftr-logo {
	display: inline-block;
	margin-bottom: 20px;
}

.ftr-hd {
	font-size: 22px;
	margin-bottom: 18px;
}

.ftr-links li a {
	display: block;
	color: #fff;
	margin-bottom: 12px;
}

.ftr-social a {
	display: inline-block;
	width: 31px;
	height: 31px;
	background: #fff;
	color: var(--primary-color);
	text-align: center;
	line-height: 28px;
	border-radius: 50%;
}


.ftr-bottom-links ul li {
	padding-right: 30px;
	position: relative;
}

.ftr-bottom-links ul li:last-child::after {
	display: none;
}

.ftr-bottom-links ul li::after {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80%;
	content: '';
	background: #fff;
}

.ftr-bottom-links ul li a {
	color: #fff;
	transition: all .5s ease-in-out;
}

.ftr-bottom-links ul li a:hover {
	color: #000;
}

.copy-right-card {
	border-top: 1px solid rgba(255, 255, 255, .4);
}

.swiper-button-next::after {
	font-size: 0;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	background: url('../img/swiper-next.png') !important;
}

.swiper-button-prev::after {
	font-size: 0;
	background: url('../img/swiper-prev.png') !important;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
}

.explore-slider .swiper-button-next {
	right: 45%;
	left: auto;
	bottom: 0 !important;
	top: inherit;
	width: 50px;
}

.explore-slider .swiper-button-prev {
	left: 45%;
	right: auto;
	bottom: 0 !important;
	top: inherit;
	width: 50px;
}

.exploreSwiper {
	padding-bottom: 80px;
}

.clientSwiper,
.featureSwiper {
	padding-top: 60px;
}

.client-slider {
	margin-top: -60px;
}

.client-slide {
	padding: 30px 25px;
	border: 1px solid rgba(78, 183, 17, 0.2);
	border-radius: 8px;
	background: rgba(78, 183, 17, 0.02);
	margin: 10px;
}

.client-ftr {
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.client-slide>p {
	padding: 20px 0;
	line-height: 30px;
}

.star-rating i {
	color: #EABF23;
}

.client-slider .swiper-button-next {
	right: 0;
	left: auto;
	bottom: inherit !important;
	top: 20px;
	width: 50px;
}

.client-slider .swiper-button-prev {
	right: 5%;
	left: auto;
	bottom: inherit !important;
	top: 20px;
	width: 50px;
}

/****Home Page End****/

/***Prdoduct Filter Left***/
.right_sidebar_area {
	border: 1px solid rgba(221, 221, 221, 0.5);
	border-radius: 4px;
}

.s_widget {
	border-bottom: 1px solid rgba(221, 221, 221, 0.5);
	padding: 15px;
}

.filter-main-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.filter-main-heading h3 {
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 600;
}

.filter-main-heading a {
	color: var(--primary-color);
	font-size: 14px;
}

.tags li {
	display: inline-block;
	font-size: 14px;
}

.tags li.active a,
.tags li:hover a {
	background-color: var(--primary-color);
	color: #fff;
}

.tags li.active a,
.tags li:hover a svg {
	stroke: #fff;
}

.categories_widget ul {
	margin-left: 0;
	padding-left: 0;
}

.categories_widget ul li a {
	font-size: 14px;
	color: #334249;
	transition: all 400ms linear 0s;
}

.s_title h4 {
	font-weight: 600;
	color: #2e3c43;
	margin: 0;
	margin-bottom: 10px;
	font-size: 22px;
}

.category-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.catgory-check-card .checkbox-animate {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 15px;
	margin-bottom: 8px;
}

.catgory-check-card .checkbox-animate label {
	position: relative;
	cursor: pointer;
}

.catgory-check-card .checkbox-animate label input {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.catgory-check-card .input-check {
	display: inline-block;
	width: 22px;
	height: 22px;
	border-radius: 4px;
	border: 2px solid #ccc;
	position: relative;
	top: 6px;
	margin-right: 7px;
	transition: 0.4s;
}

.catgory-check-card .input-check::before {
	content: '';
	display: inline-block;
	width: 13px;
	height: 6px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: scale(0) rotate(-45deg);
	position: absolute;
	top: 5px;
	left: 3px;
	transition: 0.4s;
}

.catgory-check-card .checkbox-animate label input:checked~.input-check {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	animation-name: input-animate;
	animation-duration: 0.7s;
}

.catgory-check-card .checkbox-animate label input:checked~.input-check::before {
	transform: scale(1) rotate(-45deg);
	animation-name: input-check;
	animation-duration: 0.2s;
	animation-delay: 0.3s;
}

@keyframes input-animate {
	0% {
		transform: scale(1);
	}

	40% {
		transform:


			scale (1 .3,
				0 .7);


	}

	55% {
		transform:


			scale (1);


	}

	70% {
		transform:


			scale (1 .2,
				0 .8);


	}

	80% {
		transform:


			scale (1);


	}

	90% {
		transform:


			scale (1 .1,
				0 .9);


	}

	100% {
		transform:


			scale (1);


	}
}

@keyframes input-check {
	0% {
		transform: scale(0) rotate(-45deg);
	}

	100% {
		transform:


			scale (1) rotate (-45deg);


	}
}

.mob-filter {
	display: none;
}

.mob-filter a {
	border: 1px solid #dadada;
	padding: 6px;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	display: block;
	margin-left: auto;
}

.mob-filter a i {
	color: #8b8b8b;
	font-size: 18px;
}

.mob-filter {
	margin-bottom: 25px;
	text-align: right;
}

.close-filter {
	display: none;
}

.filter-main-heading a {
	color: var(--primary-color);
	font-size: 14px;
}

.filter-main-heading h3 {
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 600;
}

.tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px 8px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px 10px;
	margin-bottom: 0;
}

.tags li {
	display: inline-block;
	font-size: 14px;
}

.tags li a {
	display: block;
	color: #767676;
	padding: 5px 12px;
	border-radius: 100px;
	border: 1px solid rgba(221, 221, 221, 0.4);
	font-size: 12px;
	font-weight: 500;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
}

.tags li a svg {
	width: 15px;
	height: 15px;
}

.tags li a:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.price-card .price-input {
	width: 100%;
	display: flex;
	margin: 20px 0 20px 0px;
}

.price-card .price-input .field {
	display: flex;
	width: 100%;
	height: 45px;
	align-items: center;
}

.price-card .field input {
	width: 100%;
	height: 100%;
	outline: none;
	font-size: 14px;
	margin-left: 0;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #e4e4e4;
	-moz-appearance: textfield;
}

.price-card input[type="number"]::-webkit-outer-spin-button,
.price-card input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.price-card .price-input .separator {
	width: 130px;
	display: flex;
	font-size: 19px;
	align-items: center;
	justify-content: center;
}

.price-card .slider {
	height: 5px;
	position: relative;
	background: #ddd;
	border-radius: 5px;
}

.price-card .slider .progress {
	height: 100%;
	left: 25%;
	right: 25%;
	position: absolute;
	border-radius: 5px;
	background: #4EB711;
}

.price-card .range-input {
	position: relative;
}

.price-card .range-input input {
	position: absolute;
	width: 100%;
	height: 5px;
	top: -5px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.price-card input[type="range"]::-webkit-slider-thumb {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	background: #4EB711;
	pointer-events: auto;
	-webkit-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price-card input[type="range"]::-moz-range-thumb {
	height: 17px;
	width: 17px;
	border: none;
	border-radius: 50%;
	background: #4EB711;
	pointer-events: auto;
	-moz-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/***Product Filter End***/

/****Product List Start****/
.product-count {
	color: #000;
	padding: 10px 20px;
	border: 1px solid #b5b5b545;
	border-radius: 30px;
	background: #f4f4f4;
}

.pagination-card .active>.page-link,
.pagination-card .page-link.active {
	background-color: #4eb711;
	border-color: #4eb711 !important;
	color: #fff;
}

.pagination-card .page-link {
	color: #4eb711;
}

.pagination-card .page-link:hover {
	color: #fff;
	background-color: #4eb711;
}

.pagination-card .page-link:focus {
	z-index: 3;
	color: #fff;
	background-color: #4eb711;
	outline: 0;
	box-shadow: none;
}

/****Product List End****/

/****Product Details Start****/
.single-item-title {
	font-size: 30px;
	font-weight: 600;
}

.single-item-rating {
	margin: 10px 0;
}

.single-item-rating i {
	color: #fbc444;
}

.single-item-info>p {
	line-height: 28px;
}

.rating-count {
	margin-left: 10px;
	display: inline-block;
	color: var(--bs-primary);
}

.single-item-content h5 {
	margin-bottom: 18px;
	font-size: 18px;
}

.single-item-content span {
	font-weight: 400;
	margin-left: 4px;
	color: #666;
}

.single-item-action {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 15px;
	margin-bottom: 20px;
	background: #f4f4f4;
	padding: 10px 15px;
	border-radius: 6px;
}

.single-item-price span {
	color: var(--primary-color);
	margin-left: 8px;
	font-size: 30px;
}

.single-item-price del {
	color: #a6a6a6;
}

.single-item-details .nav-tabs {
	border-width: 2px
}

.single-item-details .nav-tabs .nav-link {
	color: #30180d;
	font-size: 18px;
	padding: 15px 25px;
	font-weight: 500;
	border: none;
	background: 0 0;
	border-bottom: 2px solid transparent;
}

.single-item-details .nav-tabs .nav-link:hover,
.single-item-details .nav-tabs .nav-link.active {
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color)
}

.shop-left-sec .mySwiper2 {
	height: 80%;
	width: 100%;
}

.shop-left-sec .mySwiper {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0 0 0;
}

.shop-left-sec .mySwiper .swiper-slide img,
.shop-left-sec .mySwiper2 .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-left-sec {
	height: 650px;
	padding: 14px;
	border: 1px solid #ccc;
	background: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 0px;
}

.blog-comments-form {
	background: #f8f8f8;
	padding: 25px 30px;
	border-radius: 10px;
}

.blog-comments-wrapper {
	margin: 20px 0;
}

.blog-comments-single {
	display: flex;
	justify-content: start;
	align-items: flex-start;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e3e3e3;
}

.blog-comments-single img {
	border-radius: 50%;
	width: 50px;
}

.blog-comments-content {
	padding: 0 0 0 16px;
}

.blog-comments-content h5 {
	color: #111;
	margin-bottom: 8px;
}

.blog-comments-content span {
	font-size: 14px;
	color: var(--primary-color);
	font-weight: 500;
}

.blog-comments-content p {
	color: #555;
	margin-bottom: 8px;
}

.blog-comments-form h3 {
	font-weight: 700;
}

.star-list {
	color: #fdcc59;
	margin-bottom: 8px;
}

.comment-date {
	display: inline-block;
	color: #8b8b8b !important;
	margin-bottom: 0;
}

.shop-left-sec .swiper-button-next,
.shop-left-sec .swiper-button-prev {
	color: #000;
}

.single-item-action {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
	margin-bottom: 20px;
	background: #f4f4f4;
	padding: 10px 15px;
	border-radius: 6px;
}

.single-item-action .quantity-input {
	display: flex;
	align-items: center;
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
	width: 170px;
	background: #fff;
	justify-content: space-between;
	height: 50px;
	padding: 5px;
	border-radius: 30px;
}

.single-item-action .quantity-input input[type="number"] {
	width: 80px;
	height: 32px;
	border: none;
	text-align: center;
	font-size: 16px;
	background: transparent;
	outline: none;
}

.mySwiper .swiper-slide {
	border: 1px solid #ccc;
}

/****Product Details End****/
.resto-card {
	border-radius: 0px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: block;
	height: calc(100% - 1rem);
	margin-bottom: 1rem;
	background: #fff;
	border: 1px solid #ebebeb
}

.resto-card:hover {
	transform: translateY(-8px);
}

.resto-img {
	height: 300px;
	overflow: hidden;
	position: relative;
}

.resto-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.resto-card:hover .resto-img img {
	transform: scale(1.1);
}

.restro-dis {
	padding: 20px;
}

.restro-dis h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #212121;
}

.restro-dis h4 a {
	color: #212121;
}

.restro-dis h4 a:hover {
	color: var(--primary-color);
}

.restro-dis p {
	color: #666;
	font-size: 1rem;
	margin-bottom: 0;
	font-weight: 500;
}

.wish-btn {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 38px;
	height: 38px;
	background: #fff;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 2;
	transition: all 0.2s ease;
}

.wish-btn:hover {
	transform: scale(1.1);
}

.resto-rating {
	position: absolute;
	right: 12px;
	bottom: 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 6px;
	display: inline-block;
	padding: 5px 10px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(4px);
}

.resto-rating i {
	color: #FFD33C;
	margin-right: 2px;
}

.book-table-inr {
	border-radius: 8px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.list-view .summary {
	padding: 0 15px;
	margin-bottom: 20px;
	color: #777;
	font-size: 14px;
	font-weight: 500;
}

#book-table-form h2 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 24px;
}

.custom_nav .nav-link.active,
.custom_nav .show>.nav-link {
	color: #fff !important;
	background-color: #4eb711 !important;
}

.custom_nav .nav-link {
	color: var(--text-color);
	padding: 12px 13px;
	font-weight: 500;
	margin: 5px 10px;
	background: transparent !important;
	border-radius: 30px !important;
	border: 1px solid #4eb711 !important;
	width: auto !important;
}

.custom_nav .nav-link:hover {
	background: #4eb711 !important;
	color: #fff !important;
}

.restaurant_edit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 10px;
}

.restaurant_edit a {
	width: 100%;
	text-align: center;
}

.restaurant_edit h6 {
	margin-bottom: 0px;
}

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

.restaurant_edit .theme-btn {
	font-size: 15px;
	font-weight: 500;
	padding: 8px 38px;
	height: 40px;
	line-height: 22px;
}

.custom_toggle input[type="checkbox"] {
	position: relative;
	width: 46px;
	height: 25px;
	-webkit-appearance: none;
	appearance: none;
	background: #4eb711;
	outline: none;
	border-radius: 2rem;
	cursor: pointer;
	box-shadow: inset 0 0 5px rgb(0 0 0/ 50%);
}

.custom_toggle input[type="checkbox"]::before {
	content: "";
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 2px;
	left: 2px;
	transition: 0.5s;
}

.custom_toggle input[type="checkbox"]:checked::before {
	transform: translateX(100%);
	background: #fff;
}

.custom_toggle input[type="checkbox"]:checked {
	background: #4caf50;
}

.restaurant-panel .nav-pills .nav-link {
	padding: 10px 0;
	font-size: 16px;
}

.menu_modal .btn-close {
	position: absolute;
	right: 15px;
}

.menu_modal .modal-dialog {
	max-width: 700px;
}

content-wrap .form-check input:checked {
	background-color: #4eb711;
	border-color: #4eb711;
}

.content-wrap p {
	color: rgb(33 33 33/ 55%);
	font-size: 14px;
	line-height: 26px;
	font-weight: 400;
}

.form-control[type="file"] {
	line-height: 32px;
}

.content-wrap .card-title {
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 600;
}

.content-wrap .price {
	color: #000;
	font-size: 15px;
	margin-top: 8px;
}

.order-menu.style-1 img {
	border: 1px solid #4eb711;
	border-radius: 0.625rem;
	height: 4rem;
	object-fit: contain;
	width: 4rem;
}

.orders-img img {
	border-radius: 0.5rem;
	object-fit: cover;
	height: 3rem;
	margin-right: 0.5rem;
	width: 3rem;
}

.orderin-bx {
	border: 1px solid #dbdbdb;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	padding: 1.375rem 1.5rem;
}

.orderin-bx .icon-bx {
	background-color: #f5f5f5;
	border-radius: 0.5rem;
	display: inline-block;
	height: 2rem;
	line-height: 2rem;
	margin-left: 0.5rem;
	text-align: center;
	width: 2rem;
}

.orderin-bx:hover {
	background-color: #fff;
	border-color: #4eb711;
}

.orderin-bx:hover .icon-bx {
	background: #4eb711;
	color: #fff;
}

.total_earnings_wrp {
	background: rgb(78 183 17/ 13%);
	text-align: center;
	padding: 30px;
	margin-bottom: 30px;
}

.main-color {
	color: #4eb711;
}

.quantity-input {
	display: flex;
	align-items: center;
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
	min-width: 200px;
	background: #fff;
	justify-content: space-between;
	height: 50px;
	padding: 5px;
	border-radius: 30px;
	max-width: 200px;
}

.quantity-input input[type="number"] {
	width: 100px;
	height: 32px;
	border: none;
	text-align: center;
	font-size: 16px;
	background: transparent;
	outline: none;
}

.quantity-input input[type="number"] {
	-moz-appearance: textfield;
}

.quantity-btn {
	width: 32px;
	height: 32px;
	background: var(--primary-color);
	border: none;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
	transition: background 0.2s;
	border-radius: 50%;
}

.quantity-btn:hover {
	background: var(--primary-color);
	opacity: 0.8;
}

.menu-inner .restaurant_edit .trash-btn {
	width: 40px !important;
	height: 40px;
	border: 1px solid #dcdcdc;
	display: inline-block;
	border-radius: 6px;
	line-height: 37px;
	color: red !important;
}

.catgory-check-card .star-list {
	margin-top: 11px !important;
}

.catgory-check-card .star-list .text-grey {
	color: #cecece;
}

/*****Checkout Page Start*****/
.checkout-rt {

	top: 10px;
}

.checkout-lft {
	padding: 20px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #ededed;
}

.checkout-rt .cart-summary li {
	margin-bottom: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.checkout-rt .cart-list {
	padding: 10px 0;
}

.checkout-rt .cart-item-remove {
	position: absolute;
	right: 10px;
	bottom: 10px;
	top: inherit;
	width: 35px;
	height: 35px;
	background: #ffdede;
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
	color: red;
	transition: all .5s ease-in-out;
}

.checkout-rt .cart-item-remove:hover {
	background: red;
	color: #fff;
}

.coupon-code {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.coupon-section {
	padding: 20px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #ededed;
}

.coupon-box .btn-primary {
	padding: 10px !important;
}

.coupon-box {
	border-radius: 10px;
	padding: 10px !important;
	border-color: #ededed;
}

.coupon-code .form-control {
	width: 74%;
	border-radius: 6px;
	border: 1px solid #ccc;
	padding: 10px 20px;
	height: 45px;
}

.coupon-code .apply-btn {
	width: 25%;
	text-align: center;
	padding: 10px 0;
	border-radius: 6px;
	background: var(--primary-color);
	color: #fff;
	transition: all .5s ease-in-out;
	border: none;
}

.coupon-code .apply-btn:hover {
	background: #3a2413;
	color: #fff;
}

.available-coupons {
	padding: 20px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #ededed;
	height: 150px;
	overflow-y: auto;
}

.checkout {
	padding: 80px 0px;
}

.checkout .address-wrap .add-new {
	cursor: pointer
}

.checkout .address-wrap .add-new h4 {
	font-size: calc(16px + (20 - 16)* ((100vw- 320px)/(1920- 320)))
}

.checkout .summery-wrap {
	position: sticky;
	top: 80px
}

.cart-summary {
	padding: 20px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #ededed;
}

.cart-summary ul {
	margin-bottom: 0 !important;
}

.menu-hd {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid #d9d9d9;
}

.checkout-lft .radio-box input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.checkout-lft .badges.badges-theme {
	background-color: green;
	color: #fff;
	border: 1px solid green;
	font-size: 14px;
}

.checkout-lft .badges.badges-pill {
	padding: 3px 10px;
	border-radius: 100px;
}

.checkout-lft .radio-box input[type="radio"]+.radio-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-size: calc(14px + (16 - 14)* ((100vw- 320px)/(1920- 320)));
	font-weight: 500;
	color: #262834;
	cursor: pointer;
}

.checkout-lft .radio-box input[type="radio"]+.radio-label:before {
	content: "";
	background: transparent;
	border-radius: 100%;
	border: 2px solid var(--primary-color);
	display: inline-block;
	width: calc(16px + (18 - 16)* ((100vw- 320px)/(1920- 320)));
	height: calc(16px + (18 - 16)* ((100vw- 320px)/(1920- 320)));
	position: relative;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

.checkout-lft .radio-box input[type="radio"]:checked+.radio-label:before {
	background-color: var(--primary-color);
	-webkit-box-shadow: inset 0 0 0 3px #fff;
	box-shadow: inset 0 0 0 3px #fff;
}

.checkout-lft .radio-box input[type="radio"]:focus+.radio-label:before {
	outline: none;
	border-color: var(--primary-color);
}

.checkout-lft .radio-box input[type="radio"]:disabled+.radio-label:before {
	-webkit-box-shadow: inset 0 0 0 3px #fff;
	box-shadow: inset 0 0 0 3px #fff;
	border-color: var(--primary-color);
	background: #363636;
}

.checkout-lft .radio-box input[type="radio"]+.radio-label:empty:before {
	margin-right: 0;
}

.custom-form .form-control {
	font-size: 14px;
	color: #262834;
	font-weight: 400;
	border: 1px solid #ddd;
	background-color: #fff;
	border-radius: 4px;
	min-height: 45px;
}

.modal-header .btn_close {
	position: absolute;
	right: -50px;
	top: -5px;
	opacity: 1;
	background: var(--primary-color);
	border: 0px;
	color: #fff;
	font-size: 24px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.cart-item-img {
	width: 30%;
	overflow: hidden;
	/* height: 120px; */
	height: 90px;
	border-radius: 10px;
	margin-right: 5px;
	background: #fff;
}

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

.cart-item {
	padding: 10px;
	background-color: #f8f8fb;
	border-radius: 10px;
	border: 1px solid #eee;
	position: relative;
	margin-bottom: 15px;
}

.cart-item-details {
	width: 70%;
}

.payment-section .accordion .accordion-item {
	background-color: #fff !important;
	line-height: 23px;
	border: 1px solid rgba(221, 221, 221, 0.5);
	border-radius: 10px;
}

.payment-section .accordion .accordion-item:not(:first-of-type) {
	margin-top: calc(15px + (20 - 15)* ((100vw- 320px)/(1920- 320)));
}

.payment-section .accordion-button:focus {
	border-color: #0000 !important;
	box-shadow: none !important;
}

.payment-section .accordion-button:not(.collapsed) {
	color: #000;
}

.payment-section .accordion .accordion-button {
	background: #0000 !important;
	box-shadow: none !important;
	font-weight: 500;
}

.payment-section .accordion .accordion-item .accordion-body .filter-row .filter-col {
	border: #f0f3f8;
	background-color: rgba(229, 229, 229, 0.3);
	padding: calc(10px + (15 - 10)* ((100vw- 320px)/(1920- 320)));
	font-size: calc(14px + (16 - 14)* ((100vw- 320px)/(1920- 320)));
	border-radius: 5px;
	font-weight: 600;
	color: #767676;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

/*****Checkout Page End*****/

/****Thank You Page Start****/
.thank-card {
	padding-top: 100px;
	padding-bottom: 100px;
}

.thank-card-inr {
	padding: 50px 20px;
	border-radius: 8px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	text-align: center;
	background: #fff;
}

.thank-check-icn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #29bf6c;
	color: #fff;
	display: inline-block;
	font-size: 34px;
	margin-bottom: 20px;
	line-height: 58px;
}

.thank-card-inr h4 {
	font-size: 44px;
	margin-bottom: 6px;
}

/****Thank You Page End****/
.restaurant-search-filter {
	width: 100%;
	/* max-width: 400px; */
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #f9f9f9;
	position: relative;
	z-index: 9;
}

.restaurant-search-filter h4 {
	text-align: center;
	margin-bottom: 20px;
}

.search-option {
	margin-bottom: 15px;
}

.search-option label {
	display: block;
	margin-bottom: 5px;
}

.search-option input,
.search-option select {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.search-btn button {
	width: 100%;
	padding: 10px;
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.search-btn button:hover {
	background-color: var(--primary-color);
	opacity: .85;
	color: #fff !important;
}

/***Mobile Header Start***/
.menu-btn {
	display: inline-block;
	background: hsla(0, 0%, 89%, .52);
	padding: 10px 10px;
	border-radius: 6px;
	font-size: 14px;
	text-transform: uppercase;
	color: #000;
}

.mobile-profile {
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
	display: inline-block;
}

.mobile-profile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nav-mobile .offcanvas-header {
	border-bottom: 1px solid #ccc;
	background: #f4f4f4;
}

.mobile-navbar {
	position: relative;
	min-height: 300px;
	overflow: hidden;
}

.side-bar-links {
	height: calc(100vh - 182px);
}

.side-link-list {
	padding: 0;
}

.side-link-list li {
	border-bottom: 1px solid #ececec;
}

.side-link-list li a::after {
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-size: 24px;
	color: var(--primary-color);
	position: absolute;
	right: 19px;
	top: 50%;
	transform: translateY(-50%);
}

.side-link-list li a {
	padding: 12px 14px;
	display: flex;
	font-size: 18px;
	color: #222;
	align-items: center;
	width: 100%;
	position: relative;
	transition: all .5s ease-in-out;
}

.side-link-list li a:hover {
	background: var(--primary-color);
	color: #fff;
}

.side-link-list li a:hover::after {
	color: #fff !important;
}

.sider-card {
	background: var(--primary-color);
	padding: 20px 15px;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.sider-card .btn-close {
	position: absolute;
	right: 20px;
	filter: brightness(0) invert(1);
	opacity: 1;
}

.side-profile-card {
	display: flex;
	align-items: center;
}

.profile-img {
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 8px;
	border: 2px solid #fff;
	display: inline-block;
	margin-right: 15px;
}

.profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.side-profile-dis p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 4px;
}

.side-profile-dis h4 {
	margin-bottom: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.mobile-menu-card .offcanvas-body {
	padding: 0;
}

.side-link-list li a::after {
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-size: 24px;
	color: var(--primary-color);
	position: absolute;
	right: 19px;
	top: 50%;
	transform: translateY(-50%);
}

.side-link-list li {
	border-bottom: 1px solid #ececec;
}

.side-bar-links {
	height: calc(100vh - 182px);
}

.bars-btn {
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 8px;
	text-align: center;
	line-height: 40px;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: #fff;
	transition: all .5s ease-in-out;
}

.bars-btn:hover {
	color: var(--primary-color);
	background: transparent;
	border: 1px solid var(--primary-color);
}

.mobile-dash-menu .dashboard_menu ul li a.active,
.mobile-dash-menu .dashboard_menu ul li a:hover {
	background: var(--primary-color) !important;
}

.dashboard_menu.mobile-dash-menu {
	border-radius: 0 !important;
	min-height: calc(100vh - 112px);
	overflow-y: scroll;
}

.dashboard_menu.mobile-dash-menu ul li a,
.dashboard_menu.mobile-dash-menu ul li a span {
	color: #000;
}

.dashboard_menu.mobile-dash-menu ul li a {
	border-bottom: 1px solid #c5c5c5;
	border-top: none;
}

.dashboard_menu.mobile-dash-menu ul li a.active,
.dashboard_menu.mobile-dash-menu ul li a:hover {
	background: var(--primary-color) !important;
	color: #fff !important;
}

.dashboard_menu.mobile-dash-menu ul li a.active span,
.dashboard_menu.mobile-dash-menu ul li a:hover span {
	color: #fff !important;
}

.mobile-profile {
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
	display: inline-block;
}

.mobile-profile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.filter-card {
	background: #f4f4f4;
	padding: 10px 14px;
	border-radius: 8px;
}

.filter-btn {
	width: 38px;
	height: 38px;
	display: inline-block;
	background: var(--primary-color);
	color: #fff;
	text-align: center;
	line-height: 38px;
	border-radius: 6px;
	border: 1px solid var(--primary-color);
	transition: all .5s ease-in-out;
}

.filter-btn:hover {
	background: transparent;
	color: var(--primary-color);
}

/***Mobile Header End***/

/****Prodile Drop Down Start****/
.hdr-pro-view {
	display: flex;
}

.hdr-pro-view span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	display: inline-block;
}

.hdr-pro-view span img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-drop .btn-secondary {
	background: none;
	border: none;
	padding: 0;
}

.profile-drop .dropdown-toggle::after {
	display: none;
}

.profile-drop .dropdown-menu.show {
	min-width: 220px;
	padding: 0;
	border: none;
	overflow: hidden;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.profile-drop .dropdown-menu.show li a {
	padding: 10px 12px !important;
	border-bottom: 1px solid #f4f4f4;
	font-size: 14px;
}

.profile-card-drop {
	display: flex;
	align-items: center;
	background: #ededed;
	padding: 14px 12px;
	position: relative;
}

.profile-card-drop span {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	margin-right: 10px;
	min-width: 52px;
	min-height: 50px;
}

.profile-card-drop span img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-card-rt h4 {
	font-size: 16px;
	color: #000;
	font-weight: 600;
	margin-bottom: 0;
}

.profile-card-rt p {
	font-size: 14px;
	/* color: rgba(255, 255, 255, .8); */
	margin-bottom: 2px;
}

.profile-drop .dropdown-item {
	transition: all .5s ease-in-out;
}

.profile-drop .dropdown-item:hover {
	background: var(--primary-color);
	color: #fff;
}

.profile-drop .btn:first-child:active,
.profile-drop .btn.show {
	background: none !important;
	border-color: none !important;
}

.profile-drop ul li {
	margin-right: 0;
}

.profile-drop .dropdown-menu.show li a span {
	margin-right: 4px;
}

.profile-card-drop {
	display: flex;
	align-items: center;
	background: var(--primary-color);
	padding: 14px 12px;
	position: relative;
}

.profile-card-rt h4 {
	font-size: 16px;
	color: #000;
	font-weight: 600;
	margin-bottom: 0;
	color: #fff;
}

.profile-card-rt p {
	font-size: 14px;
	margin-bottom: 2px;
	color: #fff;
}

.dashboard_menu ul li a span {
	display: inline-block;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	width: 50px;
	height: 50px;
	color: #212121;
	text-align: center;
	line-height: 50px;
	background: #4eb7111a;
	font-size: 18px;
	margin-right: 6px;
}

.dashboard_menu ul li a {
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	width: 100%;
	display: block;
	transition: all 0.3s linear 0s;
	background: none !important;
	color: #212121;
	border-top: 1px solid rgba(0, 128, 128, 0.15);
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	text-transform: capitalize;
	position: relative;
}

/****Prodile Drop Down End****/

/* New Landing Page CSS Start  */

/* .banner-form {
    padding: 36px;
    background: #e7f1e1;
    border: 1px solid #4eb711;
    border-radius: 16px;
} */
.restaurant-slider {
	position: relative;
}

.restaurant-slider .restaurant-card {
	position: relative;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
}

.restaurant-slider .restaurant-img img {
	height: 100%;
	max-height: 250px;
	width: 100%;
	object-fit: cover;
}

.restaurant-slider .swiper-button-next::after,
.restaurant-slider .swiper-button-prev::after {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	background-color: #ffffff !important;
	border-radius: 1000px;
}

.restaurant-slider span.offer-badge {
	padding: 6px 8px;
	border-radius: 100px;
	background: #e7f1e1;
	border: 1px solid #4eb711;
	font-size: 10px;
	position: absolute;
	top: 12px;
	right: 12px;
}

.restaurant-slider .restaurant-card .location {
	font-size: 13px;
	color: #595959;
	font-weight: 400;
}

.restaurant-slider .restaurant-card .rating .rating-text {
	font-size: 14px;
	color: #3f3e3e;
}

.restaurant-slider .restaurant-card .rating .stars i {
	color: var(--primary-color);
	font-size: 14px;
}

.restaurant-slider .restaurant-card h5 {
	font-size: 24px;
	color: #000;
}

.works-box {
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #eee;
	transition: all .3s ease-in-out;
	height: calc(100% - 24px);
	margin-bottom: 24px;
}

.works-box:hover {
	transform: translateY(-10px);
}

.works-box .icon {
	height: 40px;
	width: 40px;
	background: #f6fbf3;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 24px;
	border: 1px solid #4eb711;
	border-radius: 8px;
}

.works-box .icon i {
	color: #4eb711;
	font-size: 20px;
}

/* New banner css start  */
section.banner-sec-new {
	padding: 60px 0px 80px 0px;
}

.banner-inner-box {
	padding: 64px;
	background: #4eba37;
	border-radius: 16px;
}

.banner-inner-box h4,
.banner-inner-box p {
	color: #fff;
}

/* New Banner New form css start  */
.modern-booking-form .common-btn {
	text-wrap: nowrap;
}

.modern-booking-form {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(8px);
}

.modern-booking-form .form-group {
	position: relative;
	margin-bottom: 20px;
}

.modern-booking-form .form-control,
.modern-booking-form .form-select {
	height: 54px;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	padding: 10px 16px;
	font-size: 15px;
	transition: all 0.3s ease;
	background-color: #f8f9fa;
}

.modern-booking-form .form-control:focus,
.modern-booking-form .form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
	background-color: #fff;
}

.modern-booking-form .form-label {
	font-weight: 500;
	font-size: 14px;
	color: #344767;
	margin-bottom: 8px;
	display: block;
}

.modern-booking-form .input-icon {
	position: absolute;
	right: 21px;
	top: 50%;
	transform: translateY(-50%);
	color: #6c757d;
	cursor: pointer;
	pointer-events: none;
}

.modern-booking-form .btn-modern {
	height: 48px;
	padding: 0 28px;
	border-radius: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.modern-booking-form .btn-modern.btn-outline {
	background: transparent;
	border: 2px solid #e0e0e0;
	color: #6c757d;
}

.modern-booking-form .btn-modern:hover {
	transform: translateY(-2px);
}

.modern-booking-form .form-select {
	background-image:
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 16px 12px;
}

.modern-booking-form .form-select {
	position: relative;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	/* For Chrome, Safari, Edge */
	-moz-appearance: none;
	/* For Firefox */
	background: none;
	/* Remove default background */
	background-image: none;
	/* Ensures no icon appears */
	padding-right: 0.5rem;
	/* Adjust to remove extra space */
}

.modern-booking-form input[type="date"],
.modern-booking-form input[type="time"] {
	position: relative;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: none;
}

.modern-booking-form input[type="date"],
.modern-booking-form input[type="time"] {
	position: relative;
	cursor: pointer;
}

.modern-booking-form .guests-input-group {
	position: relative;
	display: flex;
	align-items: center;
}

.modern-booking-form .guests-input-group .form-control {
	text-align: center;
}

.modern-booking-form .guest-control {
	background: none;
	border: none;
	color: #6c757d;
	cursor: pointer;
	padding: 0 15px;
	height: 100%;
	display: flex;
	align-items: center;
	transition: color 0.2s;
}

.modern-booking-form .guest-control:hover {
	color: var(--primary-color);
}

.modern-booking-form .guest-control.minus {
	left: 0;
}

.modern-booking-form .guest-control.plus {
	right: 0;
}

.modern-booking-form input[type="number"] {
	-moz-appearance: textfield;
}

.how-it-works {
	background-color: #f6fbf3;
}

@media (max-width : 768px) {
	.modern-booking-form {
		padding: 20px;
	}

	.btn-modern {
		width: 100%;
		margin-bottom: 10px;
	}

	.banner-inner-box {
		padding: 24px;
	}

	.modern-booking-form .form-group {
		position: relative;
		margin-bottom: 0px;
	}

	.modern-booking-form .btn-modern {
		margin: 0px;
		width: fit-content;
	}

	.modern-booking-form .form-control,
	.modern-booking-form .form-select {
		height: 40px !important;
	}
}

.accountbg {
	position: relative;
	background: url('/themes/bookatable/img/bg-login.jpg') center center/cover no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accountbg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	/* soft overlay */
	backdrop-filter: blur(5px);
	z-index: 0;
}

.login-box {
	position: relative;
	z-index: 1;
	background: #fff;
	padding: 35px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.field-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #888;
}

.form-group {
	position: relative;
}

.btn-primary {
	background-color: #4CAF50;
	border: none;
	border-radius: 6px;
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
}

.btn-primary:hover {
	background-color: #43a047;
}

h4.fw-semibold {
	font-weight: 600;
	color: #333;
}

.iti.iti--allow-dropdown {
	width: 100%;
}

.quantity-fixed-btn {
	max-width: 45px;
	min-width: 45px;
	height: 45px;
	display: flex;
	align-content: center;
	justify-content: center;
	font-size: 24px;
	line-height: 16px;
}

.restaurant_edit .qty-box {
	padding: 4px;
	border: 1px solid #b7b7b7;
	border-radius: 35px;
	width: 100%;
	justify-content: space-between;
}

.restaurant_edit a.bg-danger {
	border-color: #dc3545 !important;
}

.modern-booking-form .mb-3 {
	margin: 0 !important;
}

.text-green {
	color: var(--primary-color);
}

.resturent-benner .news-img {
	background: url('../img/returent-bg.jpg');
	height: 400px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px 40px;
	display: flex;
	align-items: center;
	position: relative;
}

.resturent-benner .news-img:before {
	content: "";
	background-color: #0009;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 8px;
}

.resturent-benner .news-img h4 span {
	font-size: 50px;
	line-height: 60px;
	font-weight: 600;
}

.resturent-benner .news-img p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 18px;
}

.resturent-benner .news-img h4 {
	color: #fff;
	font-size: 40px;
	margin-bottom: 12px;
}

.main-slider .feature-img {
	width: 100%;
	height: 200px;
}

.main-slider .feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.main-slider .card {
	border-radius: 16px;
	background: #f6fbf3;
	border: 1px solid #eee;
	transition: all .3s ease-in-out;
	min-height: 340px;
}

.main-slider .card:hover {
	transform: translateY(-10px);
}

.main-slider .card .location {
	display: flex;
	gap: 5px;
}

.main-slider .card .location i {
	background-color: rgb(78, 183, 17);
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	font-size: 12px;
	color: #fff;
	min-height: 25px;
	min-width: 25px;
}

.featureSwiper .feature-link:hover .card-title {
	color: rgb(78, 183, 17);
}

.featureSwiper .feature-link .card-title {
	transition: all .5s ease-in-out;
	font-size: 18px;
}

.featureSwiper .feature-link p {
	font-size: 14px;
	line-height: 24px;
}

.featureSwiper .feature-link p i {
	color: #FFC500;
}

.smart-ftr-left-inr-box .smart-card .ftr-icon {
	display: flex;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	background: #f6fbf3;
	text-align: center;
	line-height: 46px;
	margin-bottom: 20px;
	align-items: center;
	justify-content: center;
	border: 1px solid #28a745;
}



.quantity-input-btn {
	max-width: 100%;
}

.form-control:focus {
	box-shadow: none !important;
}

.pikup-inr-box label {
	display: inline-block;
	border: 1px solid #dee2e6;
	padding: 10px;
	transition: all 0.3s;
	width: 100%;
	text-align: center;
	border-radius: 6px;
	cursor: pointer;
}

.pikup-inr-box p {
	transition: all 0.3s;
}

.pikup-inr-box input[type="radio"] {
	display: none;
}

.pikup-inr-box input[type="radio"]:checked+label {
	background-color: rgba(78, 183, 17, 0.1) !important;
	border: 1px solid var(--primary-color);
}

.pikup-inr-box input[type="radio"]:checked+label {
	color: var(--primary-color) !important;
}

.pikup-inr-box input[type="radio"]:checked+label p {
	color: var(--primary-color) !important;
}

.shedule-modal .modal-header {
	width: 30px;
	height: 30px;
	margin: -23px -18px 0 auto;
	background-color: var(--primary-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shedule-modal .btn-close {
	opacity: 1;
	filter: invert(1);
	background-size: 12px;
	padding: 0 !important;
	margin: 0 !important;
}

.coupon-section-txt p {
	color: var(--primary-color);
	cursor: pointer;
}

.form-switch .form-check-input:focus {
	box-shadow: none;
}

.text-green {
	color: var(--primary-color);
}

.common-btn.disabled {
	display: inline-block;
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
	background-color: #6c757d !important;
	border-color: #6c757d !important;
	color: #fff !important;
	text-decoration: none !important;
}

.opening-hour p {
	width: 100%;
	text-align: center;
}

.opening-hour {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.page-head h1 {
	font-size: 1.5rem;
}

.history-view-table .table th {
	background-color: transparent !important;
	color: #000 !important;
}

.history-view-table .table {
	border: 1px solid #ddd;
}

.card-box-text h6 {
	font-weight: 600;
}

.card-box-text h4 {
	font-size: 20px;
}

.card-box-text.card {
	border: 1px solid #dddddd8c;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.comment-box .card-header {
	background-color: var(--primary-color);
	color: #fff !important;
}

.comment-box .card-header h4 {
	margin-bottom: 0;
	font-size: 22px;
	line-height: 1.5;
}

.comment-box .form-group {
	text-align: end;
}

.wpwl-container {
	min-height: calc(100vh - 440px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpwl-brand-card {
	position: absolute;
	top: 0;
	right: 0;
}

.wpwl-wrapper {
	width: 100%;
	padding-right: 0 !important;
}

.wpwl-label.wpwl-label-brand {
	margin-top: 28px;
}

.wpwl-control.wpwl-control-brand {
	min-height: 50px !important;
	border-radius: 10px;
	padding: 0 15px;
	border: 0;
}

.wpwl-control {
	min-height: 50px;
	border-radius: 10px;
	padding: 0 15px;
	border: 0;
}

.wpwl-label.wpwl-label-brand,
.wpwl-label {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
}

.wpwl-label {
	margin-bottom: 10px;
}

.wpwl-button.wpwl-button-pay {
	width: 100%;
	margin-top: 14px;
	border-radius: 10px;
	border: 1px solid #3A833A;
	padding: 12px;
	font-size: 18px;
	text-transform: capitalize;
}

.wpwl-form-card {
	border-radius: 20px !important;
	padding: 20px !important;
	border: 0 !important;
	box-shadow: none !important;
	margin-bottom: 0 !important;
}

.payment-inner {
	padding: 15px 0;
}

.payment-inner h3 {
	font-weight: 600;
}

.payable-payment h5 span {
	font-size: 26px;
	color: var(--primary-color);
	font-weight: 600;
}

.payment {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid #ddd;
	text-align: center;
	margin-top: 50px;
}

.payment_header .check {
	width: 50px;
	height: 50px;
	margin: 0 auto;
	background-color: #dc3545;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	color: #fff;
}

.payment .content h1 {
	font-size: 29px;
	line-height: 1.5;
	font-weight: 600;
	margin-top: 15px;
}

.payment .content p {
	font-size: 18px;
	line-height: 1.5;
}

.payment .content p a {
	padding: 11px 45px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
}


.custom-pagination .pagination {
	margin-top: 20px;
	justify-content: center;
	gap: 6px;
}

.custom-pagination li.disabled,
.custom-pagination li .page-link,
.custom-pagination li a,
.custom-pagination li span {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50% !important;
	border: 1px solid #eee;
	background: #fff;
	color: #333;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 15px;
	text-decoration: none;
}

.custom-pagination li.active a,
.custom-pagination li.active span {
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
	color: #fff !important;
}

.custom-pagination li a:hover {
	background-color: #f8f9fa;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.custom-pagination li.prev a,
.custom-pagination li.next a {
	color: var(--primary-color);
	font-size: 18px;
}

.custom-pagination li.disabled span,
.custom-pagination li.page-item.next span {
	border: none !important;
	background: transparent !important;
}


.review-block .img-rounded {
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	border-radius: 4px;
	object-fit: cover;
}

.required label::after {
	content: "*";
	color: red;
	margin-left: 3px;
}

.restaurant-update .page-head {
	padding: 15px;
	position: relative;
	border-radius: 8px;
	display: flex;
	align-items: center;
}

.restaurant-update .page-head h1 {
	font-size: 24px;
	color: #2c2b2e;
	margin-right: 10px;
	margin-bottom: 0;
	font-weight: 500;
}