body {
	font-family: 'Josefin Sans', sans-serif;
	color: #282C3F;
	font-size: 16px;
}

/*.row {
	margin:0px !important;
	padding:0px !important;
}
.row>* {
	margin:0px !important;	
	padding-left: 0;
    padding-right: 0;
}*/

.icon-list-right {
	display: flex;
	align-items: center;
	grid-gap: 45px;
}
.btn-darkn {
	background-color: #282C3F;
	border-radius: 8px;
	color: white !important;
	padding: 12px 30px;
	transition: all ease 0.4s;
	
}

.btn-darkn-border {
	background-color: transparent;
	border-radius: 0;
	color: #282C3F;
	padding: 10px 30px;
	transition: all ease 0.4s;
	border: 1px solid #282C3F;
}
.btn-darkn-border:hover {
	background-color: #282C3F;
	color: white;
}

.btn-green {
	background-color: #2BBA5F;
	border-radius: 0;
	color: white !important;
	padding: 12px 30px;
	transition: all ease 0.4s;
	border-radius: 8px;
}
a.blck {
	color: #000;
	text-decoration: none;
	}
.btn-green:hover {
    background-color: #282C3F;
}
.btn-darkn:hover {
	background-color: #2BBA5F;
}
.btn:focus {
	box-shadow: none;
}
.btn-darkn-text {
	color: #282C3F;
	border-radius: 0;
	transition: all ease 0.4s;
	font-weight: 600;
}
.btn-darkn-text:hover {
	color: #2BBA5F;
}
.btn {
	font-size: 16px;
}

.user__account {}
.user__account button {}
.user__account .dropdown-menu {
	border-radius: 0;
	border: 1px solid rgba(40, 44, 63, 0.15);
}
.user__account .dropdown-menu .dropdown-item.active,
.user__account .dropdown-menu .dropdown-item:active {
	background-color: #2BBA5F;
}

.cart {
	position: relative;
	display: grid;
	cursor: pointer;
}
.cart i {
	font-size: 22px;
	color: #282C3F;
	transition: color ease 0.4s;
}
.cart:hover i {
	color: #2BBA5F;
}
.cart:hover .badge {
	background-color: #2BBA5F;
}
.cart .badge {
	position: absolute;
    background-color: #282C3F;
    font-weight: 400;
    border-radius: 12px;
    padding: 4px 6px 3px 6px;
    font-size: 12px;
    right: -13px;
    top: -6px;
	transition: background-color ease 0.4s;
}
.cart-dropdown.open {
	/*top: 45px;*/
	/*opacity: 1;*/
    /*visibility: visible;*/
    display: block;
}
.cart-dropdown {
	/*position: relative;*/
    /*width: 400px;*/
    margin: 0 auto;
    /*min-height: 180px;*/
    z-index: 9;
    /*background-color: white;*/
    /*padding-top: 30px;*/
    display: none;
    /*align-items: center;*/
    /*border-top: 2px solid #2BBA5F;*/
    /*top: 120px;*/
    /*right: -40px;*/
    /*transform: translateX(-50%);*/
    /*box-shadow: 6px 10px 20px 0 rgb(40 44 63 / 20%);*/
    transition: all ease 0.5s;
    /*opacity: 0;*/
    /*visibility: hidden;*/
}

img.w-100.mb-4 {
    width: 50% !important;
}

.cart-dropdown .empty {
	padding: 20px;
	text-align: center;
    margin: 0 auto;
}
.cart-dropdown .empty h4 {
	font-weight: 700;
}
.cart-dropdown .empty p {
	color: #797E97;
	margin-bottom: 0;
}
.cart-dropdown .cart-details {
	width: 100%;
	position: relative;
}
.cart-dropdown .cart-details .cart-product {
	padding: 0 30px;
	list-style: none;
	display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.cart-dropdown .cart-details .cart-product li {
	grid-gap: 15px;
    padding: 15px;
    justify-content: space-between;
    background-color: white;
    box-shadow: 2px 4px 12px 0 rgba(40, 44, 63, 0.15)
}
.cart-dropdown .cart-details .cart-product li:nth-child(even) {
	/*background-color: #E9E9EB;*/
}
.cart-dropdown .cart-details .cart-product li img {
	width: 70px;
}
.cart-dropdown .cart-details .cart-product li .product_info {
	flex-grow: 1;
	    margin-left: 2%;
}
.cart-dropdown .cart-details .cart-product li .product_info h4 {
	font-size: 16px;
    display: flex;
    align-items: center;
    grid-gap: 5px;
	margin-bottom: 4px;
}
.cart-dropdown .cart-details .cart-product li .product_info p {
	font-size: 12px;
	color: #797E97;
	margin-bottom: 0;
}
.cart-dropdown .cart-details .cart-product li .delete {}
.cart-dropdown .cart-details .cart-product li .delete i {
	color: #2BBA5F;
	cursor: pointer;
}
.cart-dropdown .cart-details .cart_bill {
	margin-top: 20px;
    padding: 20px 10px;
    background-color: white;
}
.cart-dropdown .cart-details .cart_bill p {
	margin: 0;
    font-size: 14px;
}
.cart-dropdown .cart-details .cart_bill h5 {
	margin: 0;
    font-size: 15px;
}
.cart-dropdown .cart-details .cart_bill li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #797E97;
    padding: 3px 0;
}
.cart-dropdown .cart-details .cart_bill li.highlight {
    color: #2BBA5F;
}
.cart-dropdown .cart-details .price__qunt {
	height: 50px;
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid rgba(40, 44, 63, 0.15);
}
.cart-dropdown .cart-details .price__qunt .pro__price {
	margin-bottom: 0;
	font-size: 20px;
}
.cart-dropdown .cart-details .bottom {
    padding: 15px;
    background-color: white;
    border-top: 1px solid #e9e9eb;
    position: sticky;
    bottom: 0;
}
.cart-dropdown .cart-details .bottom .sub_totle {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.search i {
	transition: all ease 0.4s;
	cursor: pointer;
}
.search:hover i {
	color: #2BBA5F;
}


.order-summary.open {
	display: block;
}
.order-summary {
	display: none;
}
.order-summary .dil_order__list {
	padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.order-summary .order__time {
	/*align-items: left;
    justify-content: space-between;
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid rgba(40, 44, 63, 0.15);*/
	margin-left: 9px;
}

.trackline {
    height: 44px !important;    
    border-right: 2px solid #21b480;

}
.dot {
    height: 16px;
    width: 16px;
    background-color: #488978;
    border-radius: 50%;
    text-align: center;
}

.m-top{
    margin-top: 21px;
    margin-left: 15px;
}

.big-dot {
    height: 16px;
    width: 16px;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #488978;
}
.big-dot i {
    font-size: 14px !important;
    padding: 1px;
}

span.span1 {
    color: #000 !important;
    font-weight: 700 !important;
}


.order-summary .order__time i {
    color: #2BBA5F;
    font-size: 20px;
}
.order-summary .order__time p {
    margin-bottom: 0;
    color: #797E97;
    padding: 0 20px;
    text-align: left;
    flex-grow: 1;
}
.order-summary .order__time span {
    font-size: 14px;
    /*background-color: hotpink;
    padding: 0px 10px 2px 20px;*/
    color: #797E97;
    /*font-weight: 700;
    width: 115px;*/
    position: relative;
}


.order-summary .dil_order__list li {
	background-color: white;
    box-shadow: 2px 4px 12px 0 rgba(40, 44, 63, 0.15);
}
.order-summary .cards__list {
	background-color: white;
	padding: 20px;
}
.order-summary .cart_bill {
	margin-top: 20px;
    padding: 20px 10px;
    background-color: white;
}
.order-summary .cart_bill p {
	margin: 0;
    font-size: 14px;
}
.order-summary .cart_bill h5 {
	margin: 0;
    font-size: 15px;
}
.order-summary .cart_bill li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #797E97;
    padding: 3px 0;
}
.order-summary .cart_bill li.highlight {
    color: #2BBA5F;
}

.order-summary .bottom {
    padding: 20px 15px;
    background-color: white;
    border-top: 1px solid #e9e9eb;
    position: sticky;
    bottom: 0;
}
.order-summary .bottom .sub_totle {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}


.address-set.open {
	display: block;
}
.address-set {
    width: 380px;
    margin: 0 auto;
    display: none;
}
.address-set .map {
	height: 380px;
	margin-bottom: 30px;
	border: 1px solid rgba(40, 44, 63, 0.2);
}
.address-set .map iframe {
	width: 100%;
	height: 100%;
}
.address-set .annotation_dir {
	display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}
.address-set .dir_cod {
	flex-grow: 1;
    text-align: center;
    position: relative;
}
.address-set .dir_cod input {
	position: absolute;
    opacity: 0;
}
.address-set .dir_cod input:checked + label {
	border: 1px solid #2BBA5F;
	background-color: #2BBA5F;
    color: white;
}
.address-set .dir_cod label {
	width: 100%;
    padding: 15px;
    border: 1px solid rgba(40, 44, 63, 0.2);
    transition: all ease 0.3s;
}


.hero {
	background-color: #F5F5F5;
}
@media (min-width: 1320px) {
	.hero>div {
		/*margin-left: calc(calc(100% - 1320px) / 2);
		padding: 0 15px;*/
	}
}
@media (max-width: 1320px) {
	.hero>div {
		padding: 0 12px;
	}
}

.padding_left15 {
	padding-left:15%;
}

.hero h1 {
	font-size: 60px;
	line-height: 1.2em;
	color: #282C3F;
	font-weight: 700;
	margin: 0;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
	display: flex;
	grid-gap: 15px;
	flex-wrap: wrap;
}

.hero h1 .green-text {
	color: #2BBA5F;
}
.hero form {
	background-color: white;
	box-shadow: 6px 12px 15px 0 rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
    grid-gap: 10px;
    padding-right: 10px;
    margin-top: 47px;
    max-width: 530px;
}
.hero form input {
	background-color: transparent;
	padding: 25px 30px;
	border: none;
	outline: none;
	font-size: 16px;
	flex-grow: 1;
}	
/*.hero form a {
	background-color: rgb(127 178 68 / 16%);
    color: #2BBA5F;
    padding: 6px 10px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 7px;
}*/

.hero form a {
    /* background-color: rgb(127 178 68 / 16%); */
    color: #282C3F;
    padding: 6px 10px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 7px;
    font-size: 20px;
}

.hero form button {
	border: none;
	background-color: #2BBA5F;
	color: white;
	outline: none;
	width: 46px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero .fade-slider img {
	width: 100%;
}


.categorys {
	padding-top: 25px;
	padding-bottom: 60px;
}
.h2-title {
	font-size: 40px;
	line-height: 1.2em;
	color: #282C3F;
	font-weight: 700;
	margin: 0;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
	    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.h4-title {
	font-size: 28px;
	line-height: 1.2em;
	color: #282C3F;
	font-weight: 700;
	margin: 0;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid;
}
.category-list {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}
.category-list .category-wep {
	width: 25%;
	padding: 15px;
	/*height: 375px;*/
	position: relative;
}
.category-list .category-wep:hover .category-item {
	z-index: 1;
	margin-bottom: 0;
}
.category-list .category-item {
	background-color: #F9F9F9;
	padding: 15px;
	text-align: center;
	box-shadow: 3px 0px 0px 0 rgba(0, 0, 0, 0);
	/*height: 314px;*/
    transition: all ease-in-out 0.5s;
    position: relative;
    margin-bottom: 55px;
}
.category-list .category-item img {
	width: 100%;
	margin-bottom: 15px;
	background-color: white;
	padding: 20px;
}
.category-list .category-item h6 {
	font-size: 24px;
	line-height: 1.2em;
	color: #282C3F;
	font-weight: 600;
	margin: 0;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.category-list .category-wep:hover .category-item {
	box-shadow: 2px 10px 20px 0 rgba(0, 0, 0, 0.1);
	/*height: 100%;*/
}
.category-list .category-wep:hover .qv-btn {
	/*transform: translateY(0px);*/
	margin-top: 0;
	opacity: 1;
	visibility: visible;
}
.category-list .category-item .qv-btn {
	display: inline-block;
    width: 100%;
    overflow: hidden;
    /*transform: translateY(-100%);*/
    margin-top: -55px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.5s;
}
.category-list .category-item p {
	margin: 0;
    padding-top: 15px;
    border-top: 1px solid #E8EAF3;
    margin-top: 15px;
    color: #2BBA5F;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}




.category-list .category-wep._1fgC2._1fgC2right .info {
	right: calc(100% - 30px);

}
.category-list .category-wep._1fgC2right .info {
	right: calc(100% - 100px);
    left: inherit !important;
}
.category-list .category-wep._1fgC2 .info {
    left: calc(100% - 30px);
    opacity: 1;
}
.category-list .category-wep .info {
    position: absolute;
    top: 50%;
    left: calc(100% - 100px);
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: all ease 0.5s;
}
.sub_prodcr {
    padding: 30px;
    background-color: white;
    box-shadow: 0 3px 24px 0 rgb(40 44 36 / 20%);
    animation-name: example;
  	animation-duration: 0.6s;
}
@keyframes example {
  0%   {
  	opacity: 0;
  }
  100% {
  	opacity: 1;
  }
}
.sub_prodcr h3 {
	font-size: 22px;
	margin-bottom: 15px;
	text-shadow: 2px 2px 0 rgba(40, 44, 63, 0.1);
	font-weight: 700;
}
.sub_prodcr .cat-prodct-list {
	flex-direction: row;
    flex-wrap: wrap;
    column-count: 2;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: -15px;
}
.cat-prodct-list .cat-prodct-item {
	margin-bottom: 15px;
}
.cat-prodct-list .cat-prodct-item a {
	display: block;
	position: relative;
	margin-bottom: 10px;
	width: 130px;
    overflow: hidden;
}
.cat-prodct-list .cat-prodct-item a:hover:after {
	height: 0;
}
.cat-prodct-list .cat-prodct-item a:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 5px;
	bottom: 0;
	left: 0;
	background-color: #DBDDE9;
    transition: all ease-in-out 0.4s;
}
.cat-prodct-list .cat-prodct-item a:hover img {
	transform: scale(1.2);
}
.cat-prodct-list .cat-prodct-item a img {
	height: 80px;
	width: 130px;
	object-fit: cover;
	transform: scale(1.0);
    transition: all ease-in-out 0.4s;
}
.cat-prodct-list .cat-prodct-item p {
	font-size: 12px;
	color: #797E97;
	margin: 0;
	width: 130px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}




.sidebar-warrep {
    width: 560px;
    margin-left: auto;
    height: 100vh;
    background-color: #F6F6F6;
    /*padding: 30px;*/
    position: relative;
    z-index: 1;
    transform: translateX(100%);
	transition: all ease-in-out 0.6s;
	overflow-y: auto;
	    padding-bottom: 50px;
}
.full-sidebar.open .sidebar-warrep {
    transform: translateX(0%);
}
.full-sidebar.open .overlay {
	opacity: 0.3;
}
.overlay {
	width: 100%;
	height: 100vh;
	background-color: #282C3F;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: all ease-in-out 0.4s;
}
.full-sidebar {
	position: fixed;
	height: 100vh;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	visibility: hidden;
}
.full-sidebar.open {
    visibility: visible;
}
.close {
    height: 50px;
    width: 50px;
    border: 2px solid #282C3F;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 30px;
}
.full-sidebar .form.open {
	display: block;
}
.full-sidebar .form {
	/*padding-top: 10vh;*/
    width: 380px;
    margin: 0 auto;
    display: none;
}
.full-sidebar .form p {
	margin-top: 15px;
	margin-bottom: 30px;
}
.cm-control {
	margin-bottom: 30px;
	position: relative;
}
.cm-control input,select {
	outline: none;
	height: 60px;
	width: 100%;
	font-size: 16px;
	color: #282C3F;
	box-shadow: 5px 8px 10px 0 rgba(0, 0, 0, 0.08);
	border: none;
	padding: 15px 30px;
}
.cm-control label {
	position: absolute;
	left: 30px;
	color: #797E97;
	top: 16px;
	transition: all ease-in-out 0.2s;
}

.cm-control label.disabled_none {
	display: none;
}

.cm-control input:focus ~ label,
.cm-control input:valid ~ label {
	top: 0px;
	font-size: 13px;
	/*color: #282C3F;*/
}
.mb-30 {
	margin-bottom: 30px;
}

.mb-50 {
	margin-bottom: 50px;
}
.pt-70 {
	padding-top: 70px;
}
.pb-70 {
	padding-bottom: 70px;
}
a {
	color: #2BBA5F;
	transition: color ease 0.3s;
}
.forgot-link {
	display: flex;
	align-items: center;
	grid-gap: 7px;
}
.cm-checkbox {
	position: relative;
}
.cm-checkbox input {
	position: absolute;
	width: 100%;
	z-index: 1;
	height: 100%;
	opacity: 0;
}
.cm-checkbox i {
	position: absolute;
	top: 4px;
	left: 4px;
	font-size: 18px;
	color: white;
	opacity: 0;
}
.cm-checkbox span {
	width: 25px;
    height: 25px;
    background-color: #e1e1e1;
    display: block;
	transition: all ease-in-out 0.3s;
	margin-right: 10px;
}
.cm-checkbox input:checked ~ span {
	background-color: #2BBA5F;
}
.cm-checkbox input:checked ~ i {
	opacity: 1;
}

.sidebar-warrep-left {
    width: 560px;
    margin-right: auto;
    height: 100vh;
    background-color: #F6F6F6;
    /*padding: 30px;*/
    position: relative;
    z-index: 1;
    transform: translateX(-100%);
	transition: all ease-in-out 0.6s;
	overflow-y: auto;
}

.full-sidebar-left.open .sidebar-warrep-left {
    transform: translateX(0%);
}
.full-sidebar-left.open .overlay {
	opacity: 0.3;
}
.full-sidebar-left {
	position: fixed;
	height: 100vh;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	visibility: hidden;
}
.full-sidebar-left.open {
    visibility: visible;
}
.close__left {
    height: 50px;
    width: 50px;
    border: 2px solid #282C3F;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 30px;
    margin-left: auto;
}

.bottom__bat {
	display: none;
}

/*
.abut-slider .slides {
	width: 100%;
	position: relative;
}
.abut-slider .slides img {
	width: 100%;
}
.abut-slider .slides .inner {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 0 10%;
}
.abut-slider .slides .inner h1 {
	font-size: 64px;
    font-weight: 700;
}
.abut-slider .slides .inner p {
	font-size: 20px;
}
.abut-slider .slides .inner a {
    border-radius: 0;
    color: white !important;
    padding: 16px 30px;
    transition: all ease 0.4s;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
}

.abut-slider .slick-prev {
    left: 30px;
    z-index: 1;
}
.abut-slider .slick-next {
    right: 30px;
    z-index: 1;
}
*/
section.section-5233,section.section-5244 {
    padding: 60px 0;
}
section.section-5233 .featured-box-contant {
	padding-left: 10%;
}
section.section-5244 .featured-box-contant {
	padding-right: 10%;
}
.featured-box-contant {
    background-image: url(https://anythinginstantly.com/photo/food.png);
    height: 440px;
    display: flex;
    align-items: center;
    padding: 40px;
    color: white;
    position: relative;
}
.featured-box-contant:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(90deg, rgba(40, 44, 63, 0.6)0%, rgba(40, 44, 63, 0.5)50%, rgba(255, 255, 255, 0)100%);
}
.featured-box-contant .contant {
	width: 70%;
	position: relative;
	z-index: 1;
}
.featured-box-contant h2 {
	font-size: 40px;
    line-height: 1.2em;
    color: white;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(40, 44, 63, 0.2);
}
.featured-box-contant p {
	font-size: 16px;
    line-height: 1.2em;
    color: #D5D5D5;
    font-weight: 400;
    margin: 0;
}


.downloads {
	padding: 70px 0;   
}
.downloads .inner {
    background-color: #F5F5F5;
    background-image: url('../image/rm222-mind-19.png');
}
.downloads .app-img img {
	margin-top: -80px;
}
.downloads .store-contant {
	/*width: 400px;*/
	position: relative;
}
.downloads .store-contant .clock {
	/*position: absolute;*/
	right: 35%;
	top: -3px;
	font-size: 22px;
}
.downloads .store-contant h4 {
	font-size: 20px;
    line-height: 1.2em;
    color: #2BBA5F;
    font-weight: 500;
    margin-bottom: 0;
}
.downloads .store-contant h2 {
	font-size: 60px;
    line-height: 1.2em;
    color: #282C3F;
    font-weight: 700;
    margin: 0;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.downloads .store-contant p {
	font-size: 20px;
    line-height: 1.2em;
    color: #797E97;
    font-weight: 400;
    margin-bottom: 30px;
}


.zip-form {
	padding: 30px;
	background-color: #F6F6F6;
	border: none;
	box-shadow: none;
	border-radius: 0;
	text-align: center;
}
.zip-form>i {
	font-size: 50px;
    margin-bottom: 30px;
}
.zip-form h2 {
	font-size: 26px;
    line-height: 1.2em;
    color: #282C3F;
    font-weight: 600;
    margin: 0;
    margin-bottom: 25px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.zip-form input {
	outline: none;
    height: 55px;
    /*width: 100%;*/
	width: 200px;
    font-size: 16px;
    color: #282C3F;
    box-shadow: 5px 8px 10px 0 rgb(0 0 0 / 8%);
    border: none;
    padding: 15px 30px;
    margin-bottom: 10px;
    text-align: left;
	    border: 1px solid;
}
.modal-backdrop.show {
	opacity: 1;
}
.modal-backdrop {
	background-color: rgba(40, 44, 63, 0.2);
	backdrop-filter: blur(5px);
}

/*Shop Page*/

.breadcrumbs_area {
	background-color: #282C3F;
	padding: 15px 0;
}
.breadcrumbs_area ul {
	display: flex;
	flex-wrap: wrap;
    flex-direction: row;
    grid-gap: 8px;
	margin-bottom: 0;
}
.breadcrumbs_area ul li {}
.breadcrumbs_area ul li:not(:last-child):after {
	content: '/';
	color: #797E97;
	margin-left: 8px;
}
.breadcrumbs_area ul li a {
	color: #ffffff;
    text-decoration: none;
}
.breadcrumbs_area ul li a:hover {
	color: #2BBA5F;
}
.breadcrumbs_area .contain {
	grid-gap: 30px;
}
.breadcrumbs_area .contain img {
	height: 170px;
    object-fit: cover;
}
.breadcrumbs_area .contain h3 {
	color: #ffffff;
	font-size: 36px;
	margin-bottom: 10px;
	height: 1em;
}
.breadcrumbs_area .contain p {
	color: #797E97;
	margin-bottom: 0;
}

.breadcrumbs_area ul li:nth-child(3) a {
    color: #2BBA5F;
}

.top__bar {
	border-bottom: 1px solid #282c3f;
	padding-bottom: 10px;
	margin-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.top__bar .search_pro {}
.top__bar .search_pro input {
	outline: none;
    border: none;
    box-shadow: none;
    padding: 10px;
    width: 300px;
    color: #282c3f;
}


.products-list-left {
    width: 70%;
}
.cart-sidbar-right {
    width: 30%;
}
.pro__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 26px;
}
.pro__list .pro__item._1fdgC3 {
    border: 1px solid rgba(40, 44, 63, 0.2);
    box-shadow: 3px 5px 10px 0 rgba(40, 44, 63, 0.1);
}
.pro__list .pro__item {
    padding: 20px;
    background-color: white;
    border: 1px solid white;
    /*width: 31.11%;*/
	width: 22.50%;
    transition: all ease 0.4s;
    position: relative;
	    border: 1px solid rgba(40, 44, 63, 0.2);
    box-shadow: 3px 5px 10px 0 rgb(40 44 63 / 10%);
}
.pro__list .pro__item .rating__discount {
	visibility: visible;
	opacity: 1;
	transition: all ease 0.4s;
}
.pro__list.similar_pro .pro__item {
    width: 23.26%;
    background-color: #F6F6F6;
}
.pro__list.similar_pro .pro__item .price__green {
	font-size: 28px;
	color: #2BBA5F;
	font-weight: 700;
}
.pro__item img {
    width: 100%;
    /*box-shadow: 5px 5px 20px 0 rgba(40, 44, 63, 0.2);*/
    margin-bottom: 25px;
	height: 300px;
	object-fit: scale-down;
}
.pro__item .pro__title {
    /*font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;*/
	    font-size: 14px;
    margin-bottom: 10px;
    height: 40px;
}
.pro__item .pro__disc {
    color: #797E97;
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 18px;
}
.pro__item .rating__quantity {
	flex-grow: 1;
	position: relative;
}
.pro__item .pro__rating {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 8px;
    color: #2BBA5F;
    font-size: 14px;
    background-color: rgba(127, 178, 68, 0.35);
    padding: 4px 10px;
    position: absolute;
    right: 20px;
}
.pro__item .discount {
    margin-bottom: 0;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(40, 44, 63, 0.15);
    font-size: 15px;
    color: #797E97;
}
.pro__item .pro__quantity {
	height: 40px;
	overflow: hidden;
	width: 75px;
}
.pro__item .pro__quantity.open>button {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
}
.pro__item .pro__quantity.open .field1 {
	transform: translateY(-100%);
}
.pro__item .pro__quantity>button {
    /*background-color: #F5F5F5;
    border: 1px solid rgb(40 44 63 / 20%);
    width: 115px;
    transition: all ease 0.4s;
	font-size: 16px;
	color: #2BBA5F;
    height: 100%;
    padding: 0;*/
	
	/*background-color: #F5F5F5;
    border: 1px solid rgb(40 44 63 / 20%);*/
	
    width: 90px;
    transition: all ease 0.4s;
    font-size: 14px;
    color: #2BBA5F;
    height: 100%;
    padding: 0;
    float: right;
	
	background-color: rgb(247, 255, 249);
    border: 0.5px solid rgb(12, 131, 31);
    border-radius: 8px;
}


.reviews__list {}
.reviews__list ul {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
	max-height: 500px;
    overflow: auto;
}
.reviews__list li {
    padding: 15px;
    background-color: #F6F6F6;
}
.reviews__list li img {
	width: 70px;
	box-shadow: 2px 4px 12px 0 rgba(40, 44, 63, 0.15);
}
.reviews__list li .top__set {
	display: flex;
    flex-direction: row;
    align-items: flex-start;
    grid-gap: 20px;
    margin-bottom: 20px;
}
.reviews__list li .content {
	flex-grow: 1;
}
.reviews__list li .content .user__name {
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.2px;
}
.reviews__list li .content .review__date {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	color: #797E97;
}
.reviews__list li .content .rating_star {
	margin-bottom: 10px;
}
.reviews__list li .content .rating_star i {
	color: #2BBA5F;
	font-size: 16px;
}
.reviews__list li .reviews__text {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	color: #797E97;
	letter-spacing: 0.2px;
}
.reviews__submit {
	background-color: #F6F6F6;
	padding: 35px;
	margin-top: 63px;
}
.reviews__submit .rating_star i:hover {
	color: #2BBA5F;
}
.reviews__submit .rating_star i {
	transition: all ease 0.4s;
	cursor: pointer;
}
.reviews__submit .rating_star {
	color: #797E97;
	font-size: 20px;
	margin-bottom: 15px;
	margin-top: 15px;
}
.reviews__submit textarea {
	height: 200px;
	width: 100%;
	box-shadow: 5px 8px 10px rgba(40, 44, 63, 0.1);
	border: none;
	outline: none;
	padding: 20px;
	margin-bottom: 30px;
}

.cart__empty {
    text-align: center;
    border-left: 1px solid lightgray;
}
.cart__empty p {
	color: #797E97;
}
.cart__empty h3 {
	font-size: 30px;
    line-height: 1.2em;
    color: #282C3F;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgb(0 0 0 / 20%);
}

.cart__opeb {
    
}
.cart__opeb p {
	color: #797E97;
}
.cart__opeb h2 {
	font-size: 30px;
    line-height: 1.2em;
    color: #282C3F;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 rgb(0 0 0 / 20%);
}
.cart__opeb ul {}
.cart__opeb ul li {
	display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 10px;
}
.cart__opeb ul li:nth-child(odd) {
    background-color: #F6F6F6;
}
.cart__opeb ul li img {
	width: 70px;
	box-shadow: 2px 4px 12px 0 rgba(40, 44, 63, 0.15);
}
.cart__opeb ul li .info {
	flex-grow: 1;
}
.cart__opeb ul li .info .title {
	font-size: 15px;
    margin-bottom: 10px;
}
.cart__opeb ul li .info .price {
	font-size: 12px;
	color: #797E97;
	margin-bottom: 0;
}
.cart__opeb ul li .pro__quantity {}
.cart__opeb ul li .pro__quantity .field1 {
	width: 75px;
	height: 36px;
}



.single_pro_details .price {
	display: flex;
    grid-gap: 10px;
    margin-bottom: 30px;
	    margin-top: 15px;
}
.single_pro_details .price h4 {
	/*font-size: 58px;*/
	    font-size: 28px;
    /*font-weight: 700;*/
    color: #2BBA5F;
    margin: 0;
}
.single_pro_details .price .inner p {
	/*margin-bottom: 0;
	font-size: 14px;
	    color: red;*/
		    margin-bottom: 0;
    font-size: 12px;
    color: white;
    background-color: red;
    padding: 1px 10px 0;
    border-radius: 3px;
}
.single_pro_details .pro__title {
	/*font-size: 34px;
	font-weight: 700;
	margin-bottom: 15px;*/
	    color: rgb(0, 0, 0);
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin: 8px 0px;
	    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.single_pro_details .__rating {
	display: flex;
	grid-gap: 15px;
	margin-bottom: 30px;
}
.single_pro_details .__rating ul {
	color: #2BBA5F;
	font-size: 18px;
}
.single_pro_details .__rating span {
	font-size: 18px;
	color: #797E97;
}
.single_pro .single_pro_img {
	/*box-shadow: 5px 5px 20px 0 rgba(40, 44, 63, 0.2);*/
	margin-bottom: 50px;
	width:100%;
}
.single_pro_details p.pro__disc {
	/*font-size: 18px;
	color: #797E97;*/	
	color: rgb(102, 102, 102);
    font-size: 14px;
    line-height: 18px;
    overflow-wrap: break-word;
	margin-bottom: 30px;
}
.single_pro_details .price .inner h5 {
	margin-bottom: 0;
	font-size: 25px;
	color: #000;
	opacity: 0.5;
	/*font-weight: 700;*/
	text-decoration: line-through;
}

.field1 {
	display: flex;
    height: 100%;
    /*background-color: #F5F5F5;
    border: 1px solid rgb(40 44 63 / 20%);*/
    /*width: 115px;*/
	width:75px;
    transition: all ease 0.4s;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
	float: right;
	
	background-color: rgb(247, 255, 249);
    border: 0.5px solid rgb(12, 131, 31);
    border-radius: 8px;
}
.field1 button.add {
    color: #2BBA5F;

}
.field1 button {
	background-color: transparent;
    border: none;
    outline: none;
    padding: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #797E97;
    font-size: 15px;
}
.field1 input {
	/*width: 40px;*/
	width: 25px;
    padding: 0;
    border: none;
    text-align: center;
    background-color: transparent;
    color: #2BBA5F;
    font-size: 15px;
    outline: none;
    height: 100%;
}

.pro__item .pro__price {
	text-align: center;
    display: flex;
    margin-top: 10px;
}
.pro__item .pro__price span {
	font-size: 14px;
	color: #797E97;
	text-decoration: line-through;
}
.pro__item .pro__price h3 {
	/*font-size: 22px;*/
	    font-size: 16px;
	margin-bottom: 0;
	/*font-weight: 700;*/
	    color: #2BBA5F;
}

/*.pro__item .inner p {
	margin-bottom: 0;
	font-size: 14px;
}
*/
.pro__item h5 {
	text-decoration: line-through;
	    font-size: 16px;
		padding-left: 5px;
}

.btn-like {
    width: 50px;
    height: 50px;
    background-color: #F5F5F5;
    color: #2BBA5F;
    font-size: 18px;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/*End Shop Page*/


.cart__header {
    display: flex;
    gap: 25px;
    background-color: #282c3f;
    color: white;
}
.cart__header li {
	padding: 15px;
    font-size: 16px;
}

.cart__list {
	width: 100%;
}
.cart__list ul {
	padding-left: 0;
	list-style: none;
}
.cart__list ul li {
	grid-gap: 25px;
    justify-content: space-between;
    padding: 15px;
}
.cart__list ul li:nth-child(even) {
	background-color: #F6F6F6;
}
.cart__list ul li img {
	width: 100px;
}
.cart__list ul li .product_info {
	flex-grow: 1;
}
.cart__list ul li .product_info h4 {
	font-size: 16px;
    margin-bottom: 5px;
}
.cart__list ul li .product_info p {
	font-size: 16px;
	color: #797E97;
	margin-bottom: 0;
}
.cart__list ul li .sub_price-qunt {
	display: flex;
	align-items: center;
}
.cart__list ul li .field1 {
	height: 44px;
}
.cart__list ul li .sub__total {
	font-size: 18px;
	color: #2BBA5F;
	font-weight: 700;
	width: 130px;
    line-height: 1em;
	text-align: center;
}
.cart__list ul li .delete {
	width: 50px;
    text-align: center;
}
.cart__list ul li .delete i {
	color: #2BBA5F;
	font-size: 20px;
}
.cart__list .bottom {
    padding: 15px;
    background-color: white;
    border-top: 1px solid #e9e9eb;
}
.cart__list .bottom .sub_totle {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cart__total_non_sticly {
	position: inherit !important;
}

.cart__total {
    background-color: #F6F6F6;
    /*padding: 30px;*/
    position: sticky;
    top: 30px;
}
.cart__total li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #e9e9eb;
    padding: 10px 0;
    border-top: 2px solid transparent;
}
.cart__total li p {
    color: #797E97;
    margin: 0;
}
.cart__total li h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}


.checkout__form {
	background-color: #F6F6F6;
    padding: 30px;
}
.checkout__form form {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.checkout__form form .cm-control {
	padding: 0 15px;
}
.w-33 {
	width: 33.33% !important;
}


.order__list {
    background-color: #F6F6F6;
}
/*.order__list li:nth-child(even) {
	background-color: #F6F6F6;
}*/
.order__list li {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    padding: 0 10px;
}
.order__list li img {
	width: 25%;
    padding: 10px;
}
.order__list li h4 {
	width: 45%;
    font-size: 18px;
    margin-bottom: 0;
}
.order__list li h6 {
	width: 10%;
    font-size: 16px;
    color: #797E97;
    margin-bottom: 0;
    text-align: center;
}
.order__list li p {
	width: 15%;
    color: #2BBA5F;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: right;
}


.delivery__address {
	background-color: #F6F6F6;
    padding: 30px;
}
.order__cart_detail {
	background-color: #F6F6F6;
    padding: 0px;	
}
.order__cart_detail h4.h4-title {
	padding: 20px 20px 0;
	padding-top: 30px;
}
.order__cart_detail .apply__coupon {
	border: 1px dashed #d7d7d7;
	background-color: transparent;
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	grid-gap: 15px;
	padding: 15px;
	cursor: pointer;
	font-size: 20px;
	transition: all ease 0.4s;
	margin: 20px 0;
}
.order__cart_detail .apply__coupon:hover {
	box-shadow: 0 5px 10px #e9e9eb;
}

.order__cart_detail .coupon__applyed {
	/*border: 1px dashed #d7d7d7;
	background-color: transparent;
	width: 100%;
	padding: 15px;
	transition: all ease 0.4s;	
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;*/
	
	/*height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;*/
	
	border: 1px dashed #fff;
    background-color: #fff;
    width: 100%;
    padding: 15px;
    transition: all ease 0.4s;
    align-items: center;
    border-radius: 9px;
    justify-content: space-between;
    flex-wrap: nowrap;
	
}


.order__cart_detail .coupon__applyed h6 {
	margin-bottom: 0;
	font-size: 16px;
}
.order__cart_detail .coupon__applyed p {
	margin-bottom: 0;
	font-size: 16px;
	color: #797E97;
}
.order__cart_detail .coupon__applyed button {
	padding: 0;
	border: none;
	background-color: transparent;
	transition: all ease 0.4s;
	font-weight: 600;
	color: #67af77;
    font-size: 13px;
}

.order__cart_detail .coupon__applyed button:hover {
	color: #2BBA5F;
}
.order_cart_inner {
	max-height: calc(100vh - 400px);
	overflow: auto;
	padding: 0 20px;
}
.order__cart_footer {
    /*display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;*/
	display: flex;
    padding: 12px 22px;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    /*align-items: center;*/
}
.order__cart_footer h5 {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
}
.order__cart_footer p {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
}

.order__cart_footer ul#price_section {
	    width: 100%;
}
/*profile*/


.profile_set {}
.profile_set .nav {
	flex-direction: column;
    align-items: flex-start;
    grid-gap: 15px;
    position: sticky;
    top: 20px;
}
.profile_set .nav .ac_link:hover {
	background-color: #F6F6F6;
}
.profile_set .nav .ac_link.active {
	background-color: #2BBA5F;
	color: white;
}
.profile_set .nav .ac_link {
	font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 15px;
    border: 1px solid rgba(40, 44, 63, 0.1);
    width: 100%;
    border-radius: 0;
    padding: 15px 20px;
    color: #282c3f;
    transition: all ease 0.4s;
	border-radius: 8px;
}


.profile__details ul {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
.profile__details ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
    border-bottom: 1px solid rgb(40 44 63 / 10%);
    padding: 10px 0px;
}
.profile__details ul li span {
	color: #797E97;
    font-size: 16px;
    width: 15%;
}
.profile__details ul li h4 {
	font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
}


.similar_pro .pro__item:hover {
	border: 1px solid rgba(40, 44, 63, 0.2);
    box-shadow: 3px 5px 10px 0 rgba(40, 44, 63, 0.1);
}
.similar_pro .pro__item {
    padding: 20px;
    background-color: white;
    border: 1px solid white;
    transition: all ease 0.4s;
    position: relative;
    margin: 15px 10px;
}
.similar_pro .pro__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}
.similar_pro .price__green {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
    color: #2BBA5F;
}


.orders__tab ul li {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
	padding: 15px;
	    border: 1px solid #d4d5d9;
    padding: 30px;
	padding-bottom: 20px;
    margin: 20px 0px;
}
.orders__tab ul li:nth-child(odd) {
        background-color: #F6F6F6;
    border: 1px solid #d4d5d9;
    padding: 30px;
	padding-bottom: 20px;
}
.orders__tab ul li .order__info {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.orders__tab ul li .order__id {
	margin-bottom: 5px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(40, 44, 63, 0.4);
}
.orders__tab ul li .order__items {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
}
.orders__tab ul li .item-info {
	display: flex;
	align-items: center;
	grid-gap: 10px;
}
.orders__tab ul li .order__bottom {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px dashed rgba(40, 44, 63, 0.2);
    padding-top: 10px;
	align-items: center;
}
/*.orders__tab ul li .top {
	display: flex;
	grid-gap: 15px;
	padding-bottom: 10px;
}*/
.orders__tab ul li .bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}
.orders__tab ul li img {
	width: 60px;
	/*box-shadow: 3px 5px 15px 0 rgba(40, 44, 63, 0.15);*/
}
/*.orders__tab ul li .info .order__id {
	margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(40, 44, 63, 0.4);
}*/
.orders__tab ul li .title {
	font-size: 16px;
	margin-bottom: 2px;
}
.orders__tab ul li p {
	font-size: 13px;
    color: #797E97;
    margin-bottom: 0;
}
.orders__tab ul li .t_price {
	margin: 0;
    font-size: 16px;
    color: #2BBA5F;
}
.orders__tab ul li .diten {
	text-align: right;
}
.orders__tab ul li .date {
	font-size: 13px;
    color: #797E97;
}

.orders__tab ul li .status.cancelled {
	background-color: rgba(216, 45, 45, 0.2);
	color: #D82D2D;
}
.orders__tab ul li .status.pending {
	background-color: rgba(40, 44, 63, 0.2);
	color: #282c3f;
}
.orders__tab ul li .status.success {
	background-color: rgba(127, 178, 68, 0.2);
	color: #2BBA5F;
}
.orders__tab ul li .status {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 4px 20px 3px 20px;
    margin-bottom: 10px;
    font-size: 14px;
}
.btn-darkn-small:hover {
	background-color: #2BBA5F;
}
.btn-darkn-small {
	font-size: 14px;
	background-color: #282C3F;
    border-radius: 0;
    color: white !important;
    padding: 6px 23px;
    transition: all ease 0.4s;
}

.address__tab {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -15px;
}
.address__tab .inner {
	width: 50%;
    padding: 15px;
}
.address__tab .address-item {
	padding: 20px;
    border: 1px solid rgba(40, 44, 63, 0.2);
    background-color: white;
    box-shadow: 2px 4px 12px 0 rgb(40 44 63 / 15%);
    display: flex;
    grid-gap: 15px;
}
.address__tab .address-item i {
	font-size: 20px;
    color: #2BBA5F;
}
.address__tab .address-detail h4 {
	margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.address__tab .address-detail p {
	color: #797E97;
    margin-bottom: 10px;
    font-size: 14px;
}
.address__tab .address-detail>div {
	display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.address__tab .address-detail>div button {
	padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #2BBA5F;
}

/*profile*/


/*Order*/


.order__top {
	text-align: center;
    margin: 0 auto 50px auto;
}
.order__top>i {
	font-size: 70px;
    color: #2BBA5F;
    margin-bottom: 20px;
}
.order__top .h4-title {
	margin-bottom: 10px;
}
.order__top .dic {
	color: #797E97;
}
.order__top .order--id {
	display: inline-block;
    padding: 14px 22px 10px 22px;
    margin-bottom: 20px;
    background-color: rgba(40, 44, 63, 0.15);
    font-size: 15px;
    line-height: 1em;
    font-weight: 500;
}
.order__top .order__time {
	align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(40, 44, 63, 0.15);
}
.order__top .order__time i {
	color: #2BBA5F;
    font-size: 20px;
}
.order__top .order__time p {
	margin-bottom: 0;
    color: #797E97;
    padding: 0 20px;
    text-align: left;
    flex-grow: 1;
}
.order__top .order__time span {
	font-size: 14px;
    background-color: hotpink;
    padding: 5px 10px 2px 20px;
    color: white;
    font-weight: 700;
    width: 115px;
    position: relative;
}


.cards__list {
    margin-bottom: 30px;
}
.cards__list .card__item:first-child::after {
	position: absolute;
    content: '';
    left: 16px;
    width: 3px;
    height: 100%;
    z-index: 0;
    top: 27px;
    border-left: 2px dashed rgba(40, 44, 63, 0.2);
}
.cards__list .card__item:first-child {
	margin-bottom: 30px;
}
.cards__list .card__item {
	width: 100%;
    background-color: white;
    position: relative;
    display: flex;
}
.cards__list .card__item>i {
	font-size: 24px;
	width: 35px;
	margin-right: 15px;
	text-align: center;
}

.cards__list .card__item .card-cont {
	width: calc(100% - 50px);
}
.cards__list .card__item .card-cont h5 {
	font-size: 18px;
    margin-bottom: 5px;
}
.cards__list .card__item .card-cont p {
	color: #797E97;
	font-size: 14px;
	margin-bottom: 0;
}

.dil_order__list {

}
.dil_order__list li:nth-child(even) {
	background-color: #ffffff;
}
.dil_order__list li {
	background-color: #F6F6F6;
	display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 10px;
    padding: 5px 10px;
}
.dil_order__list li img {
	width: 90px;
    padding: 10px;
}
.dil_order__list li>div {
	flex-grow: 1;
}
.dil_order__list li h4 {
    font-size: 17px;
    margin-bottom: 5px;
}
.dil_order__list li h6 {
    font-size: 16px;
    color: #797E97;
    margin-bottom: 0;
}
.dil_order__list li p {
	font-size: 12px;
    color: #797E97;
    margin-bottom: 0;
}

/*End Order*/


.coupon_list {
	display: none;
}
.coupon_list.open {
	display: block;
}
.coupon-details>div {
	max-width: 400px;
    margin: 0 auto;
    padding: 0 15px;
}
.coupon-details .coupon__form {
	/*margin-bottom: 30px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}
.coupon-details .coupon__form input {
	flex-grow: 1;
    border: none;
    outline: none;
    padding: 15px;
}
.coupon-details .coupon__form button {
	border: none;
    outline: none;
    padding: 15px 30px;
    background-color: #2BBA5F;
    color: white;
}
.coupon-details ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	grid-gap: 20px;
	padding: 0;
	text-align: center;
	margin-top:30px;
}
.coupon-details ul li:hover {
	background-color: white;
}
.coupon-details ul li {
	/*display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    grid-gap: 15px;
    transition: all ease 0.4s;
    border: 1px solid #2BBA5F;
    border-radius: 10px;*/
	padding: 10px;
    grid-gap: 10px;
    transition: all ease 0.4s;
       border: 1px dotted #2BBA5F;
    border-radius: 10px;
    background: #f1fbf3;
}
.coupon-details ul li a {
	text-decoration: none;
    padding: 6px 20px;
    /*border: 1px solid;*/
    transition: all ease 0.4s;
    margin-left: 10px;
}
.coupon-details ul li a:hover {
	background-color: #2BBA5F;
	color: white;
	border-color: #2BBA5F;
}
.coupon-details ul li img {
	max-width: 100%;
}


footer {
	background-color: #282C3F;
	color: white;
	padding-top: 45px;
	padding-bottom: 45px;
}
footer li {}
footer .icon-list li a {
	display: flex;
	align-items: center;
}
footer .socil li a {
	color: #797E97;
}
footer li a {
	color: white;
	line-height: 45px;
	text-decoration: none;
}
footer li a:hover {
	color: #2BBA5F;
}
footer li a img {
	border-radius: 50%;
	margin-right: 10px;
	background-color: white;
}
footer .tagline {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
}
footer form {
	background-color: rgb(255 255 255 / 16%);
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 500px;
    margin-left: auto;
}
footer form input {
	border: none;
    background-color: transparent;
    color: white;
    flex-grow: 1;
    padding: 10px 20px;
    outline: none;
}
footer .copy_right {
	margin-bottom: 0;
	margin-top: 0px;
}
footer .copy_right a {
	text-decoration: none;
	color: #2BBA5F !important;
	font-style: italic;
}

footer .socil {
    display: flex;
    grid-gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
}

/*// XX-Large devices (larger desktops)*/


/*// X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
	.abut-slider .slides .inner {
		left: 45%;
		padding: 0 5%;
	}
	.pro__list {
		grid-gap: 24px;
	}
	.order__list li h4 {
		font-size: 16px;
	}
}

/*// Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	.category-list .category-item h6 {
		font-size: 20px;
	}
	.hero form {
		max-width: 440px;
	}
	.mobile__mok {
		width: 100%;
	}
	.pro__list .pro__item {
		padding: 15px;
		width: 47.8%;
	}
	.pro__item .pro__rating {
		right: 15px;
	}
	.products-list-left {
		width: 62%;
	}
	.cart-sidbar-right {
		width: 38%;
	}
	.pro__list.similar_pro .pro__item {
		width: 23%;
	}
	.single_pro_details .btn-green {
		padding: 12px 20px;
	}
	.order__list li h4 {
		font-size: 14px;
	}
	.cart__total .btn-green {
		padding: 12px 15px;
	}
	.dil_order__list li h4 {
		font-size: 15px;
	}
}


@media (max-width: 1024.98px) {
	.abut-slider .slides .inner h1 {
		font-size: 55px;
	}
}

/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.icon-list-right {
		/* grid-gap: 122px; */
	}
	.navbar-brand img {
		width: 150px;
	}
	.category-list .category-wep {
		width: 33.33%;
	}
	.abut-slider .slides .inner h1 {
		font-size: 46px;
	}
	.abut-slider .slides .inner {
		left: 0;
		padding: 0 10%;
	}
	.hero .inner {
		max-width: 720px;
		margin: 0 auto;
		padding: 70px 10px;
	}
	.hero form {
		margin-top: 30px;
	}
	.downloads .store-contant {
		margin: 60px auto;
	}
	.downloads .inner {
		background-size: cover;
	}
	.featured-box-contant {
		background-image: url(https://anythinginstantly.com/photo/food.png);
		height: 250px;
		padding: 20px;
		background-position: center;
		background-size: cover;
	}
	.featured-box-contant .contant {
		width: 100%;
	}
	.featured-box-contant h2 {
		font-size: 30px;
	}
	.products-list-left {
		width: 55%;
	}
	.cart-sidbar-right {
		width: 45%;
	}
	.pro__list .pro__item {
		width: 100%;
	}
	.order__list li img {
		width: 20%;
	}
	.order__list li h4 {
		font-size: 18px;
	}
	.checkout__form {
		background-color: #F6F6F6;
		padding: 20px 5px;
	}
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 768px) {
	.downloads .store-contant h2 {
		font-size: 48px ;
	}
}
@media (max-width: 767.98px) {
	.category-list .category-wep {
		width: 50%;
	}
	.downloads .store-contant {
		width: 100%;
		margin: 30px 0 0 0;
	}
	.downloads .inner {
		padding: 0 40px 40px;
	}
	.downloads .store-contant h2 {
		font-size: 48px ;
	}
	.featured-box-contant {
		margin-bottom: 30px;
	}
	.sm-hidden {
		display: none;
	}
	.abut-slider .slides img {
		/* height: 500px; */
		object-fit: cover;
	}
	.h2-title {
		font-size: 30px;
	}
	.category-list .category-wep .qv-btn {
		display: none;
	}
	.category-list .category-item {
		margin-bottom: 0;
	}
	.bottom__bat {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		background: white;
		z-index: 99;
		display: block;
		padding: 8px 10px;
		box-shadow: 0px -10px 15px 0 rgba(0, 0, 0, 0.08);
		border-top: 1px solid rgba(40, 44, 63, 0.2);
	}
	.bottom__bat ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0;
	}
	.bottom__bat ul li {
		
		text-align: center;
	}
	.bottom__bat ul li i {
		font-size: 22px;
	}
	.bottom__bat ul li span {
		font-size: 9px;
		text-transform: uppercase;
		font-weight: 600;
		color: #797E97;
		width: 100%;
		display: block;
		margin-top: 5px;
	}
	.cart-sidbar-right {
		display: none;
	}
	.products-list-left {
		width: 100%;
	}
	.products-list-left .pro__list .pro__item {
		width: 100%;
		display: flex;
		align-items: flex-start;
		flex-direction: row;
		gap: 20px;
	}
	.products-list-left .pro__item .pro__rating {
		left: 15px;
		right: auto;
	}
	.products-list-left .pro__item img {
		width: 160px;
		margin-bottom: 0;
	}
	.pro__item .pro__title {
		font-size: 14px;
	}
	.similar_pro .price__green {
		font-size: 18px;
	}
	.cart {
		margin-right: 15px;
	}
	.reviews__submit {
		margin-top: 30px;
		padding: 15px;
	}
	.reviews__submit textarea {
		margin-bottom: 10px;
	}
	.cart__header {
		display: none;
	}
	.cart__list ul li img {
		width: 80px;
	}
	.cart__list ul li {
	    grid-gap: 10px;
	    padding: 10px;
	    flex-wrap: wrap;
	    position: relative;
	    background-color: white;
    	box-shadow: 2px 4px 12px 0 rgba(40, 44, 63, 0.15);
    	margin-bottom: 30px;
	}
	.cart__list ul li .product_info {
		padding-right: 30px;
		width: calc(100% - 100px);
	}
	.cart__list ul li .sub_price-qunt {
	    width: 100%;
	    justify-content: space-between;
	    padding-top: 10px;
	    border-top: 1px solid rgba(40, 44, 63, 0.15);
	}
	.cart__list ul li .sub__total {
		text-align: right;
	}
	.cart__list ul li .delete {
		position: absolute;
		top: 15px;
		right: 0;
	}
	.cart__list ul li .delete i {
		font-size: 16px;
	}
}

.showonlymobile {
		display:none;
	}

/*X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	
	.onlyformobile {
		display : block !important;
	}
	#food-varity{
		display: none;
	}
	
	.slick-prev:before, .slick-next:before {
		font-size: 25px !important;
		
	}
	
	.abut-slider .slick-next {
		right: 15px !important;
	}
	
	.abut-slider .slick-prev {
    left: 15px !important;
    z-index: 1;
}
	
	.showonlymobile {
		display:block;
	}
	
	.hero form {
		max-width: 100%;
	}
	.downloads .inner {
		padding: 0 20px 20px;
	}
	.hero h1 {
		font-size: 36px;
	}
	.abut-slider .slides .inner span  {
		font-size: 4.1vw;
	}
	 .abut-slider .slides .inner.inner__1 p {
		font-size: 10px !important;
		font-weight: 500;
			font-family: 'Josefin Sans', sans-serif !important;
			line-height: 1.6em;
			width: 80% !important;
			margin: 0 auto;
			margin-bottom: 1em !important;
			color: black !important;
	}
	
	.abut-slider .slides .inner.inner__2 p {
		width: 97% !important;
		font-size: 10px !important;
		font-weight: 500;
			font-family: 'Josefin Sans', sans-serif !important;
			line-height: 1.6em;
	}
	
	.abut-slider .slides .inner.inner__3 {
	left: 40% !important;
    right: 3% !important;
	font-size: 10px !important;
		font-weight: 500;
		font-family: 'Josefin Sans', sans-serif !important;
		line-height: 1.6em;
		color: white !important;
	}
	
	.abut-slider .slides .inner.inner__3 p {
		font-size: 10px !important;
		font-weight: 500;
		font-family: 'Josefin Sans', sans-serif !important;
		line-height: 1.6em;
		color: white !important;
	}
	
	
	
	.downloads .store-contant h2 {
		font-size: 33px;
		margin-bottom: 14px;
	}
	.hero form {
		background-color: transparent;
		box-shadow: none;
		flex-wrap: wrap;
		padding-right: 0;
		grid-gap: 20px;
		display:none;
	}
	.hero form input {
		background-color: white;
		box-shadow: 6px 12px 15px 0 rgb(0 0 0 / 8%);
		padding: 20px;
		width: 100%;
	}
	.hero form a {
		padding: 11px 20px;
		flex-grow: 1;
	}
	.hero .inner {
		padding: 30px 0;
	}
	.category-list .category-wep {
		width: 50%;
	}
	footer form {
		flex-wrap: wrap;
		background-color: transparent;
		grid-gap: 20px;
	}
	footer form input {
		background-color: rgb(255 255 255 / 16%);
	}
	.sidebar-warrep {
		width: 100%;
	}
	.cart-dropdown .cart-details .cart-product {
		padding-left: 10px;
		padding-right: 10px;
	}
	.close {
		height: 30px;
		width: 30px;
		margin: 10px 20px 0px auto;

	}
	.full-sidebar .form {
		width: 300px;
	}
	.products-list-left .pro__item img {
		width: 100px;
		margin-bottom: 0;
	}
	.products-list-left .pro__item .pro__rating {
		left: 15px;
		right: auto;
		top: 130px;
	}
	.products-list-left .pro__list .pro__item {
		gap: 12px;
    	padding: 0;
	}
	.products-list-left .pro__item .pro__title {
		font-size: 14px;
	}
	.products-list-left .pro__item .pro__disc {
		font-size: 13px;
		letter-spacing: 0px;
		line-height: 15px;
	}
	.products-list-left .pro__item .pro__price h3 {
		font-size: 18px;
	}
	.reviews__list li .content .user__name {
		font-size: 16px;
	}
	.reviews__list li .content .review__date {
		font-size: 12px;
	}
	.reviews__list li .top__set {
		margin-bottom: 10px;
	}
	.single_pro_details .pro__title {
		font-size: 24px;
	}
	.single_pro_details .__rating {
		grid-gap: 10px;
    	margin-bottom: 15px;
	}
	.single_pro_details .price h4 {
		font-size: 26px;
		line-height: 1em;
	}
	.single_pro_details .price .inner h5 {
		font-size: 20px;
	}
	/*.single_pro_details .price {
    margin-bottom: 0px;
    padding: 8px 12px;
    border: 1px solid rgb(177, 220, 156);
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
    background: rgb(255, 255, 255);
    display: flex;
	justify-content: center;
    align-items: center;
	width: 50%;
	}
	.single_pro_details p.pro__disc {
		margin-bottom: 15px;
	}
	
	.single_pro_details p.inner {
   padding: 6px;
    text-align: center;
    background: rgb(236, 255, 236);
    color: rgb(84, 178, 38);
    font-size: 12px;
    line-height: 13px;
    font-weight: 700;
    text-transform: lowercase;
    border-right: 1px solid rgb(177, 220, 156);
    border-bottom: 1px solid rgb(177, 220, 156);
    border-left: 1px solid rgb(177, 220, 156);
    border-image: initial;
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    margin-bottom: 15px;
	width: 50%;
	}*/

	.single_pro .single_pro_img {
		width: 50%;
		margin-bottom :0px;
	}
	
	.checkout__form form .cm-control {
		width: 100% !important;
	}
	.order__list li h4 {
	    font-size: 14px;
	}
	.order__list li img {
	    width: 64px;
	    padding: 5px;
	}
	.dil_order__list li h4 {
	    font-size: 14px;
	}
	.dil_order__list li img {
	    width: 64px;
	    padding: 5px;
	}
	.cart__total li h4 {
		font-size: 16px;
	}
	.cart__list ul li .product_info h4,
	.cart__list ul li .product_info p {
		font-size: 14px;
	}
	.order__top .order__time p {
		font-size: 14px;
	}
	
	.DeprecatedSearchBar__Container-sc-p2db94-0.erFQFR.mt-lg-0.mt-4.justify-content-lg-center.justify-content-left {
    float: left;
    width: 100%;
    padding: 28px 0px 15px 0px;
	}
	
	ul.list-inline.icon-list-right.mt-lg-0.mt-3 {
		width: 100%;
		float: left;
	}
	
	.navbar {
    text-align: center !important;
	}
	
	.categorys {
    padding-top: 30px; }
	
		.fade-slider.slick-initialized.slick-slider {
    display: none;
	}
	.hero h1 {    justify-content: center;}
	
	.icon-list-right {justify-content: center;}
	
	
	.category-list .category-item {border-radius: 20px;}
	
	.category-list .category-item img {
		    background-color: transparent;
	}
	
	.pro__list .pro__item {		
		width: 46% !important;
	}
	.pro__item .pro__price {
		flex-direction: column;
	}
	
	footer {text-align:center;}
	
	.cart-dropdown .cart-details .bottom .sub_totle {
		    font-size: 20px;
	}
	
	.single-option-radio label {     font-size: 0.6125em !important;}
	
	.order__info h5 {
    font-size: 18px !important;
}
	
	.orders__tab ul li:nth-child(odd),.orders__tab ul li:nth-child(even) {
		    padding: 10px !important;
			border-radius: 10px;
	}
	
	.orders__tab ul li .bottom {
    gap: 10px !important;
    justify-content: flex-end !important;
}

#v-pills-favourites .h4-title {    margin-top: 25px;}
	
}

.onlyformobile {
		display : none;
	}

.LocationBar__SubtitleContainer-sc-x8ezho-9.jWpzvj {
    display: flex;
    flex-direction: row;
}

.LocationBar__Subtitle-sc-x8ezho-10.bdWwbr {
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    clear: both;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: auto;
    max-width: 210px;
    text-overflow: ellipsis;
}

.IiwNg.LocationBar__ArrowContainer-sc-x8ezho-3 {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
}

.LocationBar__DownArrow-sc-x8ezho-5.fqbcdJ {
    width: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgb(0, 0, 0);
    margin-left: 8px;
}


.slick-prev:before, .slick-next:before {
	font-size: 50px;
}

.abut-slider .slick-next {
    right: 45px;
    z-index: 1;
}

.termsandcondtions, .termsandcondtions a {
    color: red;
} 

.bag-details-box-container {
    background: #f3f3f3;
    padding: 15px 10px;
	width:100%;
}

.bag-details-box-container .bag-details-box {
    -moz-transition: max-height 1.5s ease-in;
    -o-transition: max-height 1.5s ease-in;
    -webkit-transition: max-height 1.5s ease-in;
    transition: max-height 1.5s ease-in;
    max-height: 255px;
    overflow-y: auto;
}

.bag-details-box {
    -moz-transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    -o-transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    -webkit-transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    max-height: 0;
    overflow: hidden;
}

.bag-details-box .item {
    -moz-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%);
    background: #fff;
    padding: 10px;
    margin-top: 0;
    margin-bottom: 10px;
}

.media:first-child {
    margin-top: 0;
}
.media {
    display: flex;
    align-items: flex-start;
}

.bag-details-box .item .image {
    height: 100px;
    margin-right: 10px;
    width: 100px;
	border-radius: 5px;
    border: 1px solid gainsboro;
}

.bag-details-box .item .details {
    height: auto;
}
.media-body {
    flex: 1;
}

.bag-details-box .item .details .product-name {
    line-height: 1.14;
    padding-bottom: 3.5px;
}

.bag-details-box .item .details .product-qty-price {
    border-top: 1px solid #ebebeb;
    padding-top: 5px;
}

.bag-details-box .item .details .product-price .selling-price {
    color: #8c8d94;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    padding-right: 3px;
    text-decoration: line-through;
}

.bag-details-box .item .details .product-price .actual-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.1px;
	color: #2BBA5F;
}

.float-left {
	float:left;
}

.float-right {
	float:right;
}


.address-detail {
    width: 100%;
}

.address_set {
    float: left;
    margin-right: 10px;
    margin-top: 3px;
}

div#wish-list-remove-row {
    width: 100%;
    text-align: center;
}

button#wish-list-btn-more {
    background-color: #2BBA5F;
    color: white;
    border: 0;
    padding: 10px;
   
}
div#product-list-remove-row {
    width: 100%;
    text-align: center;
}

button#product-list-btn-more,#search-product-list-btn-more {
    background-color: #2BBA5F;
    color: white;
    border: 0;
    padding: 10px;
   
}

div#remove-row {
    width: 100%;
    text-align: center;
	    margin-top: 3%;
}

button#btn-more {
    background-color: #2BBA5F;
    color: white;
    border: 0;
    padding: 10px;
   
}

.black_fav {
font-size: 35px;
margin-left: 20px; 
}

.red_fav {
font-size: 35px;
margin-left: 20px; 
color: red;
}

.pro__item__offer {
	/*background-color: #256fef;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-top: 1px;
    position: absolute;
    top: 30px;
    z-index: 1;
    padding: 6px 12px;
    left: 20px;*/
	background-color: #256fef;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-top: 10px;
    position: absolute;
    top: 0px;
    z-index: 1;
    padding: 6px 12px;
    left: 0px;
}

.pro__item__wishlist {
    /*position: absolute;
    top: 30px;
    z-index: 1;
    padding: 6px 12px;
    right: 6px;*/
	    position: absolute;
    top: 6px;
    z-index: 1;
    padding: 6px 12px;
    right: 0px;
}	

.address__tab.undeliverable__addresses .address-item{
	background-color: #e6e3e3;
}

.single-option-radio input {
    clip: rect(0 0 0 0);
    clip: rect(0,0,0,0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
	cursor: pointer;
}

.single-option-radio input[type=radio]:checked+label {
    border-color: #1f2021;
	/*border: 2px solid;*/
}

.single-option-radio label {
    letter-spacing: .1em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 11px 11px;
    margin: 3px 4px 20px 3px;
    font-size: .8125em;
    font-style: normal;
    border: 1px solid #e7e7e7;
    color: #1f2021;
}

.ontheway {
	background-color: #FF7C1D;
    color: white !important;
}

.deliveredd {
	background-color: #2BBA5F;
    color: white !important;
}

.cancelledd{
	background-color: #ff3d3d;
    color: white !important;
}

label[for] {
    cursor: pointer;
}

.myorders__links {
	font-size: 14px;
    border-radius: 0;
    padding: 0px;
    transition: all ease 0.4s;
    border-bottom: 1px dotted;
}

.apply__co .div1{
	margin-top: 3px;text-align: left;text-align: left;
}

.apply__co .apply__co__h5 {
	font-size:17px;
	border:2px dotted #35b17f;
	align-items: center;
	padding-top: 6px;
	padding-left: 6px;
	padding-right: 6px;
}

ul#ul_address{
	list-style: none;
    height: 40vh;
    overflow: auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 12px;
	margin-top: 20px;
}

#ul_address li.select_address {
    /* height: 60px; */
    text-align: left;
    border: 1px solid #2BBA5F;
    border-radius: 6px;
    background: #f2f4f3;
    padding: 8px 8px;
    /* overflow: auto; */
    margin-top: 10px;
	    cursor: pointer;
}

.error	{ color : red;}


/*.bar {
   list-style: none;
    padding-left: 1rem;
}
.bar >li {
  position: relative;
}
.bar>li:before {
  content: '\25CF';
  margin-right: 10px;
  font-size: 20px;
  color: #2BBA5F;
}
.bar>li:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border-left: 2px solid #2BBA5F;
  margin-left: 5px;
  height: 100%;
}
.bar >li:first-of-type:after {
  top: 25%;
}
.bar >li:last-of-type:after {
  top: -80%;
}*/

  .bar {
    list-style: none;
    padding-left: 1rem;
  }

  .bar>li {
    position: relative;
	    padding-bottom: 20px;
  }

  .bar>li:before {
    content: '\25CF';
    margin-right: 10px;
    font-size: 20px;
    color: #2BBA5F;
  }

  .bar>li:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-left: 2px solid #2BBA5F;
    margin-left: 5px;
    height: 100%;
  }

  .bar>li:first-of-type:after {
    top: 25%;
  }

  .bar>li:last-of-type:after {
    top: -80%;
  }
.bar>li:last-child::before{
      content: '✔';
    font-size: 10px;
    color: #2BBA5F;
    border: 1px solid #2BBA5F;
    border-radius: 50%;
    padding: 3px;
}
.bar>li:last-child{
     background: #ebf4f1;
    border-radius: 8px;
    color: #2BBA5F;
    padding: 5px;
    margin-left: -8px;
}

.bar>li:last-child::after{
  border-left: 0px !important;
}


.bar.statusclassred>li:before {
    content: '\25CF';
    margin-right: 10px;
    font-size: 20px;
    color: #e73e3e;
}

.bar.statusclassred>li:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-left: 2px solid #e73e3e;
    margin-left: 5px;
    height: 100%;
  }

.bar.statusclassred>li:last-child::before{
      content: 'x';
    font-size: 10px;
    color: #e73e3e;
    border: 1px solid #e73e3e;
    border-radius: 50%;
    padding: 3px;
	margin-left: 2px;
}
.bar.statusclassred>li:last-child{
      background: #f4ebed;
    border-radius: 8px;
    color: #e73e3e;
    padding: 5px;
    margin-left: -8px;
}
/*****************************
Order Placed
*****************************/
.bar.orderplaced>li {
	width: 49%;
}

ul.bar.orderplaced {
    list-style: none;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar.orderplaced>li:before{
   content: '\25CF';
    margin-right: 10px;
    font-size: 20px;
    color: #2BBA5F;
	float: left;
}

.bar.orderplaced>li:last-child::before{
        content: '\25CF';
    font-size: 20px;
    color: #2BBA5F;
    border: 0;
    border-radius: 50%;
    padding: 0;
}

.bar.orderplaced>li:last-child{
     background: #fff;
    border-radius: 0px;
    color: #2BBA5F;
    padding: 0px;
    margin-left: 0px;
}
/*****************search/category**************/
.erFQFR {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
    position: relative;
}
.bmPYXe {
  
    border-radius: 8px;
    /* overflow: hidden;
    top: 18px;
    position: absolute;
    height: auto;
    z-index: 2001; */
    width: 100%;
}
#search-box .form-control{
	margin-top: -28px !important;
	padding: 0.8rem 2.5rem !important;
	background-color: rgb(255, 255, 255) !important;
    border: 1px solid rgb(238, 238, 238) !important;
    box-shadow: rgb(28 28 28 / 8%) 0px 2px 8px !important;
}
.cKbDPq {
    color: rgb(153, 153, 153);
    font-size: 24px;
    height: 50px;
    width: 40px;
    position: absolute;
    top: 0px;
     
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-family: CustomFont;
	font-size: 16px;
}
@media (min-width: 1260px)
{
.bmPYXe {
    width: 98%;
    /* left: 10px; */
}
}
.jHWud {
    position: relative;
}
.iOinvE .react-autosuggest__suggestions-container {
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
    color: rgb(102, 102, 102);
    display: none;
    width: 100%;
    font-size: 12px;
    font-weight: normal;
}
.navbar{
	align-items: baseline !important;
}
#food-varity ul{
	/* display: flex; */
    justify-content: center;
    /* padding: 1rem 3rem; */
    align-items: center;
    list-style: none;
	
}
header{
	background-color: #fff;
    box-shadow: 0 2px 3px 0 rgb(0 0 0 / 15%);
    position: relative;
}
#food-varity ul li{
	padding: 1rem 2rem;
}
#food-varity ul li a{
	text-decoration: none;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 400;
  }
  .menu-height{
	height: 355px;
	overflow: auto;
  }

  .abut-slider .slides {
	  width: 100%;
	  position: relative;
  }
  .abut-slider .slides img {
	  width: 100%;
  }
  .abut-slider .slides .inner {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translateY(-50%);
	  color: white;
	  padding: 0 10%;
  }
  .abut-slider .slides .inner.inner__1 {
	  left: 0;
	  right: 0;
	  text-align: center;
	  width: 68%;
	  margin: 0 auto;
	  margin-top: 3.2em;
  }
  .abut-slider .slides .inner.inner__1 h1, .inner.inner__3 span  {
	  font-size: 4.1vw;
	  font-weight: 900;
	  line-height: 0.95em;
	  /*font-family: Proxima Nova;*/
	  margin-bottom: 0.4em;
  }
  .abut-slider .slides .inner.inner__1 p {
	  font-size: 1.25vw;
	  font-weight: 500;
	  /*font-family: Poppins;*/
	  line-height: 1.6em;
	  width: 87%;
	  margin: 0 auto;
	  margin-bottom: 4.3em;
  }
  .abut-slider .slides .inner.inner__1>div {
	  grid-gap: 1.2vw;
  }
  .abut-slider .slides .inner.inner__1 a img {
	  width: 9.7vw;
  }

  .abut-slider .slides .inner.inner__2 {
	  padding: 0;
	  left: 34%;
	  right: 8%;
	  color: black;
  }
  .abut-slider .slides .inner.inner__2 h1 {
	  font-size: 4.14vw;
	  line-height: 1em;
	  font-weight: 800;
	  /*font-family: Urbanist;*/
	  width: 90%;
  }
  .abut-slider .slides .inner.inner__2 p {
	  font-size: 1.565vw;
	  font-weight: 500;
	  line-height: 1.3em;
	  font-family: Poppins;
	  margin: 0.9em 0 2em 0;
  }
  .abut-slider .slides .inner.inner__2>div {
	  grid-gap: 1.2vw;
  }
  .abut-slider .slides .inner.inner__2 a img {
	  width: 10vw;
  }

  .abut-slider .slides .inner.inner__3 {
	  padding: 0;
	  left: 54%;
	  right: 3%;
  }
  .abut-slider .slides .inner.inner__3 h1 {
	  font-size: 6.79vw;
	  /*font-family: Campton;*/
	  font-weight: 700;
	  line-height: 0.61em;
  }
  .abut-slider .slides .inner.inner__3 h1 span {
	  font-size: 4.12vw;
  }
  .abut-slider .slides .inner.inner__3 p {
	  font-family: Roboto;
	  font-size: 1.55vw;
	  font-weight: 500;
	  line-height: 1.35em;
	  width: 87%;
	  margin: 1.5em 0 1.7em 0;
  }
  .abut-slider .slides .inner.inner__3>div {
	  grid-gap: 1.2vw;
  }
  .abut-slider .slides .inner.inner__3 a img {
	  width: 10vw;
  }

  .abut-slider .slides .inner h1,.inner.inner__3 span {
	  font-size: 64px;
	  font-weight: 700;
  }
  .abut-slider .slides .inner p {
	  font-size: 20px;
  }
  .abut-slider .slick-prev {
	  left: 30px;
	  z-index: 1;
  }
  .abut-slider .slick-next {
	  right: 30px;
	  z-index: 1;
  }
  @media (max-width: 1399.98px) {
	  .abut-slider .slides .inner {
		  left: 45%;
		  padding: 0 5%;
	  }
  }
  @media (max-width: 767.98px) {
	  .abut-slider .slides .inner.inner__1 {
		  margin-top: 0;
	  }
  }
  
  .single_pro_details .price {
    margin-bottom: 0px;
    padding: 8px 12px;
    border: 1px solid rgb(177, 220, 156);
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
    background: rgb(255, 255, 255);
    display: flex;
	justify-content: center;
    align-items: center;
	width: 50%;
	}
	.single_pro_details p.pro__disc {
		margin-bottom: 15px;
	}
	
	.single_pro_details p.inner {
   padding: 6px;
    text-align: center;
    background: rgb(236, 255, 236);
    color: rgb(84, 178, 38);
    font-size: 12px;
    line-height: 13px;
    font-weight: 700;
    text-transform: lowercase;
    border-right: 1px solid rgb(177, 220, 156);
    border-bottom: 1px solid rgb(177, 220, 156);
    border-left: 1px solid rgb(177, 220, 156);
    border-image: initial;
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    margin-bottom: 15px;
	width: 50%;
	}
	
.DownloadStrip__TextWrapper-sc-14j7dqc-4.btDuKO {
    color: white;
}
	
.YQnpX {
    padding: 12px;
    background: #2BBA5F;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    animation: 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0s 1 normal both running hBgzBc;
}

.fkKZHt {
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    align-items: center;
}

.lhCTBu {
    color: rgb(28, 28, 28);
    font-family: CustomFont;
    font-size: 20px;
}

.iwZrFe {
    width: 40px;
    height: 40px;
}

.hgMgtV {
    font-size: 14px;
    line-height: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}

.elLMUm {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.cIPKAZ {
    padding: 6px 8px;
    background: rgb(31, 31, 31);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

img.sc-jSMfEi.eXEZSy {
    width: 40px;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: block;
    }
	.carousel-h2{
		display: block;
		opacity: 0;
	}
    /* .carousel-inner .carousel-item > div:first-child {
        display: block;
    } */
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens 
@media (min-width: 768px) {
	.carousel-h2{
		display: none;
		opacity: 0;
	}
	.carousel-control-prev, .carousel-control-next{
		display: none;
	}
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(25%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
}
#recipeCarousel .card{
	border: 0 !important;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
	border-radius: 50%;
	width:1.5rem;
	height:1.5rem
}
.carousel-control-prev-icon{
	
	background-image: url(../image/chevron-left.svg);
	background-repeat: no-repeat;
}
.carousel-control-prev{
	left: -27px;
}
.carousel-control-next-icon{
	background-image: url(../image/chevron-right.svg);
	background-repeat: no-repeat;
}
.carousel-control-next{
	right:-27px;
}
 .FXox6K {
    fill: #212121;
}
._2-wzdc{
	transform: rotate(180deg);
}*/

.slick-slider .element{
	/* height:100px;
	width:100px;
	background-color:#000; */
	color:#fff;
	border-radius:5px;
	display:inline-block;
	margin:0px 10px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:block;
	-webkit-box-pack:center;
		-ms-flex-pack:center;
			justify-content:center;
	-webkit-box-align:center;
		-ms-flex-align:center;
			align-items:center;
	font-size:20px;
  }
  .slick-slider .slick-disabled {
	opacity : 0; 
	pointer-events:none;
  }
  .items{
	width:90%;
	margin:0px auto;
	/* margin-top: 100px; */
  }
  .slick-slide{
	margin:10px;
  }
  .slick-slide img{
	width:100%;
	border: 0px solid #fff;
  }
  .items h3 {
	background: #fff;
	color: #000;
	font-size: 12px;
	margin-top: 7px;
	/* / line-height: 100px; / */
	/* margin: 10px;
	padding: 2%; */
	position: relative;
	text-align: center;
}
  @media (max-width: 575.98px){
.slick-prev:before, .slick-next:before {
    font-size: 16px !important;
    /* opacity: 1; */
    margin: 0 -1px;
    background: black;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
  }
  .slick-prev:before{
	margin-left: 8px;
  }
  .slick-next:before {
	margin-right: 8px;
  }
  .mobile-anchor{
	text-decoration: none;
  }
.store-type-home{
    border-radius: 10px;
    padding: 5px;
    text-decoration: none;
    background: rgba(236,254,250,0.5);
    border-color: black;
}
.store-type-home a{
	color: black;
    transition: color ease 0.3s;
    text-decoration: none !important;
}
  #store_type_section{display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* margin-bottom: 22px; */
    padding-bottom: 28px;
}
#store_type_section a{
		text-decoration: none;
		font-family: 'Josefin Sans', sans-serif;
		font-size: 16px;
		color: rgb(0, 0, 0);
		font-weight: 400;
	}
.active-store-type{
	border: 1px solid;
	padding: 8px 15px;
	border-radius: 21px;
	background-color: #2bba5f;
	color: white !important;
}
.store-link{
	color: gray;
    transition: color ease 0.3s;
    margin-left: 5px;
    text-underline-offset: 5px;
	text-decoration: none;
}
	.pro_list .pro_item{
		width: 30.5%;
		display:flex;
		}
		
		
		
		.pro__item-store img {
			/* width: 100%; */
			/* box-shadow: 5px 5px 20px 0 rgba(40, 44, 63, 0.2); */
			/* margin-bottom: 25px; */
			/* height: 300px; */
			object-fit: none;
		}
		.pro__item-store .pro__title {
			font-size: 16px !important;
			margin-left: 18px !important;
		}
		.pro__location,.pro_time{
		font-size: 14px;
			margin-left: 20px;
			color:lightslategray;
		}

		.pro__list .pro__item-store {
			padding: 20px;
			background-color: white;
			border: 1px solid white;
			/*width: 31.11%;*/
			width: 30.50%;
			display: flex;
			transition: all ease 0.4s;
			position: relative;
				border: 1px solid rgba(40, 44, 63, 0.2);
			box-shadow: 3px 5px 10px 0 rgb(40 44 63 / 10%);
		}