/* 1. Theme default css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {
	--blue: #5e72e4;
	--indigo: #5603ad;
	--purple: #8965e0;
	--pink: #f3a4b5;
	--red: #f5365c;
	--orange: #fb6340;
	--yellow: #ffd600;
	--green: #2dce89;
	--teal: #11cdef;
	--cyan: #2bffc6;
	--white: #fff;
	--gray: #8898aa;
	--gray-dark: #32325d;
	--light: #ced4da;
	--lighter: #e9ecef;
	--success: #A0D720;
	--info: #00A5B5;
	--warning: #E4C023;
	--danger: #F20303;
	--danger-hover: #D00214;
	--light: #adb5bd;
	--dark: #212529;
	--default: #172b4d;
	--white: #fff;
	--neutral: #fff;
	--darker: black;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-monospace: "Poppins", "Varela Round";

	--primary-clr: #670099;
	--primary-clr-hover: #b103ff;
	--secondary-clr: #9700E3;
	--border-radius: 50px;
	--border-clr: #dee1e3;
	--border-hover-clr: rgb(72, 77, 85);
	--text-clr: #24282f;

	--primary-bg-transparent: #D8DCFF;

	--radio: #7c96b2;
	--radio-checked: #4f29f0;
	--radio-size: 25px;

	--font-size: 14px;
}

body {
	font-family: "Poppins", "Varela Round", sans-serif;
	font-weight: 400;
	font-size: var(--font-size);
	line-height: 24px;
	color: var(--text-clr);
	font-style: normal;
}

input,
input::placeholder,
select {
    font: 16px "Poppins" !important;
    color: #6c757d;
}

.img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
}

.logo img{
	width: 214px;
}

.f-left {
	float: left
}

.f-right {
	float: right
}

.fix {
	overflow: hidden
}

a, .button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
	text-decoration: none;
	outline: none;
	box-shadow: none;
}

.btn {
	border-radius: var(--border-radius);
}

.btn.height-50 {
	height: 50px;
	line-height: 2.3;
	min-width: 150px;
}

.btn-sm {
	height: 37px;
	width: 100px;
	font-size: 13px;
	padding-left: 5px;
	box-shadow: none !important;
}

.btn-primary {
	background: var(--primary-clr);
	border-color: var(--primary-clr);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:focus-within,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
	background: var(--secondary-clr);
	border-color: var(--secondary-clr);
}

.btn-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(189, 17, 232, .5) !important;
}

.btn-outline-primary {
	color: var(--primary-clr);
	border-color: var(--primary-clr);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible,
.btn-outline-primary:focus-within,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
	color: #fff;
	background: var(--secondary-clr);
	border-color: var(--secondary-clr);
}

.btn-outline-primary.active,
.btn-outline-primary.active:hover,
.btn-outline-primary.active:focus-visible,
.btn-outline-primary.active:focus-within,
.btn-outline-primary.active:active,
.btn-outline-primary.active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
	color: #fff;
	background: var(--secondary-clr) !important;
	border-color: var(--secondary-clr) !important;
	box-shadow: none !important;
}

.btn-danger {
	background: var(--danger);
	border-color: var(--danger);
}

.btn-danger:hover,
.btn-danger:focus-visible,
.btn-danger:focus-within,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active {
	background: var(--danger-hover);
	border-color: var(--danger-hover);
}

.btn-danger:focus {
	box-shadow: 0 0 0 0.2rem rgba(242, 3, 3, .5) !important;
}

.btn-light {
	background: #EAEAEA;
	border-color: #EAEAEA;
}

.btn-light:hover,
.btn-light:focus-visible,
.btn-light:focus-within,
.btn-light:active,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
	background: #7e7e7e;
	border-color: #7e7e7e;
}

.btn-light:focus {
	box-shadow: 0 0 0 0.2rem rgba(234, 234, 234, .5) !important;
}

.bg-primary {
	background: var(--primary-clr) !important;
	color: #fff !important;
	border-color: var(--primary-clr);
}

a{
	color: #ffff;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
	color: var(--primary-clr-hover);
	text-decoration: none;
}

a, button {
	color: #737B7D;
	outline: medium none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus{ 
	outline: 0
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

.fs-30 {
	font-size: 30px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #312620;
	margin-top: 0px;
	font-style: normal;
	font-weight: 600;
	text-transform: normal;
}

h1 a, h2 a,
h3 a, h4 a,
h5 a, h6 a {
	color: inherit;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none
}

p {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #676565;
	margin-bottom: 15px;
}

hr {
	border-bottom: 1px solid #eceff8;
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}

.theme-overlay {
	position: relative
}

.theme-overlay::before {
	background: var(--primary-clr) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
}

.separator {
	border-top: 1px solid #f2f2f2
}

.slick-slide:focus {
	outline: none;
}

.header-top-offer > p span,
.h7-slider-content .title > span,
.h7-slider-wrap .overlay-text,
.h7s-bottom-item .content h5 a:hover,
.side-header-nav .side-header-action li a:hover,
.sidebar-copyright p > a,
.cosmetics-item .content .title a:hover,
.new-arrival-all > a:hover,
.new-arrival-all > a i,
.banner-five-wrap .slider-content .sub-title > span,
.h9-discount-item .content > h4 a:hover,
.reservation-title .title > span,
.reservation-contact p > span,
.blog-post-style3 .blog-post-content > a:hover,
.split-slider-item .slider-content .sub-title span {
	color: white;
}

.slider-button {
	position: absolute;
	top: 78%;
	left: 31%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #cb41af;
	color: white;
	font-size: 16px;
	padding: 8px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
	z-index:2;
}

.retail-slider-button{   
	position: absolute;
	top: 77%;
	left: 16%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #cb41af;
	color: white;
	font-size: 16px;
	padding: 8px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
	z-index:2;
}

.scroll-top,
.header-shop-cart a span,
.header-shop-cart-resp a span,
.product-overlay-action ul li a:hover,
.features-product-cart > a:hover,
.oc-newsletter form button:hover,
.cat-section-title .sub-title::before,
.cat-section-title .sub-title::after,
.blog-post-meta ul li.read-more a,
.header-style-two .sticky-menu .header-action > ul > li.header-profile > a,
.header-style-two .sticky-menu .header-shop-cart a span,
.header-style-two .sticky-menu .header-shop-cart-resp a span,
.header-style-three .navbar-wrap > ul > li > a::before,
.header-style-five .navbar-wrap > ul > li > a::before,
.header-style-six .navbar-wrap > ul > li > a::before,
.widget-title::before,
.b-details-title::before {
	background: #670099;
}

/* scrollUp */
.scroll-top {
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: fixed;
	bottom: 105%;
	right: 50px;
	font-size: 16px;
	z-index: 99;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: 1s ease;
	border: none;
	opacity: 0;
}

.scroll-top.open {
	bottom: 30px;
	opacity: 1;
}

.scroll-top::after {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 1;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
	background: #a3a3a3;
}

/* 2. Header */
.custom-container {
	max-width: 1790px;
}

.custom-container-two {
	max-width: 1600px;

}

.transparent-header {
	position: absolute;
	left: 0;
	top: 0px;
	width: 100%;
	z-index: 9;
	height: auto;
}

.header-top-offer {
	text-align: center;
}

.header-top-offer > p {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 500;
	color: #47474d;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.header-top-action > ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-top-action > ul > li {
	position: relative;
}

.header-top-action > ul > li + li {
	margin-left: 16px;
	line-height: 1;
}

.header-top-action > ul > li.sign-in a {
	font-size: 12px;
	font-weight: 500;
	color: #32323a;
}

.header-top-action > ul > li.sign-in::after {
	content: "|";
	display: inline-block;
	padding-left: 15px;
	font-size: 12px;
	color: #b9b9bc;
	padding-right: 8px;
}

.header-top-action > ul > li > a {
	font-size: 16px;
	color: #000;
}

.header-top-action > ul > li.header-shop-cart {
	padding-right: 15px;
}

.header-top-action > ul > li.header-shop-cart-resp {
	padding-right: 15px;
}

.header-category {
	position: relative;
}

.header-category > a {
	display: block;
	padding: 28px 72px 28px 25px;
	min-height: 80px;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
	background: #2b2b32;
	min-width: 254px;
}

.header-category > a > i {
	margin-right: 18px;
}

.category-menu {
	position: absolute;
	left: 0;
	top: 100%;
	box-shadow: 0px 1px 16px 0px rgba(220, 220, 220, 0.22);
	background: #fff;
	width: 100%;
	border: 1px solid #ebebeb;
	padding: 15px 0;
	display: none;
	z-index: 10;
}

.category-menu li {
	display: block;
}

.category-menu > li > a {
	display: block;
	color: #6e6e6e;
	font-size: 13px;
	padding: 9px 50px 9px 20px;
	background: transparent;
	border: 1px solid transparent;
	position: relative;
}

.category-menu > li:hover > a {
	background: #f2f1f1;
	border-color: #ebebeb;
}

.category-menu > li.has-dropdown > a::after {
	content: "\f105";
	position: absolute;
	right: 20px;
	font-size: 12px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
}

.category-menu .cat-mega-menu {
	position: absolute;
	display: flex;
	left: 100%;
	top: 0;
	background: #fff;
	box-shadow: 0px 1px 16px 0px rgba(220, 220, 220, 0.47);
	border: 1px solid #ebebeb;
	width: 750px;
	padding: 25px 20px;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	min-height: 100%;
	transform: translateY(10px);
	transition: .3s linear;
	z-index: 2;
}

.category-menu .cat-mega-menu > li {
	width: 33.333%;
}

.category-menu .cat-mega-menu .dropdown-title {
	font-size: 16px;
	font-weight: 500;
	color: #252525;
	margin-bottom: 17px;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.category-menu .cat-mega-menu li ul {
	margin-bottom: 25px;
}

.category-menu .cat-mega-menu li ul:last-child {
	margin-bottom: 0px;
}

.category-menu .cat-mega-menu ul li {
	margin-bottom: 16px;
}

.category-menu .cat-mega-menu ul li:last-child {
	margin-bottom: 0px;
}

.category-menu .cat-mega-menu ul li a {
	font-size: 13px;
	color: #6e6e6e;
	display: inline-block;
}

.category-menu .cat-mega-menu ul li a:hover {
	padding-left: 5px;
}

.category-menu .cat-mega-menu ul li.cat-mega-menu-banner a:hover {
	padding-left: 0;
}

.category-menu .cat-mega-menu-banner img {
	width: 100%;
}

.category-menu > li:hover > .cat-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.navbar-wrap {
	display: flex;
	flex-grow: 1;
}

.navbar-wrap ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
}

.navbar-wrap ul li {
	display: block;
	position: relative;
}

.navbar-wrap ul li a {
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	display: block;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
	display: none;
}

.header-action > ul {
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.header-action > ul li {
	position: relative;
	margin-left: 15px;
}

.header-action ul li:first-child {
	margin-left: 0;
}

.header-action > ul > li.header-shop-cart > a {
	padding-right: 10px;
}

.header-action > ul > li.header-shop-cart-resp > a {
	padding-right: 10px;
}

.header-action > ul > li > a {
	color: #fff;
	font-size: 20px;
}

.header-shop-cart a span {
	position: absolute;
	right: -4px;
	top: -4px;
	width: 16px;
	height: 16px;
	text-align: center;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	line-height: 17px;
	color: #fff;
	background: #670099;
	box-shadow: 0px 5px 12.09px 0.91px rgba(71, 51, 127, 0.14);
}

.header-shop-cart-resp a span {
	position: absolute;
	top: 0;
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	line-height: 20px;
	color: #fff;
	background: #670099;
	box-shadow: 0px 5px 12.09px 0.91px rgba(71, 51, 127, 0.14);
}

.total-price {
	border-top: 1px solid #e8e8e8;
	overflow: hidden;
	padding-top: 20px;
	margin-top: 10px;
}

.total-price span {
	color: #8e8e8e;
	font-weight: 500;
}

.header-action .header-btn .btn {
	color: #fff;
	font-size: 14px;
	padding: 13px 22px;
}

.header-action .shipping-offer {
	font-size: 13px;
	text-transform: uppercase;
	color: #e5e3e3;
	font-weight: 500;
}

.header-action .shipping-offer::after {
	content: "|";
	display: inline-block;
	font-size: 13px;
	color: #3d3d44;
	font-weight: 500;
	padding-left: 12px;
}

.header-action .sidebar-toggle-btn {
	padding-left: 20px;
}

.header-action .sidebar-toggle-btn::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 2px;
	height: 30px;
	transform: translateY(-50%);
	background: #303038;
}

.navbar-wrap ul li .submenu {
	position: absolute;
	z-index: 9;
	background-color: #fff;
	border-radius: 0;
	border: none;
	-webkit-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
	box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
	display: block;
	left: 0;
	opacity: 0;
	padding: 18px 0;
	right: 0;
	top: 100%;
	visibility: hidden;
	min-width: 230px;
	border: 1px solid #f5f5f5;
	background: #ffffff;
	box-shadow: 0px 30px 70px 0px rgba(137,139,142,0.15);
	margin: 0;
	transform: scale(1 , 0);
	transform-origin: 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-wrap ul li .submenu li {
	margin-left: 0;
	text-align: left;
	display: block;
}

.navbar-wrap ul li .submenu li a {
	padding: 0 10px 0 25px;
	line-height: 40px;
	font-weight: 500;
	color: #5d5d5d;
	text-transform: capitalize;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-wrap ul li:hover > .submenu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.sticky-menu {
	left: 0;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	background: #fff;
	-webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	border-radius: 0;
	padding: 1rem 0;
}

.sticky-menu .navbar-wrap ul li a,
.sticky-menu .header-action .shipping-offer,
.sticky-menu .header-action > ul > li a {
	color: #312620;
}

.sticky-menu .header-action .sidebar-toggle-btn::before {
	background: #e2e2e2;
}

.sticky-menu .header-action .shipping-offer::after {
	color: #c5c5c5;
}

.sticky-logo {
	display: none;
}

.sticky-menu .main-logo {
	display: none;
}

.sticky-menu .sticky-logo {
	display: block;
}

.menu-area.sticky-menu .mobile-nav-toggler {
	color: #312620;
}

.navbar-wrap ul li.has--mega--menu {
	position: static;
}

.navbar-wrap .mega--menu--wrap,
.navbar-wrap .has--mega--menu .mega-menu {
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	max-width: 1760px;
	max-height: calc(100vh - 120px);
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-right: 15px;
	margin-left: 15px;
	padding: 40px 40px;
	border: 1px solid rgb(245, 245, 245);
	box-shadow: rgb(137 139 142 / 15%) 0px 30px 70px 0px;
	transform: scale(1 , 0);
	transform-origin: 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

.navbar-wrap ul li:hover .mega--menu--wrap,
.navbar-wrap .has--mega--menu:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.navbar-wrap ul li .mega--menu--wrap .mCustomScrollBox {
	width: 100%;
}

.navbar-wrap ul li .mega--menu--wrap .mCSB_container {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.navbar-wrap ul li .mega--menu--wrap .mCSB_scrollTools {
	width: 0px;
}

.navbar-wrap .mega--menu--wrap li {
	width: 20%;
	flex: 0 0 20%;
	padding: 15px 20px;
	margin-bottom: 0;
	text-align: center;
}

.navbar-wrap .mega--menu--wrap li a,
.header-style-two .navbar-wrap .mega--menu--wrap li a {
	padding: 0;
}

.navbar-wrap .mega--menu--wrap li a .img {
	display: block;
	position: relative;
	box-shadow: 0px 4px 8px 0px rgb(12 0 46 / 9%);
	overflow: hidden;
}

.navbar-wrap .mega--menu--wrap li a .img::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #202026;
	opacity: 0;
	z-index: 1;
	transition: all 0.3s ease-in-out 0s;
}

.navbar-wrap .mega--menu--wrap li:hover > a .img::before {
	opacity: .5;
}

.navbar-wrap .mega--menu--wrap li a img {
	max-width: 100%;
	transform: scale(1);
	transition: .5s linear;
}

.navbar-wrap .mega--menu--wrap li a:hover img {
	transform: scale(1.1);
}

.navbar-wrap .mega--menu--wrap li a .text {
	display: block;
	color: #312620;
	margin-top: 20px;
	text-transform: capitalize;
	letter-spacing: 0;
	font-weight: 500;
	font-size: 14px;
}

.navbar-wrap .has--mega--menu .mega-menu .mega-menu-wrap {
	max-width: 1085px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
}

.mega-menu .mega-menu-wrap .mega-menu-col {
	margin-left: 0;
}

.mega-menu .mega-menu-wrap .mega-menu-col {
	margin-left: 0;
	display: block;
	padding: 0 15px;
	width: 20%;
	flex: 0 0 20%;
	margin-right: 0;
}

.mega-menu .mega-menu-wrap .mega-menu-col li a {
	color: #7a7a7a;
	text-transform: capitalize;
	padding: 12px 0;
	display: inline-block;
	font-weight: 400;
	letter-spacing: 0;
}

.mega-menu .mega-menu-wrap .mega-menu-col li a:hover {
	padding-left: 5px;
}

.mega-menu .mega-menu-wrap .mega-menu-col .mega-title > a {
	color: #565656;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	padding: 0 0 9px;
	margin-bottom: 18px;
}

.mega-menu .mega-menu-wrap .mega-menu-col .mega-title > a:hover {
	padding-left: 0;
}

.mega-menu .mega-menu-wrap .mega-menu-col .mega-title > a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 1px;
	background: #282828;
}

.mega-menu .mega-menu-wrap .sub-cat-post li a:hover {
	padding-left: 0;
}

.mega-menu .mega-menu-wrap .sub-cat-post li a {
	position: relative;
	padding: 0;
}

.mega-menu .mega-menu-wrap .sub-cat-post li a .btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, .9);
}

.mega-menu .mega-menu-wrap .mega-menu-col li:last-child a {
	padding-bottom: 0;
}

.mega-menu .mega-menu-wrap .mega-menu-col.sub-cat-post {
	width: 30%;
	flex: 0 0 30%;
}

.mega-menu .mega-menu-wrap .sub-cat-post li a img {
	max-width: 100%;
}

.header-style-two .navbar-wrap ul li a {
	color: #fff;
	padding: 33px 25px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
}

.header-style-two .transparent-header {
	padding: 20px 0;
}

.header-style-two .transparent-header.sticky-menu {
	padding: 0 0;
}

.header-style-two .sticky-menu .navbar-wrap ul li a,
.header-style-two .sticky-menu .header-action > ul > li > a,
.header-style-two .sticky-menu .header-shop-cart::before {
	color: #312620;
}

.header-style-two .sticky-menu .navbar-wrap ul li a,
.header-style-two .sticky-menu .header-action > ul > li > a,
.header-style-two .sticky-menu .header-shop-cart-resp::before {
	color: #312620;
}

.header-style-two .header-action > ul > li > a {
	color: #fff;
	font-size: 16px;
}

.header-style-two .header-shop-cart a span {
	background: #fff;
}

.header-style-two .header-shop-cart-resp a span {
	background: #fff;
}

.header-style-two .sticky-menu .header-shop-cart a span {
	color: #fff;
}

.header-style-two .sticky-menu .header-shop-cart-resp a span {
	color: #fff;
}

.header-style-two .header-action > ul > li {
	margin-left: 18px;
}

.header-style-two .header-shop-cart {
	padding-left: 18px;
	position: relative;
}

.header-style-two .header-shop-cart::before {
	content: "|";
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 14px;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-weight: 700;
	line-height: 1;
}

.header-style-two .header-action > ul > li.header-profile > a {
	display: block;
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	background: #fff;
	border-radius: 50%;
}

.header-style-two .sticky-menu .header-action > ul > li.header-profile > a {
	color: #fff;
}

.header-style-two .sidebar-toggle-btn {
	position: fixed;
	width: 80px;
	height: 80px;
	background: #202026;
	text-align: center;
	line-height: 80px;
	right: 0;
	top: 125px;
	z-index: 2;
}

.header-style-two .sidebar-toggle-btn > a {
	display: block;
}

.header-style-two .navbar-wrap .mega--menu--wrap,
.header-style-two .navbar-wrap .has--mega--menu .mega-menu {
	max-width: 1570px;
}

.header-style-three .header-top-wrap,
.header-style-five .header-top-wrap,
.header-style-six .header-top-wrap {
	padding: 10px 1rem;
	background: #D9D9D9 !important;
}

.header-style-three .header-top-link ul,
.header-style-five .header-top-link ul,
.header-style-six .header-top-link ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.header-style-three .header-top-link ul li + li::before,
.header-style-five .header-top-link ul li + li::before,
.header-style-six .header-top-link ul li + li::before {
	content: "|";
	font-size: 11px;
	font-weight: 500;
	color: #a2a1a1;
	margin: 0 10px;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.header-style-three .header-top-link ul li a,
.header-style-five .header-top-link ul li a,
.header-style-six .header-top-link ul li a {
	font-size: 13px;
	font-weight: 500;
	color: #d3cfcf;
	font-family: "Poppins", "Varela Round", sans-serif;
	text-transform: uppercase;
}

.header-style-three .header-top-right,
.header-style-five .header-top-right,
.header-style-six .header-top-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-style-three .header-top-right select,
.header-style-five .header-top-right select,
.header-style-six .header-top-right select {
	border: none;
	font-size: 11px;
	background: transparent;
	color: #d3cfcf;
	font-family: "Poppins", "Varela Round", sans-serif;
	outline: none;
	font-weight: 500;
	text-transform: uppercase;
}

.header-style-three .header-top-right select option,
.header-style-five .header-top-right select option,
.header-style-six .header-top-right select option {
	color: #202026;
}

.header-style-three .header-top-right > div + div,
.header-style-five .header-top-right > div + div,
.header-style-six .header-top-right > div + div {
	padding-left: 10px;
	margin-left: 10px;
	position: relative;
}

.header-style-three .header-top-right > div + div::before,
.header-style-five .header-top-right > div + div::before,
.header-style-six .header-top-right > div + div::before {
	content: "|";
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Poppins", "Varela Round", sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #a2a1a1;
}

.header-style-three .navbar-wrap > ul > li > a,
.header-style-five .navbar-wrap > ul > li > a,
.header-style-six .navbar-wrap > ul > li > a {
	font-size: 14px;
	font-weight: 700;
	color: #565656;
	padding: 1rem 1.3rem;
	letter-spacing: .5px;
}

.header-style-three .header-action > ul > li > a,
.header-style-four .header-action > ul > li > a,
.header-style-five .header-action > ul > li > a,
.header-style-six .header-action > ul > li > a {
	color: #000000;
	font-size: 15px;
}

.header-style-three .header-action .sidebar-toggle-btn::before,
.header-style-four .header-action .sidebar-toggle-btn::before,
.header-style-five .header-action .sidebar-toggle-btn::before,
.header-style-six .header-action .sidebar-toggle-btn::before {
	display: none;
}

.header-style-three .header-action .sidebar-toggle-btn,
.header-style-four .header-action .sidebar-toggle-btn,
.header-style-five .header-action .sidebar-toggle-btn,
.header-style-six .header-action .sidebar-toggle-btn {
	padding-left: 0;
	margin-left: 20px;
}

.header-style-three .header-action .sidebar-toggle-btn a,
.header-style-four .header-action .sidebar-toggle-btn a,
.header-style-five .header-action .sidebar-toggle-btn a,
.header-style-six .header-action .sidebar-toggle-btn a {
	font-size: 22px;
	color: #414141;
}

.header-style-three .header-action > ul > li,
.header-style-four .header-action > ul > li,
.header-style-five .header-action > ul > li,
.header-style-six .header-action > ul > li {
	margin-left: 17px;
}

.header-style-three .header-action > ul > li:first-child,
.header-style-four .header-action > ul > li:first-child,
.header-style-five .header-action > ul > li:first-child,
.header-style-six .header-action > ul > li:first-child {
	margin-left: 0;
}

.header-style-three .header-action > ul > li.header-profile,
.header-style-four .header-action > ul > li.header-profile,
.header-style-five .header-action > ul > li.header-profile,
.header-style-six .header-action > ul > li.header-profile {
	margin-left: 15px;
	padding-left: 15px;
}

.header-style-three .header-action > ul > li.header-profile::before,
.header-style-four .header-action > ul > li.header-profile::before,
.header-style-five .header-action > ul > li.header-profile::before,
.header-style-six .header-action > ul > li.header-profile::before {
	content: "|";
	position: absolute;
	left: -1px;
	font-size: 12px;
	font-weight: 700;
	color: #b9b9bc;
}

.header-style-six .transparent-header {
	top: 40px;
}

.header-style-six .sticky-menu.transparent-header {
	top: 0;
}
header.side-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 335px;
	height: 100%;
	box-shadow: 0px 3px 27px 0px rgb(165 165 165 / 17%);
	background: #fff;
}

.side-header-inner {
	padding: 40px 40px;
	overflow-x: hidden;
	overflow-y: auto;
	text-align: center;
	height: 100%;
}

.side-header-nav {
	margin: 180px 0;
}

.side-header-nav ul.navigation li {
	display: block;
	margin: 0 0;
}

.side-header-nav ul.navigation > li > a::before,
.side-header-nav ul.navigation > li .submenu li > a::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 1px;
	background: #ff5400;
	width: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.side-header-nav ul.navigation  > li.active > a::before,
.side-header-nav ul.navigation  > li > a:hover::before,
.side-header-nav ul.navigation .submenu > li.active > a::before,
.side-header-nav ul.navigation .submenu > li > a:hover::before {
	width: 120%;
}

.side-header-nav ul.navigation li a {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	color: #282828;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-weight: 500;
	letter-spacing: 1px;
	position: relative;
	margin: 12px 0;
	line-height: 1;
}

.side-header-nav ul.navigation li ul.submenu {
	display: none;
}

.side-header-nav .side-header-action li {
	position: relative;
}

.side-header-nav .side-header-action li + li {
	padding-top: 10px;
	margin-top: 10px;
}

.side-header-nav .side-header-action li + li:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: #d8d8d8;
	width: 100px;
	height: 1px;
	margin: 0 auto;
}

.side-header-nav .side-header-action li a {
	display: inline-block;
	font-size: 13px;
	color: #282828;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-weight: 500;
}

.side-header-nav .side-header-action li i {
	margin-right: 5px;
}

.side-header-nav .side-header-action {
	margin-top: 50px;
}

.side-header-social ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.side-header-social ul li {
	margin: 0 4px 5px;
}

.side-header-social ul li a {
	display: block;
	width: 31px;
	height: 31px;
	border: 1px solid #bfbfbf;
	text-align: center;
	line-height: 31px;
	border-radius: 50%;
	font-size: 12px;
	color: #898481;
}

.sidebar-copyright {
	padding-top: 17px;
	border-top: 1px solid #ebeded;
}

.sidebar-copyright p {
	margin-bottom: 0;
	font-size: 12px;
	text-transform: uppercase;
	color: #898481;
}

.side-header-social ul li a:hover,
.cosmetics-item .content .action ul li a:hover {
	background: #ff5400;
	color: #fff;
	border-color: #ff5400;
}

.header-style-five .navbar-wrap {
	align-items: center;
}

.header-style-five .navbar-wrap ul.right {
	margin-left: auto;
	margin-right: 0;
}

.header-style-five .main-header {
	padding: 14px 0 14px;
}

.header-style-five .navbar-wrap > ul.left > li:first-child > a {
	padding-left: 0;
}

.header-style-eight .main-header {
	padding: 1rem 0;
}

.header-style-eight .navbar-wrap .logo {
	margin-bottom: -80px;
	position: relative;
	z-index: 2;
}

.header-style-five .main-header.sticky-menu .navbar-wrap .logo {
	margin-bottom: -40px;
}

.header-style-eight .main-header.sticky-menu .navbar-wrap .logo img {
	max-width: 100px;
}

.header-style-four .header-action {
	margin-left: auto;
}

.header-style-four .transparent-header {
	padding: 45px 0;
}

.header-style-four .menu-area .mobile-nav-toggler {
	display: block;
	margin-top: 0;
	float: unset;
}

.header-style-five .header-search a {
	padding: 10px 10.5px !important;
	background:#E6CCF2;
	border-radius: 30px;
}

.header-search {
	margin-right: 30px;
}

.header-style-five .header-shop-cart  a{
	padding: 10px 10.5px !important;
	background:#E6CCF2;
	border-radius: 30px;
}

.header-style-five .header-shop-cart-resp  a{
	padding: 10px 10.5px !important;
	background:#E6CCF2;
	border-radius: 30px;
}

/* 3. Mobile-menu */
.nav-outer .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	display: none;
	color: #fff;
	margin-right: 30px;
	top: 15px;
}

.nav-logo img {
	width: 150px;
}

.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	border-radius: 0px;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu .navbar-collapse {
	display: block !important;
}

.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;
}

.mobile-menu-visible {
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .navigation li.current>a:before {
	height: 100%;
}

.menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	opacity: 0;
	visibility: hidden;
	background: #fff;
}

.mobile-menu-visible .menu-backdrop {
	opacity: 0.80;
	visibility: visible;
}

.header-style-four .menu-backdrop {
	background-image: url(../img/bg/menu_overlay_bg.jpg);
	background-position: center;
	background-size: cover;
}

.mobile-menu-visible .header-style-four .menu-backdrop {
	opacity: 1;
}

.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: #fff;
	padding: 0px 0px;
	z-index: 5;
	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
}

.mobile-menu .close-btn {
	position: absolute;
	right: 25px;
	top: 32px;
	line-height: 30px;
	width: 35px;
	text-align: center;
	font-size: 20px;
	color: #312620;
	cursor: pointer;
	z-index: 10;
	-webkit-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
}

.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li > a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #312620;
	text-transform: capitalize;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
}

.mobile-menu .navigation li ul li > a {
	font-size: 15px;
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li ul li ul li a {
	margin-left: 40px;
}

.mobile-menu .navigation li ul li ul li ul li a {
	margin-left: 60px;
}

.mobile-menu .navigation li > a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #312620;
	background: #efefef;
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
	display: none;
}

.mobile-menu .social-links {
	position: relative;
	text-align: center;
	padding: 30px 25px;
}

.mobile-menu .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
	position: relative;
	line-height: 32px;
	font-size: 16px;
	color: #312620;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.menu-area .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 30px;
	cursor: pointer;
	line-height: 1;
	color: #fff;
	display: none;
	margin-top: 3px;
}


/* 3. Search modal */
#search-modal {
	background-color: rgba(23,26,33,.95);
}
#search-modal .modal-dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	border: none;
	outline: 0;
	margin: 0;
	min-width: 700px;
}
#search-modal .modal-dialog .modal-content {
	background: 0 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border: none;
}
#search-modal .modal-dialog .modal-content div {
	width: 100%;
	position: relative;
}
#search-modal .modal-dialog .modal-content div input {
	width: 100%;
	font-size: 36px;
	border: none;
	border-bottom: 3px solid rgba(255,255,255,.1);
	background: 0 0;
	color: #fff;
	padding: 0 85px 12px 40px;
}

#search-modal .modal-dialog .modal-content div button {
	position: absolute;
	right: 40px;
	margin-bottom: 0;
	font-size: 30px;
	background: 0 0;
	border: none;
	cursor: pointer;
	top: 8px;
}

.modal-backdrop {
	z-index: 1;
}

.modal-open .header-top {
	z-index: 2;
}

/* Off-canvas */
.sidebar-off-canvas .off-canvas-overlay {
	left: 100%;
	top: 0;
	position: fixed;
	z-index: 101;
	height: 100%;
	opacity: 0;
	width: 100%;
	visibility: hidden;
	-webkit-transition: all .4s ease-in .8s;
	-o-transition: all .4s ease-in .8s;
	transition: all .4s ease-in .8s;
	background: #232324;
	cursor: url(../img/icon/cross-out.png),pointer;
}

.sidebar-off-canvas.isActive .off-canvas-overlay {
	opacity: .7;
	visibility: visible;
	-webkit-transition: all .8s ease-out 0s;
	-o-transition: all .8s ease-out 0s;
	transition: all .8s ease-out 0s;
	left: 0;
}

.off-canvas-widget {
	position: fixed;
	right: -100%;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 460px;
	z-index: 999;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #fff;
	-webkit-transition: all .5s cubic-bezier(.9,.03,0,.96) .6s;
	-o-transition: all .5s cubic-bezier(.9,.03,0,.96) .6s;
	transition: all .5s cubic-bezier(.9,.03,0,.96) .6s;
	visibility: hidden;
	opacity: 0;
}

.off-canvas-widget .mCSB_scrollTools {
	width: 0;
}

.off-canvas-widget .mCSB_inside>.mCSB_container {
	margin-right: 0;
}

.sidebar-off-canvas.isActive .off-canvas-widget {
	opacity: 1;
	visibility: visible;
	right: 0;
	-webkit-transition: all .7s cubic-bezier(.9,.03,0,.96) .4s;
	-o-transition: all .7s cubic-bezier(.9,.03,0,.96) .4s;
	transition: all .7s cubic-bezier(.9,.03,0,.96) .4s;
}

.sidebar-widget-container {
	position: relative;
	top: 150px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s ease-in .3s;
	-o-transition: all .3s ease-in .3s;
	transition: all .3s ease-in .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.sidebar-off-canvas.isActive .sidebar-widget-container {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 1s ease-out 1.2s;
	-o-transition: all 1s ease-out 1.2s;
	transition: all 1s ease-out 1.2s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.sidebar-off-canvas .off-canvas-heading {
	position: absolute;
	top: 0;
	right: 0;
	padding: 25px;
}

.off-canvas-heading .close-side-widget {
	font-size: 24px;
	color: #000000;
}

.sidebar-textwidget {
	padding: 50px 45px 45px;
}

.sidebar-info-contents {
	position: relative;
}

.sidebar-off-canvas .content-box p {
	font-size: 13px;
	font-weight: 500;
	padding-right: 50px;
}

.sidebar-off-canvas .content-box {
	padding-bottom: 15px;
	border-bottom: 1px dashed #d4d4d4;
	margin-bottom: 35px;
}

.sidebar-off-canvas .contact-info {
	margin-bottom: 35px;
}

.circle-1 {
    text-align: right;
    text-align: -moz-right;
    text-align: -webkit-right;
}

.info-text > .title,
.video-section > .title {
	font-size: 1.1rem !important;
	margin-bottom: 0 !important;
	color: var(--text-clr) !important;
	font-weight: bold;
}

.video-section > .title {
	font-size: 1.3rem !important;
}

.sidebar-off-canvas .contact-info h4.title,
.oc-newsletter h4.title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 10px;
	position: relative;
}

.sidebar-off-canvas .contact-info h4.title::after,
.oc-newsletter h4.title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #ff5400;
}

.sidebar-off-canvas .contact-info ul li {
	font-size: 14px;
	font-weight: 500;
	color: #676565;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.sidebar-off-canvas .contact-info ul li span {
	font-size: 22px;
	margin-right: 10px;
}

.sidebar-off-canvas .contact-info ul li a {
	color: #676565;
}

.sidebar-off-canvas .contact-info ul li:last-child {
	margin-bottom: 0;
}

.oc-newsletter {
	text-align: center;
	border: 1px solid rgba(204, 204, 204, 0.251);
	border-radius: 4px;
	background-color: rgba(216, 220, 221, 0.251);
	padding: 40px 30px;
}

.oc-newsletter h4.title {
	margin-bottom: 19px;
}

.oc-newsletter h4.title::after {
	margin: 0 auto;
	right: 0;
}

.oc-newsletter p {
	font-size: 13px;
	margin-bottom: 25px;
	line-height: 22px;
	padding: 0 50px;
}

.oc-newsletter form input {
	width: 100%;
	background: #fff;
	border: 1px solid #ebebeb;
	padding: 15px 20px;
	margin-bottom: 15px;
}

.oc-newsletter form input::placeholder {
	color: #676565;
}

.oc-newsletter form button {
	background: #202026;
	width: 100%;
	color: #fff;
	padding: 19px 36px;
}

.oc-newsletter form button:hover {
	color: #fff;
}

.oc-social ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px 0 30px;
}

.oc-social ul li {
	margin: 0 7.5px;
}

.oc-social ul li a {
	font-size: 13px;
	color: #878686;
	display: block;
}

.oc-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px dashed #d4d4d4;
}

.oc-bottom > div {
	width: 50%;
	flex: 0 0 50%;
}

.oc-bottom > div label{
	font-size: 12px;
	font-weight: 500;
	color: #808080;
	margin-bottom: 0;
	margin-right: 15px;
}

.oc-bottom > div select {
	border: none;
	padding: 3px 0 3px;
	border-bottom: 1px solid #dbdbdb;
	outline: none;
}

/* 4. Breadcrumb */
.breadcrumb-bg {
	background-position: center;
	background-size: cover;
	padding: 200px 0;
}

.breadcrumb-content {
	text-align: center;
}

.breadcrumb-content .breadcrumb {
	padding: 0;
	margin-bottom: 0;
	border-radius: 0;
	justify-content: center;
}

.breadcrumb-content .breadcrumb li {
	font-size: 14px;
	font-weight: 500;
	color: #312620;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.breadcrumb-content .breadcrumb li a {
	color: #5a5755;
}

.breadcrumb-item+.breadcrumb-item::before {
	padding-right: .5rem;
	color: #202026;
	content: "\f054";
	font-weight: 700;
	font-family: "Font Awesome 5 Free";
	font-size: 10px;
}

.breadcrumb-style-two {
	padding: 40px 0;
	background-position: center;
	background-size: cover;
}

/* 5. Slider */
.slider-main-img {
	width: 100%;
	height: 100%;
	background-position: top center;
	background-size: cover;
}

.slider-bg {
	min-height: 900px;
	background-position: center;
	background-size: cover;
	padding: 275px 145px;
	position: relative;
	z-index: 1;
}

.slider-bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ff6114;
	opacity: .95;
	z-index: -1;
}

.slider-content {
	flex-grow: 1;
}

.slider-content .sub-title {
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 300;
	color: #fff;
	line-height: 1;
	margin-bottom: 10px;
}

.slider-content .title {
	font-size: 50px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.slider-content p {
	font-weight: 500;
	color: #fff;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-size: 16px;
	margin-bottom: 27px;
	letter-spacing: 1px;
}

.slider-content > .btn {
	padding: 19px 28px;
}

.slider-bottom-nav {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 37.6%;
	z-index: 9;
}

.slider-nav-item img {
	width: 100%;
}

.animated {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.main-slider-active [data-animation-in] {
	opacity: 0;
}

.main-slider-active .slick-dots {
	position: absolute;
	right: 80px;
	top: 34%;
	z-index: 2;
}

.main-slider-active .slick-dots li {
	line-height: 0;
	margin: 7px 0;
}

.main-slider-active .slick-dots li button {
	text-indent: -999999px;
	border: 2px solid #fff;
	background: transparent;
	padding: 0;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	transition: .3s linear;
}

.main-slider-active .slick-dots li.slick-active button {
	background: #fff;
}

.slider-two-item {
	position: relative;
	z-index: 1;
}

.slider-two-item .thumb img {
	max-width: 100%;
	width: 100%;
}

.product-tooltip {
	position: absolute;
}

.product-tooltip .tooltip-btn {
	height: 25px;
	width: 25px;
	position: relative;
	border-radius: 50%;
	cursor: pointer;
}

.product-tooltip .tooltip-btn::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	height: 11px;
	width: 11px;
	transform: translate(-50%, -50%);
	background: #eeedeb;
	border-radius: 50%;
}

.features-product-item.product-tooltip-item {
	position: absolute;
	width: 225px;
	top: -70px;
	left: 40px;
	box-shadow: 0px 1px 32px 0px rgb(216 215 215 / 19%);
	z-index: 3;
	transition: .3s linear;
	opacity: 0;
	visibility: hidden;
}

.features-product-item.product-tooltip-item.active {
	opacity: 1;
	visibility: visible;
}

.features-product-item.product-tooltip-item .close-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	background: #ff5400;
	color: #fff;
	font-size: 13px;
	z-index: 2;
	cursor: pointer;
	transition: .3s ease-in-out;
}

.product-tooltip-item .features-product-thumb {
	padding: 20px 25px 10px;
}

.product-tooltip-item .features-product-content {
	padding: 20px 20px;
}

.product-tooltip-item .features-product-bottom ul {
	margin-top: 20px;
}

.features-product-item.product-tooltip-item .close-btn:hover {
	background: #2b2b32;
}

.features-product-item.product-tooltip-item.bottom {
	top: auto;
	bottom: 0;
}

.features-product-item.product-tooltip-item.right {
	right: 40px;
	left: auto;
}

.slider-two-active [class*="col-"] {
	padding: 0 0;
}

.slider-two-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border: none;
	background: rgb(255 255 255 / 90%);
	font-size: 14px;
	color: #312620;
	left: 50px;
	z-index: 1;
}

.slider-two-active .slick-next {
	left: auto;
	right: 50px;
}

.third-slider-bg {
	background-position: left center;
	background-size: cover;
}

.third-slider-img {
	position: relative;
}

.third-slider-img .img-shape {
	width: 572px;
	height: 572px;
	background-position: center;
	background-size: cover;
	border-radius: 50%;
	margin-left: auto;
	box-shadow: 0px 7px 29px 0px rgb(158 53 2 / 5%);
}

.third-slider-img .main-img {
	position: absolute;
	right: 0;
	top: 50%;
}

.third-slider-wrap {
	padding: 165px 105px 105px;
}

.slideInRight2 {
	-webkit-animation-name: slideInRight2;
	animation-name: slideInRight2;
}
@-webkit-keyframes slideInRight2 {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-50%) translateX(500px);
		transform: translateY(-50%) translateX(500px);
	}

	100% {
		-webkit-transform: translateY(-50%) translateX(0);
		transform: translateY(-50%) translateX(0);
	}
}

@keyframes slideInRight2 {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-50%) translateX(500px);
		-ms-transform: translateY(-50%) translateX(500px);
		transform: translateY(-50%) translateX(500px);
	}

	100% {
		-webkit-transform: translateY(-50%) translateX(0);
		-ms-transform: translateY(-50%) translateX(0);
		transform: translateY(-50%) translateX(0);
	}
}

.h7-slider-item {
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.h7-slider-wrap {
	position: relative;
	padding: 190px 65px 96px;
}

.h7-slider-content .sub-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #282828;
	display: inline-block;
	position: relative;
	padding-bottom: 4px;
	margin-bottom: 12px;
}

.h7-slider-content .sub-title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #ff5400;
}

.h7-slider-content .title {
	font-size: 55px;       
	font-style: normal;
	font-weight: 700;
	line-height: 66px;
	letter-spacing: 0.20000000298023224px;
	text-align: left;
	color: #373F41;
}

.h7-slider-content > p {
	color: #737B7D;
	font-size: 20px;
	font-style: normal;
	font-weight: 450;
	letter-spacing: 0.30000001192092896px;
	text-align: left;
	padding-top: 10px;
}

.h7-slider-img {
	position: relative;
}

.h7-slider-img img {
	display: inline-block;
}

.h7-slider-img .product-tooltip {
	z-index: 1;
}

.h7-slider-img .product-tooltip .tooltip-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.40;
}

.h7-slider-wrap .overlay-text {
	position: absolute;
	bottom: 17%;
	right: 5%;
	font-size: 70px;
	text-transform: uppercase;
	line-height: 1;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-weight: 600;
	z-index: -1;
}

.h7-slider-bottom-product .row {
	margin-left: -10px;
	margin-right: -10px;
}

.h7-slider-bottom-product .row [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.h7s-bottom-item {
	position: relative;
}

.h7s-bottom-item img {
	max-width: 100%;
}

.h7s-bottom-item .content {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 1;
}

.h7s-bottom-item .content h5 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #544842;
}

.h7s-bottom-item .content .btn {
	padding: 19px 27px;
}

.banner-five-wrap {
	background-position: center;
	background-size: cover;
	padding: 250px 200px;
	position: relative;
	z-index: 1;
}

.banner-five-wrap .slider-content {
	width: 45%;
}

.banner-five-wrap .slider-content .sub-title,
.split-slider-item .slider-content .sub-title {
	color: #282828;
}

.banner-five-wrap .slider-content .title,
.split-slider-item .slider-content .title {
	color: #282828;
}

.banner-five-wrap .slider-content p,
.split-slider-item .slider-content p {
	color: #282828;
}

.banner-five-img {
	position: absolute;
	bottom: 0;
	right: 157px;
}

.banner-five-img .img-shape {
	position: absolute;
	right: 0;
	z-index: -1;
	top: -32px;
}

.banner-five-img .main-img {
	margin-right: 15px;
}

.h9-slider-area {
	position: relative;
	background: #fff;
}

.h9-slider-item {
	background-position: center;
	background-size: cover;
	padding: 2px 0 76px;
}

.breadcrumb > .active {
	color: #888;
}

.h9-slider-img .slider-button {
	position: absolute;
	top: 78%;
	left: 31%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #cb41af;
	color: white;
	font-size: 16px;
	padding: 8px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
	z-index:2;
}

.h9-slider-img img{
	width: 100%; 
	position:relative;
}

.h9-slider-active .slick-arrow {
	position: absolute;
	left: 155px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	height: 48px;
	width: 48px;
	text-align: center;
	line-height: 48px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #989898;
	font-size: 14px;
	transition: .3s linear;
}

.h9-slider-active .slick-arrow.slick-next {
	left: auto;
	right: 155px;
}

.h9-slider-active .slick-arrow:hover {
	color: #fff;
}

.split-slider-item {
	position: relative;
}

.split-slider-img {
	position: relative;
	text-align: center;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.split-slider-img .main-img {
	position: absolute;
	left: 50%;
	top: 108px;
	transform: translateX(-50%);
}

.split-slider-left-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100vh;
	z-index: -1;
	background-position: center;
	background-size: cover;
}

.split-slider-right-bg {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100vh;
	z-index: -1;
	background-position: center;
	background-size: cover;
}

.split-slider-item .slider-content {
	flex-grow: unset;
	max-width: 55%;
	margin: 0 auto;
	padding: 120px 0;
}

.split-slider-item .slider-content .btn:hover {
	color: #fff;
}

.split-slider-active .slick-dots {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5%;
	z-index: 1;
}

.split-slider-active .slick-dots li {
	line-height: 0;
	margin: 9px 0;
}

.split-slider-active .slick-dots li button {
	border: 2px solid #959595;
	text-indent: -9999px;
	padding: 0;
	height: 9px;
	width: 9px;
	background: transparent;
	border-radius: 50%;
}

.split-slider-active .slick-dots li.slick-active button {
	background: #ff5400;
	border-color: #ff5400;
}

/* 6. Category-banner */
.cat-banner-item img {
	max-width: 100%;
}

.banner-animation {
	position: relative;
	overflow: hidden;
}

.banner-animation::before {
	background: rgba(255,255,255,.3);
	bottom: 0;
	content: "";
	left: 50%;
	position: absolute;
	right: 50%;
	pointer-events: none;
	top: 0;
	opacity: 1;
	width: 0;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
}

.banner-animation::after {
	background: rgba(255,255,255,.3);
	bottom: 50%;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	pointer-events: none;
	top: 50%;
	opacity: 1;
	width: 0;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
}

.banner-animation:hover::before {
	left: 0;
	right: 0;
	opacity: 0;
	width: auto;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
}

.banner-animation:hover::after {
	top: 0;
	bottom: 0;
	opacity: 0;
	width: auto;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
}

.cat-banner-item .content {
	position: absolute;
	left: 35px;
	bottom: 50px;
	right: 35px;
	z-index: 1;
}

.cat-banner-item.style-two .content {
	position: absolute;
	left: 75px;
	bottom: 50%;
	transform: translateY(50%);
	right: auto;
	max-width: 30%;
}

.cat-banner-item .content > span {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #5c5c5f;
	font-family: "Poppins", "Varela Round", sans-serif;
	text-transform: uppercase;
}

.cat-banner-item .content > h3 {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 30px;
	text-transform: uppercase;
	line-height: 1.2;
}

.category-banner-area .custom-container .row {
	margin-left: -10px;
	margin-right: -10px;
}

.category-banner-area .custom-container .row [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.shop-cat-item > a {
	display: inline-block;
}

.shop-cat-item .icon img {
	width: 140px;
	height: 140px;
}

.shop-cat-item img{width:230px; height:230px;}

.shop-cat-item {
	text-align: center;
}

.shop-cat-item .icon {
	margin-bottom: 20px;
}

.shop-cat-item p {
	margin-bottom: 0;
	font-weight: 700;
	color: #373F41;

	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	font-style: normal;

	font-size: 22px;
	line-height: 30px;
	text-align: center;
	letter-spacing: 0.1px;
}

.shop-cat-item p span {
	font-size: 14px;
	font-weight: 400;
	color: #877e79;
}

.cat-section-title .icon {
	margin-bottom: 35px;
}

.cat-section-title .sub-title {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	font-family: "Poppins", "Varela Round", sans-serif;
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
	padding: 0 30px;
}

.view-btn {
	font-size: 1rem;
	color: var(--text-clr);
}

.view-btn:hover,
.view-btn:active,
.view-btn:focus {
	color: var(--primary-clr);
}

.view-btn-right{
	float: right;
}

.cat-section-title .sub-title::before,
.cat-section-title .sub-title::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 2px;
}

.cat-section-title .sub-title::after {
	left: auto;
	right: 0;
}

.cat-section-title .title {
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.10000000149011612px;
	text-align: center;
	color: #373F41;

}

.shoes-cat-item {
	transition: .3s linear;
	transform: translateY(0);
}

.shoes-cat-item:hover {
	transform: translateY(-10px);
}

.shoes-cat-item .thumb img {
	max-width: 100%;
}

.shoes-cat-item .content ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shoes-cat-item .content ul li {
	font-family: "Poppins", "Varela Round", sans-serif;
}

.shoes-cat-item .content ul li a {
	color: #544842;
	font-size: 16px;
	font-weight: 500;
}

.shoes-cat-item .content ul li span {
	position: relative;
	color: #a5a5a5;
	padding-left: 80px;
}

.shoes-cat-item .content ul li span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 70px;
	height: 1px;
	background: #d0d0d0;
}

.h5-category-item {
	position: relative;
}

.h5-category-item > a {
	display: block;
}

.h5-category-item > a img {
	max-width: 100%;
}

.h5-category-item > a span.btn {
	position: absolute;
	right: 40px;
	bottom: 40px;
}

.category-area{
	background: #F7F7F7;
	padding-left: 180px;
	padding-right: 180px;
}

.category-area [class*="col-lg-3"] .h5-category-item > a span.btn {
	position: absolute;
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	background: #F7F7F7;
}

.h9-discount-banner-wrap {
	padding: 0 0px;
	position: relative;
	z-index: 1;
}

.h9-discount-item {
	position: relative;
	transform: translateY(0);
	transition: .3s linear;
}

.h9-discount-item:hover {
	transform: translateY(-10px);
}

.h9-discount-item .thumb img {
	max-width: 100%;
}

.h9-discount-item .content {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	width: 35%;
}

.h9-discount-item .content > span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	color: #ff5400;
	font-weight: 600;
	font-family: "Poppins", "Varela Round", sans-serif;
	line-height: 1;
	margin-bottom: 8px;
}

.h9-discount-item .content > h4 {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.h9-discount-item .content > a.btn {
	letter-spacing: 0;
	padding: 19px 28px;
}

.highlight-discount {
	transform: translateY(-10px);
}

.highlight-discount .content > span,
.highlight-discount .content > h4,
.highlight-discount .content > h4 a:hover {
	color: #fff;
}

/* 7. Shop */
.shop-top-left ul {
	display: flex;
	align-items: center;
}

.shop-top-left ul li + li {
	margin-left: 35px;
	color: #403a37;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.shop-top-left ul li a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #312620;
}

.shop-top-left ul li a i {
	font-size: 16px;
	margin-right: 5px;
}

.shop-top-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.shop-top-right form select {
	border: none;
	outline: none;
	color: #403a37;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.shop-top-right .shop-search {
	padding-left: 14px;
	margin-left: 14px;
	position: relative;
}

.shop-top-right .shop-search::before {
	content: "";
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 16px;
	background: #dbdbdb;
}

.shop-top-right .shop-search a {
	display: block;
	color: #403a37;
	font-size: 14px;
}

.checkout-wrap {
	margin-right: 50px;
}

.checkout-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.checkout-top .title,
.checkout-sidebar .title {
	font-size: 24px;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 10px;
	margin-right: 50px;
}

.checkout-top .back {
	font-size: 14px;
	font-weight: 500;
	color: #312620;
	font-family: "Poppins", "Varela Round", sans-serif;
	line-height: 1;
	display: inline-block;
	margin-bottom: 10px;
}

.checkout-form .form-grp {
	margin-bottom: 30px;
}

.checkout-form .form-grp label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	color: #565656;
	font-weight: 500;
	margin-bottom: 10px;
	line-height: 1;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.checkout-form .form-grp input {
	width: 100%;
	border: 1px solid #dcdcdc;
	padding: 14px 20px;
	min-height: 53px;
}

.checkout-form .form-grp label span {
	color: #ff5400;
}

.checkout-form .form-grp label small {
	font-size: 13px;
	font-weight: 500;
	color: #565656;
}

.checkout-form .form-grp .custom-select {
	width: 100%;
	border: 1px solid #dcdcdc;
	height: 53px;
	border-radius: 0;
	padding: 10px 20px;
	font-size: 14px;
	color: #696868;
	background: url(../img/icon/nw_selarw.png) no-repeat scroll 97.5% center;
}

.checkout-form .form-grp .custom-select:focus {
	outline: none;
	box-shadow: none;
}

.different-address .custom-control-label {
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	color: #565656;
}

.different-address.custom-control {
	margin-bottom: 50px;
	margin-top: 20px;
}

.different-address.custom-checkbox .custom-control-label::before {
	border-radius: 0;
	box-shadow: none;
	top: 5px;
	background-color: transparent;
	border: 2px solid #bcbcbc;
	height: 14px;
	width: 14px;
}

.different-address .custom-control-label::after {
	top: 4px;
	left: -25px;
}

.different-address .custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: #ff6000;
	background-color: #ff6000;
}

.different-address .custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #bcbcbc;
	background: transparent;
}

.checkout-form .form-grp textarea {
	width: 100%;
	border: 1px solid #dcdcdc;
	padding: 20px;
	min-height: 120px;
}

.checkout-form .form-grp textarea::placeholder {
	color: #858585;
}

.shop-cart-widget {
	background: #ecf0f1;
	background-position: center;
	background-size: cover;
	padding: 50px 30px 50px;
}

.shop-cart-widget .title {
	text-transform: uppercase;
	border-bottom: 1px dashed #cfcfcf;
	padding-bottom: 15px;
	margin-bottom: 35px;
}

.shop-cart-widget form ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #312620;
	font-weight: 600;
}

.shop-cart-widget form ul li:last-child {
	margin-bottom: 0;
}

.shop-cart-widget .custom-control-label {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #544842;
}

.shop-cart-widget form ul li > span {
	width: 46%;
	color: #312620;
	font-weight: 600;
}

.shop-cart-widget .custom-control {
	margin-bottom: 10px;
}

.shop-cart-widget .custom-checkbox .custom-control-label::before {
	border-radius: 0;
	box-shadow: none;
	top: 5px;
	background-color: transparent;
	border: 2px solid #bcbcbc;
}

.shop-cart-widget .custom-control-label::after {
	top: 2px;
}

.shop-cart-widget .custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: #ff6000;
	background-color: transparent;
}

.shop-cart-widget .custom-control:last-child {
	margin-bottom: 0;
}

.shop-cart-widget .custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #bcbcbc;
}

.shop-cart-widget form ul .cart-total-amount {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px dashed #cfcfcf;
}

.shop-cart-widget form ul .cart-total-amount .amount {
	font-size: 18px;
}

.shop-cart-widget form button {
	margin-top: 35px;
	width: 100%;
	box-shadow: none;
	background: #36363b;
	color: #fff;
	border-radius: 0;
}

.checkout-sidebar .shop-cart-widget form ul {
	margin-bottom: 55px;
}

.paypal-method-flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 25px;
	border-bottom: 1px dashed #cfd0d0;
}

.paypal-method p {
	font-size: 13px;
	line-height: 24px;
	color: #666666;
	margin-bottom: 0;
	margin-left: 24px;
	padding-left: 15px;
	position: relative;
	margin-top: 17px;
}

.paypal-method p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	height: 5px;
	width: 5px;
	background: #505050;
}

.checkout-sidebar .bank-transfer .custom-control,
.checkout-sidebar .paypal-method .custom-control {
	margin-bottom: 0;
}

.payment-terms .custom-control-label {
	font-size: 14px;
	line-height: 24px;
	text-transform: initial;
	font-weight: 500;
	color: #312620;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.payment-terms .custom-checkbox .custom-control-label::before {
	top: 5px;
}

.payment-terms .custom-control-label::after {
	top: 5px;
}

.paypal-method-flex .custom-control {
	width: 100%;
	padding-left: 35px;
	margin-bottom: 0;
}

.checkout-sidebar .title {
	margin-bottom: 35px;
}

.shop-cart-widget form ul li.sub-total {
	border-bottom: 1px dashed #c5c6c6;
	padding-bottom: 15px;
}

.shop-check-wrap .calculate {
	font-size: 13px;
	text-transform: uppercase;
	color: #544842;
	text-decoration: underline;
}

.payment-method-info {
	background: #fff;
	border: 1px dashed #cfd0d0;
}

.paypal-method-flex:last-child {
	border: none;
}

.paypal-method-flex .custom-checkbox .custom-control-label::before {
	left: -35px;
}

.paypal-method-flex .custom-control-label {
	text-transform: capitalize;
	color: #544842;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.paypal-method-flex p {
	font-size: 13px;
	font-weight: 500;
	color: #676565;
	margin-bottom: 0;
	margin-top: 2px;
}

.payment-terms {
	margin-top: 25px;
}

.payment-terms p {
	color: #676565;
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 20px;
}

.shop-sidebar {
	padding-left: 20px;
}

.side-search-bar form {
	position: relative;
}

.side-search-bar form input {
	width: 100%;
	border: 1px solid #e1e1e1;
	padding: 5px 20px;
	padding-right: 70px;
}

.side-search-bar form button {
	position: absolute;
	border: none;
	background: transparent;
	padding: 5px;
	line-height: 1;
	font-size: 16px;
	color: #403a37;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s linear;
}

.side-search-bar form button::before {
	content: "";
	position: absolute;
	left: -15px;
	height: 16px;
	width: 1px;
	background: #dbdbdb;
}

.shop-sidebar .widget {
	margin-bottom: 35px;
}

.shop-sidebar .widget:last-child {
	margin-bottom: 0;
}

.shop-sidebar .widget-title,
.shop-details-content .widget-title {
	font-size: 18px;
	display: block;
	text-transform: capitalize;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
	padding: 0;
}

.shop-sidebar .widget-title::before,
.shop-details-content .widget-title::before {
	display: none;
}

.shop-cat-list ul li {
	display: block;
	color: #544842;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-size: 14px;
	margin-bottom: 13px;
}

.shop-cat-list ul li a {
	color: #544842;
}

.shop-cat-list ul li span{
	margin-left: 5px;
}

.shop-cat-list ul li:last-child {
	margin-bottom: 0;
}

.price_filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
	background: #312620 none repeat scroll 0 0;
	border: medium none;
	border-radius: 0;
	height: 6px;
	margin-bottom: 20px;
	margin-left: auto;
	border-radius: 3px;
}

.price_filter .ui-slider-range {
	background: #312620 none repeat scroll 0 0;
	border-radius: 2px;
}

.price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
	height: 20px;
	width: 20px;
	top: 0;
	margin-top: -7px;
	background: #fff;
	border-radius: 50%;
	margin-left: 0;
	border: 3px solid #312620;
	transition: .1s linear;
}

.price_filter .ui-slider-handle.ui-state-default.ui-corner-all:focus {
	outline: none;
	box-shadow: none;
}

.price_slider_amount {
	overflow: hidden;
}

.price_slider_amount > span {
	font-size: 14px;
	font-weight: 500;
	color: #544842;
	text-transform: capitalize;
	margin-right: 5px;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.price_slider_amount > input[type="text"] {
	height: auto;
	margin-left: 0;
	text-align: left;
	width: 100px;
	font-size: 14px;
	color: #544842;
	font-weight: 500;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.price_slider_amount > input[type="submit"] {
	float: left;
	text-transform: uppercase;
	transition: all 400ms ease-out 0s;
	cursor: pointer;
	width: 98px;
	padding: 11px 20px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.price_filter {
	margin-top: 30px;
}

.price_filter .ui-slider-handle.ui-state-default.ui-corner-all:hover {
	border-color: #ff6000;
}

.sidebar-brand-list ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	color: #544842;
	padding-left: 20px;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.sidebar-brand-list ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border: 1.5px solid #d7d7d7;
	border-radius: 50%;
	transition: .3s linear;
}

.sidebar-brand-list ul li a:hover::before,
.shop-size-list ul li a:hover {
	background: #ff6000;
	border-color: #ff6000;
}

.sidebar-brand-list ul li a i {
	font-size: 10px;
	color: #d2d1d0;
}

.sidebar-brand-list ul li + li {
	margin-top: 10px;
}

.shop-size-list ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.shop-size-list ul li + li {
	margin-left: 8px;
}

.shop-size-list ul li a {
	display: block;
	width: 40px;
	height: 34px;
	line-height: 28px;
	text-align: center;
	border: 3px solid #ebebeb;
	font-size: 14px;
	color: #544842;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.shop-size-list ul li a:hover {
	color: #fff;
}

.shop-color-list ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.shop-color-list ul li {
	width: 18px;
	height: 18px;
	background: #e4e0e0;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 5px;
}

.shop-color-list ul li:nth-child(2) {
	background: #c7daeb;
}

.shop-color-list ul li:nth-child(3) {
	background: #ff5400;
}

.shop-color-list ul li:nth-child(4) {
	background: #312620;
}

.shop-sidebar .widget.has-border {
	padding: 30px 0;
	border-top: 1px dotted #d7d7d7;
	border-bottom: 1px dotted #d7d7d7;
}

.sidebar-product-list ul li {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-product-list ul li:last-child {
	margin-bottom: 0;
}

.sidebar-product-thumb {
	margin-right: 18px;
	width: 79px;
	flex: 0 0 79px;
}

.sidebar-product-content h5 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
}

.sidebar-product-content span {
	display: block;
	color: #544842;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.sidebar-product-content .rating {
	margin-bottom: 8px;
	line-height: 1;
	letter-spacing: -1px;
}

.sidebar-product-content .rating i {
	font-size: 10px;
}

.sidebar-product-content {
	flex-grow: 1;
}

.previous-product > a,
.next-product > a {
	text-transform: uppercase;
	font-family: "Poppins", "Varela Round", sans-serif;
	font-size: 13px;
	color: #403a37;
}

.previous-product > a i {
	margin-right: 5px;
}

.next-product > a i {
	margin-left: 5px;
}

.next-product {
	text-align: right;
}

.shop-details-flex-wrap {
	display: flex;
	align-items: flex-start;
}

.shop-details-nav-wrap .nav-tabs .nav-link {
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.shop-details-nav-wrap .nav-tabs .nav-link img {
	max-width: 100%;
}

.shop-details-nav-wrap .nav-tabs {
	border-bottom: none;
}

.shop-details-nav-wrap {
	width: 100px;
	flex: 0 0 100px;
	margin-right: 15px;
}

.shop-details-nav-wrap ul li + li {
	margin-top: 15px;
}

.shop-details-nav-wrap ul li a.active {
	opacity: .74;
}

.shop-details-img-wrap {
	flex-grow: 1;
}

.shop-details-img-wrap .tab-pane.active {
	animation: none;
}

.shop-details-img img {
	max-width: 100%;
}

.perched-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 35px;
	margin-bottom: 20px;
}

.cart-plus-minus {
	width: 88px;
	flex: 0 0 88px;
	margin-bottom: 15px;
	margin-right: 20px;
}

.cart-plus-minus form {
	position: relative;
}

.cart-plus-minus form input {
	width: 100%;
	border: 1px solid #f0f0f0;
	padding: 15px 45px 15px 15px;
	text-align: center;
	height: 55px;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #544842;
	font-weight: 500;
}

.qtybutton-box {
	position: absolute;
	right: 1px;
	top: 1px;
	bottom: 1px;
	background: #eef1f2;
	width: 30px;
	text-align: center;
	z-index: 1;
}

.qtybutton-box::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: #dcdcdc;
}

.qtybutton-box > span {
	position: absolute;
	cursor: pointer;
	user-select: none;
	height: 50%;
}

.qtybutton-box > span img {
	max-width: 10px;
}

.qtybutton-box > span.plus {
	left: 0;
	top: 0;
	right: 0;
}

.qtybutton-box > span.minus {
	left: 0;
	bottom: 0;
	right: 0;
}

.qtybutton-box > span.minus.dis {
	cursor: auto;
}


/* 11. Choose */
.choose-area {
	background: #f5f5f5;
	padding: 100px 0;
	position: relative;
}

.choose-area .choose-bg {
	position: absolute;
	right: 0;
	top: 0;
	width: 45.6%;
	height: 100%;
	background-position: left center;
	background-size: cover;
}

.choose-wrap {
	padding-right: 80px;
}

.choose-content > p {
	color: #414141;
}

.progress-list {
	margin-top: 32px;
}

.progress-list .progress-item {
	overflow: hidden;
	margin-bottom: 20px;
	padding-top: 15px;
	position: relative;
}

.progress-list .progress-item:last-child {
	margin-bottom: 0;
}

.progress-list .progress {
	display: -ms-flexbox;
	display: flex;
	height: 15px;
	overflow: visible;
	line-height: 0;
	font-size: 14px;
	font-weight: 700;
	background-color: #dcdcdc;
	border-radius: 8px;
	box-shadow: 0px 3px 3px 0px rgba(35, 35, 35, 0.08);
}

.h9-choose-area {
	position: relative;
}

.h9-choose-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

.h9-choose-area .cat-section-title .title {
	font-style: normal;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 40px;
	letter-spacing: 0.1px;
	text-align: left;
	color: #373F41;
}

.h9-choose-content {
	padding-left: 70px;
}

.h9-choose-list ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
}

.h9-choose-list ul li:last-child {
	margin-bottom: 0;
}

.h9-choose-list ul li .icon {
	margin-right: 30px;
	width: 110px;
	flex: 0 0 110px;
}

.h9-choose-list ul li .icon img {
	max-width: 100%;
}

.h9-choose-list ul li .content {
	flex-grow: 1;
}

.h9-choose-list ul li .content h5 {
	font-size: 20px;
	margin-bottom: 13px;
}

.h9-choose-list ul li .content p {
	margin-bottom: 0;
	color: #414141;
}

.h9-choose-content .cat-section-title .title {
	font-size: 34px;
	font-weight: 600;
	line-height: 1.35;
	text-transform: uppercase;
}

.h9-choose-content .cat-section-title .sub-title {
	margin-bottom: 5px;
}

.h9-arrival-product .new-arrival-item .thumb .discount-tag {
	background: #ff5400;
}

/* 20. Contact */
.contact-area {
	background: #f8f9f9;
}

.contact-wrap {
	background: #fff;
	padding: 65px 50px;
}

.contact-sidebar {
	margin-left: 30px;
}

.contact-sidebar-img img {
	max-width: 100%;
}

.contact-info-wrap {
	background-image: url(../img/bg/contact_info_bg.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	padding: 50px 40px;
	z-index: 1;
}

.contact-info-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ff5400;
	opacity: .95;
	z-index: -1;
}

.contact-info-wrap ul li {
	display: flex;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #ebebeb;
}

.contact-info-wrap ul li:last-child {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.contact-info-wrap .icon {
	width: 75px;
	height: 75px;
	line-height: 75px;
	flex: 0 0 75px;
	margin-right: 20px;
	background: #ffd7c3;
	position: relative;
	text-align: center;
	z-index: 1;
	border-radius: 50%;
	font-size: 22px;
	color: #ff5400;
}

.contact-info-wrap .icon::before {
	content: "";
	position: absolute;
	width: 62px;
	height: 62px;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 50%;
}

.contact-info-wrap .content {
	flex-grow: 1;
}

.contact-info-wrap .content h5 {
	font-size: 18px;
	color: #fff;
	line-height: 1;
	margin-bottom: 7px;
}

.contact-info-wrap .content p {
	margin-bottom: 0;
	color: #fff;
}

.contact-info-wrap .content p > a {
	color: #fff;
}
#contact-map {
	background-image: url(../img/bg/map_bg.jpg);
	min-height: 429px;
	background-position: center;
	background-size: cover;
	cursor: pointer;
}

/* 21. Footer */
.footer-top-wrap {
	padding: 0 0 0px;
	border-bottom: 1px solid #1c1c1c;
	position: relative;
}

.footer-top-wrap::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 150px;
	background: #bc3e00;
	height: 1px;
	margin: 0 auto;
	z-index: 1;
}

.footer-logo {
	text-align: center;
}

.footer-link-wrap {
	display: flex;
	align-items: center;
	padding: 30px 0 0;
}

.footer-link-wrap .menu-links {
	flex-grow: 1;
}

.footer-link-wrap .menu-links ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer-link-wrap .menu-links li {
	margin-right: 40px;
}

.footer-link-wrap .menu-links li:last-child {
	margin-right: 0px;
}

.footer-link-wrap .menu-links li a {
	display: block;
	font-size: 13px;
	color: #898481;
	font-family: "Poppins", "Varela Round", sans-serif;
	text-transform: uppercase;
	padding: 10px 0;
}

.footer-social ul {
	display: flex;
	align-items: center;
}

.footer-social ul li + li {
	margin-left: 18px;
}

.footer-social ul li a {
	font-size: 13px;
	color: #898481;
}

.footer-social {
	margin-left: 95px;
}

.footer-mobile {
	position: relative;
	margin-bottom: 60px !important;
	padding-top: 30px !important;
    background-color: #fff !important;
}

.copyright-wrap {
	margin-top: 27px;
}

.copyright-text > p {
	margin-bottom: 0;
	font-size: 13px;
	text-transform: uppercase;
	color: #898481;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.pay-method-img {
	text-align: right;
}

.pay-method-img img {
	max-width: 100%;
}

.footer-style-two{
	background: #1C1C1C;
}

.footer-logo img{
	margin-left: -96px;
	margin-right: 16px;
}

.footer-style-two .footer-top-wrap {
	border-bottom: 1px solid #d0cfcb;
}

.footer-style-two .footer-top-wrap::after {
	opacity: .35;
}

.footer-widget .fw-title {
	color: #95A0A3;
	margin-bottom: 22px;
	color:#95A0A3;
	font-size: 22.7836px;
	font-weight: bold;
	text-transform: uppercase;
}

.fw-link ul li + li {
	margin-top: 8px;
}

.fw-link ul li .circle-white,
.footer-widget ul li .circle-white {
	background: #fff;
	border-radius: 50%;
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-left: 10px;
	margin-right: 16px;
	text-align: center;
	line-height: 40px;
}

.footer-widget > ul li .circle-white {
	margin: 0;
}

.fw-link ul li .circle-white i,
.footer-widget ul li .circle-white i {
	color: var(--primary-clr);
}

.fw-link ul li a {
	font-size: 16px;
	color: #fff;
	display: inline-block;
	position: relative;
}

.fw-link ul li a:hover {
	font-weight: 700;
}

.fw-link ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #66605c;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
	transition: transform 0.4s cubic-bezier(.74,.72,.27,.24);
}

/* Add hover effect on both hover and focus for better mobile support */
.fw-link ul li a:hover::before,
.fw-link ul li a:focus::before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.copyright-text, .warning-note {
	color: #fff;
}

.footer-style-two .footer-social {
	margin-left: 0;
}

.footer-text p {
	margin-bottom: 12px;
	font-size: 16px;
	color: #757473;
	font-family: "Poppins", "Varela Round", sans-serif;
}

.footer-style-two .copyright-wrap {
	margin-top: 0;
	background: #e8e6e2;
	padding: 25px 0;
}

.footer-style-two.gray-bg {
	background: #f8f7f2;
}

.footer-style-three.gray-bg {
	background: #f5f5f5;
}

.footer-style-three .copyright-wrap {
	background: #e9e9e9;
}

.footer-style-two .copyright-wrap.gray-light-bg {
	background: #ebeded;
}

/* 22. Preloader */
#preloader {
	background-color: #fff;
}

.ctn-preloader {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: default;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9000;
}

.ctn-preloader .animation-preloader {
	z-index: 1000;
}

.ctn-preloader .animation-preloader .spinner {
	-webkit-animation: spinner 1s infinite linear;
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.2);
	border-top-color: #ff5400;
	height: 150px;
	margin: 0 auto 0 auto;
	width: 150px;
}

.ctn-preloader .animation-preloader .txt-loading {
	font: bold 5em "Rubik", sans-serif;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
	color: rgba(0, 0, 0, 0.2);
	position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
	-webkit-animation: letters-loading 4s infinite;
	animation: letters-loading 4s infinite;
	color: #000000;
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	font-family: "Rubik", sans-serif;
	position: absolute;
	top: -3px;
	-webkit-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

.ctn-preloader.dark .animation-preloader .spinner {
	border-color: rgba(255, 255, 255, 0.2);
	border-top-color: #fff;
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading {
	color: rgba(255, 255, 255, 0.2);
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading:before {
	color: #fff;
}

.ctn-preloader p {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 8px;
	color: #3b3b3b;
}

.ctn-preloader .loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	z-index: 1;
	pointer-events: none;
}

.ctn-preloader .loader .row {
	height: 100%;
}

.ctn-preloader .loader .loader-section {
	padding: 0px;
}

.ctn-preloader .loader .loader-section .bg {
	background-color: #ffffff;
	height: 100%;
	left: 0;
	width: 100%;
	-webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.ctn-preloader .loader.dark_bg .loader-section .bg {
	background: #111339;
}

.ctn-preloader.loaded .animation-preloader {
	opacity: 0;
	-webkit-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

.ctn-preloader.loaded .loader-section .bg {
	width: 0;
	-webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
	-o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
	transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@-webkit-keyframes letters-loading {
	0%,
	75%,
	100% {
		opacity: 0;
		-webkit-transform: rotateY(-90deg);
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
}

@keyframes letters-loading {
	0%,
	75%,
	100% {
		opacity: 0;
		-webkit-transform: rotateY(-90deg);
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
}

@media screen and (max-width: 767px) {
	.ctn-preloader .animation-preloader .spinner {
		height: 8em;
		width: 8em;
	}
	.ctn-preloader .animation-preloader .txt-loading {
		font: bold 3.5em "Rubik", sans-serif;
	}
}

@media screen and (max-width: 500px) {
	.ctn-preloader .animation-preloader .spinner {
		height: 7em;
		width: 7em;
	}
	.ctn-preloader .animation-preloader .txt-loading {
		font: bold 2em "Rubik", sans-serif;
	}
}

.breadcrumb-top-area {
	padding: 16px 0;
}

.breadcrumb {
	color: #737B7D;
	font-size: 20px;
	padding-left: 0px;
	background: transparent;
	margin: 0;
}

.cities {
	position: relative;

	padding-left: 180px;
	padding-right: 180px;

}

.cities h2{
	font-style: normal;
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-bottom: 44px;

}

.cities p{
	font-style: normal;
	font-weight: 450;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	color: #737B7D;
	margin-bottom: 32px;
}

.cities img{
	width: 270px;
}

.cities .city-img-text{
	position: absolute;
	text-align: center;
	padding-top: 230px;
	padding-left: 88px;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0.1px;
	color: white;
}

.howitworks{
	position: relative;
	padding-left: 180px;
	padding-right: 180px;

}

.howitworks .box{
	width: 370px;
	height: 302px;
	background: #ffff;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 9%);
	border-radius: 10px;
	margin-bottom: 40px;
}

.howitworks .box p{
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #737B7D;
	margin-top: 10px;
	padding: 15px;
}

.howitworks h2{
	font-style: normal;
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;

}

.howitworks h3{
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-top: 15px;

}

.howitworks p{
	font-style: normal;
	font-weight: 450;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	color: #737B7D;
	margin-bottom: 32px;
}

.howitworks img{
	width: 113px;
	position: relative;
	margin: 22px 119px auto;
}

.howitworks .small-border{
	border-bottom: 2px solid #670099;
	width: 10%;
	margin: 0 auto;
}

.howitworks .custom-row{
	flex-wrap:nowrap ;
}

/*contact us page */
.Contact-us h2{
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	letter-spacing: 0.2px;
	color: #373F41;
}

.Contact-us p{
	font-weight: 450;
	font-size: 20px;
	line-height: 22px;
	color: #737B7D;
}

.Contact-us .faq-box{
	background: #F6F6F6;
	border-radius: 10px;
	padding: 28px;
}

.Contact-us .faq-box h2{
	font-weight: bold;
	font-size: 26px;
	line-height: 34px;
	letter-spacing: 0.2px;
	color: #373F41;
}

.accordion {
	background-color: transparent;
	color: #444;
	border: none;
	border-bottom: 1px solid #B6B6B6;
	cursor: pointer;
	padding: 1rem .5rem;
	width: 100%;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
}

.accordion:after {
	content: '\002B';
	color: #505C56;
	font-weight: bold;
	float: right;
	font-size: 23px;
	margin-left: 5px;
}

.faq-box .active:after {
	content: "\2212";
}

.panel {
	padding: 0px 1rem;
	background-color: transparent;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	border-bottom: 1px solid #B6B6B6;
}

.panel p{
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 22px;
	text-align: justify;
	color: #505C56;
	padding: 10px 0px;
	margin: 0px;
}

.contact-form input{
	border-radius: 50px;
	font-size: 16px;
	line-height: 20px;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #8C8C8C;
	height: 50px;
}

.contact-form .form-select {
	border-radius: 50px;
	font-size: 16px;
	line-height: 20px;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #8C8C8C;
	height: 50px;
	border: 1px solid #ced4da;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	opacity: .7;
}

.contact-form textarea {
	min-height: 155px;
}

.form-group textarea {
	border-radius: 20px;
	padding: 10px 25px;
	width: 100%;
	height: 137px;
	font-size: 16px;
	line-height: 20px;
	font-family: "Poppins", "Varela Round", sans-serif;
	color: #8C8C8C;
}

.contact-form p {
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #8C8C8C;
}

.faq-box .view-faq{
	width:142px;
	height: 38px; 
	border: none; 
	font-size: 16px; 
	font-weight: 500;
	line-height: 0.6;
	background: #670099; 
	color: white; 
	text-transform: capitalize;
	border-radius: 50px;
	margin-top: 28px;
}

.faq h2{
	font-style: normal;
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
}

.faq p{
	font-style: normal;
	font-weight: 450;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	color: #737B7D;
	margin-bottom: 32px;
}

.faq img{
	width: 682px;
	margin-left: 30px;
}

.faq .city-img-text{
	position: absolute;
	text-align: center;
	padding-top: 230px;
	padding-left: 113px;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0.1px;
	color: white;
}

.faq .howitworks{
	position: relative;
	padding-left: 180px;
	padding-right: 180px;
}

.faq .howitworks .box{
	width: 370px;
	height: 302px;
	background: #ffff;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 9%);
	border-radius: 10px;
	margin-bottom: 40px;
}

.faq .howitworks .box p{
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #737B7D;
	margin-top: 10px;
}

.faq .howitworks h2{
	font-style: normal;
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
}

.faq .howitworks h3{
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-top: 15px;
}

.faq .howitworks p{
	font-style: normal;
	font-weight: 450;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	color: #737B7D;
	margin-bottom: 32px;
}

.faq .howitworks img{
	width: 171px;
	position: relative;
	margin: 22px 96px auto;
}

.faq .howitworks .small-border{
	border-bottom: 2px solid #670099;
	width: 10%;
	margin: 0 auto;
}

.faq .howitworks .custom-row{
	flex-wrap:nowrap ;
}

.faq .tabs{
	width: 478.84px;
	height: 81px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	margin-bottom: 25px;
	cursor: pointer;
}

.tabs-dark{
	background: #670099;
	width: 478.84px;
	height: 81px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	cursor: pointer;
}

.tabs p{
	font-style: normal;
	font-weight: bold;
	font-size: 22px;
	line-height: 83px;
	text-align: center;
	letter-spacing: 0.1px;
	color: #373F41;
}

.tabs-dark p{
	font-size: 22px;
	line-height: 83px;
	text-align: center;
	letter-spacing: 0.1px;
	font-weight: bold;
	font-style: normal;
	color: white;
}

/*retailer page*/
.retailer p{
	font-style: normal;
	font-weight: 450;
	font-size: 20px;
	line-height: 22px;
	letter-spacing: 0.3px;
	color: #670099;
}

.retailer h2{
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: 66px;
	letter-spacing: 0.2px;
	color: #373F41;
}

.retailer img{
	margin-top: 25px;
	width:711px;
}

.what-retailer h1{
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #670099;
}

.what-retailer h2{
	font-style: normal;
	font-weight: bold;
	font-size: 34px;
	line-height: 49px;
	text-align: center;
	color: #373F41;
}

.what-retailer .p2 {
	color: #737B7D;
	font-size: 16px;
	line-height: 22px;
	margin-top: 15px;
	margin-bottom: 10px;
}

.retail-partner .box{
	background: #ffff;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 9%);
	border-radius: 10px;
	margin-bottom: 40px;
}

.retail-partner .box p{
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #737B7D;
	margin-top: 10px;
	padding: 15px;
}

.retail-partner h2{
	font-style: normal;
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-bottom: 40px;

}

.retail-partner h3{
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-top: 15px;

}

.retail-partner p{
	font-style: normal;
	font-weight: 450;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	color: #737B7D;
	margin-bottom: 32px;
}

.retail-partner img{
	width: 93px;
	position: relative;
	margin: 22px 135px auto;
}

.retail-partner .small-border{
	border-bottom: 2px solid #670099;
	width: 10%;
	margin: 0 auto;
}

.retail-partner .custom-row{
	flex-wrap: wrap;
	text-align: center;
}

.retail-faq p{
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #737B7D;
	margin-top: 10px;
}

.retail-faq h2{
	font-style: normal;
	font-weight: bold;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-bottom: 40px;
}

.retail-faq h5{
	font-weight: bold; 
	margin-bottom: 0px;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-top: 30px;
}

.retail-faq  p{
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #737B7D;
	margin-bottom: 50px;
}

.retail-faq  img{
	width: 61px;
	position: absolute;
	margin: 13px 296px auto;
}

.Checkout-one .stepwizard-step p {
	margin-top: 10px;
}

.Checkout-one .stepwizard-row {
	display: table-row;
}

.Checkout-one .stepwizard {
	display: table;
	width: 55%;
	position: relative;
	margin: 0 auto;
}

.Checkout-one .stepwizard-step button[disabled] {
	opacity: 1 !important;
	filter: alpha(opacity=100) !important;
	background: red;
}

.Checkout-one .stepwizard-row:before {
	position: absolute;
	top: 19px;
	left: 7.5%;
	bottom: 0;
	content: " ";
	width: 85%;
	height: 1px;
	background-color: #ccc;
}

.Checkout-one .stepwizard-row.pickup-order:before{
	width: 50%;
	left: 20%;
}

.Checkout-one .stepwizard-step {
	display: table-cell;
	position: relative;
}

.Checkout-one .btn-circle {
	width: 132px;
	height: 40px;
	background: #EAEAEA;
}

.Checkout-one .btn-circle.btn-primary {
	background: var(--primary-clr);
}

.Checkout-one .active{
	color: #ffff;
	background: #670099;
}

.Checkout-one .box-form {
	width: 600px;
	background: #ffff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
	border-radius: 20px;
	padding: 40px;
	margin: 25px auto !important;
}

.box-form h3{
	font-weight: bold;
	font-size: 28px;
	line-height: 35px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 26px;
	color: #1E252D;
}

.box-form input {
	height: 45px;
	border-radius: 50px;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #909293;
}

.box-form .nice-select {
	border: 1px solid #ced4da !important;
	box-shadow: none !important;
}

.box-form .input-small input{
	height: 55px;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #909293;
}

.box-form-order p{
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #373F41;
}

.Checkout-one .border-style{
	border: 1px solid #DDDDDD;
	margin-top: 30px; 
	margin-bottom: 30px;
}

.pricing-detail p{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	color: #373F41;
}

.pricing-detail .fa {
	color: #C4C4C4;
	font-size: 14px;
	margin-left: 5px;
}

.pricing-detail span {
	font-weight: bold;
	font-size: 18px;
	line-height: 31px;
	float: right;
	color: #373F41;
}

.pricing-detail .form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem;
}

.form-check-input{
	background: red;
}

.pricing-detail h3{
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	line-height: 30px;
	text-transform: capitalize;
	color: #1E252D;
}

.pricing-detail .price-span a{
	font-weight: 500; 
	float: right; 
	font-size: 18px;
	line-height: 23px;
	text-align: right;
	color: #670099;
}

/*cart page start*/
.cart-page {
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.3px;
	color: #373F41;
}

.quantity {
	display: flex;
	align-items: center;
	padding: 0;
}

.quantity__minus,
.quantity__plus {
	display: block;
	width: 35px;
	height: 35px;
	margin: 0;
	background: #dee0ee;
	text-decoration: none;
	text-align: center;
	line-height: 35px !important;
	float: left !important;
	cursor: pointer;
}

.quantity__minus:hover,
.quantity__plus:hover {
	background: #575b71;
	color: #fff;
}

.quantity__minus {
	border-radius: 3px 0 0 3px;
}

.quantity__plus {
	border-radius: 0 3px 3px 0;
}

.quantity__input {
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	text-align: center;
	border-top: 2px solid #dee0ee;
	border-bottom: 2px solid #dee0ee;
	border-left: 1px solid #dee0ee;
	border-right: 2px solid #dee0ee;
	background: #fff;
	color: #8184a1;
}

.quantity__minus:link,
.quantity__plus:link {
	color: #8184a1;
}

.quantity__minus:visited,
.quantity__plus:visited {
	color: #fff;
}

.cart-checkout-box {
	width: 100%;
	background: #ffffff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
	border-radius: 20px;
}

.cart-checkout-box .nav.nav-pills {
	gap: 20px;
}

/* The container */
.container-check {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container-check  input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #efefef;
	border: 1px solid #D3D3D3;
}

/* On mouse-over, add a grey background color */
.container-check  input:checked ~ .checkmark {
	background-color: #671f99;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container-check  input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container-check .checkmark:after {
	left: 9px;
	top: 5px;
	width: 7px;
	height: 12px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-check {
	padding-left:0px; 
}

.cart-checkout-box .border-style{
	border: 1px solid #DDDDDD;
	margin: 15px 0;
}

.checkout-p{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	color: #373F41;
}

.checkout-p span{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	float: right;
	color: #373F41;
}

.checout-title{
	font-style: normal;
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0.2px;
	color: #373F41;
}

.cart-checkout-box .fa {
	color: #C4C4C4;
	font-size: 14px;
	margin-left: 5px;
}

.active-tab{
	width: 88px;
	height: 30px;
	border-radius: 50px;
	background: #670099;
	font-weight: 450;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
	color: #FFFFFF;
}

.diactive-tabs{
	width: 88px;
	height: 30px;
	background: #EAEAEA;
	border-radius: 50px;
	font-style: normal;
	font-weight: 450;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
	color: #373F41;
	margin-left: 15px;
}

.tabs{
	cursor: pointer;
}

.cart-checkout-box h4{
	font-style: normal;
	font-weight: normal;
	font-size: 1rem;
	line-height: 25px;
	text-transform: capitalize;
	color: #000000;
}

.proceed-div .last-text{
	font-style: normal;
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	text-align: center; 
	margin-top: 20px;
	color: #373F41;
	text-align: right;
}

.proceed-div{
	float: right;
	margin-top: 128px;
	margin-right: 39px;
}

.proceed-div span{
	font-weight: bold;
	font-size: 20px;
	line-height: 25px;
	text-align: right;
	color: #373F41;
	float: right;
}

.proceed-div p{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	margin-bottom: 30px;
	color: #373F41;
}

.img-width img{ width:200px !important; height:200px !important;}

.product-page img{
	width: 200px !important;
}

.para-p{
	font-weight: 450;
	font-size: 16px;
	line-height: 24px;
	color: #737B7D;
}

.selected-tab{
	width: 88px;
	height: 30px;
	background: #FFF4D4;
	border-radius: 50px;
	font-style: normal;
	font-weight: 450;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
	color: #373F41;
	display: inline-grid;
}

.varitions-tabs{
	margin-top: 20px;
	display: inline-flex;
}

.varitions-tabs-active{
	width: 115px;
	height: 115px;
	background: #670099;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
}

.varitions-tabs-active P{
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	text-align: center;
	letter-spacing: 0.1px;
	color: #FFFFFF;
}

.varitions-tabs-active img{
	margin: 15px 27px auto;
}

.Variation-tav-deactive{
	width: 115px;
	height: 115px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	margin-left: 20px;
}

.Variation-tav-deactive img{
	margin: 15px 27px auto;
}

.Variation-tav-deactive P {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	/* identical to box height, or 137% */text-align: center;
	letter-spacing: 0.1px;
	color: #373F41;
}

.right-side-p{
	font-style: normal;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 30px;
	text-transform: capitalize;
	color: #1E252D;
}

.right-side-p2{
	font-style: normal;
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	color: #373F41;
}

.right-content .border-style{
	border: 0.5px solid #dddddd78;
	margin: 2rem 0;
}

.border-style-new{
	border: 0.5px solid #dddddd78;
	margin-top: 20px; 
	margin-bottom: 20px;
    width: -webkit-fill-available;
}

.border-style-new{
   width: -moz-available;
}

.right-content h3{
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 25px;
	text-transform: capitalize;
	color: #1E252D;
}

.right-content .cart-checkout-box{
	width: 515px;
	height: 704px;
	background: #ffffff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
	border-radius: 20px;
	padding: 20px;
}

/* The container */
.right-content .container-check {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.right-content .container-check  input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.right-content .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #efefef;
	border: 1px solid #D3D3D3;
	border-radius: 50px;
}

/* On mouse-over, add a grey background color */
.right-content .container-check  input:checked ~ .checkmark {
	background-color: #671f99;
}
/* Create the checkmark/indicator (hidden when not checked) */
.right-content .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.right-content .container-check  input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.right-content .container-check .checkmark:after {
	left: 8px;
	top: 4px;
	width: 7px;
	height: 12px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.right-content .form-check {
	padding-left:0px; 
}


.right-content .cart-checkout-box .border-style{
	border: 1px solid #DDDDDD;
	margin-top: 15px; 
	margin-bottom: 30px;
}

.right-content .checkout-p{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	color: #373F41;
}

.right-content .checkout-p span{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	float: right;
	color: #373F41;
}

.right-content .checout-title{
	font-style: normal;
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-bottom: 20px;
}

.cart-checkout-box .fa {
	color: #C4C4C4;
	font-size: 14px;
	margin-left: 5px;
}

.active-tab{
	width: 88px;
	height: 30px;
	border-radius: 50px;
	background: #670099;
	font-weight: 450;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
	color: #FFFFFF;
}

.diactive-tabs{
	width: 88px;
	height: 30px;
	background: #EAEAEA;
	border-radius: 50px;
	font-style: normal;
	font-weight: 450;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
	color: #373F41;
	margin-left: 15px;
}

.tabs{
	cursor: pointer;
}

.dollar-left{
	margin-left: -216px;
	margin-top: -2px;
}

.proceed-div .last-text{
	font-style: normal;
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	text-align: center; 
	margin-top: 20px;
	color: #373F41;
	text-align: right;
}

.proceed-div{
	float: right;
	margin-top: 67px;
	margin-right: 39px;
}

.proceed-div span{
	font-weight: bold;
	font-size: 20px;
	line-height: 25px;
	text-align: right;
	color: #373F41;
	float: right;
}

.proceed-div p{
	font-weight: 450;
	font-size: 18px;
	line-height: 23px;
	margin-bottom: 30px;
	color: #373F41;
}

.tag-label{
	height: 25px;
	width: 109px;
	left: 1340px;
	top: 914px;
	background: #FFF4D4;
	border-radius: 50px;
	font-weight: 450;
	font-size: 14px;
	line-height: 18px;
	color: #373F41;text-align: center;
	margin-left: 35px;
}

.product-para h3{
	font-style: normal;
	font-weight: bold;
	font-size: 36px;
	line-height: 46px;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-top: 50px;
}

.product-para p{
	font-style: normal;
	font-weight: 450;
	font-size: 17px;
	line-height: 24px;
	color: #737B7D;
	margin-top: 30px;
}

.Product-page .img-width{
	display: inline-flex;
}

.img-width img{ width:200px !important; height:200px !important;}

/*category page style*/
.filter-tabs{
	padding: 1rem 0;
}

.nav-tabs .active li a{
	background: red;
}

.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link,
.filter-tabs .nav-link.active {
	background: var(--primary-clr);
	color: #FFFFFF;
}

.nav-pills .nav-link,
.filter-tabs .nav-link {
	width: 160px;
	height: 40px;
	background: #EAEAEA;
	border-radius: 50px;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	text-align: center;
	color: #000000;
}

.filter-tabs .nav-link {
	width: max-content !important;
	font-size: 1rem;
	font-weight: normal;
}

.filter-tabs .nav-link .badge {
	font-size: .8rem;
}

.nav-item.tip-btns .nav-link{
	width: 120px;
}

.faq .nav-tabs .active li a{
	background: red;
}

.faq .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	background: #670099;
	border-radius: 10px;
	font-size: 24px;
	color: #FFFFFF;
	margin-bottom:25px;
}

.faq .nav-pills .nav-link {
	width: 100%;
	height: 62px;
	background: #EAEAEA;
	border-radius: 10px;
	font-style: normal;
	font-weight: 500;
	font-size: 22px;
	line-height: 49px;
	text-align: center;
	color: #000000;
	margin-bottom: 25px;
}

.fb-btn{
	width: 327px;
	height:45px;
	background: #3B4DB3;
	border-radius: 50px;
	border: none;
	font-weight: 500;
	font-size: 18px;
	line-height: 23px;text-align: center;
	color: #FFFFFF;
	margin: 2px 85px auto;
}

.fb-btn a{
	color: #fff;
}

.apple-btn{
	width: 327px;
	height: 45px;
	left: 797px;
	top: 748px;
	background: #000000;
	border-radius: 50px;
	font-weight: 500;
	font-size: 18px;
	line-height: 23px;text-align: center;
	color: #FFFFFF;
	border: none;
	margin-top: 25px;
	margin: 14px 85px auto;
}

.apple-btn a{
	color: #fff;
}

.create-p{
	height: 40px;
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 23px;
	text-align: center;
	margin-top: 25px;
	color: #909293;
}

.order .from-section{
	margin-left: 50px;
	margin-right: 50px;
}

.order .from-box{
	height: 115px;
	left: 65px;
	top: 194px;
	background: #FFFFFF;
	border: 1px solid #E6E6E6;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 26px;
}

.order .from-section{
	margin-left: 50px;
	margin-right: 50px;
	padding-top: 25px;
}

.order .from-section .form-control {
	background: #FFFFFF;
	border: 1px solid #AFAFAF;
	box-sizing: border-box;
	border-radius: 47px;
	height: 62px;
	left: 65px;
	top: 230px;
	font-style: normal;
	font-weight: 500;
	font-size: 20.3333px;
	line-height: 20px;
	padding: 0.375rem 2.75rem;
	color: #393939;
}

.order .from-section input {
	background: #FFFFFF;
	border: 1px solid #AFAFAF;
	box-sizing: border-box;
	border-radius: 47px;
	width: 235px;
	height: 45px;
	font-style: normal;
	font-weight: 500;
	font-size: 20.3333px;
	line-height: 20px;
	padding: 0.375rem 1.75rem;
	color: #393939;;
}

.order .from-last-p{
	font-weight: 450;
	font-size: 24px;
	line-height: 20px;
	text-align: center;
	color: #393939;
}

/*Count Table Start*/
.order .count-section{
	margin-left: 50px;
	margin-right: 50px;
}

.order .count-box{
	height: 115px;
	left: 65px;
	top: 413px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	padding: 35px;
}

.order .count-section{
	margin-left: 50px;
	margin-right: 50px;
}

.order .count-section .form-control {
	background: #FFFFFF;
	border: 1px solid #AFAFAF;
	box-sizing: border-box;
	border-radius: 47px;
	height: 62px;
	left: 65px;
	top: 230px;
	font-style: normal;
	font-weight: 500;
	font-size: 20.3333px;
	line-height: 20px;
	padding: 0.375rem 2.75rem;
	color: #393939;
}

.order .count-section input {
	background: #FFFFFF;
	border: 1px solid #AFAFAF;
	box-sizing: border-box;
	border-radius: 47px;
	width: 257px;
	height: 62px;
	font-style: normal;
	font-weight: 500;
	font-size: 20.3333px;
	line-height: 20px;
	padding: 0.375rem 1.75rem;
	color: #393939;;
}

.order .count h4{
	font-weight: bold;font-size: 20px;line-height: 20px;color: #670099; padding-left: 30px;
}

.order .count p{
	font-weight: 500;font-size: 20px;line-height: 20px;color: #393939;margin-top: 20px;  padding-left: 30px;
}

.order .div-table{
	width: 1399px;
	height: 495px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	margin:0 auto;
}

.order .table-bordered thead th {
	border-bottom-width: 2px;
	background: #670099;
	color: white;
}

.si-eye-slash::before {
	content: "\f320";
	position: absolute;
}

[class*=" si-"]::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 0.2;
	-moz-osx-font-smoothing: grayscale;
	position: absolute !important;
	right: 30px;
	top: 17.3px;
}

.pagination {
	float: none !important;
	margin-left: 43rem !important;
}
#order_filter {
	float:right;
}

.total-span{
	margin-right:-37rem;
}

.total-count {
	margin-left:6rem;
	float:left;
}

.product-title {
	width: 65% !important;
}

.spaninput {
	width: 26%;
	float: right;
	padding-left: 0px;
}

.subtotalh5 {
	margin-left:4rem;
	float:left;
}

.spanamount {
	float:right;
	margin-right:5rem;
}

.spandicsount {
	margin-top: -2.5rem;
	margin-right: -24.5rem;
}

.spanpromo {
	color:red;
	font-size:14px;
	margin-right: 12rem;
	margin-top: -2.5rem;
	text-transform:none;
}

.promowidth {
	width:24%;
}

.bottons-payment {
	margin:0 40px auto;
	text-align:center;
	display:inline-flex;
}

.bottons-lst {
	margin:0 40px auto;
	text-align:center;
	display:inline-flex;
}

.marginglft {
	margin-left:-13px !important;
}

.action input:checked + span{background-color: #670099;
	width:160px;
	color: white;
}

.cat label span {
	text-align: center;
	padding: 3px 0;
	display: block;
	border-radius: 50px;
	line-height: 27px;
}

.erormsg{
	color:red; margin-left:9rem;
}

.optional-txt{
	margin-left: 25rem;
}

.dropdown-menu.show {
	/* display: block; */
	transform: translate3d(-45px, 42px, 0px) !important;
}

/* #loading {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: default;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9000;;
} */

#loading-image {
	position: absolute;
	z-index: 100;
	border-radius: 50%;
	height: 200px;
	margin: 0 auto !important;
	width: 200px;
}

.bi-eye-slash::before {
	content: "\f320";
	position: absolute;
}

[class*=" bi-"]::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	-moz-osx-font-smoothing: grayscale;
	position: absolute !important;
	right: 30px;
	top: 17.3px;
}

.invalid-feedback {
	font-size: .8rem;
}

.store-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	overflow-x: hidden;
	position: relative;
}

.store-container .retailer-postal-code {
	font-size: 13px;
}

.store-container .retailer-postal-code img{
	width: 25px;
	margin-right: 5px;
}

.store-container .retailer-postal-code span{
	font-size: 12px;
	margin-top: 2px;
}

@media (max-width: 768px) {
	.store-container {
		flex-direction: column;
		align-content: center;
	}
	.store-container .el-wrapper.small-wrapper {
		width: 100% !important;
	}
	.store-container .el-wrapper.small-wrapper .product-bg-wrapper {
		width: 100% !important;
		height: 200px;
	}
}

.result-page-header {
	padding-bottom: 0.7rem;
	border-bottom: 1px solid #bbb;
}

.result-page-header .title,
.element-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #373F41;
	margin-bottom: 10px;
}

.result-page-header .result-info {
	font-size: 1.2rem;
	font-weight: 500;
	color: #373F41;	
}

.element-border-bottom {
	border-bottom: 1px solid #bbb;
	padding-bottom: 0.7rem;
}

input[type="file"] {
	position: relative;
}

input[type="file"]::file-selector-button {
	width: 30%;
	min-width: fit-content;
	position: relative;
	left: -5px;
	top: -2px;
	height: 40px;
	border: 1px solid var(--primary-clr);
	background-color: var(--primary-clr);
	transition: 1s;
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
	background-color: #9B30C1;
}

.btn.dropdown-toggle {
	color: #fff;
	font-weight: 700;
	box-shadow: none;
	padding: .6rem 1.5rem;
}

/* ARIA Accordian Style Start */
.aria-accordion {
	background-color: transparent;
}

.accordion__content {
	width: 100%;
}

.accordion__title {
	display: block;
	position: relative;
	font-weight: 400;
}

.accordion__title:before {
	font-family: FontAwesome;
	content: "\f055";
	font-size: 20px;
	color: #C4C4C4;
}

.accordion__title p {
	border-bottom: 1px solid #fefffa;
	display: inline-block;
}

.accordion__title:hover, .accordion__title:focus {
	cursor: pointer;
	outline: none;
}

.accordion__title:hover p, .accordion__title:focus p {
	border-bottom-color: #a8bdc4;
	display: inline-block;
}

.is-expanded .accordion__title:before {
	content: "\f056";
}

.accordion__content-inner {
	padding: 10px 0 0 25px;
}

.accordion__content-inner p {
	font-size: 1rem !important;
}

.accordion__content-inner span {
	font-weight: normal !important;
	font-size: inherit !important;
}

.accordion__content {
	transition: height 0.3s ease-out;
	height: 0;
	overflow: hidden;
}

.horizontal-filter {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0.8rem 0;
    gap: .5rem;
    align-items: center;
}

.horizontal-filter::-webkit-scrollbar {
    display: none;
}

.horizontal-filter .nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 50rem;
}

.loading-overlay {
	display: none;
	background: rgba(255, 255, 255, 0.7);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9998;
	align-items: center;
	justify-content: center;
}

.loading-overlay span {
	position: relative;
	color: #670099;
}

.loading-overlay.active {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.custom-select {
	text-align:center !important; 
	border-radius: 50px !important;
	font-weight: 450;
	font-size: 16px;
	color: #8C8C8C !important;
	height: 50px !important;
	border: none;
	-moz-appearance: none;
	background-position-x: 370px;
	background-position-y: center;
	-webkit-appearance: none; 
	appearance: none;
}

.custom-select.custom-select-sm {
	border-radius: 3px !important;
	height: initial !important;
}

.checkbox {
	height: 60px;
	background-color: #d0d0d0;
	border-radius: 30px;
	position: relative;
	color: black;
	overflow: hidden;
}

#checkbox_toggle {
	display: none;
}

.checkbox .toggle {
	width: 50%;
	height: 50px;
	position: absolute;
	border-radius: 30px;
	left: 5px;
	cursor: pointer;
	background: #671f99 !important;
	transition: 0.4s;
	box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
	margin: 0 !important;
}

.checkbox .slide {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	cursor: pointer;
}

.checkbox .slide .text {
	font-size: 16px;
	z-index: 100;
	margin: 0 !important;
	color: #fff;
	cursor: pointer;
}

.check:checked + .checkbox .slide .toggle {
	transform: translateX(calc(100% - 4%));
}

.check:checked + .checkbox .slide {
	color: #fff;
}

@media only screen and (min-width: 412px) and (max-width: 767px) { 
	.checkbox .slide .text {
		font-size: 13px;
	}

	.check:checked + .checkbox .slide .toggle {
		transform: translateX(calc(100% - 6%));
	}

}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 200px) and (max-width: 412px) {
	.checkbox .slide .text {
		font-size: 12px;
	}

	.check:checked + .checkbox .slide .toggle {
		transform: translateX(calc(100% - 7%));
	}
}

.hidden {
	display: none !important;
}

/* Scrollbar properties for Firefox */
.custom-scrollbar {
	scrollbar-width: thin !important;          /* "auto" or "thin" */
	scrollbar-color: var(--secondary-clr) transparent;   /* scroll thumb and track */
}

.custom-scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.custom-scrollbar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: linear-gradient(to top, #994DC1, #8A72C7, #7B98CD, #6DAED3, #5FC4D9);
}

.w-50p {
	width: 50px;
}

.div-table {
	height: fit-content !important;
}

.el-wrapper {
	width: 100% !important;
	max-width: 320px !important;
	padding: 10px;
	margin: 0px;
	background-color: #fff;
}

.el-wrapper.small-wrapper {
	margin: 0px;
	background-color: #fff;
	border-radius: 15px;
	position: relative;
}

.el-wrapper.small-wrapper .product-bg-wrapper {
	width: 100% !important;
}

@media (max-width: 767px) {
	.el-wrapper.small-wrapper .product-bg-wrapper {
		height: 150px;
	}	
}

@media (max-width: 567px) {
	.el-wrapper {
		width: 100% !important;
	}
}

.el-wrapper:last-child {
	margin-right: 0 !important;
}

.el-wrapper:first-child {
	margin-left: 0 !important;
}


.el-wrapper.small-wrapper:hover .info-inner {
	bottom: 115px;
}


.el-wrapper .box-down {
	width: 100%;
	height: 60px;
	position: relative;
	overflow: hidden;
	border-radius: inherit;
}

.el-wrapper .box-up {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: inherit;
}

.el-wrapper .img {
	-webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	-moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	-o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */

	width: inherit !important;
	height: inherit !important;
}

.h-bg {
	-webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	-moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	-o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	width: 660px;
	height: 100%;
	background-color: #671f99;
	position: absolute;
	left: -659px;
}

.h-bg .h-bg-inner {
	width: 50%;
	height: 100%;
	background-color: #464646;
}

.info-inner {
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
	-moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
	-o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
	transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	position: absolute;
	width: 100%;
	bottom: 25px;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px); /* Chrome, Safari, Opera */
	-moz-backdrop-filter: blur(50px); /* Firefox */
	-o-backdrop-filter: blur(50px); /* Opera */
}

.info-inner .p-name,
.info-inner .p-company {
	display: block;
}

.info-inner .p-name {
	font-family: 'PT Sans', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #333;
}

.small-wrapper .info-inner .p-name {
	font-size: .9rem;
}

.info-inner .p-company {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #333;
}

.a-size {
	-webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
	-moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
	-o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
	transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	position: absolute;
	width: 100%;
	bottom: -20px;
	font-family: 'PT Sans', sans-serif;
	color: #828282;
	opacity: 0;
}

.a-size .size {
	color: #252525;
}

.cart {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

.cart .price {
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	-moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	-o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 16px;
	color: #252525;
}

.cart .add-to-cart {
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	-moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	-o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
	/* ease-out */
	-webkit-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
	display: block;
	position: absolute;
	top: 50%;
	left: 110%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.cart .add-to-cart .txt {
	font-size: 12px;
	color: #fff;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	white-space: nowrap;
}

.flex-centerY-centerX {
	justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.slick-prev:before,
.slick-next:before {
	color: #671f99;
	font-size: 30px;
}

.slick-arrow {
	z-index: 1;
	width: 40px;
	height: 40px;
}

.slick-arrow:before {
	font-size: 30px;
}

.slick-next {
	right: -22px;
}

.slick-prev {
	left: -22px;
}

.slick-slide {
	text-align: center;
}

.nice-select {
	width: 100% !important;
}

.nice-select .nice-select-dropdown {
	width: 100% !important;
	border-color: #999;
	box-shadow: 0 0 0 1px rgba(153 ,153 ,153 , 1) !important;
	margin-top: 0px !important;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}

.nice-select.open {
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.iti {
	width: 100% !important;
}

.iti--separate-dial-code .iti__selected-flag {
	background: transparent !important;
}

.iziToast:after {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.modal-content.modal-alert {
	background: transparent;
	border: none;
}

.search-box-group {
	padding: 13px 45px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
	border-radius: 10px; 
	border: none; 
	width: 100%;
	color: #A6A6A6;
	font-weight: 450;
	font-size: 18px;
}

.search-box-group-btn {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border: none;
	position: absolute;
	margin-left: -67px;
	width: 67px;
	padding: 13px;
	background: var(--primary-clr);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-box-group-btn:hove,
.search-box-group-btn:active,
.search-box-group-btn:focus {
	background: var(--secondary-clr);
}

.store-title-container {
	min-height: 80px;
	padding: 1.5rem;
	background: rgba(253, 245, 236, 1);
}

.store-title-container P {
	font-size: 1.6rem;
	font-weight: bold;
	color: #333;
	text-align: center;
	margin-bottom: .5rem;
}

.store-title-container .info {
	font-size: 1rem;
	font-weight: bold;
	color: #333;
	text-align: center;
}

.shopping-cart-icon {
	color: var(--primary-clr);
	font-weight: bold;
}

.shopping-cart-icon:hover, .shopping-cart-icon:focus,
.shopping-cart-icon:active {
	color: var(--secondary-clr);
}

.lighter-text {
	color: #abb0be;
}

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

.shopping-cart {
	float: right;
	background: white;
	width: 320px;
	position: absolute;
	border-radius: 3px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
	z-index: 10;
}

.sticky-menu .shopping-cart {
	right: 80px;
}

.shopping-cart .shopping-cart-header {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 15px;
}

.shopping-cart .shopping-cart-header .shopping-cart-total {
	float: right;
}

.lighter-text {
    color: #888;
    letter-spacing: 0.5px;
}

.cart-total-amount {
    font-size: 1.2rem;
    font-weight: 700; 
    color: #212529; 
}

/* Subtle hover effect for the close button */
#close-cart-btn:hover {
    color: #e82646 !important;
    transition: color 0.2s ease;
}

.shopping-cart .shopping-cart-items {
	padding-top: 20px;
	max-height: 300px;
	overflow: auto;
}

.shopping-cart .shopping-cart-items li {
	margin-bottom: 18px;
}

.shopping-cart .shopping-cart-items img {
	float: left;
	margin-right: 12px;
	width: 40%;
	height: inherit;
	border: 1px solid #ccc;
    border-radius: 6px;
}

.shopping-cart .shopping-cart-items .item-name {
	display: block;
	padding-top: 5px;
	font-size: 14px;
}

.shopping-cart .shopping-cart-items .item-price {
	color: var(--primary-clr);
	margin-right: 8px;
}

.shopping-cart .shopping-cart-items .item-quantity {
	color: #abb0be;
}

/*.shopping-cart:after {
	bottom: 100%;
	left: 89%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: var(--primary-clr);
	border-width: 8px;
	margin-left: -8px;
}*/

.cart-icon {
	color: var(--primary-clr);
	font-size: 24px;
	margin-right: 7px;
	float: left;
}

.shopping-cart .button {
	background: var(--primary-clr);
	color: white;
	text-align: center;
	padding: 10px;
	text-decoration: none;
	display: block;
	border-radius: 12px;
	font-size: 16px;
}

.shopping-cart .button:hover {
	background: var(--secondary-clr);
}

.shopping-cart .button-danger {
	background: var(--danger);
}

.shopping-cart .button-danger:hover {
	background: var(--danger-hover);
}

.shopping-cart-items .clearfix:after {
	content: "";
	display: table;
	clear: both;
}


.stores-wrapper {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px;
}

.store-card {
	position: relative;
	width: 45%;
	height: 200px;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s;
}

.store-card:hover {
	transform: scale(1.05);
}

.stores-wrapper .store-card .input {
	position: relative;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	appearance: none;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	z-index: 10;
}

.stores-wrapper .store-card .input + .check::before {
	content: "";
	position: absolute;
	top: 15px;
	right: 15px;
	width: 16px;
	height: 16px;
	border: 2px solid #d0d0d0;
	border-radius: 50%;
	background-color: #E8E8E8;
}

.stores-wrapper .store-card .input:checked + .check::after {
	content: '';
	position: absolute;
	top: 17px;
	right: 17px;
	width: 12px;
	height: 12px;
	background-color: transparent;
	border-color: #d0d0d0;
	border-radius: 50%;
}

.stores-wrapper .store-card .input:checked + .check::after {
	background-color: var(--primary-clr);
	border: 1.5px solid var(--primary-clr);
}

.stores-wrapper .store-card .label {
	color: #323232;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 1rem;
	top: 0;
	left: 0;
	z-index: 0;
}

.stores-wrapper .store-card .label .title {
	font-weight: 900;
	font-size: 15px;
	letter-spacing: 1.5px;
	padding-right: 1rem;
}

.stores-wrapper .store-card .label .price {
	font-size: 20px;
	font-weight: 900;
}

.stores-wrapper .store-card .label .span {
	color: gray;
	font-weight: 700;
	font-size: 15px;
}

.badge-primary {
	background: var(--primary-clr);
}

.loading-text {
	font-size: 1.4rem;
	font-weight: bolder;
	color: black;
}

.cart-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	z-index: 8;
}

.fs-6 {
	font-size: 14px;
}

.fs-5 {
	font-size: 1rem;
}

.text-primary {
	color: var(--primary-clr) !important;
}

.text-primary:hover,
.text-primary:focus,
.text-primary:active,
a.text-primary:focus, 
a.text-primary:hover {
	color: var(--primary-clr-hover) !important;
}

.was-validated select.form-control.select-p0:invalid,
select.form-control.select-p0.is-invalid,
.was-validated select.form-control:valid, 
select.form-control.is-valid {
	padding: inherit !important;
}

.form-control.is-invalid + .nice-select,
.form-control.is-invalid + .custom-select {
	border-color: #dc3545 !important;
	padding-right: calc(1.5em + .75rem) !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.heading-1 {
	font-size: 1.3rem;
	color: #333;
	font-weight: bold;
}

.infographic-circle {
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-clr);
	color: #fff;
	font-size: 2rem;
	font-weight: bolder;
	border-radius: 50%;
}

.payment-icon {
	width: 50px;
}

.totals-table td{
	padding-bottom: 0px !important;
}

a.referral_btn {
	cursor: pointer;
	text-decoration: underline;
	color: white;
}

a.referral_btn:hover {
	font-weight: bold;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.no-hover-color:hover {
	color: inherit !important; 
}


/* Product quantity increment/decrement input field styling start */
.product-qty-container{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	gap: 4rem;
	margin: 0;
	margin-bottom: 3rem;
}

.qty-input {
	color: #000;
	background: #fff;
	display: flex;
	align-items: center;
	overflow: hidden;
	width: fit-content;
	border-radius: 4px;
	transform: scale(1.5);
	border: 1px solid #dee1e3;
	margin: auto 0;
}


.qty-input .product-qty, .qty-input .qty-count {
	background: transparent;
	color: inherit;
	font-weight: bold;
	font-size: inherit;
	border: none;
	display: inline-block;
	min-width: 0;
	height: 2rem;
	line-height: 1;
}

.qty-input .product-qty:focus, .qty-input .qty-count:focus {
	outline: none;
}

.qty-input .product-qty {
	width: 50px;
	min-width: 0;
	display: inline-block;
	text-align: center;
	appearance: textfield;
}

.qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.qty-input .qty-count {
	padding: 0;
	cursor: pointer;
	width: 2.5rem;
	font-size: 1.25em;
	text-indent: -100px;
	overflow: hidden;
	position: relative;
}

.qty-input .qty-count:before, .qty-input .qty-count:after {
	content: "";
	height: 2px;
	width: 8px;
	position: absolute;
	display: block;
	background: #000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

/*.qty-input .qty-count--minus {
	border-right: 1px solid #e2e2e2;
}

.qty-input .qty-count--add {
	border-left: 1px solid #e2e2e2;
}*/

.qty-input .qty-count--add:after {
	transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
	color: #ccc;
	background: #f2f2f2;
	cursor: not-allowed;
	border-color: transparent;
}

.qty-input .qty-count:disabled:before, .qty-input .qty-count:disabled:after {
	background: #ccc;
}

@media only screen and (max-width: 768px) {
    .qty-input .product-qty {
        width: 30px; /* Example change: make the width smaller for mobile devices */
        min-width: 0;
        display: inline-block;
        text-align: center;
        appearance: textfield;
    }
}
/* Product quantity increment/decrement input field styling end */

/* Product Details page radio buttons start */
.radio-buttons-container {
	display: flex;
	flex-direction: column;
	align-items: start;
  	padding: 0; /* Reset padding */
  	transition: padding 0.2s; /* Add a transition for smooth effect */
}

.radio-button {
	display: flex;
	width: 100%;
	gap: 1rem;
	cursor: pointer;
	font-size: 1rem;
	color: #1E252D;
	padding: 1rem 0;
}

.radio-button__label {
	cursor: pointer;
	color: #1E252D;
	font-size: 20px;
	font-weight: bold;
}

.radio-button__input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	height: var(--radio-size);
	width: var(--radio-size);
	outline: none;
	margin: 0;
	cursor: pointer;
	border: 2px solid var(--radio);
	background: transparent;
	border-radius: 50%;
	display: grid;
	justify-self: end;
	justify-items: center;
	align-items: center;
	overflow: hidden;
	transition: border 0.5s ease;
	display: flex;
}

.radio-button__input::before,.radio-button__input::after {
	content: "";
	display: flex;
	justify-self: center;
	border-radius: 50%;
}

.radio-button__input::before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1;
	opacity: var(--opacity, 1);
}

.radio-button__input::after {
	position: relative;
	width: calc(100% /1.4);
	height: calc(100% /1.4);
	background: var(--primary-clr);
	top: var(--y, 100%);
	transition: top 0.5s cubic-bezier(0.48, 1.97, 0.5, 0.63);
}

.radio-button__input:checked {
	border-color: var(--primary-clr);
}

.radio-button__input:checked::after {
	--y: 0%;
	animation: stretch-animate 0.3s ease-out 0.17s;
	left: 15.2%;
}

.radio-button__input:checked::before {
	--opacity: 0;
}

.radio-button__input:checked ~ input[type="radio"]::after {
	--y: -100%;
}

.radio-button__input:not(:checked)::before {
	--opacity: 1;
	transition: opacity 0s linear 0.5s;
}

@keyframes stretch-animate {
	0% {
		transform: scale(1, 1);
	}
	28% {
		transform: scale(1.15, 0.85);
	}
	50% {
		transform: scale(0.9, 1.1);
	}
	100% {
		transform: scale(1, 1);
	}
}

.AU3_J2S61MQzohobRI2x {
    font-size: 1rem;
    line-height: 24px;
    padding: 0;
    margin: 0 0 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #1E252D;
}

.ZfSvfy5jSfy4K9rGtQEv {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    height: 24px;
    background: #f7f7f7;
    padding: 0 8px;
    cursor: pointer;
}

.ZfSvfy5jSfy4K9rGtQEv p.LGzAE5EAKhVVB9pb98QX {
    margin: 0;
}

.ZfSvfy5jSfy4K9rGtQEv p {
    padding: 0;
    margin: 0 0 0 8px;
    font-size: 14px;
    color: #24282f;
}

.AEujSjS7DBD5vvy7NcaS {
    display: flex;
    align-items: center;
    margin: 0 0 8px 0;
    color: #6a7279;
}
/* Product details page radio buttons end */

.price-text {
	font-size: 1.3rem;
	font-weight: bold;
	color: black;
}

.heading-text {
	font-size: 28px;
	font-weight: 400;
	color: var(--text-clr);
}

.featured-products-section, .products-section {
	padding: 1rem 0;
}

.slick-next::before,
.slick-prev::before {
    font-family: 'Font Awesome 5 Free'; /* Specify the correct Font Awesome font family */
    font-weight: 900; /* Adjust font weight if needed */

    /* Unicode for Font Awesome arrows */
    content: '\f054'; /* Unicode for right arrow */
}

.slick-prev::before {
    content: '\f053'; /* Unicode for left arrow */
}

.cart-product-image {
	width: 35% !important;
	height: 170px !important;
}

/* Return policy page */
._gr {
	max-width: 66.66666666666667%;
}
._gq {
	flex: 0 1 66.66666666666667%;
}
._fw {
	padding-bottom: 0px;
}
._fv {
	padding-top: 0px;
}
._fu {
	padding-right: calc(20px);
}
._ft {
	padding-left: calc(20px);
}
._fq {
	max-width: 100%;
}
._fp {
	flex: 0 1 100%;
}
._ae {
	box-sizing: border-box;
}
._ag {
	color: var(--primary-clr);
}

._br {
	line-height: 48px;
}

._bq {
	font-size: 32px;
}

._bo {
	font-family: "JeanLuc", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

._bm {
	padding: 0px;
}

.helpdesk h4 {
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-hover-clr);
}

.helpdesk p {
	font-size: .875rem;
	line-height: 1.375rem;
	color: #333;
}

.helpdesk h6:last-of-type, .helpdesk p {
	margin-bottom: 1rem;
}

.helpdesk ul {
	padding-left: 40px !important;
}

.helpdesk li {
	list-style: inherit !important;
}

.helpdesk a {
	text-decoration: underline !important;
}

._bl {
	margin: 0px;
}

.fw-bold {
	font-weight: 700 !important;
}

.text-black {
	color: #333 !important;
}

.fw-600 {
	font-weight: 600 !important;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
	color: var(--primary-clr);
	background-color: transparent;
}

.btn-primary.disabled, .btn-primary:disabled {
	background-color: var(--primary-clr);
	border-color: var(--primary-clr);
}

.h-100 {
	height: 100% !important;
}

.text-theme {
    color: var(--primary-clr) !important;
}

.form-control:focus {
	color: var(--text-clr);
	background-color: #fff;
	border-color: var(--primary-clr-hover);
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(177, 3, 255, .25);
}

.cursor-pointer {
    cursor: pointer;
}

.fs-16 {
	font-size: 16px !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
	gap: 1rem !important;
}

.position-relative {
    position: relative;
}

.clear-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-clr);
    font-size: 18px;
    display: none;
}

/* Show the cross icon when the input has a value */
#user-address:not(:placeholder-shown) + .clear-icon {
    display: block;
}

.pr-23rem {
	padding-right: 2.3rem !important;
}

.border-primary {
	border-color: var(--primary-clr) !important;
}

.d-grid {
	display: grid !important;
}

.rounded-2 {
	border-radius: .5rem !important;
}

.modal-backdrop.show {
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    border-radius: 1rem;
    overflow: hidden;
}

.modal.fade .modal-dialog {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.25s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal.show .modal-body svg {
    animation: pop 0.3s ease-out;
}

@keyframes pop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-danger,
.btn-outline-secondary {
    transition: all 0.2s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

.btn-outline-secondary:hover {
	color: inherit;
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.btn-danger:active,
.btn-outline-secondary:active {
    transform: translateY(0);
}


.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-bg-transparent) !important;
}


.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}


.checkout-product-item .product-bg-image {
	width: 150px !important;
	height: 150px !important;
}