/*-----------------------------------------------------------------------------------
Theme Name: Deliver
Theme URI: https://deliverbud.com
Description: This is Version College web site. 
Author: Deliver Bud
Author URI: https://deliverbud.com
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0

-----------------------------------------------------------------------------------

1. Typography
2. Header Area 
3. Iteam Area
4. Footer Area

-----------------------------------------------------------------------------------*/
@font-face {
	font-family: 'Jost';
	src: url('fonts/Jost-Bold.woff2') format('woff2'),
		url('fonts/Jost-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Jost';
	src: url('fonts/Jost-Medium.woff2') format('woff2'),
		url('fonts/Jost-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Jost';
	src: url('fonts/Jost-Regular.woff2') format('woff2'),
		url('fonts/Jost-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'K2D';
	src: url('fonts/K2D-Light.woff2') format('woff2'),
		url('fonts/K2D-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'K2D';
	src: url('fonts/K2D-Bold.woff2') format('woff2'),
		url('fonts/K2D-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'K2D';
	src: url('fonts/K2D-Medium.woff2') format('woff2'),
		url('fonts/K2D-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'K2D';
	src: url('fonts/K2D-SemiBold.woff2') format('woff2'),
		url('fonts/K2D-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'K2D';
	src: url('fonts/K2D-Regular.woff2') format('woff2'),
		url('fonts/K2D-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*----------------------------------
1. TYPOGRAPHY
---------------------------------- */
/*Video Popup Start----*/
.video-popup {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	position: fixed;
	z-index: 999999;
	display: none;
	bottom: 0;
	right: 0;
}
.video-popup.show{
	display: block;
}
.video-popup.unexpendPopup {
	max-width: 320px;
	bottom: 40px;
	right: 40px;
	aspect-ratio: 16/9;
	height: unset;
}
.video-popup.unexpendPopup .iframe-wrapper {
	width: 100%;
}
.iframe-wrapper {
	width: 50%;
	position: absolute;
	margin: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	aspect-ratio: 16/9;
}
.video-popup #iframeHolder {
	width: 100%;
	height: 100%;
	display: block;
	background-color: #fff;
}
.video-popup iframe {
	width: 100%;
	height: 100%;
}
.close-video, .expand {
	width: 40px;
	height: 40px;
	background: #fff;
	display: block;
	border-radius: 100%;
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: pointer;
	z-index: 99;
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.expand {
	right: 30px;
}
.video-close-icon {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}
.video-close-icon::before {
	width: 60%;
	height: 2px;
	background: #000;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}
.video-close-icon::after {
	width: 60%;
	height: 2px;
	background: #000;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transform: rotate(-45deg);
}
@media all and (max-width: 768px){
	.iframe-wrapper {
		width: 80%;
	}
}
/*Video Popup End----*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'K2D';
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
	background: #FFFFFF;
}
a {
	text-decoration: none;
	display: inline-block;
}
a:hover {
	text-decoration: none;
}
button {
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
}
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
}
input {
	border: none;
	outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}
img {
	border: none;
	max-width: 100%
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
button:focus {
	border: none;
	outline: none;
	box-shadow: none;
}
input:focus {
	border: none;
	outline: none;
	box-shadow: none;
}
.align-center {
	align-items: center;
}
.text-center {
	text-align: center;
}
.container {
	width: 100%;
	max-width: 1550px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-c {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-s {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 1000px;
}
.sec-m {
	margin-top: 100px;
	margin-bottom: 100px;
}
.sec-p {
	padding-top: 100px;
	padding-bottom: 100px;
}
/*Social Media Popup */
.social-share-popup {
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0 0 0 / 30%);
}
.social-share-popup.active {
	display: block;
}
.social-share-popup > div {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.share-list {
	position: relative;
	display: flex;
	gap: 15px;
	max-width: 300px;
	width: 100%;
	max-height: 300px;
	height: 100%;
	background: #00b517;
	justify-content: center;
	align-items: center;
}
.share-list li a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s ease;
	font-size: 25px;
	color: #FFF;
}
.share-list li a:hover img {
    transform: scale(1.5);
}
.share-list li a:hover {
	border-color: #000;
	color: #000;
}
.social-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 35px;
	background: white;
}
.social-close p {
	font-size: 37px;
	line-height: 1;
	font-weight: normal;
	transform: rotate(45deg);
	color: #000;
}
.social-close:hover {
	background: #ca0000;
}
.social-close:hover p {
	color: #FFF;
} 
/*----------------------------------
1. HEADER AREA START
---------------------------------- */
.main-header-top {
	display: flex;
	align-items: center;
	min-height: 95px;
	background: #000000;
	padding: 10px 0;
	transition: .3s ease;
	position: sticky;
	top: 0;
	z-index: 9999;
}
.header-wrp {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
/* right */
.header-right {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-left: auto;
}
/* header transparent  */
.main-header-top.trnasparent {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.main-header-top.trnasparent.fixed {
	background: #000;
}
/* main menu  */
.main-menu > ul {
	display: flex;
	gap: 35px;
}
.main-menu ul li {
	position: relative;
}
.header-sign .sign,
.main-menu ul li a {
	font-size: 16px;
	line-height: 24px;
	color: #FFF;
	font-weight: 600;
	text-transform: uppercase;
	transition: .3s ease-in;
}
.main-menu > ul > li > a:hover {
	color: #309900;
}
.menu-item-has-children:after {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	width: 8px;
	height: 8px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(-45deg);
}
/* drop down */
.main-menu ul li ul {
	position: absolute;
	background: #000000;
	padding: 12px;
	border-radius: 4px;
	width: 260px;
	top: 100%;
	left: 0;
	transition: .3s ease;
	opacity: 0;
	visibility: hidden;
}
.main-menu ul li:hover ul {
	opacity: 1;
	visibility: visible;
}
.main-menu ul li ul li {
	padding: 3px 0;
}
.menu-item-has-children {
	padding-right: 30px;
}
.main-menu ul li ul li a:hover {
	padding-left: 4px;
}
/* sign in */
.header-sign {
	display: flex;
	gap: 35px;
	column-rule: 1px solid rgb(255 255 255 / 50%);
}
.header-sign .card {
	position: relative;
	padding-bottom: 35px;
	margin-bottom: -35px;
}
.header-sign img {
	display: block;
}
.header-sign .card-btn,
.header-sign .sign {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header-sign .sign {
	opacity: .75;
}
.header-sign .sign:hover {
	opacity: 1;
}
.header-sign .card-btn {
	transition: .3s ease-in;
	position: relative;
}
.header-sign .card-btn:hover img {
	filter: contrast(100) brightness(100);
}
.header-sign .card-btn span.cart-count {
	background: #309900;
	color: #FFF;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border-radius: 100%;
	position: absolute;
	top: -5px;
	right: -10px;
}
/* Mobile Bars  */
.mobail-bars {
	position: relative;
	width: 50px;
	height: 50px;
	background: #FFF;
	border-radius: 4px;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	justify-self: end;
	z-index: 9999;
}
.mobail-bars span {
	position: absolute;
	width: 75%;
	height: 4px;
	background: #000000;
	transition: .5s;
	border-radius: 4px;
}
.mobail-bars span:nth-child(1) {
	transform: translateY(-13px);
}
.mobail-bars span:nth-child(2) {
	transform: translateY(13px);
}
.mobail-bars.active span:nth-child(1) {
	transform: translateY(0px) rotate(45deg);
}
.mobail-bars.active span:nth-child(2) {
	transform: translateY(0px) rotate(-45deg);
}
.mobail-bars.active span:nth-child(3) {
	transform: translateX(60px);
}
/* Main Footer Section ---------- */
.main-footer {
	padding: 45px 0 80px 0;
	background: #000000;
	background: url(https://deliver.qanber.com/wp-content/uploads/2024/09/footer-bg.jpg) no-repeat;
	background-position:center;
	background-size:cover;
	position:relative;
}
.main-footer:before {
	content: "";
	position: absolute;
	background: #0000007a;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.footer-wrp {
	display: flex;
	gap: 35px;
	justify-content: space-between;
	position:relative;
}
/* single footer  */
.single-footer {
	margin-top: 60px;
}
.single-footer .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: #FFF;
	display: block;
	margin-bottom: 20px;
}
/* footer one  */
.single-footer.one {
	max-width: 270px;
	width: 100%;
	margin-top: 0;
}
.single-footer.one p.italic {
	font-style: Italic;
}
.single-footer.one p {
	font-family: Jost;
	font-size: 16px;
	line-height: 24px;
	color: #FFF;
	margin-bottom: 12px;
}
.footer-call {
	margin: 15px 0 30px 0;
}
.footer-call li a {
	font-family: Jost;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #FFF;
	position: relative;
	padding-left: 35px;
}
.footer-call li a:hover {
	text-decoration: underline;
}
.footer-call li a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
}
.footer-call li.call a::after {
	background: url('images/icon/PhoneIcon.png') no-repeat;
}
.footer-call li.mail a::after {
	background: url('images/icon/mailIcon.png') no-repeat;
	top: 5px;
	height: 14px;
}
.footer-social {
	display: flex;
	gap: 8px;
}
.single-footer .footer-social li {
	padding: 0;
}
.footer-social li button {
	transition: .3s ease;
}
.footer-social li button:hover {
	transform: scale(1.1);
}
.single-footer ul li + li {
	padding-top: 10px;
}
.single-footer ul li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #FFF;
}
.single-footer ul li a:hover {
	text-decoration: underline;
}
.single-footer p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #FFF;
}
.single-footer form {
	margin: 20px 0;
	display: flex;
	gap: 12px;
}
.single-footer form input {
	max-width: 325px;
	width: 100%;
	font-family: Jost;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	color: hsl(0deg 0% 0% / 50%);
	padding: 14px 20px;
	border-radius: 10px;
}
.single-footer form input::placeholder {
	font-family: Jost;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	color: hsl(0deg 0% 0% / 50%);
}
.single-footer .submit, #noptin-form-1__submit {
	font-family: Jost;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	color: #000000;
	padding: 14px;
	text-transform: uppercase;
	border-radius: 10px;
	background: linear-gradient(180deg, #fdf414 0%, #66a10b 100%);
	transition: .3s ease;
}
.single-footer .submit:hover {
	color: #FFF;
}
.noptin-form-single-line.noptin-label-hide .noptin-form-field-wrapper:not(.noptin-form-field-radio_field,.noptin-form-field-multi_checkbox_field)>div input {
    height: unset!important;
}
/* Banner Section ------------- */
.single-banner {
	background-color: #309900;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 230px;
	padding-bottom: 310px;
	color: #FFF;
}
.single-banner .container {
	max-width: 1390px;
}
.single-banner h1 {
	font-family: Jost;
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
.single-banner h2 {
    font-family: Jost;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin: 40px 0px;
}
.single-banner h3 {
	font-family: Jost;
	font-size: 50px;
	font-weight: 300;
	line-height: 1.17;
	margin-bottom: 38px;
}
.single-banner .bn-btn {
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
	background: #309900;
	padding: 16px 95px 16px 28px;
	border: 1px solid #FFF;
	color: #FFF;
	border-radius: 100px;
	position: relative;
	transition: .3s ease;
}
.single-banner .bn-btn:hover {
	background: #3eb607;
}
.single-banner .bn-btn::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
	width: 30px;
	height: 16px;
	background: url('images/icon/ArrowRightIcon.png') no-repeat;
	transition: .3s ease;
}
.single-banner .bn-btn:hover::after {
	transform: translateX(5px);
}
/* banner arrows  */
.banner-sec .slick-arrow {
	position: absolute;
	z-index: 99;
	top: 50%;
	transform: translateY(-50%);
	left: 90px;
	width: 80px;
	height: 80px;
	background: #FFFFFF url('images/icon/ArrowLeftGreen.png') no-repeat;
	font-size: 0;
	border-radius: 100px;
	transition: .3s ease;
}
.banner-sec .slick-arrow:hover {
	background-color: #ebe5e5;
}
.banner-sec .slick-prev {
	background-position: top 33px left 22px;
}
.banner-sec .slick-next {
	right: 90px;
	left: unset;
	background: #FFF url('images/icon/ArrowRightGreen.png') no-repeat;
	background-position: top 32px left 23px;
}
/* Short Banner  */
.short-bn-bottm {
	margin-top: -90px;
	position: relative;
}
.short-banner {
	padding: 70px 100px;
	border-radius: 24px;
	background-size: cover;
	background-repeat: no-repeat;
}
.short-banner h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 53px;
	color: #FFF;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.short-banner h2 span {
	font-size: 16px;
	line-height: 24px;
	display: block;
	margin-bottom: 20px;
}
.short-banner p {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #FFF;
}
.short-banner .white-arrow-btn {
	margin-top: 30px;
}
/* Product Gallery Section */
.product-gallery {
	margin: 65px 0;
}
/* Featured List Section  */
.featured-list {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}
.single-feature {
	border-radius: 38px;
	background: #eff9eb;
	text-align: center;
	padding: 60px;
	flex: 1;
	position: relative;
}
.single-feature.single-feature-box1 {
	background: url(https://deliver.qanber.com/wp-content/uploads/2024/09/Top-Quality.jpg) no-repeat;
	background-size:cover;
	background-position:center;
}
.single-feature.single-feature-box2 {
	background: url(https://deliver.qanber.com/wp-content/uploads/2024/09/Safe-and-Secure-Checkout.jpg) no-repeat;
	background-size:cover;
	background-position:center;
}
.single-feature.single-feature-box3 {
	background: url(https://deliver.qanber.com/wp-content/uploads/2024/09/Quick-Secure-Delivery.jpg) no-repeat;
	background-size:cover;
	background-position:center;
}
.single-feature::before {
	content: "";
	position: absolute;
	background: #00000070;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	border-radius: 38px;
}
.single-feature img, .single-feature h2, .single-feature p {
	position: relative;
}
.single-feature h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 32px;
	margin: 40px 0 30px 0;
	color:#ffffff;
}
.single-feature p {
	font-size: 20px;
	font-weight: 400;
	line-height: 34px;
	opacity: 0.75;
	color:#ffffff;
}
/* Questions Section ------ */
.question-faq {
	display: flex;
	gap: 65px;
}
/* left  */
.question-faq-left {
	padding: 55px 65px;
	background: url('images/questionBgLeft.jpg') no-repeat;
	background-size: cover;
	border-radius: 25px;
	width: 100%;
	max-width: 620px;
	height: 400px;
	align-self: flex-start;
}
.question-faq-left h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	color: #FFF;
	margin-bottom: 12px;
}
.question-faq-left p {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #FFF;
}
.question-faq-left .btn {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: #FFF;
	margin-top: 50px;
	position: relative;
	padding-right: 55px;
}
.question-faq-left .btn::after {
	content: '';
	position: absolute;
	top: 9px;
	right: 0;
	width: 28px;
	height: 17px;
	background: url('images/icon/ArrowRightIcon.png') no-repeat;
	transition: .3s;
}
.question-faq-left .btn:hover::after {
	transform: translateX(5px);
}
/* right */
.question-faq-right {
	width: 100%;
}
.question-faq-right h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	color: #000;
	margin-bottom: 60px;
}
.question-faq-right .title {
	position: relative;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	display: block;
	cursor: pointer;
	margin-top: 40px;
	padding-bottom: 40px;
	padding-right: 25px;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.question-faq-right.about .title {
	padding-right: 60px;
}
.question-faq-right.about .title::before {
	right: 40px;
}
.question-faq-right .title::before {
	content: '+';
	position: absolute;
	right: 0;
	top: 0;
	margin: auto;
	transition: all .4s;
	font-size: 34px;
	line-height: 1;
	color: #309900;
	font-family: 'Jost';
}
.question-faq-right .title.active::before {
	content: '-';
}
.accordion-body {
	margin: 30px 0;
}
/* Favorite Brands Section  */
.favorite-brand-sec .container {
	max-width: 1860px;
}
.brand-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 65px;
}
.brand-list li {
	/*border: 1px solid rgb(0 0 0 / 20%);
	padding: 30px;*/
	height: 180px;
	display: flex;
	align-items: center;
	border-radius: 20px;
	max-width: 290px;
	width: 100%;
}
.brand-list li img {
	display: block;
}
/* Catagories paeg ----------- */
.inner-banner-sec {
	padding: 100px 0;
	position: relative;
}
.inner-banner-sec:before {
	content: '';
	width: 100%;
	height: 100%;
	background: #239900;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .5;
	z-index: 0;
}
.inner-banner-sec .container {
	z-index: 1;
	display: block;
	margin: 0 auto;
	position: relative;
}
.inner-banner {
	text-align: center;
}
.inner-banner h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 44px;
	text-transform: uppercase;
	margin-bottom: 30px;
	color: #fff;
}
#breadcrumbs span, #breadcrumbs a, #breadcrumbs {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #ffffff;
}
#breadcrumbs a:hover {
	text-decoration: underline;
}
/* table of content  */
.table-of-content {
	background: #309900;
	padding: 22px 0;
}
.table-of-con {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.table-of-con ul {
	display: flex;
}
.table-of-con ul li {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 22px;
	margin-right: 22px;
	border-right: 1px solid rgb(48 48 48 / 28%);
}
.table-of-con ul li:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: 0;
}
.table-of-con ul li.home {
	padding-left: 30px;
}
.table-of-con ul li.home::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	background: url('images/icon/Home.png') no-repeat;
}
.table-of-con ul li.active a {
	opacity: .5;
}
.table-of-con ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #FFF;
}
/* search  */
.table-of-con ul li form {
	display: flex;
	align-items: center;
	max-width: 200px;
	width: 100%;
}
.search-table-btn {
	opacity: .5;
	position: relative;
	padding-left: 30px;
	min-width: 30px;
	min-height: 22px;
}
.search-table-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	background: url('images/icon/search.png') no-repeat;
}
.table-of-con ul li input {
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #FFF;
	width: 100%;
}
.table-of-con ul li input::placeholder {
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #FFF;
	opacity: .5;
}
.table-card {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: 20px;
}
.table-of-con ul li a img:hover {
	opacity: .5;
}
/* Catagories Section  */
.catagories-wrp {
	display: flex;
	gap: 60px;
}
/* left  */
.catagories-left {
	width: 320px;
}
/*right */
ul.products {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
ul.products li {
	display: flex;
	margin: 0 !important;
}
.catagories-right-all-product ul.products > li {
	padding: 25px 0px !important;
}
.catagories-right-all-product ul.products > li:hover {
	/*    background-color: #eeeeee30;*/
}
ul.products li > a {
	min-width: 235px;
	max-width: 240px;
	margin-right: 40px;
	background: #f2f2f2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.single-product-thumbnail img {
	margin: 0 !important;
}
.sa-product-mid {
	width: 100%;
	margin-right: 30px;
	padding-right: 30px;
	border-right: 1px solid rgb(0 0 0 / 25%);
}
.product-categories {
	display: block;
}
.product-categories a {
	font-size: 14px;
	line-height: 24px;
	color: #309900;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1.5px;
	width: max-content;
	text-align: left;
}
.sa-product-mid a:empty {
	display: none;
}
.product-categories a:hover {
	color: #000;
}
.woocommerce-LoopProduct-link {
	width: 100% !important;
}
.sa-product-mid h2 {
	font-size: 22px !important;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
	color: #000000;
	padding-bottom: 20px !important;
}
.sa-product-mid h2:hover {
	color: #309900;
}
.product-short-description p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #303030;
	opacity: 0.75;
	margin-bottom: 40px;
}
.product-short-description ul {
	margin-left: 20px !important;
	margin-bottom: 0 !important;
}
.product-short-description ul li {
	font-size: 16px;
	font-weight: 400;
	color: #303030;
	list-style: disc !important;
	display: list-item;
}
.product-short-description ul li + li {
	margin-top: 7px;
}
.product-short-description ul li::marker {
	font-size: 13px;
}
/*single product right */
.sa-product-last {
	min-width: 415px;
	width: 100% !important;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;
}
.single-product-left .woocommerce-product-gallery__wrapper {
	width: 100%;
}
.single-product-left .woocommerce-product-gallery__wrapper img {
	width: 100%;
}
.single-product-bottom-right .quantity.wqpmb_quantity input {
	max-width: 50px;
}
/*right add to card */
.catagories-right {
	width: 100%;
}
.sa-product-last .price {
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 32px;
	color: #000000 !important;
	margin-bottom: 20px !important;
	display: flex !important;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.woocommerce-Price-amount.amount {
	font-weight: bold;
	text-decoration: none;
}
.woocommerce ul.products li.product .price del {
	font-size: 16px;
	order: 1;
}
/*product star */
.product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.woocommerce ul.products li.product .star-rating {
	font-size: 18px !important;
	margin-bottom: 0;
	color: #309900;
}
span.review-count {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000000;
	opacity: 0.75;
}
.product-stock {
	display: flex;
	align-items: center;
	gap: 4px;
	justify-content: center;
	margin-top: 8px;
	font-size: 16px;
	line-height: 24px;
	color: rgb(0 0 0 / 75%);
}
.product-stock strong {
	color: #000000;
}
.cart-share-whishlist-wraper {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}
.add_to_cart_button {
	margin-top: 0 !important;
	background: transparent !important;
	padding: 20px 58px !important;
	border-radius: 100px !important;
	border: 1px solid #000000 !important;
	transition: .3s;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #000 !important;
}
.sa-share-button:hover, .yith-wcwl-add-button a:hover, .add_to_cart_button:hover, html body .mini-product-area .add_to_cart_button:hover {
	background: #309900 !important;
	color: #FFF !important;
	border-color: transparent !important;
}
.yith-wcwl-add-to-wishlist {
	margin-top: 0 !important;
}
.sa-share-button,
.yith-wcwl-add-button a {
	width: 58px;
	height: 58px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	color: #000 !important;
	font-size: 0px !important;
	line-height: 0;
	margin-top: 0 !important;
	transition: .3s;
}
.sa-share-button i,
.yith-wcwl-add-button a i {
	font-size: 23px !important;
	margin: 0 !important;
}
.yith-wcwl-add-button a.delete_item {
	color: #309900 !important;
}
/*Navigation */
.page-numbers {
	display: flex !important;
	gap: 50px;
	justify-content: end;
	border: none !important;
}
.page-numbers li span,
.page-numbers li {
	border: none !important;
	text-align: center;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
}
.page-numbers li a {
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 30px !important;
	color: #303030 !important;
	display: block !important;
	width: 100%;
}
.page-numbers li span,
.page-numbers li a:hover {
	background: #000 !important;
	color: #FFF !important;
}
.prev.page-numbers,
.next.page-numbers {
	font-size: 0 !important;
	position: relative;
	width: 100%;
	height: 100%;
}
.prev.page-numbers::after,
.next.page-numbers::after {
	content: '';
	position: absolute;
	top: 17px;
	left: 12px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: rotate(-45deg);
}
.prev.page-numbers::after {
	transform: rotate(140deg);
	top: 17px;
	left: 18px;
}
li:hover .prev::after,
.page-numbers li:hover .next::after {
	border-color: #FFF !important;
}
/*Albam Page */
.single-product-left {
	max-width: 750px;
	width: 100%;
}
.woocommerce-product-gallery {
	display: flex !important;
	gap: 15px;
	position: relative;
}
.woocommerce-product-gallery__trigger {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 25px;
	z-index: 9;
	background: #d5c58a;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}
.woocommerce-product-gallery__trigger:hover {
	background: #e8c74e;
}
.flex-viewport {
	width: 100%;
	order: 1;
	border: 8px solid #D5C58A;
	height: 100% !important;
}
.flex-viewport img {
	display: block;
}
.flex-control-thumbs {
	min-width: 170px;
	max-width: 180px;
	max-height: 555px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: auto;
}
/*scrollbar design */
.flex-control-thumbs::-webkit-scrollbar-track
{
	background-color: #FFF;
}

.flex-control-thumbs::-webkit-scrollbar
{
	width: 6px;
	background-color: #D5C58A;
}

.flex-control-thumbs::-webkit-scrollbar-thumb
{
	background-color: #000000;
}









.flex-control-thumbs li {
	list-style: none;
	width: 100%;;
	border: 5px solid #D5C58A;
	background: #e7eff2;
}
.flex-control-thumbs li img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__wrapper {
	height: 100% !important;
	display: block !important;
}
.woocommerce-product-gallery__image a img {
	display: block;
	height: 100%;
}
.price ins {
	text-decoration: none;
}
/*Right */
.sa-single-product-top {
	display: grid;
	grid-template-columns: 430px auto;
	grid-gap: 30px;
	margin-bottom: 30px;
}
.single-product-categories a {
	font-family: K2D;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	text-transform: uppercase;
	color: #309900;
}
.single-product-price .price {
	font-family: Jost;
	font-size: 34px;
	font-weight: 700;
	line-height: 32px;
	display: flex;
	gap: 8px;
}
.single-product-price .price del {
	font-size: 22px;
	color: #303030;
	opacity: 0.4000000059604645;
}
.sa-single-product-top-left .product_title {
	font-size: 34px;
	font-weight: 600;
	line-height: 1.5;
	width: 100%;
	margin: 5px 0 15px 0;
}
.pick-review-wraper {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 25px;
}
.sa-single-product-review-counts {
	display: flex;
	gap: 8px;
	align-items: center;
}
.pick-review-wraper .sa-pick {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: #FFF;
	border-radius: 92px;
	background: #309900;
	padding: 10px 20px;
	border: 1px solid transparent;
	transition: .3s;
}
.sa-single-product-review-counts .star-rating {
	color: #309900;
	font-size: 18px !important;
}
.sa-single-product-review-counts .sa-review-count {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #303030;
	opacity: 0.75;
}
.sa-single-product-stock {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgb(48 48 48 / 75%);
	margin-bottom: 20px;
}
.sa-single-product-stock strong {
	color: #303030;
}
.custom-single-product-desc {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #6c6c6c;
	opacity: 0.75;
}
.single-product-bottom {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
	margin-bottom: 25px;
}
.single-product-bottom-left .yith-wcwl-add-button a {
	border-radius: 100px !important;
}
.single-product-bottom-right .in-stock {
	display: none;
}
.qib-button-wrapper {
	margin: 0 !important;
	border: 1px solid #000;
	border-radius: 70px;
	overflow: hidden;
}
.single-product-bottom-right .cart {
	display: flex;
	align-items: center;
	gap: 25px;
}
.qib-button-wrapper button {
	background: transparent !important;
	border: none !important;
	padding: 29px 25px !important;
	font-size: 30px !important;
	line-height: 0 !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
}
.qib-button-wrapper button:hover {
	background: #309900 !important;
	color: #FFF !important;
}
.qib-button-wrapper .quantity {
	display: flex !important;
	justify-content: center;
	align-items: center;
}
.quantity.wqpmb_quantity input {
	padding: 0 !important;
	width: unset !important;
	border: none !important;
}
.single-product-bottom-right .cart button[type="submit"] {
	background: #309900 !important;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 14px 40px;
	border-radius: 100px;
	border: 1px solid transparent;
	transition: .3s;
}
.single-product-bottom-right .cart button[type="submit"]:hover {
	border-color: black;
	background: transparent !important;
	color: #000 !important;
}
.sa-product-attr-for-content {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}
.sa-product-attr-for-content span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: rgb(0 0 0 / 75%);
	border-radius: 91px;
	background: #eeeeee;
	padding: 10px 15px;
}
.sa-single-product-content ul, .sa-single-product-content p, .single-accordion .accordion-body p {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: #000000;
}
.single-accordion .accordion-body p {
	margin-bottom: 20px;
}
.sa-single-product-content ul {
	list-style: disc;
	margin-left: 40px;
}
.sa-single-product-content ul,
.sa-single-product-content p {
	margin-bottom: 30px;
}
/* Offer Product Section */
.offer-product {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 20px;
}
.single-offer {
	position: relative;
	background: #f9f9f9;
	border-radius: 15px;
	padding-top: 20px;
	padding-left: 45px;
	min-height: 375px;
	overflow: hidden;
	box-shadow: 0px 0px 23.899999618530273px 0px rgba(0, 0, 0, 0);
}
.single-offer.two {
	grid-row: 2 / 4;
	grid-column: 2 / 3;
}
.single-offer h2 {
	position: relative;
	z-index: 3;
	font-size: 36px;
	font-weight: 500;
	line-height: 45px;
	text-transform: uppercase;
}
.single-offer h2 span {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	color: #309900;
	display: block;
	margin-bottom: 10px;
}
.single-offer .text {
	z-index: 9;
	position: relative;
}
.single-offer .text p {
	width: 50%;
}
.single-offer .img {
	position: absolute;
	z-index: 2;
	bottom: 0;
	right: 0;
}
.single-offer.two .img {
	position: relative;
	margin-top: 150px;
	width: 375px;
	height: 375px;
	text-align: center;
}
.single-offer .img::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: -52px;
	left: -64px;
	width: 375px;
	height: 375px;
	background: #EBEBEB;
	border-radius: 100%;
}
.single-offer.two .img::after {
	left: 0;
}
/* Single Product Page ----------------------- */
.back-btn {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: #309900;
	position: relative;
	padding-left: 22px;
}
.back-btn:hover {
	opacity: .5;
}
.back-btn::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url('images/icon/blueLeftArrow.png') no-repeat;
}
.single-product-wrp {
	margin-top: 20px;
	display: flex;
	gap: 35px;
}
/* single product right  */
.single-product-right {
	max-width: 735px;
	width: 100%;
}
.effect-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.effect-btn li {
	border-radius: 100px;
	background: #eeeeee;
	padding: 17px 15px;
	width: 220px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
}
.product-acc .title {
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
	position: relative;
	cursor: pointer;
	display: block;
	padding-top: 30px;
	margin-bottom: 30px;
	border-top: 1px solid rgb(0 0 0 / 10%);
}
.product-acc .title::after {
	content: '';
	position: absolute;
	top: 37px;
	right: 12px;
	width: 10px;
	height: 10px;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: rotate(-45deg);
	transition: .3s;
}
.product-acc .title.active::after {
	transform: rotate(136deg);
	top: 42px;
}
.product-acc .accordion-body {
	margin: 40px 0;
}
/* product chart  */
.product-chart {
	width: 245px;
	aspect-ratio: 1;
}
.product-chart #donut {
	width: 100%;
	height: 100%;
}
.product-acc .accordion-body .wrp {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.product-acc .accordion-body .wrp ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px 15px;
	max-width: 340px;
	width: 100%;
}
.product-acc .accordion-body .wrp ul li {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	padding-left: 35px;
	position: relative;
	flex: 150px;
}
.product-acc .accordion-body .wrp ul li span {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	opacity: .5;
	display: block;
	margin-top: 4px;
}
.product-acc .accordion-body .wrp ul li::before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 40px;
	background: #eb0000;
}
.product-acc .accordion-body img {
	margin-bottom: 20px;
}
.accordion-body .effect-btn li img {
	margin: 0;
}
/* single product accordion  */
.prog {
	margin-top: 30px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.sngle-prog {
	flex: 1;
}
.sngle-prog p {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
	color: #6c6c6c;
}
.sngle-prog p span {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
}
.prog .ui-widget.ui-widget-content {
	height: 12px;
	border-radius: 100px;
	background: #eeeeee;
}
.prog .ui-widget-header {
	background: #309900;
	opacity: 0.89;
	height: 100%;
	border-radius: 100px;
}
/* Single product Featured  */
.shipping-feature {
	padding: 80px 0;
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-color: rgba(48, 48, 48, .20);
	columns: 3 250px;
	gap: 40px;
	column-rule: 1px solid rgba(48, 48, 48, .25);
}
.single-shipping {
	position: relative;
	padding-left: 80px;
	max-width: 315px;
	width: 100%;
	break-inside: avoid-column;
}
.single-shipping::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 60px;
	height: 50px;
}
.single-shipping.world::before {
	background: url('images/icon/Worldwide.png') no-repeat;
}
.single-shipping.deli::before {
	background: url('images/icon/Delivery.png') no-repeat;
}
.single-shipping.secure::before {
	background: url('images/icon/lock.png') no-repeat;
}
.single-shipping.secure {
	margin-left: auto;
}
.single-shipping.deli {
	margin-inline: auto;
}
.single-shipping h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: #303030;
	margin-bottom: 5px;
}
.single-shipping p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #303030;
	opacity: .75;
}
/* About Page -------------- */
.about-world-wrp {
	display: grid;
	gap: 75px;
	grid-template-columns: 620px 1fr;
}
.about-world-right h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	max-width: 800px;
	width: 100%;
	margin-bottom: 50px;
}
.about-world-right h3 {
	font-size: 29px;
	font-weight: 500;
	line-height: 36px;
	max-width: 540px;
	width: 100%;
}
.about-world-right p {
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	max-width: 690px;
	width: 100%;
	margin-bottom: 20px;
}
.about-world-right p:last-child {
	margin-bottom: 0;
}
.about-prog {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-bottom: 35px;
}
.circle {
	width: 135px;
	height: 135px;
	position: relative;
}
.circle strong {
	position: absolute;
	font-size: 26px;
	font-weight: 600;
	line-height: 36px;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: max-content;
	height: max-content;
}
.about-easy {
	display: flex;
	margin-top: 50px;
	gap: 15px;
}
.about-easy li {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	position: relative;
	padding-left: 100px;
}
.about-easy li p {
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	margin-top: 10px;
	max-width: 255px;
}
.about-easy li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 90px;
	height: 90px;
	background: url('images/icon/easyRat.png') no-repeat;
}
.about-easy li:last-child:before {
	background: url('images/icon/payment.png') no-repeat;
}
/* About task Section */
.about-task {
	padding: 75px 0;
	border-radius: 26px;
	background: #309900;
}
.about-task ul {
	display: flex;
	justify-content: space-between;
	max-width: 1020px;
	width: 100%;
	margin: auto;
	padding: 0 15px;
	gap: 20px;
	flex-wrap: wrap;
}
.about-task ul li {
	font-size: 48px;
	font-weight: 700;
	line-height: 36px;
	color: #FFF;
	display: flex;
	gap: 25px;
	align-items: center;
}
.about-task ul li span {
	font-size: 24px;
	font-weight: 300;
	line-height: 32px;
}
/* Why We Better ---- */
.why-better-sec h2 {
	font-size: 36px;
	font-weight: 700;
	color: #000;
	text-align: center;
}
.why-better-sec h2 span {
	font-size: 24px;
	font-weight: 700;
	display: block;
	color: #309900;
}
/* Why We Better  */
.why-better {
	margin-top: 70px;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.why-better ul {
	max-width: 390px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.why-better ul.right {
	text-align: right;
}
.why-better ul.right li {
	padding-left: 0;
	padding-right: 110px;
}
.why-better ul.right li::before {
	left: unset;
	right: 0;
}
.why-better ul li {
	font-size: 24px;
	font-weight: 600;
	color: #333333;
	position: relative;
	padding-left: 110px;
}
.why-better ul li span {
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	color: #6c6c6c;
	display: block;
	margin-top: 10px;
}
.why-better .img {
	max-width: 625px;
	width: 100%;
}
.why-better ul li::before {
	content: '';
	position: absolute;
	left: 0;
	width: 80px;
	height: 80px;
	border-radius: 100px;
}
.why-better ul li.nut::before {
	background: #309900 url('images/icon/gg_check-o.png') no-repeat;
	background-position: top 18px left 20px;
}
.why-better ul li.supp::before {
	background: #309900 url('images/icon/fa-regular_chart-bar.png') no-repeat;
	background-position: top 19px left 23px;
}
.why-better ul li.pro::before {
	background: #309900 url('images/icon/pp.png') no-repeat;
	background-position: top 19px left 23px;
}
.why-better ul li.cert::before {
	background: #309900 url('images/icon/ck.png') no-repeat;
	background-position: top 21px left 21px;
}
/* About Video Section  */
.about-video-sec {
	padding: 230px 0;
	background: url('images/AddOn.jpg') no-repeat;
	background-size: cover;
	text-align: center;
}
.about-video-sec button {
	transition: .3s;
}
.about-video-sec button:hover {
	transform: rotate(360deg) scale(1.1);
}
.about-video-sec button img {
	display: block;
}
/* About Product  */
.single-about-pro {
	margin: 0 12px;
	max-width: 360px;
	width: 100%;
}
.single-about-pro img {
	display: block;
	border-radius: 5px;
}
/* Contact Us Page ------------ */
.contact-sec {
	background: url('images/map-pattern.png') no-repeat;
	background-position: center;
}
.contact-wrp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 35px;
}
/* left  */
.contact-left h2 {
	text-transform: uppercase;
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 700;
	line-height: 44px;
}
.contact-left p {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #6c6c6c;
	opacity: 0.75;
}
.contact-left ul {
	margin-top: 60px;
}
.contact-left ul li {
	font-size: 34px;
	line-height: 34px;
	font-weight: bold;
	padding-left: 90px;
}
.contact-left ul li + li {
	margin-top: 40px;
}
.contact-left ul li a {
	display: block;
	font-size: 20px;
	line-height: 40px;
	font-weight: 600;
	color: #6C6C6C;
	margin-top: 6px;
	position: relative;
}
.contact-left ul li a:hover {
	color: #309900;
}
.contact-left ul li a::before {
	content: '';
	position: absolute;
	top: -40px;
	left: -90px;
	width: 70px;
	height: 70px;
	border-radius: 100px;
}
.contact-left ul li.loca a::before {
	background: url('images/icon/loca.png') no-repeat;
}
.contact-left ul li.call a::before {
	background: url('images/icon/call.png') no-repeat;
}
.contact-left ul li.email a::before {
	background: url('images/icon/email.png') no-repeat;
}
/* right  */
.contact-right {
	max-width: 800px;
	width: 100%;
}
.contact-right form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.single-input textarea, .single-input input {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	padding: 18px 30px;
	border: 1px solid #A8A8A8;
	border-radius: 100px;
	width: 100%;
	font-family: 'K2D';
	outline: none;
}
.single-input textarea::placeholder,
.single-input input::placeholder {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: #000000;
	opacity: .5;
}
.single-input textarea:focus,
.single-input input:focus {
	border-color: #3eb607;
}
.single-input textarea {
	height: 260px !important;
	border-radius: 16px !important;
	resize: none;
}
.single-input {
	width: 100%;
}
.single-input {
	width: 100%;
}
.contact-right form button {
	margin-top: 10px;
}
.map iframe {
	width: 100%;
	border: 0;
	aspect-ratio: 2/.7;
	display: block;
	filter: grayscale(100);
}
/* Review Page ----------- */
.review-wrp {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.single-review {
	border: 1px solid #DDDDDD;
	border-radius: 13px;
	padding: 55px 55px 70px 55px;
	position: relative;
	flex: 400px;
	max-width: 750px;
	width: 100%;
}
.single-review::before {
	content: '';
	display: block;
	width: 60px;
	height: 40px;
	background: url('images/icon/qute.png') no-repeat;
	margin-bottom: 40px;
}
.single-review .star {
	color: #fcc440;
	font-size: 38px;
	position: relative;
	display: block;
	padding-left: 50px;
	margin-bottom: 20px;
}
.single-review .star::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background: url('images/icon/google.png') no-repeat;
}
.single-review .star::before {
	content: '';
	position: absolute;
	top: 13px;
	left: 0;
	width: 40px;
	height: 40px;
	background: url('images/icon/google.png') no-repeat;
}
.single-review h3 {
	margin-bottom: 20px;
	font-size: 22px;
}
.single-review p {
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
}
/* Cart Page ----------------- */
body.woocommerce-cart {}
body.woocommerce-cart .woocommerce {
	display: block !important;
}
body.woocommerce-cart.logged-in .page-wraper {
	background: transparent;
	padding: 0;
}
.sa-woo-cart-form {
	max-width: 930px;
	width: 100%;
}
body.woocommerce-cart.logged-in .coupon.sa-coupon-area button {
	margin-top: 0 !important;
}
.cart-section .container {
	max-width: 1440px;
}
.cart-section h2 {
	font-size: 24px;
}
.cart-wrp {
	display: flex;
	gap: 100px;
	justify-content: space-between;
	margin-top: 40px;
}
/* left  */
.cart-left {
	width: 100%;
}
/* right  */
.cart-right {
	max-width: 325px;
	width: 100%;
}
.sa-custom-cart-single-product-right .qib-button-wrapper {
	border: none;
	border-radius: 0;
	height: 22px;
	max-width: 110px;
	margin-top: 10px !important;
	text-align: center;
	float: unset;
}
body.woocommerce-cart .quantity.wqpmb_quantity input {
	background: transparent !important;
}
.sa-custom-cart-single-product-right .qib-button-wrapper button {
	border-radius: 100px;
	background: #309900 !important;
	width: 20px !important;
	height: 20px !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 19px !important;
	color: #FFF !important;
	line-height: 1 !important;
}
.sa-custom-cart-single-product-right .qib-button-wrapper button:hover {
	background: #49d907 !important;
}
.page-wraper.pageid-10 {
	margin: 50px 0;
}
/*add cart page */
.sa-custom-cart-wraper {
	margin: 100px 0;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.pagecontainer.container {
	max-width: 1400px;
}
.sa-custom-cart-single-product {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: auto auto 60px auto;
}
.sa-custom-cart-single-product-left {
	display: flex;
	gap: 35px;
	width: 100%;
}
.sa-cart-product-thumb {
	min-width: 180px;
	max-width: 180px;
	aspect-ratio: 1;
	background: #e7eff2;
}
.sa-cart-product-data {
	max-width: 370px;
	width: 100%;
}
.sa-cart-product-thumb a img, 
.sa-cart-product-thumb a {
	display: block;
}
.sa-cart-product-data a {
	font-size: 22px;
	font-weight: 600;
	line-height: 24px;
	display: block;
	margin-bottom: 10px;
	color: #000000;
}
.sa-cart-product-data a:hover {
	color: #00b517;
}
.sa-cart-product-data .amount {
	/*    display: none;*/
}
.sa-cart-product-short-description p, .sa-cart-product-short-description ul li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #6c6c6c;
}
.sa-cart-product-short-description ul {
	margin-left: 22px;
}
.sa-cart-product-short-description p {
	margin-bottom: 10px;
}
.sa-cart-product-short-description ul li {
	list-style: disc;
}
.sa-cart-product-short-description ul li::marker {
	font-size: 13px;
}
.sa-cart-attr {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: rgb(48 48 48 / 50%);
	border-radius: 100px;
	background: #d9d9d9;
	padding: 8px 30px;
	margin-right: 14px;
	display: inline-block;
}
/*right */
.sa-custom-cart-single-product-right {
	position: relative;
	max-width: 110px;
	padding-left: 80px;
	margin-left: 80px;
	box-sizing: content-box;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.sa-custom-cart-single-product-right::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	width: 1px;
	height: 120px;
	background: rgb(48 48 48 / 25%);
}
.sa-custom-cart-single-product-right .amount {
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	color: #303030;
	margin-bottom: 8px;
}
.sa-cart-wishlist-remove-wraper {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: end;
	margin-top: auto;
}
.sa-cart-wishlist-remove-wraper .yith-wcwl-add-button a {
	width: unset;
	height: unset;
	display: block;
	background: transparent !important;
	border: none !important;
	transition: .1s;
}
.sa-cart-wishlist-remove-wraper .single_add_to_wishlist:hover {
	background: transparent !important;
	color: #309900 !important;
}
.sa-cart-wishlist-remove-wraper a.remove i {
	color: #000 !important;
}
.sa-cart-wishlist-remove-wraper a.remove:hover,
.sa-cart-wishlist-remove-wraper a.remove:hover i {
	background: transparent !important;
	color: red !important;
}
/*Have a coupon */
.sa-custom-cart-right {
	max-width: 325px;
	width: 100%;
	position: sticky;
	top: 115px;
	height: 100%;
}
.coupon.sa-coupon-area {
	border-radius: 6px;
	background: #ffffff;
	box-shadow: 0px 4px 10px 0px rgba(56, 56, 56, 0.10000000149011612);
	padding: 40px 20px;
	display: flex;
}
.coupon.sa-coupon-area input {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgb(79 79 79 / 50%);
	width: 100%;
	padding: 10px 15px;
	border-radius: 100px 0 0 100px;
	border: 1px solid #ABABAB;
	border-right: 0;
}
.coupon.sa-coupon-area input:focus {
	border-color: #00B517;
}
.coupon.sa-coupon-area button {
	font-size: 18px !important;
	font-weight: 500 !important;
	border-radius: 59px !important;
	background: #00b517 !important;
	padding: 12px 28px !important;
	color: #FFF !important;
	transition: .3s;
	margin-left: -20px !important;
}
.coupon.sa-coupon-area button:hover {
	background: #04db20 !important;
}
.sa-cart-total {
	border-radius: 6px;
	background: #ffffff;
	box-shadow: 0px 4px 10px 0px rgba(56, 56, 56, 0.10000000149011612);
	padding: 40px 30px;
	margin-top: 20px;
}
.sa-cart-total h2 {
	display: none;
}
.sa-cart-total table {
	border: none !important;
}
.sa-cart-total table th, .sa-cart-total table td {
	padding: 0 !important;
	border: none !important;
}
.sa-cart-total table tr {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #4f4f4f;
	margin-bottom: 5px;
}
.sa-cart-total table td[data-title="Shipping"] {
	text-align: right;
}
.sa-cart-total table tr a {
	color: #00b517;
}
.sa-cart-total table tr a:hover {
	color: #4f4f4f;
}
.sa-cart-total table tr.order-total {
	font-weight: bold;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e4e4e4;
}
.sa-cart-total .wc-proceed-to-checkout {
	padding: 0 !important;
	margin: 0;
}
.sa-cart-total .wc-proceed-to-checkout a {
	margin: 0 !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	border-radius: 59px !important;
	background: #00b517 !important;
	padding: 15px !important;
	border: 1px solid transparent !important;
	transition: .3s;
}
.sa-cart-total .wc-proceed-to-checkout a:hover {
	background: transparent !important;
	border-color: #00b517 !important;
	color: #000 !important;
}
/* Checkout Page ------------- */
.checkout-wrp {
	display: flex;
	gap: 65px;
	justify-content: space-between;
}
.checkout-left {
	width: 100%;
}
.chec-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.chec-head h2 {
	font-size: 24px;
}
.chec-head p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: rgb(0 0 0 / 50%);
}
.chec-head p a {
	color: #309900;
}
.chec-head p a:hover {
	text-decoration: underline;
}
/* right */
.checkout-right {
	max-width: 425px;
	width: 100%;
}
.added_to_cart {
	display: none !important;
}
/* Thank Page ---------- */
.thank-sec .container {
	max-width: 1070px;
}
.thank-con {
	text-align: center;
}
.thank-con h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 44px;
	margin-bottom: 30px;
	padding-top: 90px;
	position: relative;
}
.thank-con h2::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	width: 60px;
	height: 60px;
	background: url('images/icon/gchek.png') no-repeat;
}
.thank-con p {
	font-size: 22px;
	font-weight: 500;
	line-height: 51px;
}
.thank-con .btn {
	font-size: 24px;
	font-weight: 500;
	padding: 18px 35px;
	transition: .3s;
	border-radius: 59px;
	background: #309900;
	color: #FFF;
	border: 1px solid transparent;
	margin: 30px 0;
}
.thank-con .btn:hover {
	border-color: #309900;
	background: transparent;
	color: #000;
}
.thank-con .red {
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	color: #000;
	text-decoration: underline;
}
.thank-con .red:hover {
	text-decoration: none;
}
.delivery {
	max-width: 1280px;
	width: 100%;
	margin: auto;
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}
.delivery li {
	border-radius: 6px;
	background: #eeeeee;
	flex: 1;
	text-align: center;
	font-family: K2D;
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
	height: 280px;
	position: relative;
}
.delivery li::before {
	content: '';
	display: block;
	width: 90px;
	height: 90px;
	margin: 50px auto 40px auto;
}
.delivery li.dele::before {
	background: url('images/icon/delevery.png') no-repeat;
}
.delivery li.pay::before {
	background: url('images/icon/wallet.png') no-repeat;
}
.delivery li.ret::before {
	background: url('images/icon/product-return.png') no-repeat;
}
.delivery li.cus::before {
	background: url('images/icon/customer-care.png') no-repeat;
}
/* How it work Page  ------------------- */
.step-head {
	text-align: center;
}
.step-head h2 {
	font-size: 48px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.step-by-sec p {
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #6c6c6c;
	opacity: 0.75;
	max-width: 815px;
	width: 100%;
	margin: auto;
}
.step-head p {
	max-width: 535px;
}
.step-list {
	max-width: 1300px;
	width: 100%;
	margin: 50px auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	background: url('images/line.png') no-repeat;
	background-position: center;
}
.step-list li {
	border-radius: 88.11962890625px;
	background: #e6ffdd;
	width: 175px;
	height: 175px;
	display: grid;
	align-items: center;
	justify-content: center;
}
/* Typography --------------- */
.default-btn {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #000000;
	padding: 22px 40px;
	border-radius: 100px;
	background: transparent;
	border: 1px solid #000;
	transition: .3s;
}
.default-btn:hover {
	background: #309900;
	color: #FFF;
	border-color: transparent;
}
.white-arrow-btn {
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	color: #FFF;
	border: 1px solid #FFFF;
	padding: 16px 90px 16px 28px;
	border-radius: 100px;
	transition: .3s ease;
	position: relative;
}
.white-arrow-btn:hover {
	color: #309900;
}
.white-arrow-btn::after {
	content: '';
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 15px;
	background: url('images/icon/arrowRightBtn.png') no-repeat;
	transition: .3s ease;
}
.white-arrow-btn:hover::after {
	transform: translateX(5px);
}
/* Header Top Title  */
.title-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
	padding-bottom: 22px;
}
.heading ,
.title-top h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	color: #000000;
	clear: both;
}
.title-top p {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #6c6c6c;
}
.title-top .btn {
	font-size: 24px;
	font-weight: 700;
	line-height: 44px;
	text-transform: uppercase;
	color: #000000;
}
.title-top .btn:hover {
	color: #309900;
}
.accordion-body {
	display: none;
}
/*New Arrival Area */
.mini-product-area {}
.mini-product-area ul {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.mini-product-area ul li {
	position: relative;
	display: block;
	max-width: 360px;
	width: 100%;
	flex: 270px;
}
html body .mini-product-area .add_to_cart_button {
	position: absolute;
	top: 0;
	right: 0;
	width: 78px;
	height: 78px;
	border-radius: 100px;
	background: #ffffff !important;
	box-shadow: 0px 24px 19.799999237060547px 0px rgba(0, 0, 0, 0.10000000149011612);
	padding: 0 !important;
}
html body .mini-product-area .add_to_cart_button::after {
	content: '+' !important;
	position: absolute;
	font-size: 30px;
	font-family: FontAwesome !important;
	font-weight: 200;
	width: 100%;
	height: 100% !important;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	top: unset !important;
	right: unset !important;
}
html body .mini-product-area .add_to_cart_button.loading::after {
	content: '\f110' !important;
	animation: rotate 2s linear infinite;
}
html body .mini-product-area .add_to_cart_button.added::after {
	content: '\f00c' !important;
}
.mini-product-area ul li > a {
	margin: 0;
	max-width: 100%;
	width: 100% !important;
	height: 378px;
	border-radius: 38px;
	background: #ffffff;
	border: 1px solid #E8E8E8;
	overflow: hidden;
}
.mini-product-area ul li a img {
	object-fit: contain;
	transition: .3s ease;
}
.mini-product-area ul li > a:hover img {
	transform: scale(1.2);
}
.mini-product-area .sa-product-mid {
	margin: 15px 0 0;
	padding: 0;
	border: 0;
	text-align: center;
}
.mini-product-area .product-categories a {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #8e8e8e;
	margin-bottom: 0px;
	text-transform: capitalize;
	margin: 0 auto;
}
.mini-product-area .product-categories a:hover {
	color: #309900;
}
.mini-product-area .sa-product-mid h2 {
	font-size: 31px !important;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 24px;
	padding-bottom: 0 !important;
}
.mini-product-area .sa-product-last {
	min-width: unset;
}
.mini-product-area .sa-product-last .price {
	gap: 20px;
	margin-bottom: 0 !important;
}
.mini-product-area .sa-product-last .amount {
	font-size: 28px;
	font-weight: 400;
}
.mini-product-area .sa-product-last .price del {
	color: #000000;
	opacity: 0.30;
}
.mini-product-area .product-short-description,
html body .mini-product-area .add_to_cart_button span,
.mini-product-area .yith-wcwl-add-button,
.mini-product-area .sa-share-button,
.mini-product-area .product-rating, 
.mini-product-area .product-stock {
	display: none !important;
}
/*Mini Cart Area */
.header-sign .card:hover .sa-mini-cart {
	opacity: 1;
	visibility: visible;
}
.sa-mini-cart {
	position: absolute;
	z-index: 99;
	top: 100%;
	right: 0;
	background: #FFF;
	box-shadow: 0 10px 40px rgba(0,0,0,.1);
	min-width: 320px;
	width: 100%;
	padding: 15px;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
}
.sa-mini-cart ul {
	max-height: 420px;
	overflow: auto;
}
.sa-mini-cart ul li {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 15px;
}
.sa-mini-cart ul li::after,
.sa-mini-cart ul li::before {
	display: none !important;
}
.sa-mini-cart ul li .remove_from_cart_button {
	order: 3;
	font-size: 22px;
	align-self: flex-start;
	line-height: 1;
	color: #bababa !important;
}
.sa-mini-cart ul li .remove_from_cart_button:hover {
	color: red !important;
	background: transparent !important;
}
.sa-mini-cart ul li a:not([class]) {
	display: flex !important;
	gap: 15px;
	max-width: 180px;
	font-size: 14px;
	color: #000;
	line-height: normal;
}
.sa-mini-cart ul li a:not([class]) img {
	background: #eff9eb;
	width: 60px;
	height: 80px;
	object-fit: contain;
	order: -1;
}
.sa-mini-cart ul li .quantity {
	font-size: 14px;
	line-height: normal;
	color: #000;
}
.sa-mini-cart .total {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	margin: 15px 0;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.sa-mini-cart .woocommerce-mini-cart__buttons.buttons {
	display: flex;
	gap: 12px;
}
.sa-mini-cart .woocommerce-mini-cart__buttons.buttons a {
	flex: 1;
	text-align: center;
	background: #309900;
	color: #FFF;
	font-size: 14px;
	line-height: normal;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 5px;
	border-radius: 5px;
	transition: .3s;
	border: 1px solid transparent;
}
.sa-mini-cart .woocommerce-mini-cart__buttons.buttons a:hover {
	background: transparent;
	color: #000;
	border-color: #309900;
}
/*Login Page -------- */
.pageid-12.not-loged-in .woocommerce {
	padding: 100px 0;
}
.pageid-12.not-loged-in .woocommerce h2 {
	font-size: 26px;
	color: #000;
}
/*login wrap */
div#customer_login {
	display: flex;
	max-width: 750px;
	width: 100%;
	margin: auto;
	border-radius: 5px;
}
div#customer_login > div {
	border: none;
	float: unset;
	width: 100%;
}
div#customer_login > div form {
	border: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
}
/*Left */
div#customer_login > div:first-child {
	background: #FFF;
	box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.1);
	padding: 40px;
}
div#customer_login > div label {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}
div#customer_login > div form input {
	padding: 15px;
	background: transparent;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 400;
	border: 1px solid #e8f0fe;
}
div#customer_login > div form span.show-password-input {
	top: 14px;
}
div#customer_login > div form button[type="submit"] {
	margin-top: 25px;
	margin-right: 20px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px 25px;
	background: #309900;
	color: #FFF;
	border: 1px solid #309900;
	transition: .3s;
}
div#customer_login > div form button[type="submit"]:hover {
	background: transparent;
	color: #309900;
}
div#customer_login > div form .woocommerce-form-login__rememberme {
	margin-top: 25px;
}
.lost_password a {
	font-size: 16px;
	font-weight: 500;
	color: #000;
}
.lost_password a:hover {
	color: #309900;
}
/*Right */
div#customer_login > div:last-child {
	max-width: 320px;
	background: rgba(38, 43, 72, 1);
	padding: 40px 20px;
	color: #FFF;
}
div#customer_login > div:last-child h2 {
	color: #FFF;
}
div#customer_login > div:last-child label {
	color: #FFF;
}
div#customer_login > div:last-child input {
	background: #e8f0fe;
}
div#customer_login > div:last-child input::placeholder {
	color: #FFF !important;
	font-weight: 500 important;;
	font-size: 16px important;;
}
div#customer_login > div:last-child p,
div#customer_login > div:last-child p a {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #FFF;
}
div#customer_login > div:last-child p a:hover {
	color: #309900;
}
/*Lost your password */
form.lost_reset_password {
	max-width: 600px;
	width: 100%;
	margin: auto;
	text-align: center;
	background: #FFFF;
	box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.1);
	padding: 40px;
	border-radius: 5px;
}
form.lost_reset_password p {
	font-size: 17px;
	line-height: 1.5;
	margin-bottom: 20px !important;
	width: 100% !important;
	float: unset !important;
}
form.lost_reset_password p label {
	font-size: 20px;
	font-weight: 500;
}
form.lost_reset_password input {
	padding: 18px;
	font-size: 18px;
	font-weight: 500;
	margin-top: 10px !important;
	max-width: 320px;
	border-radius: 5px;
}
/*Dashboard */
body.logged-in {}
body.logged-in .woocommerce {
	display: flex;
	gap: 40px;
}
body.logged-in .woocommerce div:empty {
	display: none;
}
body.logged-in .page-wraper {
    background: #eff9eb;
    padding-top: 130px;
    padding-bottom: 100px;
}
/*left */
nav.woocommerce-MyAccount-navigation {
	float: unset !important;
	max-width: 350px;
	width: 100% !important;
	background: #f7fcf5;
	padding: 20px;
	border-radius: 5px;
}
nav.woocommerce-MyAccount-navigation ul {
	position: sticky;
	top: 120px;
}
nav.woocommerce-MyAccount-navigation li {
	padding: 4px 0;
}
nav.woocommerce-MyAccount-navigation li a {
	display: block;
	color: #242849;
	font-size: 18px;
	font-weight: 500;
	/*background: #ffffff7a;*/
	padding: 5px;
	border-radius: 4px;
	transition: .3s;
}
/*nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
background: #309900;
color: #FFF;
}*/
/*right */
.woocommerce-account .woocommerce-MyAccount-content {
	float: right !important;
	width: 100% !important;
	background: #ffffff7a;
	padding: 40px;
	border-radius: 4px;
	overflow: auto;
	max-height: 600px;
}
.woocommerce-MyAccount-content p {
	font-size: 18px;
	font-weight: 500;
	color: #242849;
	margin-bottom: 10px;
}
.woocommerce-MyAccount-content p a {
	color: #309900;
}
.woocommerce-MyAccount-content p a:hover {
	text-decoration: underline;
}
/*Order Page */
.woocommerce-orders-table {}
.woocommerce-orders-table thead {
	font-size: 17px;
	color: #242849;
}
.woocommerce-orders-table tr {
	font-size: 17px;
	font-weight: 400;
	color: #242849;
}
.woocommerce-orders-table tr .button.view {
	background: #309900 !important;
	color: #FFF !important;
	-webkit-text-fill-color: unset;
}
.woocommerce-orders-table tr .button.view:hover {
	background: #42cc04 !important;
}
/*View Order Page */

/*Address Page */
body.logged-in .addresses {
	margin-top: 20px;
}
body.logged-in .addresses > div address p {
	position: relative;
}
body.logged-in .addresses > div {
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 0 15px #ecedec;
}
body.logged-in .addresses > div h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}
body.logged-in .addresses > div a.edit {
	background: #309900;
	color: #FFF;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 16px !important;
	font-weight: 500 !important;
}
body.logged-in .addresses > div a.edit:hover {
	background: #44cc06 !important;
}
body.logged-in .addresses > div address {
	font-size: 17px;
	font-weight: 500;
	color: #242849;
}
/*Edit Address */
body.logged-in .page-wraper input,
body.logged-in .page-wraper .woocommerce-address-fields__field-wrapper input {
	padding: 10px 15px;
	font-size: 17px;
	font-weight: 500;
	border-radius: 4px;
}
body.logged-in .page-wraper label,
body.logged-in .page-wraper .woocommerce-address-fields__field-wrapper label {
	margin-bottom: 10px;
}
body.logged-in .page-wraper button[type="submit"],
p.return-to-shop a,
body.logged-in .page-wraper .woocommerce-address-fields button[type="submit"] {
	background: #309900 !important;
	color: #FFF !important;
	margin-top: 25px !important;
}
p.return-to-shop a:hover,
body.logged-in .page-wraper button[type="submit"]:hover,
body.logged-in .page-wraper .woocommerce-address-fields button[type="submit"]:hover {
	background: #3cb803 !important;
}
body.logged-in .page-wraper fieldset {
	border: none;
	margin-top: 20px;
}
.woocommerce-MyAccount-content span em {
	margin-top: 20px;
	display: block;
}
.woocommerce-MyAccount-content .show-password-input {
	top: 8px !important;
}
/*Check Out Page */
body.logged-in .checkout-page .woocommerce {
	justify-content: center;
}
.checkout-page p.woocommerce-thankyou-order-received {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 22px;
}
.checkout-page ul.woocommerce-order-overview li {
	font-size: 13px !important; 
}
.checkout-page ul.woocommerce-order-overview li strong {
	font-size: 15px !important;
	margin-top: 4px;
}
.wp-block-woocommerce-checkout-fields-block .wc-block-checkout__actions_row button {
	background: #00b517;
	color: #FFF;
	font-size: 16px !important;
	font-weight: 600 !important;
	padding: 10px 15px !important;
	display: block !important;
	max-width: 160px !important;
	max-height: 35px !important;
	border-radius: 5px;
	outline: none !important;
	border: none !important;
}
.wp-block-woocommerce-checkout-fields-block .wc-block-checkout__actions_row button:hover {
	background: #01db1d !important;
}
body.logged-in .wc-block-components-totals-coupon__content button[type="submit"] {
	margin-top: 0 !important;
	border-radius: 4px;
}
body.logged-in .wc-block-components-form .wc-block-components-text-input label, 
body.logged-in .wc-block-components-text-input label {
	top: -6px;
}
.sa-product-attr-for-content span:empty {
	display: none !important;
}
.checkout-page {
	margin: 100px 0;
}
.woocommerce-order-details h2 {
	margin-bottom: 20px;
}
.variations_button {
	display: flex;
	gap: 15px;
}







/*SA ---*/
section.related.products > h2 {
	display: none;
}
html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after {
	top: 1.4em;
	right: 2em;
}


div#sidebar,
div#primary {
	display: none;
}


.step-boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin: 40px 0 40px;
}

.step-boxes .step-box {
	width: 31%;
	text-align: center;
	background: #e6ffdd;
	padding: 50px;
}

.step-boxes .step-box h3 {
	font-size: 30px;
	line-height: normal;
	margin: 20px 0 20px;
}
.step-by-sec p a {
	color: #6c6c6c;
	border-bottom: 1px solid #66a10b;
	line-height:normal;
}

step-by-sec p a:hover {border-bottom: 0;}


.page-wraper p, .page-wraper li {
	font-size: 20px;
	line-height: 30px;
	margin: 0 0 20px;
	color: #6c6c6c;
}
.page-wraper h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	color: #000000;
	clear: both;
	margin-bottom: 15px;
}
.about-world-left {
	margin-bottom: 20px;
}
.page-wraper ul {
	margin: 0 0 20px 40px;
	list-style: circle;
}
.page-wraper ol {
	margin: 0 0 20px 40px;
}
.page-wraper a {
	background: linear-gradient(180deg, #fdf414 0%, #66a10b 100%);
	transition: 0.3s all;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height:normal;
}
.page-wraper a:hover {
	background: #6c6c6c;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom:1px solid #6c6c6c;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
	-webkit-text-fill-color: unset;
}
.page-wraper h2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	color: #000000;
	clear: both;
}
.product-categories a {
	text-transform: capitalize;
	letter-spacing: 0px;
	font-size: 14px;
}
.product-categories {
	display: flex;
	gap: 3px;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	margin-bottom: 14px;
}
.sa-product-last .price del span.woocommerce-Price-amount.amount, .single-product-price del span.woocommerce-Price-amount.amount{
	display: none;
}
.accordion ul {
	margin: 40px;
	list-style: disc;
}
.accordion ol {
	margin: 40px;
}
.page-wraper {
    padding-bottom: 100px;
    padding-top: 100px;
}
.sa-share-button {
	position: relative;
}
.sa-share-button:after {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
    background: url(images/share.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.sa-share-button:hover:after {
    filter: invert(1);
}
select.orderby {
    padding: 20px;
    border-radius: 100px;
	border: 1px solid #000;align-content
}
.yith-wcwl-add-button a.add_to_wishlist.single_add_to_wishlist.alt.button.theme-button-style, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt {
    background-color: unset;
}
 .yith-wcwl-add-to-wishlist.exists svg.yith-wcwl-icon-svg {
    color: #ffffff!important;
}
.aws-container .aws-search-form * {
    border-radius: 150px!important;
}
.aws-container {
    margin-bottom: 50px;
}
.aws-container .aws-show-clear .aws-search-field {
    padding-left: 30px;
}
.search-home {
    width: 100%;
    /* max-width: 600px; */
    display: block;
    /* margin: 50px auto 0px; */
    background: #000000;
    padding: 30px;
}
.aws-container {
    margin-bottom: 50px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
div#aws-search-result-1, li.aws_result_item {
    border-radius: 30px;
}
.aws-container .aws-search-form {
    gap: 10px;
}
body.logged-in .woocommerce {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100%!important;
    overflow: visible;
}
.woocommerce form .form-row select {
    cursor: pointer;
    margin: 0;
    border: 0px;
    padding: 12px;
    border-radius: 5px;
}
.m-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.m-columns ol {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
}
div#yith-become-a-vendor {
    background: #30990017;
    border-radius: 20px;
}
span.yith_wcmv_sold_by_wrapper * {
    display: inline-block;
}