@import url("breadcrumb.css");

:root {
	--font-primary: "Public Sans", sans-serif;
	--primary: #C02026;
	--primary-one: #d13b27;
	--secondary: #f78f26;
	--secondary-one: #ff8000;
	--white: #fff;
	--black: #000;
	--heading-color: #191c1f;
	--table-heading: #fcf0ee;
	--input-focus: #bd002866;
	--color-light-gray: #f3f3f3;
	--search-placeholder-color: #77878f;
	--category-nav-bg: #5f6c72;
	--color-accent: #fa8232;

}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	font-size: 1rem;
}

body {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: var(--heading-color) !important;
	background-color: var(--white);
	line-height: 1.5;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease !important;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s ease;
}

ul,
ol {
	list-style: none;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

::selection {
	background-color: var(--primary-one);
	color: var(--white);
}

::-moz-selection {
	background-color: var(--primary-one);
	color: var(--white);
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.container {
	max-width: 89.5rem !important;
	margin: 0 auto;
	padding: 0 1.25rem !important;
}

.top-header-bar {
	background-color: var(--primary-one);
	width: 100%;
	position: relative;
}

.top-header-content {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.9375rem;
	gap: 1.5rem;
}

/* Announcement bar (shipping, compliance, user tier, theme) */
.announcement-bar {
	background-color: var(--primary-one);
	color: #fff;
	font-family: var(--font-primary);
	font-size: 0.8125rem;
	line-height: 1.2;
}

.announcement-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0.5rem 1.25rem;
	gap: 1rem;
}

.announcement-bar__left,
.announcement-bar__right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.announcement-bar__left {
	flex: 1 1 auto;
	flex-wrap: wrap;
}

.announcement-bar__right {
	flex: 0 0 auto;
	flex-shrink: 0;
}

.announcement-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	white-space: nowrap;
}

.announcement-bar__icon {
	font-size: 0.875rem;
	opacity: 0.95;
	flex-shrink: 0;
}

.announcement-bar__item svg.announcement-bar__icon {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
}

.announcement-bar__divider {
	opacity: 0.55;
	user-select: none;
}

.announcement-bar__user {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

.announcement-bar__user:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.9;
}

.announcement-bar__company {
	font-weight: 600;
}

.announcement-bar__sep {
	opacity: 0.7;
}

.announcement-bar__tier {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.announcement-bar__login {
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.announcement-bar__login:hover {
	color: #fff;
	text-decoration: underline;
}

.announcement-bar__theme.theme-toggle-wrapper {
	position: relative;
	flex-shrink: 0;
}

.announcement-bar__theme .theme-toggle {
	position: relative;
}

.announcement-bar__theme .theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 2rem;
	padding: 0;
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	border-radius: 0.25rem;
	padding: 5px 0;
}

.announcement-bar__theme .theme-toggle:hover {
	background: transparent;
}

.announcement-bar__theme .icon-sun,
.announcement-bar__theme .icon-moon {
	stroke: currentColor;
	width: 1.125rem;
	height: 1.125rem;
}

.announcement-bar__theme .theme-tooltip {
	display: none;
}

@media (max-width: 991px) {
	.announcement-bar__inner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 0.5rem 0.75rem;
	}

	.announcement-bar__left {
		justify-content: center;
		width: 100%;
		order: 2;
	}

	.announcement-bar__right {
		width: 100%;
		justify-content: center;
		order: 1;
	}

	.announcement-bar__divider,
	.announcement-bar__item:last-of-type {
		display: none;
	}
}

@media (max-width: 575px) {
	.announcement-bar__company {
		max-width: 8rem;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.warning-text {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-light-gray);
	line-height: 1em;
	text-align: center;
}

.header {
	top: 0;
	z-index: 1000;
	background-color: var(--white);
}

.header.scrolled,
#header.scrolled {
	margin-top: 0;
}

.header-middle {
	background-color: var(--primary);
	width: 100%;
}

.header-middle-content {
	max-width: 90.5rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.625rem 1.25rem;
	gap: 1.5rem;
}

.mobile-search-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 2rem;
	height: 2rem;
	align-items: center;
	justify-content: center;
	z-index: 1002;
	position: relative;
}

.mobile-search-toggle .icon-img {
	width: 1.5rem;
	height: 1.5rem;
	filter: brightness(0) invert(1);
}

.mobile-search-bar {
	display: none;
	background-color: var(--primary);
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 300ms ease-in-out,
		padding 300ms ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.mobile-search-bar.active {
	display: block !important;
	max-height: 5rem;
	padding: 0.75rem 0;
	opacity: 1;
	visibility: visible;
}

.mobile-search-content {
	width: 100%;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mobile-search-content .search-form {
	flex: 1;
}

.mobile-search-close {
	background: none;
	border: none;
	color: var(--white);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 1.75rem;
	height: 1.3125rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.hamburger-line {
	width: 100%;
	height: 0.1875rem;
	background-color: var(--white);
	border-radius: 0.125rem;
	transition: all 300ms ease-in-out;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translateY(0.8125rem);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translateY(-0.8125rem);
}

.mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 300ms ease-in-out;
}

.mobile-overlay.active {
	display: block;
	opacity: 1;
}

.header-logo {
	flex-shrink: 0;
}

.header-logo a {
	display: flex;
	align-items: center;
}

.logo-img {
	width: 10.1875rem;
	height: 4.375rem;
	object-fit: cover;
}

.header-search {
	flex: 1;
	max-width: 40.625rem;
	width: 100%;
}

.search-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--white);
	border-radius: 0.125rem;
	padding: 0.875rem 1.25rem;
	box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.search-input {
	flex: 1;
	border: none;
	outline: none;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--search-placeholder-color);
	width: 100%;
	max-width: 36.125rem;
	line-height: 1.428571em;
}

.search-input::placeholder {
	color: var(--search-placeholder-color);
}

.search-btn {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
}

.search-btn .icon-img {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.header-icon {
	position: relative;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: opacity 300ms ease-in-out !important;
	overflow: visible;
}

.header-icon .icon-img,
.header-icon .shopcart {
	transition: opacity 300ms ease-in-out !important;
}

.header-icon:hover .icon-img,
.header-icon:hover .shopcart {
	opacity: 0.8;
}

.header-icon .icon-img {
	width: 2rem;
	height: 2rem;
	display: block;
	object-fit: contain;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
	width: initial;
	height: initial;
}

.theme-toggle:hover .icon-sun,
.theme-toggle:hover .icon-moon {
	opacity: 0.8 !important;
}


.cart-badge,
.wishlist-badge {
	position: absolute !important;
	top: -0.25rem !important;
	right: -0.25rem !important;
	background-color: var(--white) !important;
	color: var(--primary-one) !important;
	border: 0.09375rem solid var(--primary-one) !important;
	font-family: var(--font-primary);
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	padding: 0.125rem 0.375rem !important;
	border-radius: 624.9375rem !important;
	min-width: 1.25rem !important;
	width: 1.25rem !important;
	height: 1.25rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	z-index: 9999 !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.header-bottom {
	background-color: var(--white);
	box-shadow: inset 0 -0.0625rem 0 0 rgba(228, 231, 233, 1);
	width: 100%;
}

.header-bottom-content {
	max-width: 90.5rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.category-dropdown-wrapper {
	position: relative;
}

.category-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 88.4375rem;
	max-width: calc(100vw - 1.5rem);
	background: var(--white);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
	border-radius: 0.5rem;
	margin-top: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-0.625rem);
	transition: all 300ms ease-in-out;
	z-index: 10000;
	padding: 1.5rem;
	overflow: visible;
	min-height: 25rem;
	display: none;
	pointer-events: none;
}

.category-dropdown-wrapper .category-dropdown {
	display: none !important;
}

.category-dropdown-wrapper.active .category-dropdown {
	display: block !important;
}

.category-dropdown-wrapper:hover .category-dropdown,
.category-dropdown-wrapper.active .category-dropdown {
	display: block;
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0);
	pointer-events: auto;
}

.category-dropdown-content {
	display: grid;
	grid-template-columns: 15rem 1fr;
	gap: 2rem;
	overflow: visible;
	width: 100%;
	height: auto;
	visibility: visible;
	opacity: 1;
}

.category-nav {
	display: flex;
	flex-direction: column;
}

.category-nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 0.0625rem solid #e4e7e9;
}

.category-nav-header h3 {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	color: var(--heading-color);
}

.category-nav-header .nav-arrow {
	width: 1rem;
	height: 1rem;
}

.category-nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	max-height: 31.25rem;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 0.5rem;
}

.category-nav-list::-webkit-scrollbar {
	width: 0.375rem;
}

.category-nav-list::-webkit-scrollbar-track {
	background: #f2f4f5;
	border-radius: 0.625rem;
}

.category-nav-list::-webkit-scrollbar-thumb {
	background: #c1c7cd;
	border-radius: 0.625rem;
}

.category-nav-list::-webkit-scrollbar-thumb:hover {
	background: #a8b0b8;
}

.category-nav-list li {
	position: relative;
}

.category-nav-list li a {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--category-nav-bg);
	text-decoration: none;
	transition: all 300ms ease-in-out;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem;
	border-radius: 0.25rem;
	text-transform: capitalize;
}

.category-nav-list li a:hover {
	color: var(--heading-color);
}

.category-nav-list li a:hover,
.category-nav-list li a.active {
	background-color: #f2f4f5;
	color: var(--heading-color);
}

.category-nav-list li a .nav-item-arrow {
	width: 1rem;
	height: 1rem;
	opacity: 0;
	transition: opacity 300ms ease-in-out, stroke 300ms ease-in-out;
	flex-shrink: 0;
}

.category-nav-list li a.active .nav-item-arrow {
	opacity: 1;
}

.category-nav-list li a.active .nav-item-arrow path {
	stroke: var(--heading-color);
}

.category-nav-list li .view-all-link {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--secondary-one) !important;
	text-decoration: none;
	transition: all 300ms ease-in-out;
}

.category-nav-list li .view-all-link:hover {
	color: var(--primary-one);
}

.category-nav-list li .view-all-link .nav-item-arrow {
	opacity: 1;
}

.category-products-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(2, 11.75rem);
	gap: 1rem;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	scrollbar-color: var(--secondary-one) #f2f4f5;
	overflow: visible !important;
}

.category-products-grid::-webkit-scrollbar {
	height: 0.375rem;
}

.category-products-grid::-webkit-scrollbar-track {
	background: #f2f4f5;
	border-radius: 0.1875rem;
}

.category-products-grid::-webkit-scrollbar-thumb {
	background: var(--secondary-one);
	border-radius: 0.1875rem;
}

.category-products-grid::-webkit-scrollbar-thumb:hover {
	background: var(--primary-one);
}

.category-product-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: transform 300ms ease-in-out;
	border-radius: 0.5rem;
	border: 0.0625rem solid #e4e7e9;
	padding: 0.5rem;
	min-width: 6.25rem;
	flex-shrink: 0;
}

.category-product-item:hover {
	transform: translateY(-0.25rem);
}

.category-product-image {
	width: 100%;
	aspect-ratio: 5;
	background: var(--white);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	position: relative;
	overflow: hidden;
	max-width: 6.25rem;
	height: 6.25rem;
}

.category-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.category-product-name {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--heading-color);
	text-align: center;
	text-transform: capitalize;
}

.category-children-placeholder {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-placeholder-text {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--category-nav-bg);
	text-align: center;
}

.category-icon {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 600;
	color: var(--secondary-one);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.category-promo-card {
	grid-column: 6;
	grid-row: 1 / 3;
	padding: 0;
	align-items: stretch;
	width: 19.375rem;
}

.category-promo-image {
	width: 100%;
	height: 100%;
	border-radius: 0.75rem;
	overflow: hidden;
}

.category-promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nav-left .nav-link {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--black);
	line-height: 1.428571em;
	transition: color 300ms ease-in-out;
	padding: 0;
}

.nav-left .nav-link:hover {
	color: var(--primary-one) !important;
}

.nav-left .nav-link.active {
	color: var(--primary-one) !important;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--black);
	line-height: 1.428571em;
	transition: color 300ms ease-in-out;
}

.nav-item svg {
	transition: all 300ms ease-in-out;
}

.nav-item svg path {
	transition: all 300ms ease-in-out;
}

.nav-item:hover {
	color: var(--primary-one) !important;
}

.nav-item:hover svg path {
	stroke: var(--primary-one) !important;
	fill: rgba(209, 59, 39, 0.2);
}

.nav-item.active {
	color: var(--primary-one) !important;
}

.nav-item .icon-img {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	object-fit: contain;
}


.nav-item-phone {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-left: 1.25rem;
	cursor: pointer;
}

.phone-icon {
	width: 2.625rem;
	height: 2.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black);
}
/* ===== Brand (manufacturer/info) layout fix — force single column ===== */
.iak-cat-grid.is-full {
	display: grid !important;
	grid-template-columns: 1fr !important;   /* kill the 260px sidebar slot */
}

/* products in a 4-up grid, full width of the main column */
.iak-cat-grid.is-full .shop-products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 1.25rem !important;
}

/* rep CTA spans full width beneath the grid */
.iak-cat-grid.is-full .iak-brand-rep {
	grid-column: 1 / -1 !important;
	width: 100% !important;
}

@media (max-width: 1200px) {
	.iak-cat-grid.is-full .shop-products {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
@media (max-width: 767px) {
	.iak-cat-grid.is-full .shop-products {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 480px) {
	.iak-cat-grid.is-full .shop-products {
		grid-template-columns: 1fr !important;
	}
}

.phone-icon .icon-img {
	width: 2.625rem;
	height: 2.625rem;
	display: block;
	object-fit: contain;
}

.phone-content {
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
}

.phone-label {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: #666666;
	line-height: 1.285714em;
}

.phone-number {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 700;
	color: #F68E26;
	line-height: 1.333333em;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 300ms ease-in-out;
	text-align: center;
	color: var(--white) !important;
}

.btn-primary {
	background-color: var(--primary-one);
	color: var(--white);
}

.btn-primary:hover {
	background-color: var(--primary);
	transform: translateY(-0.125rem);
	box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.btn-cart {
	width: 100%;
	background-color: var(--color-accent);
	color: var(--white);
}

.btn-cart:hover {
	background-color: var(--primary-one);
}

.features-bar {
	background: linear-gradient(180deg,
			rgba(209, 59, 39, 1) 0%,
			rgba(107, 30, 20, 1) 100%);
	padding: 1.5625rem 0;
}

.features-bar-content {
	max-width: 88.25rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.features-bar .feature-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.features-bar .feature-icon {
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
}

.features-bar .feature-icon .icon-img {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	filter: brightness(0) invert(1);
}

.feature-text {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1.2em;
	text-align: left;
	white-space: nowrap;
}

.footer {
	background-color: var(--black);
	color: var(--white);
}

.footer-main {
	padding: 5.875rem 0 2.5rem 0;
}

.footer-container {
	max-width: 85rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.875rem;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
}

.footer-col-wide {
	grid-column: span 1;
}

.footer-heading {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1.08em;
	margin: 0;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links a {
	font-family: var(--font-primary);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--white);
	transition: color 300ms ease-in-out;
	line-height: 1.21em;
}

.footer-links a:hover {
	color: var(--color-accent) !important;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
}

.contact-text {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--white);
	line-height: 2em;
}

.contact-text .phone-highlight {
	color: var(--primary-one);
}

.contact-text .phone-highlight:hover {
	color: var(--white);
}

.social-media {
	display: flex;
	gap: 0.875rem;
	margin-top: 0.5rem;
}

.social-btn {
	width: 2.1875rem;
	height: 2.1875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 1.09375rem;
	color: var(--white);
	transition: all 300ms ease-in-out;
}

.social-btn:hover {
	background-color: var(--color-accent);
	transform: translateY(-0.125rem);
}

.social-btn i {
	font-size: 0.875rem;
}

.newsletter-title {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	line-height: 1.2em;
	text-align: left;
}

.newsletter-title .highlight-accent {
	color: var(--color-accent);
}

.newsletter-form {
	display: flex;
	background-color: transparent;
	border-radius: 0.4375rem;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.newsletter-input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: none;
	background-color: #edf0f7;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: var(--heading-color);
	outline: none;
	border-radius: 0.4375rem 0 0 0.4375rem;
}

.newsletter-input::placeholder {
	color: var(--heading-color);
}

.newsletter-btn {
	padding: 0.75rem 1.5rem;
	background-color: var(--primary-one);
	color: var(--white);
	border: none;
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 300ms ease-in-out;
	border-radius: 0 0.4375rem 0.4375rem 0;
	line-height: 1.5em;
	text-align: center;
}

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

.newsletter-note {
	font-family: var(--font-primary);
	font-size: 0.8125rem;
	font-weight: 400;
	color: var(--white);
	line-height: 1.7em;
	text-align: left;
}

.newsletter-note u:hover {
	text-decoration: none !important;
}

.footer-extra-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
	padding-top: 1.5rem;
	width: 100%;
	max-width: 44.625rem;
}

.footer-selectors {
	display: flex;
	gap: 0.625rem;
}

.selector-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.375rem 0.875rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.2);
	border-radius: 0.375rem;
	background-color: transparent;
}

.selector-icon {
	width: 1rem;
	height: 1rem;
	filter: brightness(0) invert(1);
}

.selector-icon.currency-icon {
	filter: none;
	min-width: 1rem;
	min-height: 1rem;
}

.selector-icon.language-icon {
	filter: none;
	width: 1rem;
	height: 1rem;
}

.footer-select {
	background-color: transparent;
	color: var(--white);
	border: none;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	cursor: pointer;
	outline: none;
	padding-right: 1.25rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.8'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
}

.footer-select option {
	background-color: var(--black);
	color: var(--white);
}

.payment-methods {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.payment-img {
	height: auto;
	width: auto;
	display: block;
}

.footer-bottom {
	border-top: 0.0625rem solid rgba(209, 59, 39, 0.3);
	padding: 1.875rem 0 0.875rem 0;
}

.footer-copyright {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--white);
	text-align: center;
	line-height: 1.7em;
	margin: 0;
}

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

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.grid {
	display: grid;
}

.hidden {
	display: none;
}

.visible {
	display: block;
}

.fade-in {
	animation: fadeIn 500ms ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.slide-up {
	animation: slideUp 500ms ease-in-out;
}

@keyframes slideUp {
	from {
		transform: translateY(1.25rem);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.category-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background-color: #FDDBC2;
	border: none;
	border-radius: 0.125rem;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--heading-color);
	transition: all 300ms ease-in-out;
}

.category-btn .category-arrow {
	width: 1rem;
	height: 1rem;
	filter: brightness(0);
	transform: rotate(0deg);
	transition:
		transform 300ms ease-in-out,
		filter 300ms ease-in-out;
}

.category-btn:hover,
.category-dropdown-wrapper:hover .category-btn {
	background-color: #f2f4f5 !important;
	color: var(--heading-color) !important;
}

/* .category-dropdown-wrapper .category-btn:hover .category-arrow,
.category-dropdown-wrapper:hover .category-btn .category-arrow {
filter: brightness(0) !important;
transform: rotate(0deg) !important;
} */

.category-btn:hover,
.category-dropdown-wrapper:hover .category-btn,
.category-dropdown-wrapper.active .category-btn {
	background-color: var(--secondary-one) !important;
	color: var(--white) !important;
}

.category-dropdown-wrapper.active .category-btn .category-arrow {
	filter: brightness(0) invert(1) !important;
	transform: rotate(180deg) !important;
}

.category-dropdown-wrapper.active:hover .category-btn .category-arrow {
	filter: brightness(0) invert(1) !important;
}

.best-sellers-section {
	overflow: hidden;
}

.best-sellers-section .container {
	max-width: 85.5rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.best-sellers-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
}

.best-sellers-tabs {
	display: flex;
	gap: 1rem;
	background-color: transparent;
}

.best-sellers-tab {
	padding: 0.875rem 2.125rem;
	border-radius: 0.75rem;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.375rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-family: var(--font-primary);
}

.best-sellers-tab.active {
	background-color: var(--primary);
	color: var(--white);
}

.best-sellers-tab:not(.active) {
	background-color: #bd002833;
	color: var(--heading-color);
}

.best-sellers-tab:not(.active):hover {
	background-color: var(--primary);
	color: var(--white);
}

.best-sellers-nav {
	display: flex;
	gap: 0.75rem;
}

.best-sellers-prev,
.best-sellers-next {
	width: 2.875rem;
	height: 2.875rem;
	border-radius: 0.5rem;
	border: 0.0625rem solid #e4e7e9;
	background-color: rgba(31, 31, 31, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.best-sellers-prev {
	opacity: 0.5;
	pointer-events: none;
}

.best-sellers-next {
	pointer-events: auto;
}

.best-sellers-prev svg path,
.best-sellers-next svg path {
	transition: all 0.3s ease;
	stroke: #C02026;
}

.best-sellers-prev:hover,
.best-sellers-next:hover {
	background-color: var(--primary);
	border-color: var(--primary);
}

.best-sellers-prev:hover svg path,
.best-sellers-next:hover svg path {
	stroke: var(--white);
}

.best-seller-card {
	background-color: var(--white);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	transition: all 300ms ease-in-out;
	position: relative;
}

.best-seller-card:hover {
	border-color: var(--white);
}

.best-seller-card:not(.has-multiple-images) .best-seller-nav-arrow {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.best-seller-image-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 1rem;
	border-radius: 0.75rem;
	overflow: hidden;
}

.best-seller-hover-actions {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.best-seller-card:hover .best-seller-hover-actions {
	opacity: 1;
	visibility: visible;
}

.best-seller-quick-view {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.best-seller-action-btn {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.375rem;
	border: 0.03125rem solid rgba(0, 0, 0, 0);
	background: rgba(43, 43, 43, 0.3);
	backdrop-filter: blur(0.125rem);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.best-seller-action-btn:hover {
	background-color: var(--white);
	transform: scale(1.1);
}

.best-seller-action-btn.wishlist-btn:hover,
.best-seller-action-btn.quick-view-btn:hover {
	background-color: var(--secondary-one) !important;
	transform: none;
}

.best-seller-action-btn img {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.best-seller-puff-count {
	font-family: var(--font-primary);
	font-size: 0.625rem;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
}

.best-seller-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background-color: rgba(0, 0, 0, 0.6);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.best-seller-nav-arrow svg path {
	stroke: var(--white);
	fill: none;
	transition: all 0.3s ease;
}

.best-seller-prev-arrow {
	left: 0.75rem;
}

.best-seller-next-arrow {
	right: 0.75rem;
}

.best-seller-card.has-multiple-images:hover .best-seller-nav-arrow {
	opacity: 1;
	visibility: visible;
}

.best-seller-nav-arrow:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.best-seller-nav-arrow:hover svg path {
	stroke: var(--secondary-one);
	fill: none;
}

.best-seller-nav-arrow svg {
	width: 1.5rem;
	height: 1.5rem;
}

.best-seller-shop-now {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.best-seller-card:hover .best-seller-shop-now {
	opacity: 1;
	visibility: visible;
}

.best-seller-shop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4375rem 1rem;
	background-color: var(--primary);
	color: var(--white) !important;
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 0.625rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.best-seller-shop-btn:hover {
	background-color: var(--secondary);
	transform: translateY(-0.125rem);
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
	color: var(--white) !important;
}

.best-seller-image-slider {
	position: relative;
	width: 100%;
	height: 20.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

.best-seller-image-slide {
	position: absolute;
	width: 20.625rem;
	height: 20.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 500ms ease-in-out;
	border-radius: 0.75rem;
	background: var(--white);
}

.best-seller-image-slide:first-child {
	opacity: 1;
}

.best-seller-image-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 0.75rem;
}

.product-indicators {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.25rem;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0.375rem 0.625rem;
	border-radius: 0.625rem;
	z-index: 10;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}

.best-seller-card:hover .product-indicators {
	bottom: 4.375rem;
}

.product-indicator {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-indicator.active {
	background-color: var(--primary);
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
}

.product-indicator:hover {
	opacity: 0.8;
}

.best-seller-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.best-seller-name {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--heading-color);
	margin: 0;
	transition: all 0.3s ease;
}

.best-seller-card:hover .best-seller-name,
.best-seller-card:hover .best-seller-name a {
	color: var(--primary);
}

.best-seller-price {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	line-height: 2.25rem;
}

.best-seller-current-price {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-accent);
}

.best-seller-original-price {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	color: #818285;
	text-decoration: line-through;
}

.best-sellers-carousel .slick-track {
	display: flex;
	align-items: stretch;
}

.best-sellers-carousel .slick-arrow {
	display: none !important;
}

.best-sellers-nav {
	display: flex !important;
	visibility: visible !important;
}

.best-sellers-prev,
.best-sellers-next {
	display: flex !important;
	visibility: visible !important;
}

.best-sellers-prev.slick-arrow,
.best-sellers-next.slick-arrow {
	display: flex !important;
	visibility: visible !important;
}

.best-sellers-prev.slick-hidden,
.best-sellers-next.slick-hidden {
	display: flex !important;
	visibility: visible !important;
}

.best-sellers-carousel .slick-list {
	margin: 0 -0.625rem;
}

@media (max-width: 48rem) {
	.best-sellers-section {
		padding: 2rem 0;
	}

	.best-sellers-header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
	}

	.best-sellers-tab {
		font-size: 1rem;
		padding: 0.625rem 1.25rem;
	}

	.best-sellers-nav {
		display: flex;
		gap: 0.75rem;
	}

	.best-seller-card {
		border-radius: 0.75rem;
		overflow: hidden;
	}

	.best-seller-image-wrapper {
		border-radius: 0.75rem;
	}

	.best-seller-image-slider {
		height: 17.5rem;
		border-radius: 0.75rem;
	}

	.best-seller-image-slide {
		width: 100%;
		height: 100%;
		border-radius: 0.75rem;
	}

	.best-seller-name {
		font-size: 1rem;
	}

	.best-seller-current-price {
		font-size: 1.125rem;
	}

	.featured-products-pagination,
	.featured-products-pagination-2 {
		margin-top: 0 !important;
	}

	.featured-products-pagination-2 {
		padding-bottom: 3.75rem;
	}


	.featured-header-bottom-2 {
		flex-direction: column;
	}
}

@media (max-width: 30rem) {
	.best-sellers-section .container {
		padding: 0 1rem;
	}

	.best-seller-image-slider {
		height: 12.5rem;
	}

	.best-seller-image-slide {
		width: 100%;
		height: 100%;
	}

	.best-seller-card {
		padding: 0.75rem;
	}

	.best-sellers-header {
		flex-wrap: nowrap;
	}

	.best-sellers-prev,
	.best-sellers-next {
		width: 2.188rem;
		height: 2.188rem;
	}

	.shop-cat-nav .shop-cat-prev,
	.shop-cat-nav .shop-cat-next {
		width: 2.188rem;
		height: 2.188rem;
	}

	.shop-cat-nav .shop-cat-prev svg,
	.shop-cat-nav .shop-cat-next svg {
		height: 1.125rem;
		width: 1.125rem;
	}


	.best-sellers-prev svg,
	.best-sellers-next svg {
		height: 1.125rem;
		width: 1.125rem;
	}
}

.shop-cat .container {
	max-width: 88.125rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.shop-cat {
	padding: 6.25rem 0;
}

.shop-cat-wrap {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.shop-cat-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.9375rem;
}

.shop-cat-top .shop-cat-title {
	color: var(--heading-color);
	font-family: "Public Sans";
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 0;
}

.shop-cat-nav {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.shop-cat-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	background: rgba(31, 31, 31, 0.1);
	height: 2.875rem;
	width: 2.875rem;
}

.shop-cat-nav a svg {
	width: 1.375rem;
	height: 1.375rem;

}

.shop-cat-nav a svg path {
	fill: #C02026;
}

.shop-cat-nav a:hover {
	background-color: var(--primary-one);
}

.shop-cat-nav a:hover svg path {
	fill: var(--white);
}

.shop-cat-slide .slick-list {
	padding: 1.25rem 0;
	margin: 0 -10px;
}

.shop-cat-slide-box {
	display: flex;
	flex-direction: column;
	border-radius: 0.75rem;
	cursor: pointer;
	margin: 0 0.9375rem;
	border: 1px solid #f6f6f6;
}

.shop-cat-slide-box .shop-img {
	border-radius: 0.75rem 0.75rem 0 0;
	overflow: hidden;
}

.shop-cat-slide-box .shop-img img {
	border-radius: 0.75rem 0.75rem 0 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.shop-box-content {
	border-radius: 0 0 0.75rem 0.75rem;
	background: #f6f6f6;
	display: flex;
	padding: 1.25rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	transition: all 0.3s ease-in-out;
	justify-content: flex-start;
}

.shop-box-title {
	color: var(--heading-color);
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: lowercase;
	margin-bottom: 0;
}

.shop-box-title::first-letter {
	text-transform: uppercase;
}

.shop-now {
	color: #717171 !important;
	font-family: "Public Sans";
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.shop-cat-slide-box:hover img {
	transform: scale(1.1);
}

.shop-cat-slide-box:hover .shop-box-content {
	box-shadow: 0 0.25rem 0.875rem 0 rgba(0, 0, 0, 0.12);
	border-radius: 0 0 0.75rem 0.75rem;
}

.shop-cat-slide-box:hover .shop-box-content .shop-now {
	color: var(--primary-one) !important;
}

#product-search {

	margin-top: 11.6875rem !important;
}

.mobile-search-bar.active {
    overflow: initial;
}
#product-all-categories {
	margin-top: 11.6875rem;
}

#product-category {
	margin-top: 12.8125rem !important;
}

#account-wishlist {
	margin-top: 12.5rem !important;
	padding-bottom: 7.5rem !important;
}

#checkout-cart {
	margin-top: 12.8125rem !important;
}

#error-not-found {
	margin-top: 12.5rem;
}

.all-products-link {
	color: var(--primary-one) !important;
}

.browse-all-link:hover,
.browse-all-link-2:hover {
	color: var(--primary-one) !important;
}

#product-featured-products {
	margin: 11.6875rem auto;
}

.hero-banner-section {
	padding: 2.5rem 0 0 0;
}

.banner-grid {
	margin-bottom: 1.875rem;
}

.main-banner-slider {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
}

.banner-slider {
	width: 100%;
	margin-bottom: 0 !important;
}

.banner-slide {
	position: relative;
	outline: none;
}

.banner-slide img {
	width: 100%;
	height: 35rem;
	display: block;
	border-radius: 1.25rem;
}

.banner-content {
	position: absolute;
	top: 50%;
	left: 3.75rem;
	transform: translateY(-50%);
	max-width: 39.0625rem;
	z-index: 5;
	width: 100%;
}

.banner-heading {
	font-family: var(--font-primary);
	font-size: 3.75rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	line-height: 4.75rem;
	text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
}

.banner-text {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 2.5rem;
	line-height: 1.5;
	text-shadow: 0.0625rem 0.0625rem 0.25rem rgba(0, 0, 0, 0.3);
}

.banner-btn {
	display: flex;
	width: max-content;
	height: 3.5625rem;
	padding: 0.9375rem 2.25rem;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	border-radius: 0.625rem;
	border: 0.0625rem solid var(--color-accent);
	background-color: transparent;
	color: var(--color-accent) !important;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 300ms ease-in-out;
	text-decoration: none;
	line-height: 1.5rem;
}

.banner-btn .btn-icon path {
	transition: fill 300ms ease-in-out;
}

/* ✅ Smooth text color transition */
.banner-btn {
	transition:
		background-color 300ms ease-in-out,
		color 300ms ease-in-out,
		border-color 300ms ease-in-out;
}

.banner-btn:hover {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--white) !important;
}

.banner-btn:hover .btn-icon path {
	fill: var(--white);
}

.banner-btn .btn-icon {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.banner-slider .slick-dots {
	bottom: 2.25rem;
	left: 3.4375rem;
	text-align: left;
	width: auto;
	position: absolute;
	display: flex;
}

.banner-slider .slick-dots li {
	margin: 0 0.375rem;
	width: 0.8125rem;
	height: 0.25rem;
}

.banner-slider .slick-dots li button {
	width: 100%;
	height: 100%;
	padding: 0;
}

.banner-slider .slick-dots li button:before {
	content: "";
	width: 0.8125rem;
	height: 0.25rem;
	background-color: var(--color-accent);
	opacity: 0.5;
	border-radius: 0.125rem;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 300ms ease-in-out;
}

.banner-slider .slick-dots li.slick-active {
	width: 1.25rem;
}

.banner-slider .slick-dots li.slick-active button:before {
	width: 1.25rem;
	opacity: 1;
	background-color: var(--color-accent);
}

.side-gifs {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.side-gif-item {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	flex: 1;
}

.side-gif-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bottom-gifs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.875rem;
}

.bottom-gif-item {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
}

.bottom-gif-item img {
	width: 100%;
	height: 100%;
	display: block;
}

.service-features {
	background-color: #ffffff;
	border-top: 1px solid rgba(20, 20, 23, 0.08);
	border-bottom: 1px solid rgba(20, 20, 23, 0.08);
}

.service-features .container {
	padding: 0;
	max-width: 100%;
}

.service-features-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 0;
	align-items: stretch;
}

.service-feature-item {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.375rem 1.5rem;
	border-right: 1px solid rgba(20, 20, 23, 0.08);
}

.service-feature-item:last-child {
	border-right: none;
}

.service-icon {
	background: none;
	border-radius: 0;
	padding: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon .icon-img {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

.service-content {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	min-width: 0;
}

.service-title {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.3;
	margin: 0;
}

.service-desc {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 400;
	color: #848688;
	line-height: 1.4;
	margin: 0;
}

.service-divider {
	display: none;
}

.category-showcase {
	padding: 6.25rem 0;
	background-color: var(--white);
}

.category-showcase .container {
	max-width: 88.125rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.category-showcase-heading {
	font-family: var(--font-primary);
	font-size: 2.75rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 3.125rem;
	text-align: center;
}

.category-showcase-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 1.8125rem;
	justify-content: center;
}

.category-gif-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 0 0 calc((100% - (1.8125rem * 5)) / 6);
	min-width: 9.375rem;
	gap: 0.75rem;
}

.category-gif-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	border-radius: 50%;
	background-color: var(--primary);
	padding: 1.75rem;
	max-width: 8.75rem;
	height: auto;
}

.category-name {
	background-color: transparent;
	color: var(--heading-color);
	font-family: var(--font-primary);
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.875rem;
	text-align: center;
	margin-top: 0;
}

.banner-promo {
	padding: 6.25rem 0;
	background-color: var(--white);
}

.banner-promo .container {
	max-width: 88.125rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.banner-promo-flex {
	display: flex;
	gap: 1.875rem;
	justify-content: center;
	align-items: stretch;
}

.banner-promo-item {
	flex: 1;
	border-radius: 0.625rem;
	overflow: hidden;
	background-color: rgba(193, 33, 39, 0.2);
	padding: 0.625rem;
}

.banner-promo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0.625rem;
}

.background-image-section {
	width: 100%;
	max-width: 90.5rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	position: relative;
	overflow: hidden;
}

.background-image-wrapper {
	width: 100%;
	position: relative;
	background-image: url("../image/background-promo.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 1.25rem;
}

.background-image-content {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 5rem 5.25rem 6.25rem 5.25rem;
}

.background-content-wrapper {
	max-width: 43.75rem;
	width: 100%;
}

.background-heading {
	font-family: var(--font-primary);
	font-size: 3.125rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.375rem;
	max-width: 31.3125rem;
	line-height: 4.125rem;
}

.background-content-list {
	padding: 0;
	margin: 0 0 2.5rem 0;
	padding-left: 1.25rem;
	list-style: disc;
}

.background-content-list li {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.75rem;
	line-height: 1.5;
}

.background-content-list li::marker {
	color: var(--white);
}

.background-content-list li:last-child {
	margin-bottom: 0;
}

.background-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.9375rem 2rem;
	background-color: var(--color-accent);
	border: 0.0625rem solid var(--color-accent);
	color: var(--white) !important;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5rem;
	border-radius: 0.625rem;
	text-transform: uppercase;
	transition: all 300ms ease-in-out;
	text-decoration: none;
}

.background-btn:hover {
	background-color: var(--primary);
	color: var(--white) !important;
}

.background-btn .btn-icon {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
	min-width: 1.25rem;
}

.product-showcase-section {
	margin: 6.25rem 0 8.75rem 0;
	background-color: var(--white);
}

.product-showcase-section .container {
	max-width: 88.25rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.product-showcase-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	gap: 1.5rem;
}

.product-showcase-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
}

.product-column-title {
	font-family: var(--font-primary);
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.5rem;
	color: var(--heading-color);
	margin: 0;
	margin-bottom: 0;
}

.product-boxes {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	padding: 0.625rem 0 0.625rem 0;
	margin-bottom: 0;
	height: 100%;
}



.product-box {
	background-color: var(--white);
	border: 0.0625rem solid #e4e7e9;
	border-radius: 0.1875rem;
	padding: 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	transition: all 300ms ease-in-out;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	margin-bottom: 1rem;
	height: 100%;
}

.product-box:hover {
	border-color: var(--white);
	box-shadow: 0rem 0.25rem 1rem rgba(0, 0, 0, 0.12);
	border-radius: 0.625rem;

}

.product-box-image {
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-box-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.product-box-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.product-box-name {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: var(--heading-color);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-box-name a {
	color: var(--heading-color);
	text-decoration: none;
	transition: none;
}

.product-box-name a:hover,
.product-box:hover .product-box-name a {
	color: var(--heading-color) !important;
}

.product-box-price {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-one);
	margin: 0;
}

.btn-primary {
	background-color: var(--primary-one);
	color: var(--white);
}

.btn-primary:hover {
	background-color: var(--primary);
	transform: translateY(-0.125rem);
	box-shadow: 0rem 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.btn-cart {
	width: 100%;
	background-color: var(--color-accent);
	color: var(--white);
}

.btn-cart:hover {
	background-color: var(--primary-one);
}

.best-deals-section {
	padding: 6.25rem 0;
	background: #fff2f0 !important;
}

.best-deals-section .container {
	max-width: 88.25rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.deals-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.deals-title {
	font-family: var(--font-primary);
	font-size: 2.75rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-right: 0;
	margin-bottom: 0;
}

.deals-timer {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
}

.timer-label {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: var(--black);
	margin-right: 0.5rem;
}

.timer-boxes {
	display: flex;
	align-items: center;
	background: var(--secondary);
	padding: 0.5rem 0.75rem;
	border-radius: 0.25rem;
}

.timer-box {
	display: inline;
}

.timer-value {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
}

.timer-separator {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	margin: 0 0.25rem;
}

.all-products-link {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--primary-one);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.all-products-link .arrow {
	display: inline-flex;
	align-items: center;
	margin-left: 0.25rem;
}

.all-products-link .arrow-icon {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.all-products-link .arrow svg {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.all-products-link:hover {
	color: var(--secondary-one) !important;
}

.all-products-link:hover svg path {
	stroke: var(--secondary-one) !important;
}

.deals-grid {
	display: flex;
	gap: 0rem;
	align-items: stretch;
	border: 0.0625rem solid #e4e7e9;
	border-radius: 0.375rem;
	border-collapse: collapse;
	border-bottom: 0;
	border-right: 0;
}

.featured-deal-wrapper {
	flex: 0 0 21.875rem;
}

.regular-deals-wrapper {
	flex: 1;
	gap: 0rem;
	padding-bottom: 0rem;
	border: 0.0625rem solid #e4e7e9;
	border-radius: 0 0.375rem 0.375rem 0;
	border-top: 0;
	border-bottom: 0;
	border-right: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, auto);
}

.featured-deal-card {
	grid-row: span 2;
	background: transparent;
	border-bottom: 0.0625rem solid #e4e7e9;
	border-radius: 0rem;
	padding: 1.30rem;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	border-collapse: collapse;
	height: 100%;
}

.featured-deal-card:hover {
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
}

.featured-deal-card:hover .featured-title {
	color: var(--primary-one);
}

.featured-deal-card:hover .featured-image img {
	transform: scale(1.1);
}

.featured-actions .wishlist-btn:hover svg path,
.featured-actions .quick-view-btn:hover svg path {
	fill: var(--white);
	stroke: var(--white);
}

.deal-card {
	background: transparent;
	border: 0.0625rem solid #e4e7e9;
	border-radius: 0rem;
	padding: 1rem;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	border-collapse: collapse;
	border-left: 0;
	border-top: 0;
}

.deal-card:hover {
	background: var(--white);
	border-color: var(--white);
}

.deal-card:hover .deal-title,
.deal-card:hover .deal-title a {
	color: var(--secondary);
}

.deal-card:hover .deal-price {
	color: var(--black);
}

.deal-badge {
	position: absolute;
	top: 0.75rem;
	padding: 0rem 0.625rem;
	border-radius: 0.125rem;
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	z-index: 1;
}

.deal-badge.hot {
	top: 2.8125rem;
	background: #ee5858;
	color: var(--white);
	left: 0.8125rem;
}

.deal-card .deal-badge.hot {
	top: 0.75rem;
}

.deal-badge.discount {
	background: #FAB16B;
	color: var(--heading-color);
	left: 0.8125rem;
}

.deal-badge.sold-out {
	left: 0.8125rem;
	background: #EFD33D;
	color: var(--white);
}

.deal-badge.sale {
	background: #FAB16B;
	color: var(--heading-color);
	left: 0.8125rem;
}

.deal-card .deal-image a {
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
}

.featured-image {
	width: 100%;
	height: 18.18rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.25rem;
	border-radius: 0.25rem;
}

.featured-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 0.9375rem;
	transition: transform 0.3s ease;
}

.featured-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.stars {
	color: var(--secondary-one);
	font-size: 1.25rem;
}

.rating-count {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: var(--search-placeholder-color);
}

.featured-title {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	text-transform: lowercase;
}

.featured-title::first-letter {
	text-transform: uppercase;
}

.featured-prices {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.original-price {
	font-family: var(--font-primary);
	font-size: 1rem;
	color: #818285;
	text-decoration: line-through;
}

.sale-price {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--primary-one);
}

.featured-description {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	line-height: 1.6;
	color: #818285;
	margin-bottom: 2.0625rem;
}

.featured-actions {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-top: auto !important;
}

.featured-actions .wishlist-btn,
.featured-actions .quick-view-btn {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.25rem;
	background: #FDDBC2;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.featured-actions .wishlist-btn svg path,
.featured-actions .quick-view-btn svg path {
	fill: transparent;
	stroke: #F68E26;

}



F68E26 .wishlist-btn:hover img,
.quick-view-btn:hover img {
	filter: brightness(0) invert(1);
}

.wishlist-btn img,
.quick-view-btn img {
	width: 1.25rem;
	height: 1.25rem;
	transition: filter 0.3s ease;
}

.quick-view-btn.is-loading svg,
.best-seller-action-btn.quick-view-btn.is-loading svg,
.featured-eye-btn.is-loading svg,
.deal-eye-btn.is-loading svg {
	opacity: 0;
}

.quick-view-btn.is-loading,
.best-seller-action-btn.quick-view-btn.is-loading,
.featured-eye-btn.is-loading,
.deal-eye-btn.is-loading {
	position: relative;
}

.quick-view-btn.is-loading::after,
.best-seller-action-btn.quick-view-btn.is-loading::after,
.featured-eye-btn.is-loading::after,
.deal-eye-btn.is-loading::after {
	content: "";
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	border: 0.125rem solid rgba(189, 0, 40, 0.25);

	border-top-color: var(--primary);
	animation: quickview-spin 0.7s linear infinite;
}

@keyframes quickview-spin {
	to {
		transform: rotate(360deg);
	}
}

.quickview-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.quickview-overlay.is-visible {
	display: flex;
}

.quickview-modal {
	background: var(--white);
	width: 80%;
	max-width: 75rem;
	height: 80vh;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.35);
	display: flex;
}

.quickview-content {
	width: 100%;
	height: auto;
	overflow-y: auto;
	padding: 40px !important;
}

.quickview-close {
	position: absolute;
	top: 0.875rem;
	right: 1.125rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.6);
	color: var(--white);
	font-size: 1.25rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.quickview-close:hover {
	background: var(--primary-one);
}

.quickview-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 25rem;
	position: relative;
}

.quickview-loading .loader-spinner {
	width: 3.125rem;
	height: 3.125rem;
	border: 0.25rem solid rgba(189, 0, 40, 0.2);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: quickview-loader-spin 0.8s linear infinite;
	margin-bottom: 1.25rem;
}

.quickview-loading .loader-text {
	font-family: "Public Sans", sans-serif;
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

@keyframes quickview-loader-spin {
	0% {
		transform: rotate(0deg);
	}

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

.quickview-inner {
	display: flex;
	gap: 2rem;
	padding: 2rem 2.5rem;
	box-sizing: border-box;
	width: 100%;
	align-items: center;
}

.quickview-image {
	flex: 0 0 46%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quickview-image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 1rem;
	object-fit: cover;
}

.quickview-details {
	flex: 1;
	overflow-y: auto;
	padding: 1.25rem 0;
	height: auto;
	width: 100% !important;
	max-width: 100%;
}

.quickview-title {
	font-family: "Public Sans", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1rem 0;
	color: #1f1f1f;
	max-width: 18.75rem;
}

.quickview-description {
	font-family: "Public Sans", sans-serif;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #555;
	margin: 0 0 1.25rem 0;
}

.quickview-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-family: "Public Sans", sans-serif;
	font-size: 0.875rem;
	color: #333;
}

.quickview-categories a {
	color: #2d7a2d;
	text-decoration: none;
}

.quickview-categories a:hover {
	text-decoration: underline;
}

.quickview-price {
	margin: 0.5rem 0 1.125rem;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-family: "Public Sans", sans-serif;
}

.quickview-price-original {
	font-size: 1rem;
	color: #8d8d8d;
	text-decoration: line-through;
}

.quickview-price-special {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-one);
}

.quickview-actions {
	margin-top: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.quickview-details .view-product-btn {
	width: max-content;
}

.quickview-actions .wishlist-btn,
.quickview-actions .add-to-cart-btn {
	flex-shrink: 0;
}

.compare-alert-inline {
	margin-top: 0.75rem;
	margin-bottom: 0;
}

@media (min-width: 47.9375rem) and (max-width: 61.9375rem) {
	.quickview-details {
		padding-right: 0.5rem;
		height: 100%;
	}
}

@media (max-width: 48rem) {
	.quickview-modal {
		width: 95%;
		height: 90vh;
		padding: 0;
	}

	.quickview-inner {
		flex-direction: column;
		padding: 1.25rem;
	}

	.quickview-title {
		font-size: 1.5625rem;
	}

	.quickview-image {
		flex: 0 0 auto;
	}

	.quickview-details .available-options .section-title {
		font-size: 1.25rem;
		margin-bottom: 0.625rem;
	}

	.quickview-details .view-product-btn {
		font-size: 1rem;
	}

	.quickview-content {
		overflow-y: auto;
	}

	.quickview-details {
		overflow-y: visible;
	}

	.service-features {
		margin-top: 0 !important;
	}

	.best-sellers-section {
		margin: 0rem 0 !important;
	}

	.featured-products-section {
		padding-top: 0 !important;
	}

	.featured-promo-banner {
		min-height: 21.875rem !important;
	}

	.featured-header-bottom-2 {
		justify-content: flex-start !important;
		align-items: flex-start !important;
	}

	.product-top {
		padding: 1.625rem 0 0 0 !important;
	}

	.product-title {
		max-width: 100%;
	}
}

.add-to-cart-btn {
	flex: 1;
	padding: 0.625rem 1.25rem;
	background: var(--primary-one);
	color: var(--white);
	border: none;
	border-radius: 0.25rem;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: background 0.3s ease;
}
/* ===== Brands Directory — modern card grid (override) ===== */
#product-manufacturer .brand-wrap {
	padding: 1.75rem 0 2rem !important;
}

/* Letter heading -> red badge */
#product-manufacturer .brand-wrap h2.brand-letter {
	margin: 0 !important;
	line-height: 1 !important;
	font-size: 0 !important; /* neutralize old 2.5rem so only the badge shows */
}

#product-manufacturer .brand-wrap h2.brand-letter .brand-letter-badge {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.75rem;
	border-radius: 0.625rem;
	background: linear-gradient(135deg, #c12127 0%, #bd0028 100%) !important;
	color: #fff !important;
	font-family: "Public Sans" !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	box-shadow: 0 0.25rem 0.75rem rgba(193, 33, 39, 0.22);
}

/* Card grid */
#product-manufacturer .brand-card-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
	gap: 0.875rem;
	width: 100%;
}

#product-manufacturer .brand-name-cell {
	display: block;
	min-width: 0;
}

/* Card (overrides existing .brand-name-cell a) */
#product-manufacturer .brand-name-cell a.brand-card {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 3.625rem;
	padding: 0.875rem 1.125rem;
	border: 0.0625rem solid #e4e7e9;
	border-radius: 0.75rem;
	background: #fff;
	color: #1f1f1f !important;
	font-family: "Public Sans" !important;
	font-size: 1.0625rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

#product-manufacturer .brand-name-cell a.brand-card:hover {
	border-color: #c12127 !important;
	color: #c12127 !important;
	box-shadow: 0 0.5rem 1.125rem rgba(193, 33, 39, 0.14);
	transform: translateY(-0.1875rem);
}

#product-manufacturer .brand-card .brand-card-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#product-manufacturer .brand-card .brand-card-arrow {
	flex-shrink: 0;
	display: inline-flex !important;
	color: #c12127 !important;
	opacity: 0;
	transform: translateX(-0.25rem);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

#product-manufacturer .brand-card:hover .brand-card-arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 48rem) {
	#product-manufacturer .brand-wrap h2.brand-letter .brand-letter-badge {
		min-width: 2.375rem;
		height: 2.375rem;
		font-size: 1.25rem !important;
	}

	#product-manufacturer .brand-card-grid {
		grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
		gap: 0.625rem;
	}

	#product-manufacturer .brand-name-cell a.brand-card {
		min-height: 3.25rem;
		padding: 0.75rem 0.9375rem;
		font-size: 1rem !important;
	}
}

.add-to-cart-btn:hover {
	background: var(--secondary);
}

.add-to-cart-btn img {
	width: 1rem;
	height: 1rem;
	filter: brightness(0) invert(1);
}

.deal-image {
	width: 100%;
	height: 8.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
	background: var(--white);
	border-radius: 0.25rem;
	position: relative;
	transition: background 0.3s ease;
}

.deal-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 0;
	transition: transform 0.3s ease;
	width: 100%;
	height: 100%;
}

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

.deal-hover-icons {
	position: absolute;
	right: 0.75rem;
	top: 33%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
	pointer-events: none;
}

.deal-card:hover .deal-hover-icons {
	opacity: 1;
	pointer-events: auto;
}

.deal-eye-btn,
.deal-heart-btn {
	width: 1.75rem;
	height: 1.75rem;
	background: rgba(43, 43, 43, 0.5);
	border: none;
	border-radius: 0.375rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background 0.3s ease;
	padding: 0.375rem;
	pointer-events: auto;
	overflow: visible;
}

.deal-eye-btn:hover,
.deal-heart-btn:hover {
	background: var(--secondary-one);
}

.deal-eye-btn svg,
.deal-heart-btn svg {
	width: 1rem;
	height: 1rem;
	display: block;
	flex-shrink: 0;
}

.deal-eye-btn img,
.deal-heart-btn img {
	width: 1rem;
	height: 1rem;
	display: block;
	object-fit: contain;
	opacity: 1;
	flex-shrink: 0;
}

.deal-title {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	color: var(--heading-color);
	text-align: left;
	margin-bottom: 0.5rem;
	width: 100%;
	transition: color 0.3s ease;
	text-transform: lowercase;
}

.deal-title a {
	text-transform: lowercase;
}

.deal-title::first-letter,
.deal-title a::first-letter {
	text-transform: uppercase;
}

.deal-price {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-one);
	text-align: left;
	width: 100%;
	transition: color 0.3s ease;
}

.featured-products-section {
	padding: 0;
	background: var(--white);
}

.featured-products-section .container {
	max-width: 88.25rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.featured-products-wrapper {
	display: grid;
	grid-template-columns: 23.5rem minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
}

.featured-promo-banner {
	position: relative;
	background: var(--black);
	border-radius: 0.75rem;
	overflow: hidden;
	height: 100%;
	min-height: 37.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.promo-banner-content {
	position: relative;
	z-index: 2;
	padding: 2.5rem 1.875rem;
	color: var(--white);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.promo-banner-title {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--secondary-one);
	text-transform: uppercase;
	margin-bottom: 1rem;
	letter-spacing: 0.0625rem;
}

.promo-banner-discount {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.promo-banner-subtitle {
	font-family: var(--font-primary);
	font-size: 1rem;
	color: #cccccc;
	margin-bottom: 1.5rem;
}

.promo-banner-timer {
	margin-bottom: 2rem;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 1.25rem;
	flex-direction: column;
}

.promo-banner-timer .promo-timer-box {
	width: 100%;
}

.promo-timer-label {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	color: var(--white);
	display: block;
	margin-bottom: 0.5rem;
}

.promo-timer-box {
	background: var(--white);
	color: var(--black);
	padding: 0.75rem 1rem;
	border-radius: 0.25rem;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25rem;
	display: inline-block;
}

.promo-shop-btn {
	background: var(--secondary-one);
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0.9375rem 2.25rem;
	border-radius: 0.625rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	transition: background 0.3s ease;
}

.promo-shop-btn:hover {
	background: var(--primary-one);
	color: var(--white) !important;
}

.promo-shop-btn .btn-icon {
	width: 1.125rem;
	height: 1.125rem;
	filter: brightness(0) invert(1);
}

.promo-banner-image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.promo-banner-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.featured-products-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
}

.featured-products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 0;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.featured-header-bottom {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex: 1;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.featured-products-header .featured-category-tabs {
	flex: 1;
	display: flex;
	justify-content: center;
	margin: 0;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.feature-text {
	margin-bottom: 0 !important;
}

.browse-all-link {
	flex-shrink: 0;
}

@media (max-width: 80rem) {
	.featured-products-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.featured-header-bottom {
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}

	.featured-products-header .featured-category-tabs {
		flex: 1;
		margin: 0;
		justify-content: flex-start;
	}

	.browse-all-link {
		flex-shrink: 0;
	}
}

.featured-products-title {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 0;
}

.browse-all-link {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--secondary-one) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.browse-all-link .arrow-icon {
	width: 1.25rem;
	height: 1.25rem;
	filter: none;
}

.featured-category-tabs {
	display: flex;
	gap: 0.625rem;
	flex-wrap: wrap;
	border-bottom: none;
	padding-bottom: 0;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.category-tab {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--category-nav-bg);
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
	text-transform: lowercase;
	padding: 0.5rem 0;
}

.category-tab::first-letter {
	text-transform: uppercase;
}

.category-tab:hover {
	color: var(--heading-color);
}

.category-tab.active {
	color: #000000;
	font-weight: 600;
}

.category-tab.active::after {
	content: "";
	position: absolute;
	bottom: 0rem;
	left: 0;
	right: 0;
	height: 0.125rem;
	background: var(--secondary-one);
}

.featured-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.featured-product-card {
	background: transparent;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all 0.3s ease;
	opacity: 1;
	transform: scale(1);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.featured-product-card:hover {
	color: var(--black);
}

.featured-product-card:hover .featured-product-image img {
	transform: scale(1.1);
}

.product-badge {
	position: absolute !important;
	top: 0.75rem !important;
	left: 0.8125rem !important;
	padding: 0.3125rem 0.625rem !important;
	border-radius: 0.125rem !important;
	font-family: var(--font-primary);
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	z-index: 1 !important;
	width: max-content !important;
	line-height: 1rem !important;
}

.product-badge.hot {
	background: #ee5858;
	color: var(--white);
}

.product-badge.best-deals {
	background: #ee5858;
	color: var(--white);
}

.product-badge.discount {
	background: #ffc107;
	color: var(--heading-color);
}

.product-badge.sale {
	background: #4caf50;
	color: var(--white);
}

.product-badge.sold-out {
	left: 0.8125rem;
	color: rgb(255, 255, 255);
	background: #EFD33D;
}

.featured-product-image {
	width: 100%;
	height: 8.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.75rem;
	background: var(--white);
	border-radius: 0.25rem;
	position: relative;
	transition: background 0.3s ease;
	overflow: hidden;
	align-self: center;
}

.featured-product-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 1.75rem;
	transition: transform 0.3s ease;
}

.featured-product-hover-icons {
	position: absolute;
	right: 0.75rem;
	top: 33%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
	pointer-events: none;
}

.featured-product-card:hover .featured-product-hover-icons {
	opacity: 1;
	pointer-events: auto;
}

.featured-eye-btn,
.featured-heart-btn {
	width: 1.75rem;
	height: 1.75rem;
	background: rgba(43, 43, 43, 0.5);
	border: none;
	border-radius: 0.375rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background 0.3s ease;
	padding: 0.375rem;
	pointer-events: auto;
	overflow: visible;
}

.featured-eye-btn:hover,
.featured-heart-btn:hover {
	background: var(--secondary-one);
}

.featured-eye-btn svg,
.featured-heart-btn svg {
	width: 1rem;
	height: 1rem;
	display: block;
	flex-shrink: 0;
}

.featured-product-rating {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
	width: 100%;
	justify-content: flex-start;
}

.featured-stars {
	color: var(--secondary-one);
	font-size: 0.875rem;
	display: inline-flex;
	gap: 0.125rem;
}

.featured-stars .star-filled {
	color: var(--secondary-one);
}

.featured-stars .star-empty {
	color: #e0e0e0;
}

.featured-rating-count {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	color: var(--search-placeholder-color);
}

.featured-product-title {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	color: var(--heading-color);
	text-align: left;
	margin-bottom: 0.5rem;
	width: 100%;
	transition: color 0.3s ease;
	text-transform: lowercase;
}

.featured-product-title::first-letter {
	text-transform: uppercase;
}

.featured-product-title a:hover {
	color: var(--black) !important;
}

.featured-product-price {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-one);
	text-align: left;
	width: 100%;
	transition: color 0.3s ease;
}

.featured-product-price a:hover {
	color: var(--primary-one) !important;
}

.featured-products-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2.5rem;
	width: 100%;
}

.featured-products-pagination .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.featured-products-pagination .pagination li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.featured-products-pagination .pagination li a,
.featured-products-pagination .pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 0.375rem;
	border: 0.0625rem solid #cfd6dc;
	background: var(--white);
	color: var(--black);
	text-decoration: none;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	box-sizing: border-box;
}

.featured-products-pagination .pagination li a:hover {
	border-color: var(--primary-one);
	color: var(--primary-one) !important;
	background: var(--white);
}

.featured-products-pagination .pagination li.active span {
	background: var(--primary-one);
	color: var(--white);
	border-color: var(--primary-one);
	cursor: default;
}

.featured-products-pagination .pagination li.active span:hover {
	background: var(--primary-one);
	color: var(--white);
	border-color: var(--primary-one);
}

.featured-products-pagination .pagination li:not(.active) span {
	border: none;
	background: transparent;
	color: var(--search-placeholder-color);
	cursor: default;
	padding: 0 0.25rem;
}

.featured-products-pagination-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2.5rem;
	width: 100%;
}

.featured-products-pagination-2 .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.featured-products-pagination-2 .pagination li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.featured-products-pagination-2 .pagination li a,
.featured-products-pagination-2 .pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 0.375rem;
	border: 0.0625rem solid #cfd6dc;
	background: var(--white);
	color: var(--black);
	text-decoration: none;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	box-sizing: border-box;
}

.featured-products-pagination-2 .pagination li a:hover {
	border-color: var(--primary-one);
	color: var(--primary-one) !important;
	background: var(--white);
}

.featured-products-pagination-2 .pagination li.active span {
	background: var(--primary-one);
	color: var(--white);
	border-color: var(--primary-one);
	cursor: default;
}

.featured-products-pagination-2 .pagination li.active span:hover {
	background: var(--primary-one);
	color: var(--white);
	border-color: var(--primary-one);
}

.featured-products-pagination-2 .pagination li:not(.active) span {
	border: none;
	background: transparent;
	color: var(--search-placeholder-color);
	cursor: default;
	padding: 0 0.25rem;
	min-width: auto;
}

@media (max-width: 48rem) {

	.featured-products-pagination .pagination,
	.featured-products-pagination-2 .pagination {
		gap: 0.375rem;
	}

	.featured-products-pagination .pagination li a,
	.featured-products-pagination .pagination li span,
	.featured-products-pagination-2 .pagination li a,
	.featured-products-pagination-2 .pagination li span {
		min-width: 2.25rem;
		height: 2.25rem;
		font-size: 0.875rem;
		padding: 0 0.625rem;
	}
}

.featured-products-section-2 {
	padding: 0 0 6.25rem 0;
	background: var(--white);
}

.featured-products-section-2 .container {
	max-width: 88.25rem;
	margin: 0 auto;
	padding: 0 1.25rem;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.featured-products-wrapper-2 {
	display: grid;
	grid-template-columns: 1fr 23.75rem;
	gap: 1.5rem;
	align-items: start;
	width: 100%;
	box-sizing: border-box;
}

.featured-promo-banners-2 {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.featured-promo-banner-2 {
	position: relative;
	border-radius: 0.75rem;
	padding: 2.5rem 2rem;
	min-height: 26.125rem;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.promo-banner-top-2 {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.promo-banner-bottom-2 {
	background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
	min-height: 17.375rem;
}

.promo-banner-badge-2 {
	background: var(--secondary-one);
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0.375rem 0.75rem;
	border-radius: 0.125rem;
	z-index: 3;
	width: fit-content;
	margin-bottom: 0.875rem;
}

.promo-banner-content-2 {
	position: relative;
	z-index: 2;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;

}

.promo-banner-main-title-2 {
	font-family: var(--font-primary);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	line-height: 2.5rem;
	margin-bottom: 0.5rem !important;
}

.promo-banner-description-2 {
	font-family: var(--font-primary);
	font-size: 1rem;
	color: var(--white);
	line-height: 1.5rem;
	max-width: 25rem;
	margin-bottom: 2.25rem !important;
}

.promo-banner-actions-2 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	justify-content: flex-start;
}

.promo-price-box-2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.promo-price-label-2 {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	color: var(--white);
	opacity: 0.8;
	white-space: nowrap;
}

.promo-price-value-2 {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--primary-one);
	background: var(--white);
	padding: 0.75rem;
	border-radius: 0.1875rem;
	white-space: nowrap;
	text-align: center;
	line-height: 1.5rem;
}

.promo-banner-discount-2 {
	font-family: var(--font-primary);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--white);
	line-height: 2.5rem;
	font-style: normal;
	align-self: stretch;
}

.promo-banner-subtitle-2 {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	color: var(--white);
	opacity: 0.9;
	font-weight: 600;
	line-height: 1.5rem;
	font-style: normal;
}

.promo-banner-subtitle-2 .vape-highlight {
	color: #ebc80c;
}

.promo-shop-btn-2 {
	background: var(--primary-one);
	color: var(--white) !important;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0.875rem 1.5rem;
	border-radius: 0.375rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.3s ease;
}

.promo-shop-btn-2:hover {
	background: var(--secondary-one);
}

.promo-shop-btn-2 .btn-icon {
	width: 1.125rem;
	height: 1.125rem;
	filter: brightness(0) invert(1);
}

.promo-banner-image-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.promo-banner-image-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-products-content-2 {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
	box-sizing: border-box;
}

.featured-products-header-2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.featured-header-bottom-2 {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex: 1;
	justify-content: center;
}

.featured-products-header-2 .featured-category-tabs-2 {
	flex: 1;
	display: flex;
	justify-content: center;
	margin: 0;
}

.browse-all-link-2 {
	flex-shrink: 0;
}

.featured-products-title-2 {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 0;
}

.browse-all-link-2 {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--secondary-one) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.browse-all-link-2 .arrow-icon {
	width: 1.25rem;
	height: 1.25rem;
	filter: none;
}

.featured-category-tabs-2 {
	display: flex;
	gap: 0.625rem;
	flex-wrap: wrap;
	border-bottom: none;
	padding-bottom: 0;
}

.category-tab-2 {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--category-nav-bg);
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
	text-transform: lowercase;
	padding: 0.5rem;
}

.category-tab-2::first-letter {
	text-transform: uppercase;
}

.category-tab-2:hover {
	color: var(--heading-color);
	background-color: #FFF2F0;
}

.category-tab-2.active-2 {
	color: #000000;
	font-weight: 600;
	background-color: #FFF2F0;
}

.category-tab-2.active-2::after {
	content: "";
	position: absolute;
	bottom: 0rem;
	left: 0;
	right: 0;
	height: 0.125rem;
	background: var(--secondary-one);
}

.featured-products-grid-2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	width: 100%;
	box-sizing: border-box;
}

.featured-product-card-2 {
	background: transparent;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all 0.3s ease;
	opacity: 1;
	transform: scale(1);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.featured-product-card-2:hover .featured-product-price-2 {
	color: var(--black);
}

.featured-product-card-2:hover .featured-product-image-2 img {
	transform: scale(1.1);
}

.product-badge-2 {
	position: absolute;
	top: 0.75rem;
	left: 0.8125rem;
	padding: 0rem 0.625rem;
	border-radius: 0.125rem;
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	z-index: 1;
}

.product-badge-2.hot-2 {
	background: #ee5858;
	color: var(--white);
}

.product-badge-2.best-deals-2 {
	background: #ee5858;
	color: var(--white);
}

.product-badge-2.discount-2 {
	background: #ffc107;
	color: var(--heading-color);
}

.product-badge-2.sale-2 {
	background: #4caf50;
	color: var(--white);
}

.product-badge-2.sold-out-2 {
	left: 0.8125rem;
	color: rgb(255, 255, 255);
	background: #EFD33D;
}

.featured-product-image-2 {
	width: 100%;
	height: 8.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.75rem;
	background: var(--white);
	border-radius: 0.25rem;
	position: relative;
	transition: background 0.3s ease;
	overflow: hidden;
	align-self: center;
}

.featured-product-image-2 img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 1.75rem;
	transition: transform 0.3s ease;
}

.featured-product-hover-icons-2 {
	position: absolute;
	right: 0.75rem;
	top: 33%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.featured-product-card-2:hover .featured-product-hover-icons-2 {
	opacity: 1;
	pointer-events: auto;
}

.featured-eye-btn-2,
.featured-heart-btn-2 {
	width: 1.75rem;
	height: 1.75rem;
	background: rgba(43, 43, 43, 0.5);
	border: none;
	border-radius: 0.375rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background 0.3s ease;
	padding: 0.375rem;
	pointer-events: auto;
	overflow: visible;
}

.featured-eye-btn-2:hover,
.featured-heart-btn-2:hover {
	background: var(--secondary-one);
}

.featured-product-rating-2 {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
	width: 100%;
}

.featured-stars-2 {
	color: var(--secondary-one);
	font-size: 0.875rem;
	display: inline-flex;
	gap: 0.125rem;
}

.featured-stars-2 .star-filled-2 {
	color: var(--secondary-one);
}

.featured-stars-2 .star-empty-2 {
	color: #e0e0e0;
}

.featured-rating-count-2 {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	color: var(--search-placeholder-color);
}

.featured-product-title-2 {
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	color: var(--heading-color);
	text-align: left;
	margin-bottom: 0.5rem;
	width: 100%;
	transition: color 0.3s ease;
	text-transform: lowercase;
}

.featured-product-title a:hover {
	color: var(--black) !important;
}

.featured-product-price-2 {
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-one);
	text-align: left;
	width: 100%;
	transition: color 0.3s ease;
}

.banner-slider:not(.slick-initialized) .banner-slide:not(:first-child) {
	display: none;
}

@media (max-width: 80rem) {
	.featured-products-header-2 {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.featured-header-bottom-2 {
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}

	.featured-products-header-2 .featured-category-tabs-2 {
		flex: 1;
		margin: 0;
		justify-content: flex-start;
	}

	.browse-all-link-2 {
		flex-shrink: 0;
	}
}

@media (max-width: 64rem) {
	.featured-products-section-2 .container {
		padding: 0 1rem;
	}

	.featured-products-grid-2 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-product-card-2 {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

@media (max-width: 75rem) {
	.featured-products-wrapper-2 {
		grid-template-columns: 1fr 20.25rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-products-section-2 .container {
		padding: 0 1.25rem;
	}

	.featured-deal-card {
		grid-column: 1 / -1;
		grid-row: 1;
		width: 100%;
	}

	.deal-card {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 64rem) {

	.banner-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.banner-slide img {
		height: 25rem;
		object-fit: cover;
	}

	.side-gifs {
		flex-direction: row;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.bottom-gifs {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.banner-content {
		left: 1.875rem;
		right: 1.875rem;
		max-width: 31.25rem;
		padding: 1.5rem;
	}

	.banner-heading {
		font-size: 2rem;
		line-height: 1.2;
	}

	.banner-text {
		font-size: 0.9375rem;
		line-height: 1.5;
	}

	.banner-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}

	.service-features {
		padding: 0;
	}

	.service-features-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-feature-item {
		border-right: 1px solid rgba(20, 20, 23, 0.08);
		border-bottom: 1px solid rgba(20, 20, 23, 0.08);
		min-width: 0;
	}

	.service-feature-item:nth-child(2n) {
		border-right: none;
	}

	.service-feature-item:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.service-title {
		font-size: 0.875rem;
	}

	.service-desc {
		font-size: 0.75rem;
	}

	.category-showcase {
		padding: 2rem 0;
	}

	.category-showcase-heading {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}

	.category-showcase-flex {
		gap: 1.25rem;
	}

	.category-gif-item img {
		width: 5.25rem;
		padding: 0.625rem;
	}

	.category-name {
		font-size: 1rem;
	}

	.category-gif-item {
		flex: 0 0 calc(20% - 0.5rem);
	}

	.featured-promo-banner {
		min-height: 37.5rem;
		height: auto;
	}

	.promo-banner-content {
		padding: 1.5rem;
	}

	.promo-banner-title {
		font-size: 1.125rem;
	}

	.promo-banner-discount {
		font-size: 2.25rem;
	}

	.featured-products-section .container {
		padding: 0 1.25rem;
	}

	.featured-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
		width: 100%;
		box-sizing: border-box;
		min-width: 0;
	}

	.featured-product-card {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}

	.banner-promo {
		padding: 2rem 0;
	}

	.banner-promo-flex {
		gap: 1.25rem;
	}

	.background-content-wrapper {
		max-width: 31.25rem;
	}

	.background-heading {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.background-content-list li {
		font-size: 1.125rem;
	}

	.product-showcase-section .container {
		padding: 0 0.75rem;
	}

	.product-showcase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		box-sizing: border-box;
		gap: 1.25rem;
	}

	.product-boxes {
		padding: 0;
	}

	.product-showcase-column {
		width: 100%;
		box-sizing: border-box;
		min-width: 0;
	}

	.product-box {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	#checkout-cart {
		margin-top: 4.375rem !important;
	}

	#product-search {
		margin-top: 6.25rem !important;
	}
}

@media (max-width: 62rem) {
	.deal-card {
		width: calc(50% - 0rem);
	}

	.featured-products-wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-products-content {
		width: 100%;
		box-sizing: border-box;
		min-width: 0;
		overflow: hidden;
	}

	.featured-products-section .container {
		padding: 0 1.25rem;
	}

	.featured-products-wrapper-2 {
		grid-template-columns: 1fr;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-products-section-2 .container {
		padding: 0 1.25rem;
	}

	.best-deals-section .container {
		padding: 0 1.25rem;
	}

	.featured-deal-card {
		grid-column: 1 / -1;
		grid-row: 1;
		width: 100%;
	}

	.deal-card {
		grid-column: auto;
		grid-row: auto;
	}

	.promo-banner-image {
		align-items: center !important;
	}

	.shop-cat {
		padding: 3.75rem 0;
	}

	.featured-promo-banner {
		min-height: auto !important;
	}
}

@media (max-width: 48rem) {

	.banner-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.side-gifs {
		gap: 1rem;
	}

	.banner-content {
		left: 0;
		right: 1rem;
		max-width: none;
		text-align: left;
		padding: 1.25rem;
	}

	.banner-heading {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
		line-height: 1.2;
	}

	.banner-text {
		font-size: 0.8125rem;
		margin-bottom: 1rem;
		line-height: 1.4;
	}

	.banner-btn {
		padding: 0.625rem 1.125rem;
		font-size: 0.75rem;
	}

	.banner-slide img {
		height: 18.75rem;
		object-fit: cover;
	}

	.banner-slider .slick-dots {
		left: 1.5rem;
		bottom: 1rem;
	}

	.service-features {
		padding: 0;
	}

	.service-features-row {
		grid-template-columns: 1fr;
	}

	.service-feature-item {
		width: 100%;
		justify-content: flex-start;
		padding: 1rem 1.25rem;
		border-right: none;
		border-bottom: 1px solid rgba(20, 20, 23, 0.08);
	}

	.service-feature-item:last-child {
		border-bottom: none;
	}

	.service-title {
		font-size: 0.875rem;
	}

	.service-desc {
		font-size: 0.75rem;
	}

	.category-showcase {
		padding: 1.5rem 0;
	}

	.category-showcase-heading {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}

	.category-showcase-flex {
		gap: 1rem;
	}

	.best-deals-section {
		padding: 2.5rem 0;
	}

	.deals-grid {
		flex-direction: column;
	}

	.best-deals-section .container {
		padding: 0 1.25rem;
	}

	.deals-header {
		flex-wrap: wrap;
		gap: 1.5rem;
	}

	.deals-title {
		font-size: 2rem;
	}

	.deals-timer {
		flex: 1;
		min-width: 12.5rem;
	}

	.all-products-link {
		font-size: 1.125rem;
	}

	.featured-deal-card {
		grid-column: 1 / -1;
		width: 100%;
		max-width: 100%;
	}

	.deal-card {
		max-width: 100%;
		grid-column: auto;
	}

	.timer-boxes {
		padding: 0.375rem 0.625rem;
	}

	.timer-value {
		font-size: 0.875rem;
	}

	.deal-image img {
		padding: 1rem;
	}

	.featured-products-section .container {
		padding: 0 1.25rem;
	}

	.featured-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-products-title,
	.featured-products-title-2,
	.shop-cat-top .shop-cat-title,
	.deals-title {


		font-size: 1.563rem;
	}


	.featured-header-bottom {
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
	}

	.featured-products-content,
	.featured-products-header,
	.featured-header-bottom,
	.featured-category-tabs {
		width: 100%;
		box-sizing: border-box;
		min-width: 0;
	}

	.featured-category-tabs {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.browse-all-link,
	.browse-all-link-2 {
		align-self: center;
	}

	.background-heading {
		font-size: 1.625rem;
		line-height: 1.875rem;
	}

	.background-content-list li,
	.background-btn {
		font-size: 1rem;
	}

	.featured-products-wrapper,
	.featured-products-wrapper-2 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-promo-banner {
		min-height: 21.875rem;
	}

	.featured-promo-banner-2 {
		min-height: 12.5rem;
		padding: 1.25rem;
	}

	.promo-banner-discount-2,
	.promo-banner-main-title-2 {
		font-size: 1.25rem;
	}

	.featured-product-card-2,
	.product-box {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
		gap: 0.75rem;
	}

	.product-showcase-section {
		padding: 2rem 0;
	}

	.product-showcase-section .container,
	.featured-products-section-2 .container {
		padding: 0 1.25rem;
	}

	.product-showcase-grid,
	.product-showcase-column,
	.featured-products-grid-2 {
		width: 100%;
		box-sizing: border-box;
	}

	.featured-products-grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.product-box-image {
		width: 3.75rem;
		height: 3.75rem;
		flex-shrink: 0;
	}

	.product-column-title {
		font-size: 1.25rem;
	}

	.bottom-gifs {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 30rem) {

	.featured-products-grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-product-card-2 {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}

	.featured-product-image-2 {
		height: 6.25rem;
	}

	.featured-product-title-2 {
		font-size: 0.875rem;
	}

	.featured-product-price-2 {
		font-size: 0.75rem;
	}

	.bottom-gifs {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.bottom-gif-item {
		width: 100%;
	}

	.bottom-gif-item img {
		width: 100%;
		height: 100%;
	}

	.service-features {
		padding: 1.25rem 0;
	}

	.category-showcase {
		padding: 1.25rem 0;
	}

	.category-showcase-heading {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}

	.category-showcase-flex {
		gap: 1rem;
	}

	.category-gif-item {
		flex: 0 0 25%;
	}

	.banner-promo {
		padding: 1.5rem 0;
	}

	.banner-promo-flex {
		flex-direction: column;
		gap: 1rem;
	}

	.banner-promo {
		padding: 1.25rem 0;
	}

	.banner-promo-flex {
		gap: 0.75rem;
	}

	.service-icon .icon-img {
		width: 2.25rem;
		height: 2.25rem;
	}

	.product-showcase-section {
		padding: 1.5rem 0;
	}

	.product-showcase-section .container {
		padding: 0 1.25rem;
	}

	.product-showcase-grid {
		grid-template-columns: 1fr;
		width: 100%;
		box-sizing: border-box;
	}

	.product-showcase-column {
		width: 100%;
		box-sizing: border-box;
		min-width: 0;
	}

	.product-column-title {
		font-size: 1.125rem;
	}

	.product-box {
		padding: 0.75rem;
		gap: 0.75rem;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.product-box-image {
		width: 3.75rem;
		height: 3.75rem;
		flex-shrink: 0;
	}

	.product-box-name {
		font-size: 0.8125rem;
	}

	.product-box-price {
		font-size: 0.875rem;
	}

	.featured-deal-card {
		margin-left: 0;
	}

	.best-deals-section {
		padding: 1.5rem 0;
	}

	.best-deals-section .container {
		padding: 0 1.25rem;
	}

	.deals-header {
		/* flex-direction: column; */
		align-items: flex-start;
		gap: 1rem;
	}

	.deals-title {
		margin-right: 0;
		margin-bottom: 0;
	}

	.deals-timer {
		justify-content: flex-start;
		width: 100%;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.timer-label,
	.timer-value,
	.timer-separator {
		font-size: 0.75rem;
	}

	.timer-separator {
		margin: 0 0.125rem;
	}

	.timer-boxes {
		padding: 0.375rem 0.625rem;
	}

	.all-products-link {
		font-size: 1rem;
		align-self: flex-start;
	}

	.all-products-link .arrow svg {
		width: 1rem;
		height: 1rem;
	}

	.featured-deal-card {
		grid-row: span 1;
		max-width: 100%;
	}

	.featured-image {
		height: 12.5rem;
	}

	.deal-image {
		height: 100%;
	}

	.deal-card {
		max-width: 100%;
		width: 100%;
	}

	.featured-products-section {
		padding: 2rem 0;
	}

	.featured-products-section .container {
		padding: 0 1.25rem;
	}

	.featured-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
		width: 100%;
		box-sizing: border-box;
	}

	.featured-product-card {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}

	.featured-product-image {
		height: 6.25rem;
	}

	.featured-product-title {
		font-size: 0.875rem;
	}

	.featured-product-price {
		font-size: 0.75rem;
	}

	.promo-banner-content {
		padding: 1.25rem 1rem;
	}

	.promo-banner-discount {
		font-size: 2rem;
	}

	.promo-banner-subtitle {
		font-size: 0.875rem;
	}

	.featured-category-tabs {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 0.375rem;
	}

	.category-tab {
		white-space: nowrap;
		font-size: 0.75rem;
		padding: 0.375rem 0.75rem;
	}

	.category-tab-2 {
		font-size: 0.75rem;
	}

	.promo-banner-actions-2 {
		flex-wrap: wrap;
	}

	.add-to-cart-btn {
		padding: 0.4375rem 1.25rem;
	}
}

.shop-banner-part {
	padding: 1.625rem 0 5rem 0;
	margin: 10.5625rem 0 0 0;
}


.shop-banner-part .container {
	max-width: 88.125rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.page-breadcrumb ul {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.page-breadcrumb ul li span {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
}

.page-breadcrumb ul li a {
	color: #717171;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
	text-decoration: none;
}

.page-breadcrumb ul li a:hover {
	color: #1f1f1f;
}

.page-breadcrumb ul li .icon {
	color: #717171;
}

.shop-banner {
	background-image: url("../image/catalog/shop-banner.png");
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 1.25rem;
	padding: 0 5rem;
	min-height: 23rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-size: cover;
}

.shop-banner h1 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 4.75rem;
	margin-bottom: 0;
	text-transform: capitalize;
}

.shop-product {
	padding-bottom: 7.5rem;
}

.shop-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 1.875rem;
	column-gap: 1.25rem;
}

.shop-products-wrap.dropdown-open .shop-products {
	grid-template-columns: repeat(3, 1fr);
}

.shop-products-wrap.dropdown-open .shop-products.grid-5 {
	grid-template-columns: repeat(3, 1fr);
}

.shop-products-wrap.dropdown-open .shop-products.grid-4 {
	grid-template-columns: repeat(3, 1fr);
}

.shop-product .container {
	max-width: 88.125rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.shop-products-wrap {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.shop-products-wrap.dropdown-open {
	display: grid;
	grid-template-columns: 20rem 3fr;
	grid-template-rows: auto 2fr;
	gap: 3.125rem;
	align-items: start;
	position: relative;
}

.shop-products-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.shop-category-products-head {
	display: flex;
	justify-content: flex-end !important;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.shop-product-box-img .slick-slide.slick-active,
.shop-product-box-img .slick-slide.slick-current {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	opacity: 1;
	z-index: 1;
}

.shop-product-box-img .slick-slide>div {
	height: 100%;
	width: 100%;
	background-color: transparent;
}

.shop-product-box-img .slick-slide {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.shop-product-box-img .slick-slide.slick-active,
.shop-product-box-img .slick-slide.slick-current {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.shop-product-box-img .slick-list,
.shop-product-box-img .slick-track {
	background-color: transparent;
}

.shop-products-wrap.dropdown-open .shop-products-head {
	display: contents;
}

.shop-products-wrap.dropdown-open .shop-category-products-head {
	display: contents;
}

.shop-products-wrap.dropdown-open .shop-ct {
	grid-column: 1;
	grid-row: 1;
	align-self: start;
}

.shop-products-wrap.dropdown-open {
	position: relative;
}

.shop-products-wrap.dropdown-open .shop-fillter {
	grid-column: 2;
	grid-row: 1;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	background: transparent;
}

.shop-products-wrap.dropdown-open .shop-products {
	grid-column: 2;
	grid-row: 1;
	margin-top: 4.375rem;
	align-self: start;
}

.shop-ct {
	display: flex;
	flex-direction: column;
	gap: 1.375rem;
	width: 20.625rem;
}

.shop-ct-title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.5rem 0.625rem;
	border-radius: 0.5rem;
	border: 0.0625rem solid #ebebeb;
	cursor: pointer;
}

.shop-ct-title:hover {
	background: rgba(235, 235, 235, 0.8);
}

.shop-ct-title.active {
	background: rgba(235, 235, 235, 0.8);
}

.shot-dropdown-list li.active .has-sub,
.shot-dropdown-list li.active>a,
.shot-dropdown-list li a.active {
	color: var(--primary) !important;
}

.shot-dropdown-list li.active::marker {
	color: var(--primary) !important;
}

.shot-dropdown-list li::marker {
	font-size: 1.5625rem !important;
}

.shop-ct-title h3 {
	margin: 0;
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.625rem;
	font-weight: 600;
}

.shop-ct-dropdown {
	border-radius: 0.5rem;
	background: var(--white);
	box-shadow: 0 0.25rem 2.25rem 0 rgba(0, 0, 0, 0.1);
	padding: 1.25rem;
}

.shot-dropdown-list {
	padding: 0 1.25rem;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8125rem;
	list-style: disc;
}

.shot-dropdown-list li a {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-weight: 400;
	text-decoration: none;
	word-break: break-word;
}

.shot-dropdown-list li a:hover {
	color: var(--primary) !important;
}

.shot-dropdown-list li.active .has-sub:hover,
.shot-dropdown-list li.active>a:hover,
.shot-dropdown-list li a.active:hover {
	color: var(--primary-one) !important;
}

.sub-dropdown {
	margin: 0.5rem 0 0 0;
	padding: 0 0 0.875rem 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	border-bottom: 0.0625rem solid #d9d9d9;
}

.sub-dropdown li a {
	color: #1f1f1f;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.sub-dropdown li a:hover {
	color: var(--primary);
}

.sub-dropdown li a.active {
	color: var(--primary-one) !important;
}

.sub-dropdown li a.active:hover {
	color: var(--primary) !important;
}

.shop-ct-dropdown,
.sub-dropdown {
	display: none;
}

.shot-dropdown-list li.active>a {
	font-weight: 600;
}

.shot-dropdown-list li.active .sub-dropdown {
	display: flex !important;
}

.shop-products-wrap.dropdown-open .shop-fillter {
	margin-bottom: 2.5rem;
}

.shop-fillter {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.shop-fillter p {
	margin: 0;
	color: #6b6b6b;
	font-family: "Public Sans";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.625rem;
}

.short-dropdown {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	flex-wrap: wrap;
}

.short-dropdown-category {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.short-dropdown label {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
}

.short-dropdown-category label {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
	width: calc(100% - 12.8125rem) !important;
	white-space: nowrap;
}

.short-dropdown select {
	border-radius: 0.375rem;
	background: rgba(205, 205, 205, 0.2);
	color: #1e1e1e;
	font-family: "Public Sans";
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
	height: 2rem;
	padding: 0.1875rem 0.625rem;
	padding-right: 2.8125rem;
	outline: none;
	border: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3e%3cpath d='M5.3902 5.83709L9.84025 1.29221C9.94325 1.1871 10 1.04677 10 0.897152C10 0.74753 9.94325 0.607207 9.84025 0.50209L9.51261 0.167391C9.29911 -0.0503999 8.95212 -0.0503999 8.73895 0.167391L5.00207 3.98384L1.26105 0.163156C1.15804 0.0580384 1.02072 -3.92497e-07 0.874302 -3.98897e-07C0.727717 -4.05304e-07 0.590401 0.0580384 0.487312 0.163156L0.159754 0.497854C0.0567474 0.603055 -3.24905e-08 0.743295 -3.90307e-08 0.892917C-4.55708e-08 1.04254 0.0567474 1.18286 0.159754 1.28798L4.61386 5.83709C4.7172 5.94246 4.85516 6.00033 5.00183 6C5.14906 6.00033 5.28695 5.94246 5.3902 5.83709Z' fill='%234E4E4E'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: 90% center;
}

.short-dropdown-category select {
	border-radius: 0.375rem;
	background: rgba(205, 205, 205, 0.2);
	color: #1e1e1e;
	font-family: "Public Sans";
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
	height: 2rem;
	padding: 0.1875rem 0.625rem;
	padding-right: 2.8125rem;
	outline: none;
	border: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3e%3cpath d='M5.3902 5.83709L9.84025 1.29221C9.94325 1.1871 10 1.04677 10 0.897152C10 0.74753 9.94325 0.607207 9.84025 0.50209L9.51261 0.167391C9.29911 -0.0503999 8.95212 -0.0503999 8.73895 0.167391L5.00207 3.98384L1.26105 0.163156C1.15804 0.0580384 1.02072 -3.92497e-07 0.874302 -3.98897e-07C0.727717 -4.05304e-07 0.590401 0.0580384 0.487312 0.163156L0.159754 0.497854C0.0567474 0.603055 -3.24905e-08 0.743295 -3.90307e-08 0.892917C-4.55708e-08 1.04254 0.0567474 1.18286 0.159754 1.28798L4.61386 5.83709C4.7172 5.94246 4.85516 6.00033 5.00183 6C5.14906 6.00033 5.28695 5.94246 5.3902 5.83709Z' fill='%234E4E4E'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: 90% center;
	padding-block: 0 IM !important;
}

.shop-product-box {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
	width: 100%;
}

.shop-product-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.875rem;
	flex: 1;
}

.shop-product-content-top {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.shop-product-content-top h3 {
	color: var(--heading-color);
	font-family: "Public Sans";
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2rem;
	transition: color 0.3s ease;
	margin-bottom: 0 !important;
}

.shop-product-box-img:hover~.shop-product-content .shop-product-content-top h3 {
	color: var(--primary-one);
}

.shop-product-price {
	display: flex;
	gap: 1.375rem;
	align-items: center;
	flex-wrap: wrap;
}

.shop-product-ammount {
	display: flex;
	align-items: center;
	gap: 0.3125rem;
}

.shop-product-ammount p {
	color: var(--secondary);
	font-family: "Public Sans";
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.25rem;
	margin-bottom: 0 !important;
}

.shop-product-ammount del {
	color: #969696;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2.25rem;
}

.discount-badge {
	display: flex;
	padding: 0.25rem 0.5rem;
	justify-content: center !important;
	align-items: center;
	border-radius: 0.25rem;
	background: #efd33d;
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
}

.shop-product .shop-now {
	display: flex;
	padding: 0.4375rem 1rem !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 0.625rem !important;
	width: max-content !important;
	border-radius: 0.625rem !important;
	background: var(--primary) !important;
	color: var(--white) !important;
	font-family: "Public Sans" !important;
	font-size: 1.125rem !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: normal !important;
	text-decoration: none !important;
}

.shop-product .shop-now:hover {
	background: var(--secondary) !important;
	color: var(--white) !important;
}

.shop-products .shop-now {
	display: flex;
	padding: 0.4375rem 1rem !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 0.625rem !important;
	width: max-content !important;
	border-radius: 0.625rem !important;
	background: var(--primary) !important;
	color: var(--white) !important;
	font-family: "Public Sans" !important;
	font-size: 1.125rem !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: normal !important;
	text-decoration: none !important;
}

.shop-products .shop-now:hover {
	background: var(--secondary) !important;
	color: var(--white) !important;
}

.shop-product-box-img .shop-now:hover {
	background: var(--secondary) !important;
	color: var(--white) !important;
}

.shop-product-box-img {
	position: relative;
	border-radius: 0;
	margin-bottom: 0 !important;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	height: 20.625rem;
}

.shop-product-box-img .slide {
	height: 20.625rem;
	background-size: cover;
	background-position: center;
	border-radius: 0;
	width: 100%;
}

.shop-product-box-img .slick-track,
.shop-product-box-img .slick-list {
	width: 100% !important;
}

.shop-product-box-img .slick-slide {
	width: 100% !important;
}

.shop-product-box-img .badge {
	display: flex;
	padding: 0.3125rem 0.625rem;
	align-items: center;
	justify-content: center;
	border-radius: 0.125rem;
	font-family: "Public Sans";
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1rem;
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	transition: all 0.3s ease;
	z-index: 2 !important;
}

.shop-product-box-img .badge.off {
	background-color: #efd33d;
	color: var(--heading-color);
}

.shop-product-box-img .sale {
	background-color: #2db224;
	color: var(--white);
}

.shop-product-box-img .sold {
	background-color: #929fa5;
	color: var(--white);
}

.product-action {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.product-action svg:hover rect {
	fill: var(--secondary) !important;
	fill-opacity: 1 !important;
}

.product-action svg:hover {
	fill: var(--secondary) !important;
}

.product-nav {
	position: absolute;
	top: 0;
	right: 1.25rem;
	left: 1.25rem;
	bottom: 0;
	display: none;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	height: max-content;
	margin: auto;
}

.product-nav .nav-prev:hover path,
.product-nav .nav-next:hover path {
	fill: var(--secondary) !important;
}

.shop-product-box-img .shop-now {
	display: none;
	padding: 0.4375rem 1rem;
	justify-content: center;
	align-items: center;
	border-radius: 0.625rem;
	background: var(--primary-one);
	color: var(--white);
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 700;
	position: absolute;
	bottom: 1.25rem;
	left: 0;
	right: 0;
	width: max-content;
	margin: 0 auto;
	text-decoration: none;
	transition: all 0.3s ease;
}

.shop-product-box-img .slick-dots {
	transition: all 0.3s ease;
	position: absolute;
	bottom: 1.25rem;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	padding: 0.625rem 0.375rem;
	background: rgba(0, 0, 0, 0.65);
	border-radius: 2.5rem;
	backdrop-filter: blur(0.375rem);
	width: 3.3125rem;
	margin: 0 auto;
}

.shop-product-box-img .slick-dots[style*="display: none"],
.shop-product-box-img .slick-dots.hidden {
	display: none !important;
}

.shop-product-box-img .slick-dots li {
	margin: 0;
	height: auto;
	width: auto;
}

.shop-product-box-img .slick-dots li:nth-child(n + 4) {
	display: none !important;
}

.shop-product-box-img .slick-dots li button {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	font-size: 0;
	padding: 0;
	background: var(--white);
	opacity: 1;
	border: 0;
	transition: 0.3s ease;
}

.shop-product-box-img .slick-dots li button::before {
	display: none;
}

.shop-product-box-img .slick-dots li.slick-active button {
	background: #c82828;
}

.shop-product-box-img:hover .badge {
	display: flex;
}

.shop-product-box-img:hover .product-action {
	display: flex;
}

.shop-product-box-img.has-multiple-images:hover .product-nav {
	display: flex;
}

.shop-product-box-img:hover .shop-now {
	display: flex;
}

.shop-product-box-img:hover .slick-dots {
	bottom: 3.75rem;
}

.shop-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.375rem !important;
	margin-top: 4.5625rem !important;
	grid-column: span 3 / span 3;
	grid-row-start: 2;
}

.shop-pagination.hidden,
.shop-pagination[style*="display: none"] {
	display: none !important;
}

.shop-pagination ul.pagination {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0.375rem;
	justify-content: center;
	align-items: center;
}

.shop-pagination ul.pagination li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.shop-pagination ul.pagination li a,
.shop-pagination ul.pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 34px;
	color: #2c2c2e !important;
	text-decoration: none !important;
	font-family: "Public Sans";
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
	border-radius: 8px;
	border: 1px solid transparent;
}

.shop-pagination ul.pagination li:hover a,
.shop-pagination ul.pagination li:hover span {
	background-color: #C13538 !important;
	color: #fff !important;
}

.shop-pagination ul.pagination li.page-ellipsis span,
.shop-pagination ul.pagination li.page-ellipsis:hover span {
	border-color: #cfd6dc !important;
	cursor: default;
}

.shop-pagination ul.pagination li.page-ellipsis:hover span {
	color: #fff !important;
}

.shop-pagination ul.pagination li.page-ellipsis span {
	color: #848688 !important;
	cursor: default;
	letter-spacing: 1px;
}

.shop-pagination ul.pagination li.disabled a {
	opacity: .45;
}

.shop-pagination ul.pagination li.disabled:hover a {
	border-color: #cfd6dc !important;
}

.shop-pagination ul.pagination li.disabled span {
	color: #2c2c2e !important;
}

/* Previous / Next must grow to fit their label at every breakpoint
(the responsive rules below pin every li to a fixed square width). */
.shop-pagination ul.pagination li.page-prev,
.shop-pagination ul.pagination li.page-next {
	width: auto !important;
	min-width: 2.5rem;
	padding: 0 16px !important;
}

/* ── Dark mode pagination ── */
[data-theme="dark"] .shop-pagination ul.pagination li {
	background: #1a1a1c !important;
	border-color: rgba(255, 255, 255, 0.16) !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li a,
[data-theme="dark"] .shop-pagination ul.pagination li span {
	background: #222238 !important;
	border-color: #3a3a52 !important;
	color: #e0e0e6 !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li:hover {
	border-color: #E0524F !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li:hover a,
[data-theme="dark"] .shop-pagination ul.pagination li:hover span {
	color: #E0524F !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li.active,
[data-theme="dark"] .shop-pagination ul.pagination li.active:hover {
	background: #E0524F !important;
	border-color: #E0524F !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li.active span,
[data-theme="dark"] .shop-pagination ul.pagination li.active:hover span {
	color: #fff !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li.page-ellipsis span {
	color: #8a8a8e !important;
}

[data-theme="dark"] .shop-pagination ul.pagination li.disabled span {
	color: #e4e4e7 !important;
}

.coming-soon-empty {
	text-align: center;
	padding: 5rem 1.25rem;
	width: 100%;
	min-height: 25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.coming-soon-empty>div {
	max-width: 31.25rem;
	margin: 0 auto;
}

.coming-soon-empty svg {
	margin: 0 auto 1.875rem;
	display: block;
	opacity: 0.4;
}

.coming-soon-empty h3 {
	font-size: 1.75rem;
	font-weight: 600;
	color: #1f1f1f;
	margin: 0 0 0.9375rem 0;
}

.coming-soon-empty p {
	font-size: 1rem;
	color: #717171;
	margin: 0 0 2.1875rem 0;
	line-height: 1.6;
}

.coming-soon-empty a {
	display: inline-block;
	padding: 0.875rem 2.1875rem;
	background-color: var(--primary-one);
	color: white !important;
	text-decoration: none;
	border-radius: 0.375rem;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s;
}

.coming-soon-empty a:hover {
	background-color: #b8321f !important;
	transform: translateY(-0.125rem);
}

.thumbnail-slider .slick-slide {
	margin-right: 0.625rem;
}

.product-top {
	padding: 1.625rem 0 3.375rem 0;
}

.product-top .container {
	max-width: 88.125rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.page-breadcrumb ul {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	flex-wrap: wrap;
}

.page-breadcrumb ul li span {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 12px;
	font-weight: 400;
}

.page-breadcrumb ul li a {
	color: #717171;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
	text-decoration: none;
}

.page-breadcrumb ul li a:hover {
	color: #1f1f1f;
}

.page-breadcrumb ul li .icon {
	color: #717171;
}

.page-breadcrumb ul li>.icon {
	margin: 0 5px;
}

.product-details {
	padding: 0 0 5rem 0;
}

.product-details .container {
	max-width: 88.125rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.product-details-wrap {
	display: flex;
	gap: 5rem;
	align-items: flex-start;
}

.product-details-left {
	max-width: 30rem;
	width: 100%;
}

.product-image-slider {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.main-slider {
	max-width: 30rem;
	width: 100%;
	margin-bottom: 1.25rem;
}

.main-slider .slick-track {
	display: flex;
	align-items: center;
}

.main-slider .slide-item {
	position: relative;
	height: auto;
	max-height: 30rem;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 0.5rem;
	flex-shrink: 0;
}

.main-slider:not(.slick-initialized) .slide-item {
	width: 100%;
	display: block;
}

.main-slider .slide-item img {
	width: 100%;
	height: auto;
	max-height: 30rem;
	object-fit: contain;
	cursor: pointer;
	display: block;
}

.thumbnail-slider {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	flex: 1;
}

.thumbnail-slider .slick-list {
	margin: 0;
	overflow: hidden;
	width: 100%;
	padding: 0.25rem 0.1875rem;
}

.thumbnail-slider .slick-track {
	align-items: center;
	gap: 0;
}

.thumbnail-slider .slick-slide {
	flex-shrink: 0;
	box-sizing: border-box;
}

.thumbnail-slider .slick-cloned .thumbnail-item {
	width: 5rem;
	margin-right: 0.625rem;
}

.thumbnail-slider .thumbnail-item:last-child {
	margin-right: 0;
}

.thumbnail-slider .thumbnail-item {
	cursor: pointer;
	outline: none;
	flex-shrink: 0;
	margin-right: 0.625rem;
	width: 5rem;
	display: block;
	box-sizing: border-box;
}

.thumbnail-slider .thumbnail-item img {
	border-radius: 0.625rem;
	border: 0.125rem solid transparent;
	transition: all 0.3s ease;
	object-fit: cover;
	display: block;
	box-sizing: border-box;
}

.thumbnail-slider .slick-slide.slick-current .thumbnail-item img,
.thumbnail-slider .slick-slide.slick-current img {
	border: 0.125rem solid #dc3545 !important;
	border-radius: 0.625rem !important;
}

.thumbnail-slider .slick-slide.slick-active.slick-current .thumbnail-item img,
.thumbnail-slider .slick-slide.slick-active.slick-current img {
	border: 0.125rem solid #dc3545 !important;
	border-radius: 0.625rem !important;
}

.thumbnail-slider .slick-slide.slick-current-active .thumbnail-item img,
.thumbnail-slider .thumbnail-item:hover img {
	border-color: #dc3545;
	border-width: 0.125rem;
	border-radius: 0.625rem;
}

.thumbnail-slider .slick-slide.slick-current,
.thumbnail-slider .slick-slide.slick-current-active {
	padding: 0;
}

.main-slider .slick-prev,
.main-slider .slick-next {
	display: none !important;
}

.thumbnail-slider .slick-prev,
.thumbnail-slider .slick-next {
	display: none !important;
}

.main-nav-prev,
.main-nav-next {
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	background: rgba(31, 31, 31, 0.1);
	height: 2.875rem;
	width: 2.875rem;
	min-width: 2.875rem;
	flex-shrink: 0;
	cursor: pointer;
	position: relative;
	z-index: 10;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transition: all 0.3s ease;
}

.main-nav-prev:hover,
.main-nav-next:hover {
	background-color: var(--primary-one);
}

.main-nav-prev:hover svg path,
.main-nav-next:hover svg path {
	fill: var(--white);
}

.thumbnail-slider .main-nav-prev,
.thumbnail-slider .main-nav-next {
	display: flex !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.product-image-slider-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.625rem;
	width: 100%;
	position: relative;
	overflow: visible;
}

.product-details-right {
	max-width: 53.125rem;
	width: 100%;
}

.product-info {
	width: 100%;
}

.product-title-section {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 0.9375rem;
}

.product-title {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 0;
}

.favorite-btn {
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	background: #fcf0ee;
	min-width: 2.9375rem;
	height: 2.9375rem;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.stars {
	display: flex;
	gap: 0.0625rem;
}

.star {
	font-size: 1.25rem;
	color: #ddd;
	line-height: 1;
}

.star.filled {
	color: #ffc107;
}

.review-count {
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.write-review-btn {
	display: flex;
	padding: 0.25rem 0.625rem;
	align-items: center;
	gap: 0.625rem;
	border-radius: 0.375rem;
	background: #FCF0EE;
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border: none;
	cursor: pointer;
	margin-left: 1.25rem;
}

.product-code {
	margin-bottom: 1.875rem;
}

.product-code span {
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #808284;
}

.available-options {
	margin-bottom: 1.25rem;
}

.section-title {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.625rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.25rem;
	margin-bottom: 1.25rem;
}

.options-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
	gap: 0.9375rem;
}

.option-checkbox {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 0.75rem;
	border-radius: 0.75rem;
	border: 0.0625rem solid rgba(189, 0, 40, 0.4);
	background: var(--white);
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

.option-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.option-checkbox:has(input[type="checkbox"]:checked) {
	background: rgba(189, 0, 40, 0.08);
	border-color: rgba(189, 0, 40, 0.6);
}

.option-checkbox input[type="checkbox"]:checked~.option-label {
	color: #1f1f1f;
	font-weight: 600;
}

.checkbox-custom {
	width: 0.75rem;
	height: 0.75rem;
	border: 0.125rem solid var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s;
	position: relative;
}

.checkbox-custom::after {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0;
	transition: opacity 0.3s;
}

.option-checkbox input[type="checkbox"]:checked+.checkbox-custom {
	background: var(--white);
	border-color: var(--primary);
}

.option-checkbox input[type="checkbox"]:checked+.checkbox-custom::after {
	opacity: 1;
	background: var(--primary);
}

.option-label {
	color: #6b6b6b;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.option-checkbox input[type="checkbox"]:checked~.option-label {
	color: #1f1f1f;
	font-weight: 400;
}

.option-checkbox:hover {
	background: rgba(189, 0, 40, 0.08);
}

.option-radio {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.75rem;
	border-radius: 0.75rem;
	border: 0.0625rem solid rgba(189, 0, 40, 0.4);
	background: var(--white);
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

.option-radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.option-radio:has(input[type="radio"]:checked) {
	background: rgba(189, 0, 40, 0.08);
	border-color: #C0202666;
}

.radio-custom {
	width: 0.75rem;
	height: 0.75rem;
	border: 0.125rem solid var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s;
	position: relative;
	background: var(--white);
}

.radio-custom::after {
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0;
	transition: opacity 0.3s;
}

.option-radio input[type="radio"]:checked+.radio-custom {
	background: var(--white);
	border-color: var(--primary);
}

.option-radio input[type="radio"]:checked+.radio-custom::after {
	opacity: 1;
	background: var(--primary);
}

.option-radio .option-label {
	color: #6b6b6b;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.option-radio input[type="radio"]:checked~.option-label {
	color: #1f1f1f;
	font-weight: 400;
}

.option-radio:hover {
	background: rgba(189, 0, 40, 0.08);
}

.option-radio input[type="radio"]:checked~.option-label {
	color: #1f1f1f;
	font-weight: 500;
}

.price-section {
	margin-bottom: 1.875rem;
}

.order-col.price {
	opacity: 1 !important;
}

.login-price-link {
	color: var(--primary) !important;
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.login-price-link:hover {
	text-decoration: none;
}

.your-order {
	margin-bottom: 3.75rem;
}

.table-wrapper {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: auto;
	max-height: 50rem;
	-webkit-overflow-scrolling: touch;
	border: 0.0625rem solid #c5c5c5;
	border-radius: 0.625rem;
}

.order-table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	border: none;
	border-radius: 0;
	overflow: visible;
	table-layout: fixed;
}

.order-table th,
.order-table td {
	width: 25%;
}

.order-table thead {
	background: #FDDBC2;
	position: sticky;
	top: 0;
	z-index: 10;
}

.order-table-header {
	background: #FDDBC2;
	position: sticky;
	top: 0;
	z-index: 10;
}

.order-table-header th {
	padding: 0.75rem 1.25rem;
	color: #191C1F;
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	text-align: left;
	border-bottom: 0.0625rem solid #c5c5c5;
}

.order-table-row {
	background: #FEF9F2 !important;
	border-bottom: 0.0625rem solid #FDE7DA;
}

.order-table-row:last-child {
	border-bottom: none;
}

#your-order-section .table-wrapper {
	border: none !important;
}

.order-table-row td {
	padding: 0.5625rem 1.25rem;
	vertical-align: middle;
	color: #1F1F1F;
	border-right: 0.0625rem solid #FDE7DA;
}

.order-table-header th {
	border-right: 0.0625rem solid #FDE7DA;
	border-bottom: 0;
}

.order-table-header:last-child th {
	border-right: none;
}

.order-col {
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
}

.order-table-row.disabled {
	opacity: 0.9;
}

.order-table-row.disabled .order-col.stock {
	color: #808284;
	font-weight: 500;
}

.quantity-control.disabled {
	opacity: 0.5;
	pointer-events: none;
	cursor: not-allowed;
}

.quantity-control.disabled .qty-input {
	background-color: #f5f5f5;
	cursor: not-allowed;
}

.quantity-control.disabled .qty-btn {
	cursor: not-allowed;
	opacity: 0.5;
}

.quantity-control {
	display: flex;
	align-items: center;
	gap: 0;
	border: 0.0625rem solid #C0202666;
	border-radius: 0.25rem;
	background: transparent;
	overflow: hidden;
	max-width: 6.25rem;
	width: 100%;
	margin: auto;
}

.option.quantity {
	margin-bottom: 0.625rem;
}

.qty-input {
	flex: 1;
	width: 100%;
	height: 2.5rem;
	border: none;
	border-radius: 0;
	text-align: left;
	padding: 0 0.75rem;
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.25rem;

	appearance: textfield;
	-moz-appearance: textfield;
	background: transparent;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-input:focus,
.qty-input.form-control:focus {
	outline: none;
	border-color: transparent !important;
	box-shadow: none !important;
}

.qty-spinner {
	display: flex;
	flex-direction: column;
	width: 2rem;
}

.qty-btn {
	width: 100%;
	height: 1.25rem;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	padding: 0;
	color: #6b6b6b;
	flex: 1;
}

.qty-btn svg {
	width: 0.75rem;
	height: 0.75rem;
}

.action-buttons {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	flex-wrap: wrap;
}

.btn-add-cart {
	display: flex;
	height: 3.75rem;
	padding: 0.9375rem 2.25rem;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	border-radius: 0.625rem;
	border: 0.0625rem solid var(--primary);
	color: var(--primary);
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	background-color: var(--white);
	cursor: pointer;
	transition: background 0.3s;
}

.btn-add-cart[disabled],
.btn-add-cart:disabled {
	display: none !important;
}

.btn-add-cart:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--white) !important;
}

.btn-add-cart:hover svg path {
	stroke: var(--white);
}

.btn-compare {
	gap: 0.625rem;
	height: 3.75rem;
	background: #FCF0EF !important;
	border: none !important;
}

.btn-compare:hover {
	background-color: var(--primary-one) !important;
}

.btn-compare svg path {
	fill: var(--primary);
}

.btn-compare:hover {
	border-color: var(--primary);
}

.btn-compare:hover svg path {
	fill: var(--white);
}

.btn-primary:hover .fa-shopping-cart {
	color: var(--white);
}

.description-section {
	padding: 0 0 2.5rem 0;
}

.description-section .container {
	max-width: 88.125rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.description-content {
	border-radius: 0.625rem;
	border: 0.0625rem solid #D9666B;
	background: rgba(246, 246, 246, 0.6);
}

.description-content-wrap {
	padding: 2.5rem 2.5rem 6rem 2.5rem;
}
#common-success .buttons a.btn {
	font-size: 16px !important;
    padding: 10px 20px;
}

/* ===== Brands Directory — modern card grid (override) ===== */
#product-manufacturer .brand-wrap {
	padding: 1.75rem 0 2rem !important;
}

#product-manufacturer .brand-wrap h2.brand-letter {
	margin: 0 !important;
	line-height: 1 !important;
	font-size: 0 !important;
}

#product-manufacturer .brand-wrap h2.brand-letter .brand-letter-badge {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.75rem;
	border-radius: 0.625rem;
	background: linear-gradient(135deg, #c12127 0%, #bd0028 100%) !important;
	color: #fff !important;
	font-family: "Public Sans" !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	box-shadow: 0 0.25rem 0.75rem rgba(193, 33, 39, 0.22);
}

#product-manufacturer .brand-card-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
	gap: 0.875rem;
	width: 100%;
}

#product-manufacturer .brand-name-cell {
	display: block;
	min-width: 0;
}

#product-manufacturer .brand-name-cell a.brand-card {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 3.625rem;
	padding: 0.875rem 1.125rem;
	border: 0.0625rem solid #e4e7e9;
	border-radius: 0.75rem;
	background: #fff;
	color: #1f1f1f !important;
	font-family: "Public Sans" !important;
	font-size: 1.0625rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

#product-manufacturer .brand-name-cell a.brand-card:hover {
	border-color: #c12127 !important;
	color: #c12127 !important;
	box-shadow: 0 0.5rem 1.125rem rgba(193, 33, 39, 0.14);
	transform: translateY(-0.1875rem);
}

#product-manufacturer .brand-card .brand-card-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#product-manufacturer .brand-card .brand-card-arrow {
	flex-shrink: 0;
	display: inline-flex !important;
	color: #c12127 !important;
	opacity: 0;
	transform: translateX(-0.25rem);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

#product-manufacturer .brand-card:hover .brand-card-arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 48rem) {
	#product-manufacturer .brand-wrap h2.brand-letter .brand-letter-badge {
		min-width: 2.375rem;
		height: 2.375rem;
		font-size: 1.25rem !important;
	}

	#product-manufacturer .brand-card-grid {
		grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
		gap: 0.625rem;
	}

	#product-manufacturer .brand-name-cell a.brand-card {
		min-height: 3.25rem;
		padding: 0.75rem 0.9375rem;
		font-size: 1rem !important;
	}
}
.description-title {
	color: var(--primary);
	text-align: left;
	font-family: "Public Sans";
	font-size: 1.625rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.25rem;
	padding: 1.875rem 2.5rem;
	background: #FDDBC2;
	border-radius: 0.625rem 0.625rem 0 0;
}

.product-overview h3 {
	color: #1f1f1f !important;
	text-align: left !important;
	font-family: "Public Sans" !important;
	font-size: 1.625rem !important;
	font-style: normal !important;
	font-weight: 600 !important;
	line-height: 2.25rem !important;
	text-transform: capitalize !important;
	margin-bottom: 0.9375rem !important;
}

.product-overview h4 {
	color: #1f1f1f;
	text-align: left;
	font-family: "Public Sans";
	font-size: 1.625rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.25rem;
	margin-bottom: 0.8125rem;
	margin-top: 1.875rem;
}

.product-overview {
	color: #6b6b6b;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 1.875rem;
}

.product-overview [class*="_tableWrapper"] {
	overflow: auto;
}

.description-features {
	margin-bottom: 1.875rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-overview li {
	color: #6b6b6b;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0.5rem;
	padding-left: 0.9375rem;
	position: relative;
}

.product-overview li::before {
	content: "";
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3e%3ccircle cx='3.6' cy='3.6' r='3.6' fill='%23BD0028'/%3e%3c/svg%3e");
	position: absolute;
	left: 0;
	color: var(--primary);
	height: 0.4375rem;
	width: 0.4375rem;
	line-height: 1;
	top: 0;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 9px auto 0;
	bottom: 0;
}

.product-specifications {
	margin-bottom: 0;
}

._tableContainer_80l1q_1 {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 1.25rem;
}

.spec-table {
	min-width: 37.5rem !important;
	max-width: 46.75rem !important;
	border-collapse: collapse !important;
	border: 0.0625rem solid rgba(0, 0, 0, 0.1) !important;
	border-radius: 0.625rem !important;
	overflow: hidden !important;
}

.spec-table thead {
	background: rgba(235, 235, 235, 0.8) !important;
}

._tableContainer_80l1q_1 thead tr {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1) !important;
}

.spec-header-title,
.spec-header-value {
	color: #1F1F1F !important;
	font-family: "Public Sans" !important;
	font-size: 1.25rem !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: normal !important;
	padding: 0.75rem 1.25rem !important;
	text-align: left !important;
}

.spec-header-title {
	width: 40% !important;
	background-color: #FDDBC2 !important;
}

.spec-header-value {
	width: 60%;
	background-color: #FDDBC2 !important;
}

.spec-table tbody tr {

	border-bottom: 0.0625rem solid #F2D2D4;
	background: #FFF2F0;

}

.spec-title {
	border-right: 0.0625rem solid #F2D2D4;
}

.spec-table tbody tr:nth-child(even) {
	border-bottom: 0.0625rem solid #F2D2D4;
	background: #FFF2F0
}

table tbody tr {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
	background: var(--white);
}

table tbody tr:last-child {
	border-bottom: none;
}

table tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.6);
}

.spec-title {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 0.75rem 1.25rem;
	width: 40%;
	border-bottom: 0.0625rem solid #C0202633;
	border-right: 0.0625rem solid #C0202633;
}

.spec-value {
	color: #6b6b6b;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 0.75rem 1.25rem;
}

.review-section {
	padding: 0 0 7.875rem 0;
}

.review-section .container {
	max-width: 88.125rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.review-accordion,
.description-accordion {
	border-radius: 0.625rem;
	border: 0.0625rem solid #E4E7E9;
	overflow: hidden;
	transition: background-color 0.3s ease;
}

.review-accordion.is-open {
	background: #FEF9F2;
	border: 0.0625rem solid #C0202699;
}

.review-accordion-header[aria-expanded="true"] {
	border-bottom: 0.0625rem solid #808284;
}

.review-accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.875rem;
	background: transparent;
	border: none;
	border-bottom: 0.0625rem solid transparent;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		border-bottom 0.2s ease;
}

.description-accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.875rem 2.5rem;
	margin: 0 !important;
	border-radius: 0.625rem !important;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-bottom: 1px solid #F2D2D4;
}

.review-accordion-title {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.625rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.25rem;
}

.review-accordion-icon,
.description-accordion-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 1.25rem;
	min-height: 1.25rem;
	font-size: 1.25rem;
}

.review-accordion-icon svg,
.description-accordion-icon svg {
	position: absolute;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.review-accordion-icon .icon-plus,
.description-accordion-icon .icon-plus {
	opacity: 1;
	visibility: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-accordion-icon .icon-minus,
.description-accordion-icon .icon-minus {
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-accordion-header[aria-expanded="true"] .review-accordion-icon .icon-plus,
.description-accordion-header[aria-expanded="true"] .description-accordion-icon .icon-plus {
	opacity: 0;
	visibility: hidden;
}

.review-accordion-header[aria-expanded="true"] .review-accordion-icon .icon-minus,
.description-accordion-header[aria-expanded="true"] .description-accordion-icon .icon-minus {
	opacity: 1;
	visibility: visible;
}

.review-accordion-content {
	transition: max-height 0.3s ease;
	will-change: max-height;
	overflow: hidden;
}

.review-accordion.is-open .review-accordion-content {
	overflow: visible !important;
}

.description-accordion-content {
	display: block;
	background-color: #FEF9F2;
	border-radius: 0.625rem;
}

.review-item {
	padding: 2.5rem 2.5rem 3rem 2.5rem;
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.review-item:last-child {
	border-bottom: none;
}

.review-header-info {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 3.75rem;
	margin-bottom: 0.875rem;
	flex-wrap: wrap;
}

.review-author-date {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.review-author {
	color: var(--black);
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-weight: 600;
	line-height: normal;
}

.review-date {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
	line-height: normal;
}

.review-stars {
	display: flex;
	gap: 0.125rem;
	align-items: center;
	flex-shrink: 0;
}

.review-star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
}

.review-star svg {
	width: 100%;
	height: 100%;
}

.review-star svg path {
	fill: #ffc107 !important;
}

.review-text {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
	line-height: normal;
	margin: 0;
	word-wrap: break-word !important;
}

.review-rating-stars {
	display: flex;
	align-items: center;
	gap: 0.9375rem;
	margin-top: 0.625rem;
	flex-wrap: wrap;
}

.rating-label {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 1.125rem;
	font-weight: 400;
}

.star-rating-input {
	display: flex;
	align-items: center;
	gap: 0.3125rem;
}

.star-rating-input input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.star-label {
	font-size: 2rem;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s ease;
	line-height: 1;
	user-select: none;
	display: inline-block;
}

.related-products-section {
	padding-top: 55px;
	padding-bottom: 64px;
}

.related-products-section .container {
	max-width: 88.125rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.related-products-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.related-products-title {
	color: var(--heading-color);
	text-align: center;
	font-family: "Public Sans";
	font-size: 2.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.related-products-section .shop-product-box-img:hover .product-action {
	display: flex !important;
}

.related-products-section .shop-product-box-img.has-multiple-images:hover .product-nav {
	display: flex !important;
}

.related-products-section .shop-product-box-img:hover .shop-now {
	display: flex !important;
}

.related-products-section .shop-product-box-img:hover .slick-dots {
	bottom: 4.0625rem !important;
}


.page-breadcrumb .breadcrumb {
	margin-bottom: 0;
	padding: 0;
	list-style: none;
}

.page-breadcrumb {
	margin-bottom: 12px;
}

.video-slide {
	position: relative;
	width: 100%;
}

.video-placeholder {
	position: relative;
	width: 100%;
	background: var(--black);
	overflow: hidden;
	min-height: 25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-placeholder img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
}

.video-placeholder iframe,
.video-placeholder video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	min-height: 25rem;
}

.main-slider .video-slide {
	display: block !important;
	opacity: 1 !important;
}

.main-slider .slick-slide:not(.slick-active) .video-placeholder {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.main-slider .slick-slide.slick-active .video-placeholder {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.main-slider .slick-slide:not(.slick-active) .video-placeholder iframe,
.main-slider .slick-slide:not(.slick-active) .video-placeholder video {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

.video-thumbnail-img {
	width: 100%;
	height: auto;
	display: block;
}

.video-play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.video-play-overlay:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
	position: relative;
	cursor: pointer;
	width: 100%;
}

.video-thumb-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--black);
}

.video-thumb-img {
	width: 100%;
	height: auto;
	display: block;
}

.video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	pointer-events: auto;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-play-icon {
	transform: translate(-50%, -50%) scale(1.15);
}

.video-thumbnail .video-thumb-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: background 0.3s ease;
}

.video-thumbnail:hover .video-thumb-wrapper::after {
	background: rgba(0, 0, 0, 0.1);
}

.page-breadcrumb .breadcrumb li {
	display: inline-block;
}

.page-breadcrumb .breadcrumb li a {
	color: #717171 !important;
	text-decoration: none;
}

.page-breadcrumb .breadcrumb li a:hover {
	color: #1f1f1f;
	text-decoration: underline;
}

.page-breadcrumb .breadcrumb li:last-child span {
	color: #1f1f1f;
}

.page-breadcrumb .breadcrumb li .icon {
	color: #717171;
}

._tableContainer_sk2ct_1 .group {
	overflow-x: scroll;
}

[data-cart-clear] {
	margin-right: 0.625rem;
}

.qty-checkout-error {
	background-color: #dc3545;
	color: var(--white);
	border-color: #dc3545;
	margin-bottom: 1.25rem;
}

.qty-checkout-error .close {
	color: var(--white);
	opacity: 0.8;
}

.panel-group {
	margin-bottom: 1.25rem;
}

.panel {
	margin-bottom: 1.25rem;
	background-color: var(--white);
	border: 0.0625rem solid transparent;
	border-radius: 0.25rem;
	-webkit-box-shadow: 0 0.0625rem 0.0625rem rgba(0, 0, 0, 0.05);
	box-shadow: 0 0.0625rem 0.0625rem rgba(0, 0, 0, 0.05);
}

.panel-default {
	border-color: #ddd;
}

.panel-group .panel {
	margin-bottom: 0;
	border-radius: 0.25rem;
}

.panel-group .panel-heading {
	border-bottom: 0;
}

.panel-default>.panel-heading {
	color: #333;
	background-color: #f5f5f5;
	border-color: #ddd;
}

.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1rem;
	color: inherit;
}

.panel-heading {
	padding: 0.625rem 0.9375rem;
	border-bottom: 0.0625rem solid transparent;
	border-top-left-radius: 0.1875rem;
	border-top-right-radius: 0.1875rem;
}

.collapse.in {
	display: block;
}

.panel-body {
	padding: 0.9375rem;
}

.checkbox,
.radio {
	position: relative;
	display: block;
	margin-top: 0.625rem;
	margin-bottom: 0.625rem;
}

.checkbox label,
.radio label {
	min-height: 1.25rem;
	padding-left: 1.25rem;
	margin-bottom: 0;
	font-weight: 400;
	cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 0.25rem 0 0;
	margin-top: 0.0625rem;
	line-height: normal;
}

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
	position: absolute;
	margin-top: 0.25rem;
	margin-left: -1.25rem;
}

#accordion.panel-group .panel+.panel {
	border-radius: 0.3125rem;
	margin-top: 0.9375rem;
}

#accordion .panel-heading {
	border-radius: 0;
	background: #cf0202;
}

#accordion .panel-heading .panel-title {
	font-size: 1rem;
	color: var(--white);
	font-weight: 600;
}

#accordion .panel-heading .panel-title a {
	color: var(--white);
}

.hidden-upload-form {
	display: none;
}

.customer-group-toggle {
	display: block;
}

.customer-group-toggle.hidden {
	display: none;
}

.address-form-new {
	display: block;
}

.address-form-new.hidden {
	display: none;
}

.input-group-max-width {
	max-width: 12.5rem;
}

.page-breadcrumb .breadcrumb li {
	display: inline-block;
}

.page-breadcrumb .breadcrumb li a {
	color: #717171 !important;
	text-decoration: none;
}

.page-breadcrumb .breadcrumb li a:hover {
	color: #1f1f1f;
	text-decoration: underline;
}

.page-breadcrumb .breadcrumb li:last-child span {
	color: #1f1f1f;
}

.page-breadcrumb .breadcrumb li .icon {
	color: #717171;
}

.search-options {
	margin: 0.9375rem 0;
}

.badge.coming-soon {
	background-color: var(--primary-one);
	color: white;
}

.position_one,
.position_two,
.position_three,
.position_four {
	outline: 0.125rem dashed red;
}

.image {
	position: relative;
}

.position_one {
	top: 0rem;
	position: absolute;
}

.position_one_detail {
	top: 0.3125rem;
	position: absolute;
}

.position_two_detail {
	top: 0.3125rem;
	right: 1.25rem;
	position: absolute;
}

.position_two {
	top: 0;
	right: 0.9375rem;
	position: absolute;
}

.position_three {
	left: 0rem;
	bottom: 0rem;
	position: absolute;
}

.position_four {
	bottom: 0rem;
	right: 0rem;
	position: absolute;
}

.square {
	width: 4.375rem;
	height: 4.375rem;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.rectangle {
	width: 6.25rem;
	height: 3.125rem;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.rounded_rectangle {
	width: 6.25rem;
	height: 3.125rem;
	border-radius: 0.3125rem;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.circle {
	width: 4.375rem;
	height: 4.375rem;
	background: red;
	border-radius: 50%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.oval {
	width: 6.25rem;
	height: 3.125rem;
	background: red;
	border-radius: 6.25rem / 3.125rem;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.shop-ct-dropdown {
	display: none;
}

.shop-ct-dropdown.active,
.shop-ct-dropdown.show {
	display: block !important;
}

.stock-update-badge {
	position: absolute;
	top: 0.625rem;

	background: #28a745;
	color: white;
	padding: 0.375rem 0.75rem;
	border-radius: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 10;
	text-transform: uppercase;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.stock-update-badge.stock-update-back_in_stock {
	background: #28a745;
}

.stock-update-badge.stock-update-low_stock {
	background: #ffc107;
	color: #333;
}

.stock-update-badge.stock-update-new_stock {
	background: #17a2b8;
}

.stock-update-badge.stock-update-in_stock {
	background: #007bff;
}

.stock-updates-head {
	display: flex;
	justify-content: flex-end !important;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.no-margin {
	margin: 0 !important;
}

tbody,
td,
tfoot,
th,
thead,
tr {
	vertical-align: middle;
}

.lib-list-item-product2 {
	border: none;
}

.lib-list-item-product2 .image-dev .list-button-dev {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	transform: translate3d(-50%, -50%, 0);
	-moz-transform: translate3d(-50%, -50%, 0);
	-webkit-transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0);
}

.lib-list-item-product2 .image-dev .list-button-dev li {
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
	background: #fff;
	position: relative;
	border-width: 0 0.0625rem 0 0;
	border-style: solid;
	border-color: #ddd;
	opacity: 0;
	transition:
		transform 0.2s ease-in-out,
		opacity 0.2s ease-in-out;
}

.lib-list-item-product2 .image-dev .list-button-dev li:nth-child(1) {
	transform: translateX(2.5rem);
	-moz-transform: translateX(2.5rem);
	-webkit-transform: translateX(2.5rem);
	-ms-transform: translateX(2.5rem);
	z-index: 1;
	transition-delay: 0s;
}

.lib-list-item-product2 .image-dev .list-button-dev li:nth-child(2) {
	transition-delay: 0.2s;
	z-index: 2;
}

.lib-list-item-product2 .image-dev .list-button-dev li:nth-child(3) {
	transition-delay: 0.2s;
	z-index: 2;
}

.lib-list-item-product2 .image-dev .list-button-dev li:nth-child(4) {
	transform: translateX(-2.5rem);
	-moz-transform: translateX(-2.5rem);
	-webkit-transform: translateX(-2.5rem);
	-ms-transform: translateX(-2.5rem);
	z-index: 1;
	transition-delay: 0s;
}

.lib-list-item-product2 .image-dev .list-button-dev li:first-child {
	border-left: 0.0625rem solid #ddd;
}

.lib-list-item-product2 .image-dev .list-button-dev li a,
.lib-list-item-product2 .image-dev .list-button-dev li button {
	background: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	line-height: 2.5rem;
	text-align: center;
	box-shadow: none;
	border: none;
	color: #555;
	width: 2.5rem;
	padding: 0;
}

.lib-list-item-product2 .image-dev .list-button-dev li:hover {
	background: #c12026;
}

.lib-list-item-product2 .image-dev .list-button-dev li:hover a,
.lib-list-item-product2 .image-dev .list-button-dev li:hover button {
	color: #fff;
}

.lib-list-item-product2 .caption-dev {
	text-align: center;
	padding: 0 0.9375rem;
}

.lib-list-item-product2 .caption-dev .rating-dev {
	margin: 0.3125rem 0;
}

.lib-list-item-product2 .caption-dev .rating-dev .fa-stack-2x {
	font-size: 0.6875rem;
}

.lib-list-item-product2 .caption-dev .title-dev {
	color: #444;
	font-size: 0.8125rem;
}

.lib-list-item-product2 .caption-dev .price-dev .price.product-price {
	font-size: 1rem;
}

.lib-list-item-product2 .caption-dev .price-dev .price-new {
	font-size: 1rem;
}

.lib-list-item-product2 .caption-dev .price-dev .price-old {
	font-size: 0.75rem;
}

.lib-list-item-product2 .caption-dev .add-cart-dev {
	background: #fff;
	border: 0.0625rem solid #ddd;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: #999;
	font-weight: bold;
	box-shadow: none;
	border-radius: 0;
	padding: 0.375rem 1.25rem;
	margin: 0 0 1.875rem;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}

.lib-list-item-product-over2 .image-dev .list-button-dev li {
	opacity: 1;
	transition:
		transform 0.2s ease-in-out,
		opacity 0.2s ease-in-out;
}

.lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(1) {
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transition-delay: 0.2s;
}

.lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(2) {
	transition-delay: 0s;
}

.lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(3) {
	transition-delay: 0s;
}

.lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(4) {
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transition-delay: 0.2s;
}

.lib-two-img,
.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-left .item-image .lt-image {
	position: relative;
	display: block;
}

.lib-two-img .img-1,
.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-left .item-image .lt-image .img-1 {
	opacity: 1;
	position: relative;
	transition: all 0.5s ease-in-out;
}

.lib-two-img .img-2,
.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-left .item-image .lt-image .img-2 {
	position: absolute;
	z-index: 0;
	top: 0;
	opacity: 0;
	display: block;
	transition: all 0.5s ease-in-out;
	left: 50%;
	transform: translateX(-50%);
}

.lib-two-img-over .img-1,
.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1:hover .media-left .item-image .lt-image .img-1 {
	opacity: 0;
	transform-style: inherit;
	transition: all 0.5s ease-in-out;
}

.lib-two-img-over .img-2,
.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1:hover .media-left .item-image .lt-image .img-2 {
	opacity: 1;
	transform-style: inherit;
	transition: all 0.5s ease-in-out;
}

@keyframes myeffect-slideshow {
	0% {
		opacity: 0;
		transform: translateY(-18.75rem);
		-webkit-transform: translateY(-18.75rem);
		-moz-transform: translateY(-18.75rem);
		-ms-transform: translateY(-18.75rem);
		-o-transform: translateY(-18.75rem);
	}

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

@-webkit-keyframes myeffect-slideshow {
	0% {
		opacity: 0;
		transform: translateY(-18.75rem);
		-webkit-transform: translateY(-18.75rem);
		-moz-transform: translateY(-18.75rem);
		-ms-transform: translateY(-18.75rem);
		-o-transform: translateY(-18.75rem);
	}

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

@-moz-keyframes myeffect-slideshow {
	0% {
		opacity: 0;
		transform: translateY(-18.75rem);
		-webkit-transform: translateY(-18.75rem);
		-moz-transform: translateY(-18.75rem);
		-ms-transform: translateY(-18.75rem);
		-o-transform: translateY(-18.75rem);
	}

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

.back-to-top {
	cursor: pointer;
	background-color: #777;
	width: 2.8125rem;
	bottom: 2.1875rem;
	right: 0.625rem;
	min-height: 2.625rem;
	overflow: hidden;
	z-index: 40;
	position: fixed;
	display: block;
	text-align: center;
	border-radius: 0.1875rem;
	opacity: 1;
	transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.back-to-top.hidden-top {
	bottom: -6.25rem;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.back-to-top:hover {
	background-color: #c12026;
}

.back-to-top i {
	font-size: 2.25rem;
	margin: 0.0625rem 0 0 0 !important;
	color: #fff;
	display: inline-block;
}

.social-widgets {
	overflow: visible;
	position: fixed;
	z-index: 999;
	top: 50%;
	height: 0;
	width: 0;
}

.social-widgets.socialwidgets-left {
	left: 0;
}

.social-widgets.socialwidgets-right {
	right: 0;
}

.socialwidgets-left .item {
	right: 0;
}

.socialwidgets-left .active {
	z-index: 100;
	right: -19.375rem;
}

.socialwidgets-left .tab-icon {
	right: -2.8125rem;
}

.socialwidgets-left .facebook.active {
	right: -16.25rem;
}

.socialwidgets-left .twitter.active {
	right: -18.75rem;
}

.socialwidgets-left .youtube.active {
	right: -28.125rem;
}

.socialwidgets-right .item {
	left: 0;
}

.socialwidgets-right .active {
	z-index: 100;
	left: -19.375rem;
}

.socialwidgets-right .tab-icon {
	left: -2.8125rem;
}

.socialwidgets-right .facebook.active {
	left: -16.25rem;
}

.socialwidgets-right .twitter.active {
	left: -18.75rem;
}

.socialwidgets-right .youtube.active {
	left: -28.125rem;
}

.social-widgets .item,
.social-widgets .items {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.social-widgets .items {
	top: -6.25rem;
	position: relative;
}

.social-widgets .item {
	position: absolute;
	top: 0;
}

.social-widgets .item-01 {
	top: 0;
	z-index: 99;
}

.social-widgets .item-02 {
	top: 2.8125rem;
	z-index: 98;
}

.social-widgets .item-03 {
	top: 5.625rem;
	z-index: 97;
}

.social-widgets .tab-icon .fa {
	font-size: 1.125rem;
	line-height: 2.8125rem;
}

.social-widgets .tab-icon {
	position: absolute;
	top: 0;
	display: block;
	width: 2.8125rem;
	height: 2.8125rem;
	background: #fff;
	text-align: center;
	font-size: 1.54em;
}

.social-widgets .tab-icon:hover {
	text-decoration: none;
}

.social-widgets .active .tab-icon {
	border-color: #e9e9e9;
	background: #fff;
}

.social-widgets .facebook .tab-icon {
	background: #3b5998;
	background-clip: content-box;
	color: white;
}

.social-widgets .twitter .tab-icon {
	background: #07779a;
	background-clip: content-box;
	color: white;
}

.social-widgets .youtube .tab-icon {
	background: #da2723;
	background-clip: content-box;
	color: white;
}

.social-widgets .tab-content {
	background: #fff;
	width: 19.375rem;
	padding: 0.625rem;
}

.social-widgets .active .tab-content {
	box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

.social-widgets .title {
	margin: -0.625rem -0.625rem 0.625rem;
	padding: 0 0.625rem;
	background-color: #ccc;
	text-transform: uppercase;
	line-height: 2.8125rem;
	color: #000;
	font-weight: bold;
}

.social-widgets .title h5 {
	line-height: 2.8125rem;
	margin: 0;
}

.social-widgets .facebook .tab-content {
	width: 16.25rem;
}

.social-widgets .twitter .tab-content {
	width: 18.75rem;
}

.social-widgets .twitter-widget {
	padding-top: 0.625rem;
}

.social-widgets .youtube .tab-content {
	width: 28.125rem;
}

.social-widgets .youtube .tab-content iframe {
	width: 100%;
}

.social-widgets .loading {
	min-height: 12.5rem;
	position: relative;
	z-index: 100;
}

.social-widgets .loading img.ajaxloader {
	position: absolute;
	top: 45%;
	left: 45%;
	width: 2rem;
	height: 2rem;
}

.wrapper-boxed header.navbar-compact {
	width: auto;
}

header.navbar-compact {
	position: fixed;
	width: 100%;
	z-index: 999;
	box-shadow: 0.0625rem 0.0625rem 0.3125rem rgba(0, 0, 0, 0.3);
}

header.navbar-compact .compact-hidden {
	display: none;
}

.lazy {
	display: block;
	overflow: hidden;
	background: transparent url(../../images/lazy-loader.gif) no-repeat center center;
}

.banners-effect-1 .banners>div img {
	transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
}

.banners-effect-1 .banners>div img:hover {
	opacity: 0.8;
}

.banners-effect-2 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-2 .banners>div a:hover:before,
.banners-effect-2 .banners>div a:hover:after {
	left: 0;
	opacity: 1;
}

.banners-effect-2 .banners>div a:before,
.banners-effect-2 .banners>div a:after {
	background-color: rgba(255, 255, 255, 0.4);
	display: block;
	width: 100%;
	height: 100%;
	left: -100%;
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	top: 0;
	transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	content: "";
	z-index: 1;
}

.banners-effect-3 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-3 .banners>div a:hover:before,
.banners-effect-3 .banners>div a:hover:after {
	border: 0 solid rgba(0, 0, 0, 0.7);
	opacity: 0;
	filter: alpha(opacity=0);
}

.banners-effect-3 .banners>div a:before,
.banners-effect-3 .banners>div a:after {
	border: 3.125rem solid transparent;
	border-top-right-radius: 3.125rem;
	border-top-left-radius: 3.125rem;
	border-bottom-right-radius: 3.125rem;
	border-bottom-left-radius: 3.125rem;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	top: 0;
	content: "";
	opacity: 1;
	filter: alpha(opacity=100);
	width: 6.25rem;
	height: 6.25rem;
	-webkit-transform: scale(7);
	-moz-transform: scale(7);
	-ms-transform: scale(7);
	-o-transform: scale(7);
	transform: scale(7);
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	visibility: visible;
	z-index: 1;
}

.banners-effect-4 .row-no-padding a,
.banners-effect-4 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-4 .row-no-padding a:before,
.banners-effect-4 .banners>div a:before {
	border-bottom: 3.125rem solid rgba(255, 255, 255, 0.4);
	border-top: 3.125rem solid rgba(255, 255, 255, 0.4);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	top: 0;
	transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
	-o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
	-webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
	-moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
	-ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
	-webkit-transition:
		opacity 0.35s ease 0s,
		transform 0.35s ease 0s;
	-o-transition:
		opacity 0.35s ease 0s,
		transform 0.35s ease 0s;
	transition:
		opacity 0.35s ease 0s,
		transform 0.35s ease 0s;
	transform-origin: 50% 50% 0;
	width: 100%;
}

.banners-effect-4 .row-no-padding a:hover:before,
.banners-effect-4 .banners>div a:hover:before {
	opacity: 1;
	filter: alpha(opacity=100);
	transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
	-o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
	-webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
	-moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
	-ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
}

.banners-effect-5 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-5 .banners>div a:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	border: 4.375rem solid rgba(255, 255, 255, 0);
	top: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
}

.banners-effect-5 .banners>div a:after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	opacity: 0.5;
	border: 1.875rem solid #fff;
	top: 0;
	left: 0;
	transform: scale(0);
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transition: all 0.5s ease-in-out;
}

.banners-effect-5 .banners>div a:hover:before {
	border: 0 solid rgba(255, 255, 255, 0.7);
}

.banners-effect-5 .banners>div a:hover:after {
	transform: scale(0.8);
	-moz-transform: scale(0.8);
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	opacity: 0;
	transition-delay: 0.1s;
}

.banners-effect-6 .banners>div a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: #000;
	vertical-align: top;
}

.banners-effect-6 .banners>div a img {
	backface-visibility: hidden;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition:
		opacity 1s ease 0s,
		transform 1s ease 0s;
	-o-transition:
		opacity 1s ease 0s,
		transform 1s ease 0s;
	transition:
		opacity 1s ease 0s,
		transform 1s ease 0s;
}

.banners-effect-6 .banners>div a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transform: scale3d(1.1, 1.1, 1);
}

.banners-effect-7 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-7 .banners>div a:before {
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	width: 0;
	top: 0;
	left: 50%;
	content: "";
	transition: all 0.3s ease-in-out 0s;
}

.banners-effect-7 .banners>div a:hover:before {
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
}

.banners-effect-8 .banners>div a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: #000;
	vertical-align: top;
}

.banners-effect-8 .banners>div a:before,
.banners-effect-8 .banners>div a:after {
	bottom: 1.25rem;
	content: "";
	left: 1.25rem;
	opacity: 0;
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	-webkit-transition:
		opacity 0.35s ease 0s,
		transform 0.35s ease 0s;
	-o-transition:
		opacity 0.35s ease 0s,
		transform 0.35s ease 0s;
	transition:
		opacity 0.35s ease 0s,
		transform 0.35s ease 0s;
	z-index: 1;
}

.banners-effect-8 .banners>div a:before {
	border-bottom: 0.0625rem solid #ffffff;
	border-top: 0.0625rem solid #ffffff;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform: scale(0, 1);
}

.banners-effect-8 .banners>div a:after {
	border-left: 0.0625rem solid #ffffff;
	border-right: 0.0625rem solid #ffffff;
	-webkit-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	-o-transform: scale(1, 0);
	transform: scale(1, 0);
}

.banners-effect-8 .banners>div img {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.35s ease 0s;
	-o-transition: opacity 0.35s ease 0s;
	transition: opacity 0.35s ease 0s;
}

.banners-effect-8 .banners>div a:hover:before,
.banners-effect-8 .banners>div a:hover:after {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.banners-effect-8 .banners>div a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.banners-effect-9 .banners>div a {
	display: block;
	position: relative;
	z-index: 10;
}

.banners-effect-9 .banners>div a:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: #000;
	content: "";
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	box-shadow: 0 0.1875rem 1.875rem rgba(0, 0, 0, 0.2);
	opacity: 0;
}

.banners-effect-9 .banners>div a:hover:before {
	opacity: 1;
}

.banners-effect-9 .banners>div a img {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: perspective(62.5rem) translate3d(0, 0, 0);
	transform: perspective(62.5rem) translate3d(0, 0, 0);
}

.banners-effect-9 .banners>div a:hover img {
	-webkit-transform: perspective(62.5rem) translate3d(0, 0, 1.3125rem);
	transform: perspective(62.5rem) translate3d(0, 0, 1.3125rem);
}

.banners-effect-10 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-10 .banners>div a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.2) 75%);
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.2) 75%);
	content: "";
	opacity: 0;
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
	-webkit-transition:
		opacity 0.35s,
		-webkit-transform 0.35s;
	transition:
		opacity 0.35s,
		transform 0.35s;
}

.banners-effect-10 .banners>div a:hover:before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.banners-effect-11 .banners>div a {
	display: block;
	position: relative;
	overflow: hidden;
}

.banners-effect-11 .banners>div a:hover:before,
.banners-effect-11 .banners>div a:hover:after {
	width: 100%;
	height: 100%;
}

.banners-effect-11 .banners>div a:before,
.banners-effect-11 .banners>div a:after {
	background-color: rgba(0, 0, 0, 0.15);
	content: "";
	height: 0;
	left: 0;
	margin: auto;
	position: absolute;
	width: 0;
	transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}

.banners-effect-11 .banners>div a:after {
	left: auto;
	right: 0;
	bottom: 0;
}

.banners-effect-12 .banners>div img {
	transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
}

.banners-effect-12 .banners>div img:hover {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

body>.alert {
	position: fixed;
	z-index: 10004;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-animation: alert-anim 1s cubic-bezier(1, -0.01, 0, 0.99);
	-moz-animation: alert-anim 1s cubic-bezier(1, -0.01, 0, 0.99);
	animation: alert-anim 1s cubic-bezier(1, -0.01, 0, 0.99);
}

body>.alert .alert {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
}

body>.alert .alert.fadeOut {
	top: -100%;
}

@-webkit-keyframes alert-anim {
	0% {
		top: -100%;
	}

	60% {
		top: 0;
	}

	100% {
		top: 0;
	}
}

@-moz-keyframes alert-anim {
	0% {
		top: -100%;
	}

	60% {
		top: 0;
	}

	100% {
		top: 0;
	}
}

@keyframes alert-anim {
	0% {
		top: -100%;
	}

	60% {
		top: 0;
	}

	100% {
		top: 0;
	}
}

@-webkit-keyframes alert-anim2 {
	0% {
		top: -100%;
	}

	60% {
		top: 100%;
	}

	100% {
		top: 100%;
	}
}

@-moz-keyframes alert-anim2 {
	0% {
		top: -100%;
	}

	60% {
		top: 100%;
	}

	100% {
		top: 100%;
	}
}

@keyframes alert-anim2 {
	0% {
		top: -100%;
	}

	60% {
		top: 100%;
	}

	100% {
		top: 100%;
	}
}

@-webkit-keyframes alert-icon-anim {
	0% {
		font-size: 0;
	}

	60% {
		font-size: 0;
	}
}

@-moz-keyframes alert-icon-anim {
	0% {
		font-size: 0;
	}

	60% {
		font-size: 0;
	}
}

@keyframes alert-icon-anim {
	0% {
		font-size: 0;
	}

	60% {
		font-size: 0;
	}
}

.comingsoon-page {
	background: #142326;
	padding: 7em 0;
	color: #bdbdbd;
}

.comingsoon-page .container {
	max-width: 46.875rem;
}

.comingsoon-page .comingsoon--title {
	margin: 0.5em 0 1em;
	font-size: 2.875rem;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0 1em;
}

.comingsoon-page .comingsoon--content {
	margin: 1em 0;
	font-size: 0.875rem;
}

.comingsoon-page .comingsoon--countdown {
	margin: 6em 0 8em;
}

.comingsoon-page .comingsoon--countdown .time-item {
	width: 7.8125rem;
	height: 7.8125rem;
	border: 0.1875rem solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	margin: 0 0.9375rem;
	display: inline-block;
	padding: 1.875rem;
}

.comingsoon-page .comingsoon--countdown .num-time {
	font-size: 2.5rem;
	color: #fff;
	font-weight: 700;
	line-height: 100%;
	margin: 0 0 0.3125rem 0;
}

.comingsoon-page .comingsoon--countdown .name-time {
	font-size: 1.25rem;
	text-transform: uppercase;
}

.comingsoon-page .comingsoon--newsletter {
	margin: 2em 0;
}

.comingsoon-page .comingsoon--newsletter .newsletter {
	background: none !important;
}

.comingsoon-page .comingsoon--newsletter .title-block {
	display: none;
}

.modal-content {
	box-shadow: none;
	border-radius: 0;
	border: none;
}

.modal-content .modal-header {
	padding: 0.625rem 0.9375rem;
}

.modal-content .modal-title {
	font-weight: normal;
}

#previewModal .cart-popup-info .product-name {
	font-size: 1.375rem;
	font-weight: 400;
}

#previewModal .cart-popup-info .price-quantity {
	font-size: 1.5rem;
	color: #555;
	font-weight: normal;
}

#previewModal .cart-popup-info .price-new {
	font-size: 1.5rem;
}

#previewModal .cart-popup-action {
	background: #f2f2f2;
	padding: 1rem 1.5rem;
	text-align: center;
	border-radius: 0.1875rem;
}

#previewModal .cart-popup-action .btn {
	display: block;
	margin: 0.625rem 0;
	border: none;
	width: 100%;
	font-size: 0.8125rem;
}

#previewModal .cart-popup-action .cart-popup-imgbottom {
	text-align: center;
	width: 100%;
	margin: 1.25rem 0;
}

#previewModal .cart-popup-action .cart-popup-imgbottom .previewCartCheckout-price {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	padding: 0.9375rem 0;
}

#previewModal .cart-popup-left {
	display: flex;
}

#previewModal .cart-popup-left .product-image {
	margin-right: 1.25rem;
}

#previewModal .close {
	border: none;
	background: transparent;
}

#previewModal .modal-header {
	flex-direction: row-reverse;
}

.mfp-close-btn-in .mfp-close {
	width: 2.25rem;
	text-align: center;
	padding: 0;
	right: 0;
}

.loaded .so-loadeding {
	display: none;
}

.so-loadeding {
	background: white url(../../images/lazy-loader.gif) no-repeat center center;
	height: 100%;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	opacity: 1;
}

.so-pre-loader {
	background: rgba(0, 0, 0, 0.5);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}

.so-pre-loader.no-pre-loader {
	background: none;
	position: absolute;
	height: auto;
}

.so-pre-loader .so-loader-background {
	background: #555;
	display: block;
	height: 100%;
}

.so-pre-loader .so-loader-center {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -1.5625rem 0 0 -1.5625rem;
}

.so-pre-loader .so-loader-line {
	background: #c12026;
	top: 0;
}

.so-pre-loader .spinner {
	width: 3.125rem;
	height: 3.125rem;
	background-color: white;
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}

.so-pre-loader .spinner-bounce {
	width: 3.75rem;
	height: 3.75rem;
	position: relative;
}

.so-pre-loader .double-bounce1,
.so-pre-loader .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: white;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2s infinite ease-in-out;
	animation: sk-bounce 2s infinite ease-in-out;
}

.so-pre-loader .double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.so-pre-loader .spinner-cube {
	width: 2.5rem;
	height: 2.5rem;
	position: relative;
}

.so-pre-loader .cube1,
.so-pre-loader .cube2 {
	background-color: white;
	width: 0.9375rem;
	height: 0.9375rem;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
	animation: sk-cubemove 1.8s infinite ease-in-out;
}

.so-pre-loader .cube2 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.so-pre-loader .spinner-bounce2 {
	width: 5rem;
	text-align: center;
}

.so-pre-loader .spinner-bounce2>div {
	width: 1.125rem;
	height: 1.125rem;
	background-color: white;
	border-radius: 100%;
	display: inline-block;
	margin: 0 0.1875rem;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.so-pre-loader .spinner-bounce2 .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.so-pre-loader .spinner-bounce2 .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

.so-pre-loader .spinner-circle {
	width: 3.75rem;
	height: 3.75rem;
	position: relative;
}

.so-pre-loader .spinner-circle .sk-child {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.so-pre-loader .spinner-circle .sk-child:before {
	content: "";
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	background-color: white;
	border-radius: 100%;
	-webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
	animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.so-pre-loader .spinner-circle .sk-circle2 {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

.so-pre-loader .spinner-circle .sk-circle3 {
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}

.so-pre-loader .spinner-circle .sk-circle4 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.so-pre-loader .spinner-circle .sk-circle5 {
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg);
}

.so-pre-loader .spinner-circle .sk-circle6 {
	-webkit-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg);
}

.so-pre-loader .spinner-circle .sk-circle7 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.so-pre-loader .spinner-circle .sk-circle8 {
	-webkit-transform: rotate(210deg);
	-ms-transform: rotate(210deg);
	transform: rotate(210deg);
}

.so-pre-loader .spinner-circle .sk-circle9 {
	-webkit-transform: rotate(240deg);
	-ms-transform: rotate(240deg);
	transform: rotate(240deg);
}

.so-pre-loader .spinner-circle .sk-circle10 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.so-pre-loader .spinner-circle .sk-circle11 {
	-webkit-transform: rotate(300deg);
	-ms-transform: rotate(300deg);
	transform: rotate(300deg);
}

.so-pre-loader .spinner-circle .sk-circle12 {
	-webkit-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	transform: rotate(330deg);
}

.so-pre-loader .spinner-circle .sk-circle2:before {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.so-pre-loader .spinner-circle .sk-circle3:before {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.so-pre-loader .spinner-circle .sk-circle4:before {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.so-pre-loader .spinner-circle .sk-circle5:before {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.so-pre-loader .spinner-circle .sk-circle6:before {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}

.so-pre-loader .spinner-circle .sk-circle7:before {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}

.so-pre-loader .spinner-circle .sk-circle8:before {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

.so-pre-loader .spinner-circle .sk-circle9:before {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}

.so-pre-loader .spinner-circle .sk-circle10:before {
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s;
}

.so-pre-loader .spinner-circle .sk-circle11:before {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}

.so-pre-loader .spinner-circle .sk-circle12:before {
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s;
}

.so-pre-loader .spinner-folding-cube {
	width: 3.125rem;
	height: 3.125rem;
	position: relative;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.so-pre-loader .spinner-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.so-pre-loader .spinner-folding-cube .sk-cube:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.so-pre-loader .spinner-folding-cube .sk-cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	transform: scale(1.1) rotateZ(90deg);
}

.so-pre-loader .spinner-folding-cube .sk-cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	transform: scale(1.1) rotateZ(180deg);
}

.so-pre-loader .spinner-folding-cube .sk-cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	transform: scale(1.1) rotateZ(270deg);
}

.so-pre-loader .spinner-folding-cube .sk-cube2:before {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.so-pre-loader .spinner-folding-cube .sk-cube3:before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.so-pre-loader .spinner-folding-cube .sk-cube4:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(7.5rem);
	}

	50% {
		-webkit-transform: perspective(7.5rem) rotateY(180deg);
	}

	100% {
		-webkit-transform: perspective(7.5rem) rotateY(180deg) rotateX(180deg);
	}
}

@keyframes sk-rotateplane {
	0% {
		transform: perspective(7.5rem) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(7.5rem) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(7.5rem) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(7.5rem) rotateX(-180.1deg) rotateY(0deg);
	}

	100% {
		transform: perspective(7.5rem) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(7.5rem) rotateX(-180deg) rotateY(-179.9deg);
	}
}

@-webkit-keyframes sk-bounce {

	0%,
	100% {
		-webkit-transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
	}

	20% {
		-webkit-transform: scaleY(1);
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}

	20% {
		transform: scaleY(1);
		-webkit-transform: scaleY(1);
	}
}

@-webkit-keyframes sk-cubemove {
	25% {
		-webkit-transform: translateX(2.625rem) rotate(-90deg) scale(0.5);
	}

	50% {
		-webkit-transform: translateX(2.625rem) translateY(2.625rem) rotate(-180deg);
	}

	75% {
		-webkit-transform: translateX(0rem) translateY(2.625rem) rotate(-270deg) scale(0.5);
	}

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

@keyframes sk-cubemove {
	25% {
		transform: translateX(2.625rem) rotate(-90deg) scale(0.5);
		-webkit-transform: translateX(2.625rem) rotate(-90deg) scale(0.5);
	}

	50% {
		transform: translateX(2.625rem) translateY(2.625rem) rotate(-179deg);
		-webkit-transform: translateX(2.625rem) translateY(2.625rem) rotate(-179deg);
	}

	50.1% {
		transform: translateX(2.625rem) translateY(2.625rem) rotate(-180deg);
		-webkit-transform: translateX(2.625rem) translateY(2.625rem) rotate(-180deg);
	}

	75% {
		transform: translateX(0rem) translateY(2.625rem) rotate(-270deg) scale(0.5);
		-webkit-transform: translateX(0rem) translateY(2.625rem) rotate(-270deg) scale(0.5);
	}

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

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes sk-circleBounceDelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-circleBounceDelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes sk-cubeGridScaleDelay {

	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}

	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@keyframes sk-cubeGridScaleDelay {

	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}

	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

@-webkit-keyframes sk-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(8.75rem) rotateX(-180deg);
		transform: perspective(8.75rem) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(8.75rem) rotateX(0deg);
		transform: perspective(8.75rem) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(8.75rem) rotateY(180deg);
		transform: perspective(8.75rem) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes sk-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(8.75rem) rotateX(-180deg);
		transform: perspective(8.75rem) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(8.75rem) rotateX(0deg);
		transform: perspective(8.75rem) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(8.75rem) rotateY(180deg);
		transform: perspective(8.75rem) rotateY(180deg);
		opacity: 0;
	}
}

.so-loadeding {
	z-index: 999;
}

body.no-bgbody {
	background-image: none;
}

.pattern-1 {
	background-image: url(../../images/patterns/1.png);
}

.pattern-2 {
	background-image: url(../../images/patterns/2.png);
}

.pattern-3 {
	background-image: url(../../images/patterns/3.png);
}

.pattern-4 {
	background-image: url(../../images/patterns/4.png);
}

.pattern-5 {
	background-image: url(../../images/patterns/5.png);
}

.pattern-6 {
	background-image: url(../../images/patterns/6.png);
}

.pattern-7 {
	background-image: url(../../images/patterns/7.png);
}

.pattern-8 {
	background-image: url(../../images/patterns/8.png);
}

.pattern-9 {
	background-image: url(../../images/patterns/9.png);
}

.pattern-10 {
	background-image: url(../../images/patterns/10.png);
}

.pattern-11 {
	background-image: url(../../images/patterns/11.png);
}

.pattern-12 {
	background-image: url(../../images/patterns/12.png);
}

.pattern-13 {
	background-image: url(../../images/patterns/13.png);
}

.pattern-14 {
	background-image: url(../../images/patterns/14.png);
}

.pattern-15 {
	background-image: url(../../images/patterns/15.png);
}

.pattern-16 {
	background-image: url(../../images/patterns/16.png);
}

.pattern-17 {
	background-image: url(../../images/patterns/17.png);
}

.pattern-18 {
	background-image: url(../../images/patterns/18.png);
}

.pattern-19 {
	background-image: url(../../images/patterns/19.png);
}

.pattern-20 {
	background-image: url(../../images/patterns/20.png);
}

.pattern-21 {
	background-image: url(../../images/patterns/21.png);
}

.pattern-22 {
	background-image: url(../../images/patterns/22.png);
}

.pattern-23 {
	background-image: url(../../images/patterns/23.png);
}

.pattern-24 {
	background-image: url(../../images/patterns/24.png);
}

.pattern-25 {
	background-image: url(../../images/patterns/25.png);
}

.pattern-26 {
	background-image: url(../../images/patterns/26.png);
}

.pattern-27 {
	background-image: url(../../images/patterns/27.png);
}

.pattern-28 {
	background-image: url(../../images/patterns/28.png);
}

.pattern-29 {
	background-image: url(../../images/patterns/29.png);
}

.pattern-30 {
	background-image: url(../../images/patterns/30.png);
}

.pattern-31 {
	background-image: url(../../images/patterns/31.png);
}

.pattern-32 {
	background-image: url(../../images/patterns/32.png);
}

.pattern-33 {
	background-image: url(../../images/patterns/33.png);
}

.pattern-34 {
	background-image: url(../../images/patterns/34.png);
}

.pattern-35 {
	background-image: url(../../images/patterns/35.png);
}

.pattern-36 {
	background-image: url(../../images/patterns/36.png);
}

.pattern-37 {
	background-image: url(../../images/patterns/37.png);
}

.pattern-38 {
	background-image: url(../../images/patterns/38.png);
}

.pattern-39 {
	background-image: url(../../images/patterns/39.png);
}

.pattern-40 {
	background-image: url(../../images/patterns/40.png);
}

.pattern-41 {
	background-image: url(../../images/patterns/41.png);
}

.pattern-42 {
	background-image: url(../../images/patterns/42.png);
}

.pattern-43 {
	background-image: url(../../images/patterns/43.png);
}

.pattern-44 {
	background-image: url(../../images/patterns/44.png);
}

.pattern-45 {
	background-image: url(../../images/patterns/45.png);
}

.bd-example-row .row+.row {
	margin-top: 1rem;
}

.bd-example-row .row>.col,
.bd-example-row .row>[class^="col-"] {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	background-color: rgba(86, 61, 124, 0.15);
	border: 0.0625rem solid rgba(86, 61, 124, 0.2);
}

.bd-example-row .flex-items-top,
.bd-example-row .flex-items-middle,
.bd-example-row .flex-items-bottom {
	min-height: 6rem;
	background-color: rgba(255, 0, 0, 0.1);
}

.bd-example-row-flex-cols .row {
	min-height: 10rem;
	background-color: rgba(255, 0, 0, 0.1);
}

.bd-highlight {
	background-color: rgba(86, 61, 124, 0.15);
	border: 0.0625rem solid rgba(86, 61, 124, 0.15);
}

.example-container {
	width: 50rem;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
	width: 100%;
}

.example-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -0.9375rem;
	margin-left: -0.9375rem;
}

.example-content-main {
	position: relative;
	width: 100%;
	min-height: 0.0625rem;
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
}

.example-content-secondary {
	position: relative;
	width: 100%;
	min-height: 0.0625rem;
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
}

.bd-example-container {
	min-width: 16rem;
	max-width: 25rem;
	margin-right: auto;
	margin-left: auto;
}

.bd-example-container-header {
	height: 3rem;
	margin-bottom: 0.5rem;
	background-color: white;
	border-radius: 0.25rem;
}

.bd-example-container-sidebar {
	float: right;
	width: 4rem;
	height: 8rem;
	background-color: #80bdff;
	border-radius: 0.25rem;
}

.bd-example-container-body {
	height: 8rem;
	margin-right: 4.5rem;
	background-color: #957bbe;
	border-radius: 0.25rem;
}

.bd-example-container-fluid {
	max-width: none;
}

.bd-example {
	position: relative;
	padding: 1rem;
	margin: 1rem -0.9375rem;
	border: solid #f7f7f9;
	border-width: 0.2rem 0 0;
}

.bd-example::after {
	display: block;
	clear: both;
	content: "";
}

.bd-example+.highlight,
.bd-example+.clipboard+.highlight {
	margin-top: 0;
}

.bd-example+p {
	margin-top: 2rem;
}

.bd-example .pos-f-t {
	position: relative;
	margin: -1rem;
}

.bd-example>.form-control+.form-control {
	margin-top: 0.5rem;
}

.bd-example>.nav+.nav,
.bd-example>.alert+.alert,
.bd-example>.navbar+.navbar,
.bd-example>.progress+.progress,
.bd-example>.progress+.btn {
	margin-top: 1rem;
}

.bd-example>.dropdown-menu:first-child {
	position: static;
	display: block;
}

.bd-example>.form-group:last-child {
	margin-bottom: 0;
}

.bd-example>.close {
	float: none;
}

.bd-example-type .table .type-info {
	color: #999;
	vertical-align: middle;
}

.bd-example-type .table td {
	padding: 1rem 0;
	border-color: #eee;
}

.bd-example-type .table tr:first-child td {
	border-top: 0;
}

.bd-example-type h1,
.bd-example-type h2,
.bd-example-type h3,
.bd-example-type h4,
.bd-example-type h5,
.bd-example-type h6 {
	margin: 0;
}

.bd-example-bg-classes p {
	padding: 1rem;
}

.bd-example>img+img {
	margin-left: 0.5rem;
}

.bd-example>.btn-group {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

.bd-example>.btn-toolbar+.btn-toolbar {
	margin-top: 0.5rem;
}

.bd-example-control-sizing select,
.bd-example-control-sizing input[type="text"]+input[type="text"] {
	margin-top: 0.5rem;
}

.bd-example-form .input-group {
	margin-bottom: 0.5rem;
}

.bd-example>textarea.form-control {
	resize: vertical;
}

.bd-example>.list-group {
	max-width: 25rem;
}

.bd-example .fixed-top,
.bd-example .sticky-top {
	position: static;
	margin: -1rem -1rem 1rem;
}

.bd-example .fixed-bottom {
	position: static;
	margin: 1rem -1rem -1rem;
}

.bd-example .pagination {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.bd-example-modal {
	background-color: #fafafa;
}

.bd-example-modal .modal {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 1;
	display: block;
}

.bd-example-modal .modal-dialog {
	left: auto;
	margin-right: auto;
	margin-left: auto;
}

#modal-agree {
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(0.5rem);
	z-index: 99999 !important;
}

.modal.show {
	z-index: 9999;
}

.modal.show .tooltip,
.modal.show .popover {
	z-index: 1073;
}

.bd-example-tabs .nav-tabs {
	margin-bottom: 1rem;
}

.bd-example-tooltips {
	text-align: center;
}

.bd-example-tooltips>.btn {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

.bs-tooltip-top-docs .arrow,
.bs-tooltip-bottom-docs .arrow {
	left: 50%;
}

.bs-tooltip-right-docs .arrow,
.bs-tooltip-left-docs .arrow {
	top: 50%;
}

.bd-example-popover-static {
	padding-bottom: 1.5rem;
	background-color: #f9f9f9;
}

.bd-example-popover-static .popover {
	position: relative;
	display: block;
	float: left;
	width: 16.25rem;
	margin: 1.25rem;
}

.bs-popover-top-docs .arrow,
.bs-popover-bottom-docs .arrow {
	left: 50%;
}

.bs-popover-right-docs .arrow,
.bs-popover-left-docs .arrow {
	top: 50%;
}

.tooltip-demo a {
	white-space: nowrap;
}

.bd-example-tooltip-static .tooltip {
	position: relative;
	display: inline-block;
	margin: 0.625rem 1.25rem;
	opacity: 1;
}

.scrollspy-example {
	position: relative;
	height: 12.5rem;
	margin-top: 0.5rem;
	overflow: auto;
}

.scrollspy-example-2 {
	position: relative;
	height: 21.875rem;
	overflow: auto;
}

.bd-example-border-utils [class^="border"] {
	display: inline-block;
	width: 5rem;
	height: 5rem;
	margin: 0.25rem;
	background-color: #f5f5f5;
	border: 0.0625rem solid;
}

.highlight {
	padding: 1rem;
	margin: 1rem -0.9375rem;
	background-color: #f7f7f9;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.highlight pre {
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	background-color: transparent;
	border: 0;
}

.highlight pre code {
	font-size: inherit;
	color: #212529;
}

.bd-clipboard {
	position: relative;
	display: none;
	float: right;
}

.bd-clipboard+.highlight {
	margin-top: 0;
}

.btn-clipboard {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 10;
	display: block;
	padding: 0.25rem 0.5rem;
	font-size: 75%;
	color: #818a91;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	border-radius: 0.25rem;
}

.btn-clipboard:hover {
	color: #fff;
	background-color: #027de7;
}

h2.sub-title {
	font-size: 1.4375rem;
	margin: 1.5rem 0;
	color: #495057;
}

.simple-list {
	margin: 0.625rem 0 0.375rem 0;
	padding: 0;
	clear: both;
}

.simple-list li {
	padding: 0 0 0.4375rem 1.125rem;
	position: relative;
	list-style-type: none;
}

.simple-list li:before {
	position: absolute;
	display: block;
	top: 0.625rem;
	left: 0;
	font-family: "FontAwesome";
	content: "";
	font-size: 0.53em;
	line-height: 1em;
}

.simple-list ul {
	margin: 0 0 0.9375rem;
	padding: 0;
	list-style-type: none;
	position: relative;
	bottom: -0.8em;
}

.simple-list ul a {
	color: #495057;
}

.simple-list ul a:hover {
	color: #c12026;
}

.arrow-list>li {
	padding: 0;
	position: relative;
}

.arrow-list>li>a {
	font-size: 0.9375rem;
	font-weight: 600;
	display: block;
	margin-bottom: 0.3125rem;
}

.arrow-list>li:before {
	display: none;
}

.arrow-list li li:before {
	margin-right: 0.625rem;
	font-size: 0.875rem;
	font-family: "FontAwesome";
	display: inline-block;
	top: 0.3125rem;
	content: "";
}

.color {
	color: #c12026;
}

.divider--md1 {
	height: 1.9688rem;
}

.divider {
	height: 1.875rem;
	clear: both;
	overflow: hidden;
	width: 100%;
}

.item-article {
	font-size: 0.8125rem;
}

.item-article dl dt {
	color: #495057;
	font-size: 1.125rem;
	font-weight: 500;
	padding: 0 0 0.25rem 0;
}

.item-article dl dd {
	margin-bottom: 0.9375rem;
}

.item-article .title-decimal {
	font-size: 1.25rem;
	color: #c12026;
	line-height: 2.75rem;
	position: relative;
	padding: 0rem 0 0rem 4.3125rem;
}

.item-article .title-decimal:before {
	content: attr(data-content);
	display: table-cell;
	vertical-align: middle;
	position: absolute;
	top: 0rem;
	line-height: 2.5rem;
	background: #c12026;
	width: 2.75rem;
	height: 2.75rem;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	left: 0;
}

.item-article .decimal-list {
	padding: 0;
	margin: 0.625rem 0;
	list-style-type: none;
	counter-reset: myCounter;
	display: inline-block;
	width: 100%;
}

.item-article .decimal-list ol {
	counter-reset: sub-myCounter 0;
}

.item-article .decimal-list>li {
	padding: 0;
	position: relative;
	z-index: 5;
	margin-bottom: 0.9375rem;
	overflow: hidden;
}

.item-article .decimal-list>li:before {
	counter-increment: myCounter;
	content: counter(myCounter);
	color: white;
	background: #495057;
	display: inline-block;
	text-align: center;
	line-height: 1.625rem;
	width: 1.625rem;
	height: 1.625rem;
	border-radius: 50%;
	font-size: 0.9375rem;
	margin-right: 0.625rem;
}

.item-article .decimal-list>li>*:first-child {
	line-height: 1.625rem;
	margin-bottom: 0;
}

.item-article .decimal-list>li ol {
	margin: 0;
	padding: 0.625rem 0 0 0.9375rem;
	list-style: none;
}

.item-article .decimal-list>li ol>li>*:first-child {
	line-height: 1.5625rem;
}

.item-article .decimal-list>li ol>li:before {
	counter-increment: sub-myCounter;
	content: counter(myCounter) "." counter(sub-myCounter);
	font-size: 1.0625rem;
	display: inline-block;
	text-align: center;
	margin-right: 0.625rem;
}

.item-article .tags {
	margin: 0.9375rem 0;
}

.item-article .tags .label {
	border: none;
	border-radius: 0.125rem;
	margin: 0 0.125rem 0.3125rem 0;
	font-size: 0.6875rem;
	padding: 0.75rem;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 400;
}

.item-article .swatch-item {
	width: 100%;
	min-height: 6.25rem;
	position: relative;
	background: #333333;
	color: #ffffff;
	margin-bottom: 1.5rem;
	padding: 1.25rem;
}

.item-article .swatch-item.color-brand-primary {
	background: #234269;
}

.item-article .swatch-item.color-brand-secondary {
	background: #f87831;
}

.item-article .swatch-item.color-brand-warning {
	background: #f0ad4e;
}

.item-article .swatch-item.color-brand-danger {
	background: #d9534f;
}

.item-article .swatch-item.color-brand-info {
	background: #5bc0de;
}

.item-article .swatch-item.color-brand-success {
	background: #5cb85c;
}

.item-article .swatch-item.color-gray-darker {
	background: #212529;
}

.item-article .swatch-item.color-gray-dark {
	background: #343a40;
}

.item-article .swatch-item.color-gray {
	background: #495057;
}

.item-article .swatch-item.color-gray-light {
	background: #adb5bd;
	color: #495057;
}

.item-article .swatch-item.color-gray-lighter {
	background: #ced4da;
	color: #495057;
}

.item-article .swatch-item.color-gray-lightest {
	background: #e9ecef;
	color: #495057;
}

.item-article .button,
.item-article .btn {
	padding: 0.5625rem 1.25rem;
	background: #495057;
	color: #fff;
	border-radius: 0.1875rem;
	border: none;
}

.item-article .button:hover,
.item-article .btn:hover {
	background: #c12026;
	border-color: #c12026;
	color: #fff;
}

.item-article .btn-primary {
	background: #234269;
}

.item-article .btn-warning {
	background: #f0ad4e;
}

.item-article .btn-success {
	background: #5cb85c;
}

.item-article .btn-danger {
	background: #d9534f;
}

.item-article .btn-info {
	background: #5bc0de;
}

.item-article .nav-tabs {
	border: 0;
	margin-bottom: 2rem;
}

.item-article .nav-tabs .dropdown-menu {
	padding: 0.9375rem;
	border: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.item-article .nav-tabs>li.active>a,
.item-article .nav-tabs>li.active>a:hover,
.item-article .nav-tabs>li.active>a:focus {
	color: #ffffff;
	border: 0;
	background: #c12026;
}

.item-article .nav-tabs>li.active>a:before,
.item-article .nav-tabs>li.active>a:hover:before,
.item-article .nav-tabs>li.active>a:focus:before {
	border: 0.625rem solid #c12026;
	border-color: #c12026 transparent transparent transparent;
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -0.625rem;
}

.item-article .nav-tabs>li>a {
	background: #eaeaea;
	border-radius: 0.125rem;
	border: 0;
	color: #2d2d2d;
	text-transform: uppercase;
	padding: 0 2rem;
	height: 3rem;
	line-height: 3rem;
	position: relative;
}

.item-article .nav-tabs>li>a:hover {
	background: #ddd;
}

.item-article .nav-pills>li>a {
	border-radius: 0.1875rem;
}

.item-article .nav-pills .dropdown-menu {
	padding: 0.9375rem;
	border: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.item-article .nav-pills>li.active>a,
.item-article .nav-pills>li.active>a:focus,
.item-article .nav-pills>li.active>a:hover {
	color: #fff;
	background: #c12026;
}

.item-article .dropcap {
	display: block;
	float: left;
	font-size: 3.5em;
	line-height: 1em;
	margin: 0 0.3125rem 0 0;
}

.item-article .color-custom {
	color: #c12026;
}

.item-article .color-white {
	color: #fff;
}

.item-article .color-dark {
	color: #000;
}

.item-article .bg-custom {
	background: #c12026;
}

.item-article .bg-black {
	background: #000;
}

.item-article a.underline {
	text-decoration: underline;
}

.item-article a.underline:hover {
	text-decoration: none;
}

#content>h1 {
	font-size: 2.6rem;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 2.0625rem;
	color: #000;
	margin-bottom: 1.875rem;
}

.account-login .well,
.affiliate-login .well {
	min-height: 24.6875rem;
	background: #fff;
}

.account-account #content>h2,
.affiliate-account #content>h2 {
	font-size: 1rem;
	line-height: 1.2;
}

.account-account #content .list-unstyled,
.affiliate-account #content .list-unstyled {
	margin-bottom: 1.875rem;
}

.account-address #content .table-responsive .table>tbody>tr>td {
	line-height: 1.5rem;
	padding: 0.625rem;
}

.custom-border {
	padding: 0.625rem 1.25rem;
}

.list-box {
	list-style: none;
	margin: 0rem;
	padding: 0rem;
}

.btn-link:focus,
.btn-link:hover {
	text-decoration: none;
}

.list-box li {
	border-bottom: 0.0625rem solid #ececec;
}

.list-box li:last-child {
	border-bottom: 0;
}

.list-box li a {
	display: inline-block;
	word-wrap: break-word;
	padding: 0.5rem 0;
	margin-right: 0.3125rem;
	color: #495057;
}

.list-box li a:hover {
	color: #c12026;
}

#input-shipping-method,
#input-payment-method {
	border: 0.0625rem solid #ced4da;
}

.checkout-cart .panel-group .panel,
.checkout-checkout .panel-group .panel {
	border-radius: 0;
}

.table-responsive .table thead>* {
	background-color: #FDDBC2;
	font-weight: bold;
	border-top: 0;
}

.table-responsive .table tbody td.text-left a {
	font-weight: bold;
	color: #727272;
}

.table-responsive .table tbody td.text-left:hover a {
	color: #c12026;
}

.checkout-cart .btn-block input {
	min-width: 2.5rem;
	text-align: center;
}

.checkout-cart .bg-page-404 .text-center {
	width: 100%;
}

.checkout-cart .bg-page-404 .text-center>div {
	display: none;
}

.checkout-cart .bg-page-404 .col-sm-5 img {
	display: none;
}

#shopping-cart .table> :not(:first-child) {
	border-top: none;
}

#shopping-cart .input-group input {
	min-width: 2.5rem;
	text-align: center;
}

#shopping-cart .input-group {
	max-width: 12.5rem;
}

#checkout-checkout .table> :not(:first-child) {
	border-top: none;
}

#checkout-checkout fieldset {
	margin-bottom: 0.9375rem;
}

#checkout-checkout fieldset legend {
	font-weight: bold;
	font-size: 0.875rem;
	font-style: normal;
	color: #000;
	text-transform: uppercase;
}

.accordion-button {
	font-size: 1.3rem;
}

#product-compare table .btn {
	margin-bottom: 0.3125rem;
	margin-top: 0.3125rem;
}

#product-compare table .description {
	min-width: 12.5rem;
}

#form-register legend {
	font-weight: 600;
	color: #000;
}

#form-register .text-end {
	text-align: left !important;
}

#form-register .text-end .form-check {
	margin-top: 0.625rem;
}

#form-register .text-end .btn-primary {
	float: right;
}

#shipping-existing #input-shipping-address {
	max-width: 37.5rem;
}

#account-account #content>h2 {
	font-size: 2rem;
	color: #000;
}

#checkout-shipping-method .input-group-text,
#checkout-payment-method .input-group-text {
	border: none;
}

#modal-shipping .modal-content,
#modal-payment .modal-content {
	max-width: 60rem;
	margin: 0 auto;
}

.account-wishlist .tooltip {
	display: none;
}

#container-module-newletter {
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
}

#container-module-newletter .so_newletter_custom_popup_bg {
	opacity: 0.5;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}

#content .module.page-extra {
	margin-top: 2.5rem;
}

#content .module.page-extra .owl2-controls .owl2-nav {
	position: static;
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 3.375rem;
	height: 3.375rem;
	border: none;
	line-height: 3.125rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 50%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1.125rem;
	margin: 0;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev,
	#content .module.page-extra .owl2-controls .owl2-nav .owl2-next {
		line-height: 3.25rem;
	}
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev:before,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
	font-weight: 900;
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev.owl2-next,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev:hover:before,
#content .module.page-extra .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-prev {
	left: 0;
	right: auto;
}

#content .module.page-extra .owl2-controls .owl2-nav .owl2-next {
	right: 0;
	left: auto;
}

#content .module.page-extra .owl2-controls .owl2-nav>div {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	transition: all 0.2s ease-in-out 0s;
	margin-top: 0.3125rem;
}

#content .module.page-extra:hover .owl2-controls .owl2-nav>div {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
}

.custom-scoll {
	display: none;
}

.content-aside {
	margin-bottom: 1.875rem;
}

.banner-sidebar a img {
	width: 100%;
}

#sosearchpro.so-search {
	width: 100%;
	padding: 0;
}

.sohomepage-slider .form-group {
	margin-bottom: 0;
}

.content-aside .module.banner-left {
	border: none;
}

#content div.so-deal .extraslider-inner .item {
	border: none;
}

.module.sohomepage-slider .so-homeslider .owl2-stage-outer {
	direction: ltr;
}

.module .so-extraslider .extraslider-inner {
	border: none;
	padding-bottom: 0;
}

#content .sohomepage-slider .sohomeslider-description h2 {
	margin: 0;
}

#content .module h2 {
	font-size: 1rem;
	color: #000;
	font-weight: 700;
	text-transform: capitalize;
	margin-top: 1.875rem;
}

#content .module h3.modtitle {
	font-size: 2.25rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
	margin-bottom: 0.875rem;
}

#content .module h3.modtitle span {
	font-size: 2.25rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
}

.content-aside .module {
	overflow: hidden;
	margin-bottom: 1.875rem;
	border: none;
}

.content-aside .module h3.modtitle {
	font-size: 1.125rem;
	color: #000;
	font-weight: 600;
	text-transform: capitalize;
	margin: 0;
}

.content-aside .module h3.modtitle span {
	font-size: 1.125rem;
	color: #000;
	font-weight: 600;
	text-transform: capitalize;
}

.content-aside .module .modcontent {
	padding: 0;
}

.content-aside .module#blog-search {
	border: 0.0625rem solid #ebebeb;
	background: #fff;
	border-radius: 0.3125rem;
}

.content-aside .module#blog-search .form-control {
	height: auto;
	background: #fff;
	font-size: 0.875rem;
	color: #666;
	padding: 0.8125rem 1.25rem;
	line-height: 1.375rem;
	border: none;
}

.content-aside .module#blog-search .button-search {
	background: transparent;
	padding: 0rem 1.25rem;
	height: 3rem;
	color: #000;
	font-size: 1.125rem;
	line-height: 3.1875rem;
}

.content-aside .module#blog-search .button-search:hover {
	color: #c12026;
}

.content-aside .list-group .list-group-item:hover,
.content-aside .list-group .list-group-item.active,
.content-aside .list-group .list-group-item.active:hover {
	background-color: #BD002814 !important;
	color: #1F1F1F !important;
	display: flex;
	align-items: center;
	gap: 0.75rem;

}

.content-aside .list-group .list-group-item:hover svg path,
.content-aside .list-group .list-group-item.active svg path,
.content-aside .list-group .list-group-item.active:hover svg path {
	fill: transparent;
	stroke: #c12127;
}

.content-aside .list-group .list-group-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.content-aside .module.categories-sidebar {
	margin-bottom: 0.9375rem;
}

.blog-sidebar .blog-external-simple {
	margin: 1.25rem 0 0;
}

.blog-sidebar .blog-external-simple .cat-wrap {
	margin-bottom: 0.625rem;
}

.blog-sidebar .blog-external-simple .cat-wrap:last-child {
	margin-bottom: 0rem;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-left {
	padding-right: 1.25rem;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-left a {
	display: block;
	border-radius: 0.3125rem;
	overflow: hidden;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-left img {
	transition: all 0.3s ease-in-out 0s;
	min-width: 5.375rem;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-heading {
	margin-bottom: 0.1875rem;
	margin-top: -0.1875rem;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-heading a {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: #000;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-heading a:hover {
	color: #c12026;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-subcontent {
	color: #666;
	font-size: 0.875rem;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-subcontent i {
	margin-right: 0.5625rem;
	font-size: 0.875rem;
	display: inline-block;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-subcontent .media-author {
	margin: 0;
	color: #666;
	padding: 0;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item .media-body .media-subcontent span {
	display: inline-block;
}

.blog-sidebar .blog-external-simple .cat-wrap .media .item:hover .media-left img {
	opacity: 0.8;
}

.best-seller {
	position: relative;
	margin: 0;
}

.best-seller .so-extraslider {
	margin: 0;
}

.best-seller .so-extraslider .extraslider-inner {
	border: 0.0625rem solid #eee;
	padding-bottom: 0;
}

.best-seller .so-extraslider .extraslider-inner .item-wrap-inner {
	margin: 1.125rem 0 0.5rem;
}

@media (min-width: 75rem) {
	.best-seller .so-extraslider .extraslider-inner .item-wrap-inner {
		padding-left: 0.625rem;
	}
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 {
	border-bottom: 0.0625rem solid #eee;
	margin-bottom: 0.125rem;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-left {
	float: left;
	width: 5.3125rem;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-left .item-image {
	border: 0;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-left .item-image:hover {
	box-shadow: none;
	opacity: 0.8;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info {
	background: transparent;
	position: static;
	color: #666;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info a {
	color: #444;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .item-title {
	padding: 0 0 0.3125rem 0;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .item-title a {
	text-transform: capitalize;
	font-size: 0.9375rem;
	font-weight: normal;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .item-title a:hover {
	color: #c12026;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .item-content {
	margin-left: 0;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .item-content .content_price span {
	color: #e74c3c;
	font-size: 1rem;
	font-weight: bold;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .item-content .content_price span.price-old {
	font-size: 0.75rem;
	color: #999;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1 .media-body .item-info .rating {
	padding: 0;
}

.best-seller .so-extraslider .extraslider-inner .item .item-wrap.style1:hover .item-title a {
	color: #c12026;
}

.best-seller .so-extraslider .extraslider-inner .item-wrap .item-info .item-content .content_price {
	margin-bottom: 0;
}

.best-seller .so-extraslider .owl2-controls {
	margin-bottom: 0.5rem;
	text-align: right;
	position: absolute;
	top: 0.25rem;
	vertical-align: middle;
	right: 0.3125rem;
}

.best-seller .so-extraslider .owl2-controls .owl2-nav>div {
	width: 1.0625rem;
	height: 1.875rem;
	text-align: center;
	display: inline-block;
	line-height: 1.875rem;
	font-size: 0;
	cursor: pointer;
	color: #999999;
	background-color: transparent;
	margin-top: 0;
	position: static;
}

.best-seller .so-extraslider .owl2-controls .owl2-nav>div:hover {
	color: #c12026;
}

.best-seller .so-extraslider .owl2-controls .owl2-prev:before {
	content: "";
	font-family: FontAwesome;
	font-size: 1.75rem;
}

.best-seller .so-extraslider .owl2-controls .owl2-next:before {
	content: "";
	font-family: FontAwesome;
	font-size: 1.75rem;
}

.newsletter #signup .show-error {
	float: left;
	padding-top: 0.4375rem;
	color: #f55 !important;
}

.module.main-newsleter-popup .hidden-popup .inline {
	top: 0;
}

.module.main-newsleter-popup .so-custom-popup {
	background-color: #fff;
	border-radius: 0rem;
	padding: 0;
	background-repeat: no-repeat !important;
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
	.module.main-newsleter-popup .so-custom-popup {
		width: 85% !important;
	}

	.module.main-newsleter-popup .so-custom-popup:before {
		content: "";
		position: absolute;
		z-index: 2;
		background: rgba(255, 255, 255, 0.9);
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}

@media (max-width: 47.9375rem) {
	.module.main-newsleter-popup .so-custom-popup:before {
		content: "";
		position: absolute;
		z-index: 2;
		background: rgba(255, 255, 255, 0.9);
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}

.module.main-newsleter-popup .so-custom-popup .popup-close {
	width: 1.9375rem;
	height: 1.9375rem;
	line-height: 1.875rem;
	border-radius: 0;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-ms-opacity: 1;
	-o-opacity: 1;
	opacity: 1;
	color: #fff;
	background-color: #c12026;
	border: none;
	right: 0;
	top: -1.9375rem;
}

.module.main-newsleter-popup .so-custom-popup .popup-close:hover {
	background-color: #b82a2e;
}

.module.main-newsleter-popup .modcontent {
	position: relative;
}

.module.main-newsleter-popup .so-custom-popup .modcontent {
	padding: 0.625rem;
	min-height: 27.5rem;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content {
	padding: 0.9375rem 0.625rem;
	text-align: center;
}

@media (min-width: 75rem) {
	.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content {
		padding: 4.6875rem 1.875rem 3.125rem 52%;
		margin: 0;
	}
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
	.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content {
		padding: 4.6875rem 1.875rem 3.125rem 52%;
		margin: 0;
	}
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .popup-title {
	font-weight: 700;
	font-size: 2.25rem;
	color: #222;
	text-transform: capitalize;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .newsletter_promo {
	font-size: 0.875rem;
	color: #666;
	font-weight: 400;
	line-height: 1.375rem;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .email {
	margin: 1.5625rem 0;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group {
	position: relative;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .input-box {
	background-color: #fff;
	vertical-align: top;
	padding-right: 7.5rem;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control {
	height: 2.5rem;
	line-height: 2.5rem;
	width: 100%;
	box-shadow: none;
	padding: 0 0 0 1.25rem;
	border: none;
	background-color: #fff;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control:-ms-input-placeholder {
	color: #999;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control::-webkit-input-placeholder {
	color: #999;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control:focus {
	z-index: 0;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .btn-default {
	border: 0 none;
	color: #fff;
	font-weight: 700;
	font-size: 0.75rem;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 1.0625rem;
	text-transform: uppercase;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0.3125rem;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .btn-default:hover {
	color: #fff;
	background-color: #b82a2e;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .hidden-popup {
	font-weight: 400;
	color: #666;
	padding-bottom: 1.25rem;
	font-size: 0.75rem;
	line-height: 1.25rem;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .hidden-popup:hover {
	cursor: pointer;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .newsletter_promo {
	padding: 0.625rem 0;
	margin: 0;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .socials {
	text-align: center;
	margin-top: 0;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .socials li {
	position: relative;
	display: inline-block;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .socials li a {
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.8125rem;
	text-align: center;
	border-radius: 50%;
	border: 0.0625rem solid #ebebeb;
	display: inline-block;
	margin: 0 0.3125rem;
	color: #555555;
	font-size: 0.875rem;
	transition: all 0.2s ease-in-out 0s;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .socials li a:hover {
	color: #fff;
	background-color: #c12026;
	border-color: #c12026;
}

.main-newsleter-popup .show-error {
	display: inline-block;
	margin-left: 0 !important;
	position: relative;
	top: -0.625rem;
	width: 100%;
}

body #so_sociallogin .block-popup-login .tt_popup_login {
	border: none;
	background-color: #c12026;
	height: 2.625rem;
}

body #so_sociallogin .block-popup-login .tt_popup_login strong {
	font-size: 1rem;
	font-weight: 700;
	background-color: #c12026;
	line-height: 2.625rem;
	position: static;
	background-position: 1.25rem center;
	padding-left: 4.375rem;
}

body #so_sociallogin .block-popup-login .tt_popup_login strong:before {
	display: none;
}

body #so_sociallogin .block-popup-login .close-login {
	background-image: none;
	text-indent: 0;
	font-size: 1.5rem;
	color: #fff;
	top: 0.4375rem;
	right: 0.3125rem;
}

body #so_sociallogin .block-popup-login .block-content .login-customer h2 {
	font-size: 1rem;
	font-weight: 700;
}

body #so_sociallogin .block-popup-login .block-content .input-text {
	border-radius: 0;
}

body #so_sociallogin .block-popup-login .block-content .btn-reg-popup {
	font-size: 0.875rem;
	padding: 0 1.25rem;
	background-color: #666;
	border-radius: 0.25rem;
}

body #so_sociallogin .block-popup-login .block-content .btn-reg-popup:hover {
	background-color: #c12026;
}

body #so_sociallogin .block-popup-login .block-content .action.login {
	background-image: none;
	padding: 0 1.25rem;
	background-color: #666;
	border-radius: 0.25rem;
}

body #so_sociallogin .block-popup-login .block-content .action.login:hover {
	background-color: #c12026;
}

#header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9900;
	transition: margin-top 0.4s ease;
}

#header.scrolled {
	margin-top: 0;
}

.breadcrumbs .current-name {
	font-size: 1.125rem;
	color: #666;
	text-transform: uppercase;
	float: left;
	font-weight: 700;
	margin: 1.5625rem 0;
	display: none;
}

ul.breadcrumb {
	padding: 0.625rem 0;
	display: inline-block;
	width: 100%;
	margin-bottom: 3.125rem;
	position: relative;
}

ul.breadcrumb li {
	display: inline-block;
	position: relative;
}

ul.breadcrumb:before,
ul.breadcrumb li:before {
	display: none;
}

ul.breadcrumb li:first-child i {
	font-size: 0.75rem;
}

ul.breadcrumb li a {
	display: block;
	padding: 0;
	color: #000;
	text-decoration: none !important;
	font-size: 12px;
}

ul.breadcrumb li:last-child {
	padding: 0.3125rem 0rem;
}

ul.breadcrumb li:last-child a,
ul.breadcrumb li:last-child span {
	color: #1f1f1f !important;
}

ul.breadcrumb li:hover a {
	color: #c12026;
}

.content-aside .product-simple {
	position: relative;
}

.content-aside .product-simple .modcontent {
	padding: 0.9375rem 0rem;
}

.content-aside .product-simple .so-quickview {
	display: none;
}

.content-aside .product-simple .so-extraslider {
	margin: 0;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-dots {
	position: absolute;
	right: 0.625rem;
	top: 1.125rem;
	min-width: 3.75rem;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-dots .owl2-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 0.5rem;
	background-color: #222;
	margin: 0 0.3125rem;
	display: inline-block;
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-dots .owl2-dot span {
	display: none;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-dots .owl2-dot:hover {
	background-color: #c12026;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-dots .owl2-dot.active {
	width: 1.875rem;
	background-color: #c12026;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav {
	top: 0.0625rem;
	position: absolute;
	right: 0rem !important;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next {
	background-color: #222;
	border: none;
	border-radius: 0rem;
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	text-align: center;
	float: left;
	text-indent: -624.9375rem;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	position: absolute;
	top: 50%;
	z-index: 99;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev:before,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next:before {
	color: #fff;
	font-family: "FontAwesome";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev:hover,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next:hover {
	background-color: #c12026;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-prev:hover:before,
.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #fff;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav>div {
	margin-top: 0;
	line-height: 1.75rem !important;
}

.content-aside .product-simple .so-extraslider .owl2-controls .owl2-nav>div:before {
	position: static;
	font-weight: 400;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner {
	display: inline-block;
	padding-bottom: 0.625rem;
	margin-bottom: 0.625rem;
	width: 100%;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner .item-image {
	width: 5rem;
	float: left;
	border: 0.0625rem solid #ebebeb;
	border-radius: 0.3125rem;
	overflow: hidden;
	transition: all 0.3s ease-in-out 0s;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner .item-info {
	margin-top: 0rem;
	margin-left: 5.9375rem;
	background: transparent;
	color: #666;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner .item-info .item-title {
	line-height: 100%;
	margin-bottom: 0.3125rem;
	padding: 0;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner .item-info .item-title a {
	font-size: 1rem;
	line-height: 1.6rem;

	font-weight: 500;
	text-transform: capitalize;
	color: #000;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner .item-info .item-title a:hover {
	color: #c12026;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.content-aside .product-simple .so-extraslider .extraslider-inner .item .item-inner:hover .item-image {
	border-color: #c12026;
}

.container-megamenu ul.megamenu li .sub-menu {
	z-index: 998;
}

.container-megamenu ul.megamenu li .sub-menu .content {
	box-shadow: 0 0rem 0.625rem 0rem rgba(0, 0, 0, 0.15);
	padding: 1.5625rem 1.875rem 1.5625rem;
	border-radius: 0.3125rem;
}

.container-megamenu ul.megamenu li.menu-layouts .sub-menu .content {
	padding: 1.875rem 1.875rem 1.875rem 1.875rem;
}

.container-megamenu ul.megamenu li .sub-menu .content .static-menu .menu ul {
	padding: 0;
}

.container-megamenu.horizontal ul.megamenu>li {
	float: left;
	margin-right: 1.5625rem;
}

.container-megamenu.horizontal ul.megamenu>li:last-child {
	margin-right: 0rem;
}

.container-megamenu.horizontal ul.megamenu>li>a {
	font-size: 1.125rem;
	text-transform: capitalize;
	font-weight: 400;
	color: #000;
	display: block;
	position: relative;
	padding: 0.9375rem 0;
	line-height: 1.4375rem;
	height: auto;
	background-color: transparent;
}

.container-megamenu.horizontal ul.megamenu>li>a strong {
	font-weight: 400;
}

.container-megamenu.horizontal ul.megamenu>li .caret {
	border: none;
	width: auto;
	height: auto;
	margin-left: 0.3125rem;
}

.container-megamenu.horizontal ul.megamenu>li .caret:before {
	content: "";
	font-family: FontAwesome;
	display: inline-block;
	font-size: 1.25rem;
	color: #666;
	font-weight: 300;
}

.container-megamenu.horizontal ul.megamenu>li.active>a,
.container-megamenu.horizontal ul.megamenu>li.active_menu>a {
	color: #c12026;
}

.container-megamenu.horizontal .sub-menu .content>.row {
	padding: 0;
}

.container-megamenu.horizontal .sub-menu .content a.title-shoppage,
.container-megamenu.horizontal .sub-menu .content .static-menu .menu>ul>li>a,
.container-megamenu.horizontal .sub-menu .content ul.subcategory>li>a.title-submenu {
	line-height: 2rem;
	font-weight: 600;
	color: #000;

	font-size: 0.875rem;

	margin-bottom: 0rem;
	padding: 0;
}

.container-megamenu.horizontal .sub-menu .content a.title-shoppage:hover,
.container-megamenu.horizontal .sub-menu .content .static-menu .menu>ul>li>a:hover,
.container-megamenu.horizontal .sub-menu .content ul.subcategory>li>a.title-submenu:hover {
	color: #c12026;
}

.container-megamenu.horizontal .sub-menu .content ul li {
	margin-bottom: 0.3125rem;
	padding: 0;
}

.container-megamenu.horizontal .sub-menu .content ul li a {
	line-height: 1.375rem;
	font-weight: 400;
	color: #585858;
	font-size: 1.4rem;
	text-transform: uppercase;
}

.container-megamenu.horizontal .sub-menu .content ul li a:hover {
	color: #c12026;
}

.container-megamenu.horizontal .sub-menu .content ul li:last-child {
	margin-bottom: 0rem;
}

.container-megamenu.horizontal .sub-menu .content .static-menu .menu ul ul {
	padding: 0;
}

.container-megamenu.horizontal .sub-menu .content .static-menu .menu ul ul li:before {
	display: none;
}

.container-megamenu.horizontal .sub-menu .content .hover-menu .menu ul {
	margin: 0;
}

.container-megamenu.horizontal .sub-menu .content img:hover {
	-webkit-opacity: 0.8;
	-moz-opacity: 0.8;
	-ms-opacity: 0.8;
	-o-opacity: 0.8;
	opacity: 0.8;
}

.container-megamenu.horizontal .sub-menu .content .item-banner {
	margin-top: 0.9375rem;
}

.container-megamenu.horizontal .sub-menu .content .item-banner .img-banner-w {
	margin: 0 -0.9375rem;
}

.container-megamenu.horizontal .sub-menu .content .item-banner .img-banner {
	width: 50%;
	padding: 0 0.9375rem;
	float: left;
}

@media (min-width: 75rem) {
	.container-megamenu.horizontal ul.megamenu .full-width>.sub-menu {
		max-width: 73.125rem;
		right: auto !important;
		left: 0;
	}
}

body .container-megamenu.vertical {
	z-index: 999;
}

.container-megamenu ul.megamenu li .sub-menu .content .hover-menu a::before {
	display: none;
}

.container-megamenu.vertical ul.megamenu>li.click::before,
.container-megamenu.vertical ul.megamenu>li.hover::before {
	padding: 0;
}

.common-home .container-megamenu.vertical .vertical-wrapper ul.megamenu>li.with-sub-menu>a>b.fa {
	margin-top: 0.1875rem;
}

.vertical ul.megamenu>li.click::before,
.vertical ul.megamenu>li.hover::before {
	padding: 0;
}

.container-megamenu.vertical {
	z-index: 990;
}

.container-megamenu.vertical .megamenuToogle-wrapper {
	background-color: transparent;
}

.container-megamenu.vertical #menuHeading {
	margin: 0;
}

.container-megamenu.vertical #menuHeading .megamenuToogle-pattern {
	position: relative;
}

.container-megamenu.vertical #menuHeading .megamenuToogle-pattern .container {
	border-top-left-radius: 0.1875rem;
	border-top-right-radius: 0.1875rem;
	color: #fff;
	font-weight: 700;

	font-size: 1rem;
	line-height: 1.6rem;

	line-height: 2.5rem;
	padding: 0rem 0rem 0rem 1.25rem !important;
	margin: 0;
	position: relative;
	text-transform: uppercase;
	display: block;
}

.container-megamenu.vertical #menuHeading .megamenuToogle-pattern .container>div {
	float: left;
	padding-top: 0.6875rem;
	margin: 0rem 0.5625rem 0 0;
}

.container-megamenu.vertical #menuHeading .megamenuToogle-pattern .container>div>span {
	box-shadow: none;
}

.container-megamenu.vertical #menuHeading .megamenuToogle-pattern .container:hover {
	cursor: pointer;
}

.container-megamenu.vertical .vertical-wrapper .megamenu-pattern {
	position: relative;
	z-index: 1;
}

@media (min-width: 62rem) {
	.container-megamenu.vertical .vertical-wrapper ul.megamenu {
		box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.15);
		background-color: #fff;
		border-bottom-right-radius: 0.1875rem;
		border-bottom-left-radius: 0.1875rem;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li {
		cursor: pointer;
		padding: 0 0.9375rem 0 0.9375rem;
		border: none;
		margin: 0;
		position: relative;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li.id16-item,
	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li.id6-item {
		display: none;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>a {
		color: #666;
		display: block;
		font-size: 0.875rem;
		font-weight: 400;
		padding: 0.5625rem 0;
		line-height: 1.375rem;
		position: relative;
		text-transform: capitalize;
		background: none;
		height: auto;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>a i.fa {
		width: 1.875rem;
		padding: 0;
		text-align: center;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li.active,
	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li:hover {
		box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.15);
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li.active>a,
	.container-megamenu.vertical .vertical-wrapper ul.megamenu>li:hover>a {
		color: #c12026;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu .loadmore {
		padding: 0.9375rem 0.9375rem 0.9375rem 2.875rem;
		line-height: 100%;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu .loadmore i {
		left: 0.875rem;
		top: 1rem;
		position: absolute;
		font-size: 0.875rem;
		color: #c12026;
	}

	.container-megamenu.vertical .vertical-wrapper ul.megamenu .loadmore .more-view {
		color: #c12026;
		font-size: 0.875rem;
	}
}

.container-megamenu.vertical ul.megamenu>li>a strong {
	font-weight: 400;
}

.container-megamenu.vertical .vertical-wrapper {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	border-radius: 0;

}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .sub-menu .content .img-banner img {
	width: 100%;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>a img {
	height: auto;
	margin: 0;
	margin-right: 0.625rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .sub-menu .content>.border {
	padding: 0;
	border: none;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .sub-menu .content>.row {
	padding-top: 0.3125rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content {
	padding: 1.25rem 1.875rem;
	box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.2);
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul>li {
	margin-bottom: 0.75rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul li a.main-menu {
	color: #727272;
	font-size: 1.8rem;
	margin: 0 0 0rem;
	line-height: 1.375rem;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	border: none;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul li a.main-menu:hover {
	color: #c12026;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul ul {
	padding: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul ul li {
	padding: 0;
	display: inline;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul ul li a {
	font-size: 1.8rem;
	font-weight: 400;
	color: #727272;
	display: block;
	line-height: 1.375rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul ul li:before {
	display: none;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .static-menu .menu>ul ul li:hover a {
	color: #c12026;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .link:hover img {
	opacity: 0.8;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content .img-vbanner a:hover img {
	opacity: 0.8;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content ul.subcategory .title-submenu {
	font-weight: 700;
	color: #000;
	font-size: 0.875rem;
	text-transform: uppercase;
	padding: 0 0 0.1875rem 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content ul.subcategory .menu ul li {
	line-height: 100%;
	display: inline;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content ul.subcategory .menu ul li a {
	font-size: 1.125rem;
	line-height: 1.375rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu>li>.sub-menu .content ul.subcategory .menu ul li a:hover {
	color: #c12026;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .sub-menu .content {
	padding: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .sub-menu .content .col-sm-7 {
	padding-right: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .sub-menu .content .col-sm-5 {
	padding-left: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .img-vbanner {
	float: right;
	padding-right: 0.9375rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .img-vbanner a {
	margin-bottom: 0rem;
	display: block;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .img-vbanner a.last {
	margin-bottom: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .categories {
	padding: 0.9375rem 0 0 1.875rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .categories .static-menu .menu>ul {
	padding: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.style1 .categories .static-menu .menu>ul>li {
	margin-bottom: 0rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content {
	padding: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul {
	margin: 0.625rem 0;
	padding: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li {
	padding: 0;
	position: relative;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li:last-child {
	border: none;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li>a {
	line-height: 1.875rem;
	font-size: 0.875rem;
	display: inline-block;
	width: 100%;
	padding: 0 1.25rem;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li b {
	float: right;
	line-height: 1.6875rem;
	font-size: 1rem;
	margin: 0 1.25rem;
	position: absolute;
	top: 0;
	right: 0;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li:hover>a {
	color: #c12026;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li ul {
	width: 15.625rem;
	padding: 0.625rem 0;
	top: 0;
	margin: 0;
	left: 100%;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li ul:before,
.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li ul:after {
	display: none;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li ul li:last-child {
	border: none;
}

.container-megamenu.vertical .vertical-wrapper ul.megamenu .item-vertical.css-menu .content .menu ul li ul li>a {
	font-weight: normal;
	line-height: 1.875rem;
}

.module.so_filter_wrap .so-filter-option.so-filter-price .content_scroll {
	margin: 0.3125rem 0.625rem 0.625rem 0.625rem;
}

.module.so_filter_wrap .modcontent {
	background-color: #fff;
	margin: 0;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options {
	margin-bottom: 1.75rem;
	padding: 0rem 0 1.5625rem;
	border-bottom: 0.0625rem solid #ebebeb;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-heading {
	padding: 0;
	margin-bottom: 0rem;
	background-color: transparent;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-heading .so-filter-heading-text {
	float: left;
	color: #000;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 1.8rem;
	padding: 0;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts {
	border: none;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container {
	padding: 0;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .opt-select {
	margin: 0;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container {
	padding: 0.1875rem 0 0.3125rem;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-input {
	margin: 0;
	margin-right: 0.3125rem;
	height: 1.5625rem;
	vertical-align: 0.125rem;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-input i {
	width: 1.4375rem;
	height: 1.4375rem;
	border: 0.0625rem solid #ddd;
	border-radius: 0.3125rem;
	background: #fff;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-input i:before {
	font-size: 0;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-input i.fa-check-square-o {
	color: #c12026;
	border-color: transparent;
	vertical-align: -0.3125rem;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-input i.fa-check-square-o:before {
	font-size: 1.6875rem;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container label {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.25rem;
	color: #666;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container label img {
	display: none;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-count {
	padding: 0;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container .option-count span {
	color: #000;
	font-size: 0.875rem;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container:hover label,
.module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container:hover .option-count span {
	color: #c12026;
}

.module.so_filter_wrap .modcontent ul li.so-filter-options:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container {
	overflow: inherit;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option label {
	font-size: 0.75rem;
	text-transform: capitalize;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .opt-select {
	border: none;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .opt-select.so-filter-option-sub:hover {
	background-color: #fff;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .noUi-horizontal .noUi-handle {
	border-radius: 100%;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .noUi-horizontal .noUi-handle:before,
.module.so_filter_wrap .modcontent .so-filter-content-opts-container .noUi-horizontal .noUi-handle:after {
	display: none;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .put-min_max {
	display: inline-block;
	background: #fff;
	border: 0.0625rem solid #ebebeb;
	width: 49%;
	width: auto;
	padding: 0;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .put-min_max.put-min:after {
	content: "-";
	display: inline-block;
	margin-right: 0.3125rem;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .put-min_max input {
	background: transparent;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group {
	border: 0.0625rem solid #ebebeb;
	transition: all 0.3s ease-in-out 0s;
	background-color: #fff;
	border-radius: 0.3125rem;
	display: flex;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .form-control {
	background: transparent;
	padding: 0.875rem 1.25rem;
	height: 2.875rem;
	border: none;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default {
	padding: 0.4375rem 1.25rem;
	color: #000;
	height: 2.875rem;
	line-height: 2.5rem;
	background: transparent;
	border-radius: 0;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default i {
	font-family: "icomoon" !important;
	font-size: 1.125rem;
	margin: 0;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default i:before {
	content: "";
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default:hover {
	background: transparent;
	color: #c12026;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default:focus {
	box-shadow: none;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group:hover {
	border: 0.0625rem solid #000;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option:hover .option-input:before {
	background-color: transparent;
	border: 0.125rem solid #999;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option .option-input .fa-square-o {
	position: relative;
	top: 0rem;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option.opt_active .option-input .fa-check-square-o {
	color: #c12026;
	border-color: transparent;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option.opt_active .option-input .fa-check-square-o:before {
	font-size: 1.6875rem;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option.opt_active .option-input:before {
	background-color: transparent;
	border: 0.125rem solid #999;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price {
	text-align: left;
	padding: 0;
}

.module.so_filter_wrap .modcontent .so-filter-content-opts-container ul li {
	float: left;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max {
	display: block;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby {
	min-width: 3.75rem;
	width: 49%;
	padding: 0 0.3125rem;
	display: inline-block;
	border: 0.0625rem solid #ddd;
	display: inline-block;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby.txt-price-shopby-fisrt {
	margin-right: 2%;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby span {
	display: table-cell;
	vertical-align: middle;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby span.text-current {
	position: relative;
	top: 0.0625rem;
}

.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .input_max,
.module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .input_min {
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	width: 3.125rem;
	min-width: 2.8125rem;
}

.module.so_filter_wrap .modcontent .noUi-handle {
	border: 0.0625rem solid #fff;
	box-shadow: 0rem 0rem 0.9375rem rgba(0, 0, 0, 0.15);
	background: #f74e0f;
	width: 1.25rem;
	height: 1.25rem;
	left: -0.625rem;
	top: -0.3125rem;
}

.module.so_filter_wrap .modcontent .noUi-handle:hover {
	cursor: e-resize;
}

.module.so_filter_wrap .modcontent .noUi-connect {
	box-shadow: none;
	height: 0.625rem;
	background: #f74e0f;
	border-radius: 0 1.25rem 1.25rem 0;
}

.module.so_filter_wrap .modcontent .noUi-background {
	background: #d9d9d9;
	box-shadow: none;
	height: 0.625rem;
	border-radius: 0 1.25rem 1.25rem 0;
}

.module.so_filter_wrap .modcontent .noUi-target {
	border: none;
}

.module.so_filter_wrap .modcontent .clear_filter {
	padding: 0.625rem 0 1.25rem 0rem;
}

.module.so_filter_wrap .modcontent #btn_resetAll {
	padding: 0.5rem 0.9375rem;
	font-size: 0.875rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background-color: #777;
}

.module.so_filter_wrap .modcontent #btn_resetAll:hover {
	background-color: #c12026;
}

.module.so_filter_wrap .modcontent #btn_resetAll .fa.fa-times {
	color: #c12026;
}

.so-filter-content-opts-container .option-count {
	background-color: transparent !important;
}

.so-filter-content-opts-container .option-count:not(.opt_close):after {
	display: none;
	border-right-color: #777;
}

.so_filter_wrap .modcontent .so-filter-heading i {
	float: right;
	padding: 0.4375rem 0;
}

.so_filter_wrap .modcontent .so-filter-content-opts-container label {
	font-weight: normal;
}

.so_filter_wrap .modcontent .so-filter-content-opts-container .option-count {
	float: right;
}

.so-filter-content-opts-container .option-count span {
	color: #000;
}

.module.so_filter_wrap .modcontent .btn_resetAll {
	padding: 1rem 0.9375rem;
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 700;
	text-transform: capitalize;
	color: #fff;
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	border: none;
	width: 100%;
}

.module.so_filter_wrap .modcontent .btn_resetAll:hover {
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
}

.module.so_filter_wrap .modcontent .btn_resetAll:focus {
	box-shadow: none;
}

#content .filter-horizontal {
	margin-bottom: 1.875rem;
}

#content .filter-horizontal .so-filter-heading {
	padding: 0 0.9375rem;
}

#content .filter-horizontal .so-filter-content-opts-container {
	padding: 0.9375rem;
}

#content .filter-horizontal .so-filter-content-opts-container .so-filter-iscroll {
	padding: 0.625rem 0;
}

#content .filter-horizontal ul {
	display: flex;
}

#content .filter-horizontal li.so-filter-options {
	flex: 1;
	border: none;
	border-right: 0.0625rem solid #eaeaea;
	margin: 0;
}

#content .filter-horizontal li.so-filter-options:last-child {
	border-right: none;
}

#content .filter-horizontal li.so-filter-options .so-filter-heading {
	margin-bottom: 0;
}

#content .filter-horizontal .clear_filter {
	padding: 1.25rem;
	border-top: 0.0625rem solid #ebebeb;
}

#content .filter-horizontal h3.modtitle {
	color: #222;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.9375rem;
	text-transform: uppercase;
	margin-top: 0;
}

#content .filter-horizontal .modcontent {
	border: 0.0625rem solid #ebebeb;
}

#content .filter-horizontal .modcontent ul li.so-filter-options {
	border-radius: 0;
	padding: 0.625rem 0;
}

.block-tags {
	margin-top: 1.25rem;
}

.block-tags .so-popular-tag a {
	float: left;
	font-size: 0.8125rem !important;
	padding: 0.5rem 0.9375rem;
	border: 0.0625rem solid #ebebeb;
	border-radius: 0.3125rem;
	margin: 0 0.3125rem 0.3125rem 0;
	line-height: 100%;
	background-color: #fff;
}

.block-tags .so-popular-tag a:hover {
	color: #fff;
	background-color: #c12026;
	border-color: #c12026;
}

.box-category ul {
	list-style: none;
	padding: 0rem;
	margin: 0rem;
}

.box-category>ul {
	padding: 0;
}

.box-category>ul>li {
	margin: 0;
	padding: 0;
	border: none;
	position: relative;
	box-shadow: unset;
	border-radius: 0;
	border-bottom: 0.0625rem solid #ebebeb;
}

.box-category>ul>li>a {
	display: block;
	font-weight: 400;
	line-height: 100%;
	padding: 0.875rem 2.9375rem 0.875rem 0.9375rem;
	text-transform: capitalize;
	margin: 0;
}

.box-category>ul>li:last-child {
	border-bottom-right-radius: 0rem;
	border-bottom-left-radius: 0rem;
	border: none;
}

.box-category>ul>li:last-child>a {
	border-bottom-right-radius: 0rem;
	border-bottom-left-radius: 0rem;
}

.box-category>ul>li:hover>a {
	color: #c12026;
}

.box-category>ul>li:hover .head a {
	color: #fff;
}

.box-category>ul>li ul {
	margin-left: 1.25rem;
}

.box-category>ul>li a.accordion-toggle {
	width: 1.5625rem;
	height: 1.5625rem;
	line-height: 1.5625rem;
	background-color: #dbdbdb;
	color: #fff;
}

.box-category>ul>li a.accordion-toggle:hover {
	background-color: #c12026;
}

.module.category-style .box-category {
	max-height: 43.75rem;
	overflow-y: scroll;
}

.box-category ul li a.active {
	color: #c12026;
}

.box-category ul li .head .show:before {
	content: "";
	display: inline-block;
	font: normal normal normal 0.875rem/1 "FontAwesome";
}

.box-category ul li .head .accordion-toggle:before {
	content: "";
	font: normal normal normal 0.875rem/1 "FontAwesome";
}

.box-category ul li .head {
	display: block;
	position: absolute;
	top: 0.5rem;
	line-height: 1.25rem;
	right: 0.9375rem;
	text-align: center;
}

.box-category ul li .head a:hover {
	color: #fff;
}

.box-category ul li ul li {
	padding: 0rem 0rem 0rem 0.3125rem;
}

.box-category ul ul {
	margin-bottom: 1.25rem;
}

.box-category ul ul li a {
	padding: 0.1875rem 0;
}

.box-category ul li ul li a:before {
	font-family: "FontAwesome";
	transition: all 0.3s ease;
	content: "";
	margin: 0 0.3125rem 0;
}

.box-category ul li ul li a:hover:before {
	margin-right: 0.625rem;
}

.page-categories {
	margin-top: 1.875rem;
}

.page-categories ul {
	margin: 0 -0.375rem;
}

.page-categories ul li {
	float: left;
	padding: 0 0.375rem;
}

.page-categories ul li .cate {
	text-align: center;
	margin-bottom: 1.875rem;
}

.page-categories ul li .cate .cate-img {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 0.4375rem;
}

.page-categories ul li .cate .cate-img:hover {
	opacity: 0.8;
}

.page-categories ul li .cate a {
	color: #000;
	font-size: 0.875rem;
}

.page-categories ul li .cate a:hover {
	color: #c12026;
}

@media (max-width: 74.9375rem) {
	#content #so-groups {
		display: none;
	}
}

#content #so-groups>a span {
	background-color: #c12026;
}

#content #so-groups>a:hover {
	background-color: #b82a2e;
}

#content .so-groups-sticky {
	background-color: #c12026;
}

#content .so-groups-sticky.left {
	left: 0;
	right: auto;
}

#content .so-groups-sticky.right {
	right: 0;
	left: auto;
}

#content .so-groups-sticky .popup-header {
	padding: 1.5625rem 4.375rem 1.5625rem 2.5rem;
}

#content .so-groups-sticky .popup-header .popup-close {
	right: 1.25rem;
	left: auto;
	color: #fff;
	font-size: 1.375rem;
	opacity: 1;
}

#content .so-groups-sticky .product-thumb .button-group button,
#content .so-groups-sticky .form-content .form-box #button-search {
	background-color: #c12026 !important;
}

#content .so-groups-sticky .product-thumb .button-group button:hover,
#content .so-groups-sticky .form-content .form-box #button-search:hover {
	background-color: #b82a2e !important;
}

#content .so-groups-sticky .form-content .form-box .product-thumb .caption h4 a:hover {
	color: #c12026;
}

#content .so-groups-sticky .form-content .form-box .price .price-new,
#content .so-groups-sticky .form-content .form-box .price span.price {
	color: #222;
}

#content .so-groups-sticky .form-content .form-box .product-thumb .image .bt-sale,
#content .so-groups-sticky .popup-header {
	background-color: #c12026;
}

#content .so-groups-sticky .form-content .form-box .product-thumb .caption {
	height: auto;
	max-height: auto;
	min-height: auto;
}

#content .so-groups-sticky .popup-close,
#content .so-groups-sticky .popup-close i.fa {
	font-size: 1rem;
}

#content .so-groups-sticky .popup-header>span>i {
	margin-right: 0.625rem;
	margin-left: auto;
}

#content .so-groups-sticky .nav-secondary ul li a:hover {
	color: #c12026;
}

#content .so-groups-sticky .form-content .form-box input.field:hover,
#content .so-groups-sticky .form-content .form-box select.field:hover {
	cursor: pointer;
}

#so-groups .form-content .form-box a.account-url:hover .account-txt {
	color: #c12026;
}

#so-groups .form-content .form-box input+i {
	font-size: 1rem;
	margin-top: -0.5625rem;
}

#so-groups .form-content .form-box input+i:hover {
	color: #c12026;
}

#so-groups .form-content .form-box .product-thumb .caption h4 {
	margin-bottom: 0;
}

#so-groups .form-content .form-box .product-thumb .caption h4 a {
	font-weight: 400;
}

#so-groups>a {
	position: relative;
	height: 2.6875rem;
}

#so-groups>a.sticky-backtop {
	border-bottom: none;
}

#so-groups>a span {
	background-color: #c12026;
	color: #fff;
	display: inline-block;
	font-size: 0.875rem;
	line-height: 1.375rem;
	opacity: 0;
	padding: 0.625rem;
	position: absolute;
	right: 100%;
	text-align: center;
	text-transform: capitalize;
	top: 0;
	transition: all 0.2s ease-in-out 0s;
	visibility: hidden;
	white-space: nowrap;
	width: auto;
}

#so-groups>a:hover span {
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
	visibility: visible;
	width: auto;
}

.so-onepagecheckout .checkout-cart td.quantity .input-group {
	min-width: 5.9375rem;
}

#so-groups .popup-content {
	max-height: 25.9375rem;
	overflow-y: scroll;
}

#so-groups .cart-bottom p {
	display: inline-block;
	width: 100%;
	margin-bottom: 1.25rem;
}

#so-groups div.nav-secondary li span.nav-action i.fa {
	height: 2.9375rem;
	line-height: 2.9375rem;
}

#content .so-onepagecheckout .secondary-title i.fa {
	margin-right: 0.625rem;
	margin-left: auto;
	background-color: #c12026;
}

.so-onepagecheckout .price {
	font-size: 0.875rem;
}

body #sosearchpro .dropdown-menu .media-body .box-price .price-new {
	color: #c12026;
}

body #sosearchpro .dropdown-menu .media-body .box-price .price {
	font-size: 0.8125rem;
	color: #c12026;
}

body #sosearchpro .dropdown-menu .media-body .box-price span {
	font-weight: normal;
	font-size: 0.8125rem;
	color: #666;
}

#content #so_popup_countdown .modal-header {
	background-color: #c12026;
}

#content #so_popup_countdown .modal-header .close {
	font-size: 1.4375rem;
	right: 0.9375rem;
	top: 2.0625rem;
}

#so_popup_countdown .modal-footer #so_countdown_timer {
	top: 4.0625rem;
}

@media (min-width: 75rem) {
	body #so_popup_countdown.modal.in .modal-dialog {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: auto !important;
		margin: 0 auto;
		transition: none;
	}
}

body #so_popup_countdown .modal-footer #so_countdown_timer .time-item {
	line-height: 1.125rem;
	padding-top: 0.5rem;
}

#so_popup_countdown .list-cates {
	background: url(../../images/bg-popupc.jpg) no-repeat;
	background-size: 100%;
}

#so_popup_countdown .list-cates ul {
	width: 64%;

	float: right;
	padding: 2.5rem 1.25rem 0 0;
	text-align: center;
}

#so_popup_countdown .list-cates ul li {
	display: inline-block;
	margin: 0 0.875rem;
	text-align: center;
}

#so_popup_countdown .list-cates ul li a {
	font-size: 0.875rem;
	font-weight: 500;
}

#so_popup_countdown .list-cates ul li a .icon {
	width: 5.4375rem;
	height: 5.4375rem;
	background-color: #f7e7de;
	background-image: url(../../images/icons/css_sprites.png);
	background-repeat: no-repeat;
	border-radius: 50%;
	display: block;
	margin-bottom: 0.625rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon1 {
	background-position: -0.5625rem -0.5625rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon2 {
	background-position: -0.5625rem -13.6875rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon3 {
	background-position: -0.5625rem -26.8125rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon4 {
	background-position: -0.5625rem -39.9375rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon5 {
	background-position: -0.5625rem -53.0625rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon6 {
	background-position: -0.5625rem -66.1875rem;
}

#so_popup_countdown .list-cates ul li a .icon.icon7 {
	background-position: -0.5625rem -79.3125rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon {
	background-color: #c12026;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon1 {
	background-position: -0.5625rem -7.125rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon2 {
	background-position: -0.5625rem -20.25rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon3 {
	background-position: -0.5625rem -33.375rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon4 {
	background-position: -0.5625rem -46.5rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon5 {
	background-position: -0.5625rem -59.625rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon6 {
	background-position: -0.5625rem -72.75rem;
}

#so_popup_countdown .list-cates ul li a:hover .icon.icon7 {
	background-position: -0.5625rem -85.875rem;
}

#so_popup_countdown .list-cates ul li.item5,
#so_popup_countdown .list-cates ul li.item6,
#so_popup_countdown .list-cates ul li.item7 {
	margin-top: 1.5625rem;
}

#so_popup_countdown .list-cates .customer {
	display: inline-block;
	width: 100%;
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.04);
	font-size: 0.875rem;
	font-weight: 500;
	margin-top: 1.125rem;
	padding: 0.75rem 2.5rem 0.75rem 50%;
}

#so_popup_countdown .list-cates .customer a {
	color: #c12026;
}

#so_popup_countdown .list-cates .customer a:hover {
	color: #b82a2e;
}

.hidden-popup-countdown {
	overflow: visible;
}

.hidden-popup-countdown #so_popup_countdown {
	display: none !important;
}

.hidden-popup-countdown .modal-backdrop {
	display: none !important;
}

.hidden-popup-countdown.modal-open .modal-backdrop:first-child {
	display: none !important;
}

.hidden-popup-countdown.modal-open .modal-backdrop {
	display: block !important;
}

body .mfp-close {
	right: 0;
	left: auto;
}

#product-quick .owl2-carousel .owl2-stage-outer {
	direction: ltr;
}

#product-quick .product-view .content-product-right .box-info-product .quantity .quantity-control .product_quantity_up:before {
	content: "+";
	font-size: 1.5rem;
	font-weight: 700;
}

.so-fb-message-style-default .so-fb-message-head {
	height: 1.875rem;
	line-height: 1.875rem;
	padding: 0 0.3125rem;
}

.popup-recent .space .col-sm-4:nth-child(3n + 1) {
	clear: both;
}

.so-show-demos-preview {
	top: 70% !important;
}

.so-page-builder .container-fluid {
	padding: 0;
	overflow: hidden;
}

@media (min-width: 62rem) {

	.modal-lg,
	.modal-xl,
	.modal-dialog {
		max-width: 56.25rem;
	}

	.navbar-expand-lg .navbar-toggler {
		display: none;
	}

	.navbar-toggler {
		display: none;
	}

	.navbar-toggle {
		display: none;
	}
}

#so-groups table tr td {
	--bs-table-accent-bg: transparent;
	vertical-align: middle;
}

#so-groups .form-content .form-box .product-thumb .button-group button {
	width: auto;
}

body .block-popup-login .secondary {
	margin-top: 1.25rem;
}

body .block-popup-login .block-content label {
	margin-bottom: 0.3125rem;
	font-weight: 700;
}

body #so_sociallogin .block-popup-login .close-login {
	overflow: visible;
	right: 0;
}

.container-megamenu.horizontal .shoppage {
	display: flex;
}

.container-megamenu.horizontal .shoppage li.col-lg-3 {
	margin-bottom: 0 !important;
}

.container-megamenu.horizontal ul.megamenu .sub-menu .content>.border,
.container-megamenu.vertical .vertical-wrapper ul.megamenu .sub-menu .content>.border {
	border: none !important;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .hidden-popup input {
	vertical-align: -0.125rem;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control {
	text-align: left;
}

.product-detail .content-aside>.list-group {
	margin-bottom: 2.5rem !important;
}

.product-detail .content-aside>.list-group .list-group-item.active {
	background-color: transparent;
	border-color: rgba(0, 0, 0, 0.125);
	color: #c12026;
}

.product-detail .content-aside>.list-group .list-group-item+.list-group-item.active {
	border-top-width: 0;
	margin-top: -0.0625rem;
}

.product-detail .content-aside>.list-group .list-group-item {
	border: none;
	padding: 0.5rem 0;
}

.product-detail .content-aside>.list-group .list-group-item:last-child {
	border: none;
}

.banner-left a img {
	width: 100%;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group .form-control {
	direction: unset;
}

.module.main-newsleter-popup .so-custom-popup .oca_popup .popup-content .form-group {
	margin-bottom: 1.25rem;
}

.popup-mysearch .popup-content .form-content>.row {
	flex-direction: column;
}

#so-groups .form-content .form-box .product-thumb .button-group .addToCart i {
	display: none;
}

#so-groups .form-content .form-box #button-search {
	border-radius: 0.3125rem;
}

.blog-header h3 {
	font-size: 2.6rem;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 2.0625rem;
	color: #000;
	display: inline-block;
	width: 100%;
	position: relative;
	margin-bottom: 0.625rem;
}

.blog-cate ul {
	margin-bottom: 0;
	padding: 0.625rem 0;
}

.blog-cate ul li.list-group-item {
	border: none;
	padding: 0.3125rem 0rem;
}

.blog-listitem .blog-item .blog-item-inner {
	display: block;
	margin-bottom: 1.875rem;
	transition: all 0.2s;
}

.blog-listitem .blog-item .blog-item-inner:hover .blog-content h4>a {
	color: #c12026;
}

.blog-listitem .blog-item .blog-item-inner .article-image {
	border-radius: 0.3125rem;
	overflow: hidden;
}

.blog-listitem .blog-item .blog-item-inner .article-image:hover img {
	opacity: 0.8;
	transition: all 0.2s ease-in-out 0s;
}

.blog-listitem .blog-item .blog-item-inner .itemBlogContent {
	padding: 0.9375rem 0 0;
}

.blog-listitem .blog-item .blog-item-inner .blog-meta {
	display: block;
	width: 100%;
	font-size: 0.875rem;
	color: #666;
}

.blog-listitem .blog-item .blog-item-inner .author,
.blog-listitem .blog-item .blog-item-inner .comment_count,
.blog-listitem .blog-item .blog-item-inner .blog-date {
	display: inline-block;
}

.blog-listitem .blog-item .blog-item-inner .author i,
.blog-listitem .blog-item .blog-item-inner .comment_count i,
.blog-listitem .blog-item .blog-item-inner .blog-date i {
	margin-right: 0.5rem;
	font-size: 0.875rem;
	display: inline-block;
}

.blog-listitem .blog-item .blog-item-inner .author a,
.blog-listitem .blog-item .blog-item-inner .comment_count a,
.blog-listitem .blog-item .blog-item-inner .blog-date a {
	color: #666;
}

.blog-listitem .blog-item .blog-item-inner .author {
	margin-right: 0.9375rem;
}

.blog-listitem .blog-item .blog-item-inner .author span {
	display: inline-block;
	margin-right: 0.3125rem;
}

.blog-listitem .blog-item .blog-item-inner .blog-content {
	clear: both;
	display: inline-block;
	width: 100%;
}

.blog-listitem .blog-item .blog-item-inner .blog-content h4 {
	margin-bottom: 0.625rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4375rem;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .article-description {
	margin: 0.5rem 0 0.625rem 0;
	line-height: 1.25rem;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore {
	font-size: 0.875rem;
	margin-top: 0.3125rem;
	display: none;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore .fa {
	margin-right: 0.5rem;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore>a {
	color: #000;
}

.blog-listitem .blog-item .blog-item-inner .blog-content .readmore>a:hover {
	color: #c12026;
}

.blog-listitem .blog-grid-1 .blog-item-inner {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogImg {
	width: 23.5rem;
	margin: 0 1.875rem 0 0;
	float: left;
}

@media (max-width: 47.9375rem) {
	.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogImg {
		width: auto;
	}
}

.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogContent {
	width: calc(100% - 25.375rem);
	float: none;
	overflow: hidden;
	clear: none;
	padding: 0;
	display: inline-flex;
	margin: auto 0;
}

@media (max-width: 47.9375rem) {
	.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogContent {
		width: 100%;
		margin-top: 0.9375rem;
		display: inline-block;
	}
}

@media (min-width: 75rem) {
	.blog-listitem .blog-grid-2:nth-child(2n + 1) {
		clear: both !important;
	}
}

.blog-listitem .blog-grid-2 .blog-item-inner {
	background: none;
	box-shadow: none !important;
}

.blog-listitem .blog-grid-2 .article-description {
	display: none;
}

@media (min-width: 75rem) {
	.blog-listitem .blog-grid-3:nth-child(3n + 1) {
		clear: both !important;
	}
}

.blog-listitem .blog-grid-3 .blog-item-inner {
	background: none;
	box-shadow: none !important;
}

.blog-listitem .blog-grid-3 .article-description {
	display: none;
}

@media (min-width: 75rem) {
	.blog-listitem .blog-grid-4:nth-child(4n + 1) {
		clear: both !important;
	}
}

.blog-listitem .blog-grid-4 .article-description {
	display: none;
}

.blog-listitem .blog-list .blog-item-inner {
	padding: 0rem;
	background: none;
	margin-bottom: 2.1875rem;
}

.blog-listitem .blog-list .blog-item-inner .itemBlogImg {
	margin-bottom: 0.9375rem;
}

.blog-listitem .blog-list .blog-item-inner .itemBlogContent {
	padding: 0;
}

.blog-category .filters-panel .pagination {
	justify-content: center;
}

div.article-info .article-title h3 {
	font-size: 1.625rem;
	line-height: 2rem;
	text-transform: capitalize;
	color: #000;
	font-weight: 600;
	margin-bottom: 0.375rem;
}

div.article-info .article-sub-title {
	display: inline-block;
	width: 100%;
	margin-bottom: 1.875rem;
	line-height: 1.125rem;
}

div.article-info .article-sub-title span {
	display: inline-block;
	color: #666;
	font-size: 0.875rem;
}

div.article-info .article-sub-title span i {
	margin-right: 0.5625rem;
	display: inline-block;
}

div.article-info .article-sub-title span.article-author {
	padding-right: 0.9375rem;
}

div.article-info .article-sub-title span.article-author a {
	color: #666;
}

div.article-info .article-sub-title span.article-author a:hover {
	color: #c12026;
}

div.article-info .article-sub-title .article-share {
	display: none;
}

div.article-info .article-image {
	margin-bottom: 1.875rem;
}

div.article-info .article-description {
	margin-bottom: 1.875rem;
}

div.article-info .related-comment {
	text-align: left;
	border-radius: 0;
	border: 0;
	border-top: 0.0625rem solid #e6e6e6;
	padding-top: 2.5rem;
	box-shadow: none;
	margin-top: 2.5rem;
}

div.article-info .related-comment .article-reply {
	border: none;
	background: #f9f9f9;
}

div.article-info .related-comment .article-reply .author {
	font-weight: bold;
	font-size: 1rem;
}

div.article-info .related-comment .article-reply .article-reply {
	background: #f4f3f3;
}

div.article-info .related-comment .panel-body {
	padding: 0;
	border: 0;
}

div.article-info .related-comment .panel-body .form-group #comments {
	padding: 0;
	border: 0;
	overflow: hidden;
}

div.article-info .related-comment .panel-body .form-group #comments h2#review-title {
	margin: 0 0 1.875rem;
	padding: 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.125rem;
	color: #121212;
}

div.article-info .related-comment #button-comment {
	border-radius: 0.3125rem;
}

@media (min-width: 62rem) {
	div.article-info .related-comment #button-comment {
		padding: 0.625rem 3.25rem;
	}
}

div.article-info .panel-default {
	border-radius: 0;
	clear: both;
}

div.article-info .itemFullText {
	text-align: justify;
}

.panel--related img {
	transition: 0.3s all ease-in-out;
}

.panel--related .img-responsive:hover {
	opacity: 0.8;
}

.panel--related .caption h4 {
	font-size: 0.875rem;
	margin: 0.625rem 0;
}

.article--default .article-info {
	text-align: center;
}

.article--default .article-info .article-image img {
	border-radius: 0.625rem;
}

.article--default .article-info .article-description {
	text-align: justify;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 75rem) {
	.article--default .article-info .article-description {
		max-width: 90%;
	}
}

.article--default .article-info .article-description .banners img {
	border-radius: 0.625rem;
}

.article--style1 .article-info .article-image {
	width: 50%;
	margin-right: 1.875rem;
	float: left;
}

.article--style2 .article--mainimage {
	position: relative;
	z-index: 1;
	margin-bottom: 1.875rem;
}

.article--style2 .article--mainimage img {
	width: 100%;
}

.article--style2 .article--maintitle {
	position: absolute;
	bottom: 0;
	z-index: 5;
	width: 100%;
	padding: 0.625rem 0.9375rem;
	color: var(--color-light-gray);
	background: -webkit-linear-gradient(left,
			#111 0%,
			rgba(255, 255, 255, 0) 100%);

	background: linear-gradient(to right, #111 0%, rgba(255, 255, 255, 0) 100%);

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#00ffffff", GradientType=1);

}

.article--style2 .article--maintitle .article-title {
	text-transform: capitalize;
}

.article--style2 .article--maintitle h3 {
	margin-bottom: 0.3125rem;
	font-size: 1.625rem;
}

.article--style2 .article--maintitle .article-sub-title {
	color: var(--color-light-gray);
	font-size: 0.875rem;
}

.article--style2 .article--maintitle .article-sub-title i {
	margin-right: 0.5625rem;
}

.article--style2 .article--maintitle .article-sub-title .article-author {
	padding-right: 0.9375rem;
}

.article--style2 .article--maintitle .article-sub-title .article-author a {
	color: var(--color-light-gray);
}

.article--style2 .article--maintitle .article-sub-title .article-author a:hover {
	color: #c12026;
}

.article--style3 .article--mainimage {
	position: relative;
	z-index: 1;
	margin-bottom: 1.875rem;
}

.article--style3 .article--mainimage img {
	width: 100%;
}

.article--style3 .article--maintitle .article-title {
	text-transform: capitalize;
}

.article--style3 .article--maintitle h3 {
	margin-bottom: 0.3125rem;
	font-size: 1.625rem;
}

.article--style4 .article--maincontent {
	padding: 1.25rem !important;
	position: relative;
	z-index: 2;
	margin-top: -6.25rem;
	background: #fff;
}

.article--style5 .article--mainimage {
	position: relative;
	z-index: 1;
	margin-bottom: 1.875rem;
}

.article--style5 .article--maintitle {
	position: absolute;
	z-index: 5;
	transform: translateY(-130%);
	width: 73.125rem;
}

.article--style5 .article--maintitle h3 {
	margin-bottom: 0;
	font-size: 1.625rem;
}

.article--style5 .article--maintitle .article-title {
	text-transform: capitalize;
	bottom: 0;
	z-index: 5;
	display: block;
	background: rgba(0, 0, 0, 0.6);
	padding: 0.625rem;
	color: var(--color-light-gray);
	margin-bottom: 0.625rem;
}

.article--style5 .article--maintitle .article-sub-title {
	bottom: 0;
	z-index: 5;
	display: inline-block;
	background: rgba(0, 0, 0, 0.6);
	min-width: 45%;
	padding: 0.625rem;
	color: var(--color-light-gray);
	font-size: 0.875rem;
}

.article--style5 .article--maintitle .article-sub-title i {
	margin-right: 0.5625rem;
}

.article--style5 .article--maintitle .article-sub-title .article-author {
	padding-right: 0.9375rem;
}

.article--style5 .article--maintitle .article-sub-title .article-author a {
	color: var(--color-light-gray);
}

.article--style5 .article--maintitle .article-sub-title .article-author a:hover {
	color: #c12026;
}

.article--style5 .article--maintitle .article-title,
.article--style5 .article--maintitle .article-sub-title {
	background: -webkit-linear-gradient(left,
			#111 0%,
			rgba(255, 255, 255, 0) 100%);

	background: linear-gradient(to right, #111 0%, rgba(255, 255, 255, 0) 100%);

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#00ffffff", GradientType=1);

}

.comments {
	margin-bottom: 1.875rem;
}

.comments.comments-level-1 {
	margin-left: 8.5rem;
}

.comments .pull-left {
	width: 6.25rem;
	height: 6.25rem;
	display: block;
	background-color: #f5f5f5;
	margin-right: 1.875rem;
	position: relative;
	padding: 0;
}

.comments .pull-left .fa {
	font-size: 2.875rem;
	display: block;
	text-align: center;
	margin: 1.5625rem 0;
}

.comments .pull-left img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}

.comments .pull-left span {
	position: absolute;
	display: inline-block;
	top: 15%;
}

.comments .media-body .media-title {
	color: #1fc0a0;
	padding-bottom: 0.875rem;
}

.comments .media-body .media-title .username {
	font-size: 1.125rem;
	font-style: italic;
	font-family: Georgia, sans-serif;
	display: inline-block;
	margin-right: 0.875rem;
}

.comments .media-body .media-title .time {
	font-size: 1rem;
}

.comments .media-body .media-title .time .fa {
	font-size: 1.25rem;
	margin-right: 0.8125rem;
	position: relative;
	top: 0.1875rem;
}

.comments .media-body .media-title .link:hover {
	text-decoration: none;
}

@media (max-width: 46.5625rem) {
	.comments {
		margin-bottom: 1.75rem;
	}

	.comments.comments-level-1 {
		margin-left: 4.375rem;
	}

	.comments .pull-left {
		width: 4.375rem;
		height: 4.375rem;
		margin-right: 1.25rem;
	}

	.comments .pull-left:before {
		font-size: 2.875rem;
		line-height: 1em;
		top: 0.625rem;
	}

	.comments .media-body .media-title time {
		display: block;
	}

	.comments .media-body .media-title time .icon {
		font-size: 1.25rem;
		margin: 0 0.375rem 0 0;
		position: relative;
		top: 0.1875rem;
	}
}

.article--style5 .article--mainimage img,
.article--style4 .article--mainimage img {
	width: 100%;
}

.banners-effect-6 .banners>div a {
	border-radius: 0.1875rem;
}

.media-date-added.idx8,
.media-date-added.idx4 {
	display: none;
}

html {
	width: 100%;
	outline: 0 !important;
	direction: ltr;
}

body {
	color: #727272;
	font-size: 1rem;
	line-height: 1.625rem;
	background-color: var(--iak-cream);
}

.owl2-carousel .owl2-item img {
	transform-style: inherit;
}

h1 {
	font-size: 2.25rem;
}

h2 {
	font-size: 1.875rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.125rem;
}

h5 {
	font-size: 0.875rem;
}

h6 {
	font-size: 0.75rem;
}

.h1,
.h2,
.h3,
h1,
h2,
h3,
.h4,
.h5,
.h6,
h4,
h5,
h6 {
	margin: 0 0 0.9375rem 0;
}

* {
	outline: none !important;
}

::-webkit-scrollbar {
	width: 0.5em;
	height: 0.5em;
}

::-webkit-scrollbar-thumb {
	background: #777;
}

::-webkit-scrollbar-track {
	background: #d6d6d6;
}

body {
	scrollbar-face-color: #777;
	scrollbar-track-color: #d6d6d6;
}

input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.wrapper-boxed .typeheader-1.navbar-compact {
	width: 100%;
	max-width: 101.875rem;
}

@media (min-width: 75rem) {
	body.common-home.boxed_other_pages.layout-1 .container {
		max-width: 101.875rem;
		padding: 0;
		width: 93%;
	}

	body.common-home.boxed_other_pages.layout-1 .col-md-3.content-aside {
		width: 16.66666667%;
	}

	body.common-home.boxed_other_pages.layout-1 #content.col-sm-9,
	body.common-home.boxed_other_pages.layout-1 #content.col-md-9,
	body.common-home.boxed_other_pages.layout-1 #content.col-lg-9 {
		width: 83.33333333%;
	}

	body.common-home.boxed_other_pages.layout-1 .wrapper-boxed,
	body.common-home.boxed_other_pages.layout-1 .wrapper-iframed,
	body.common-home.boxed_other_pages.layout-1 .wrapper-rounded {
		max-width: 101.875rem;
	}

	body.common-home.boxed_other_pages.layout-1 .wrapper-boxed .container,
	body.common-home.boxed_other_pages.layout-1 .wrapper-iframed .container,
	body.common-home.boxed_other_pages.layout-1 .wrapper-rounded .container {
		width: 95%;
	}

	body.full_other_pages.layout-1 .wrapper-boxed,
	body.full_other_pages.layout-1 .wrapper-iframed,
	body.full_other_pages.layout-1 .wrapper-rounded {
		max-width: 101.875rem;
	}

	body.full_other_pages.layout-1 .wrapper-boxed .container,
	body.full_other_pages.layout-1 .wrapper-iframed .container,
	body.full_other_pages.layout-1 .wrapper-rounded .container {
		width: 95%;
	}

	body.layout-1 header .container,
	body.layout-1 footer .container {
		max-width: 101.875rem;
	}
}

@media (min-width: 75rem) and (max-width: 101.875rem) {

	body.common-home.boxed_other_pages.layout-1 .content-main-w .main-left,
	body.common-home.boxed_other_pages.layout-1 .col-md-3.content-aside {
		width: 21%;
	}

	body.common-home.boxed_other_pages.layout-1 .content-main-w .main-right,
	body.common-home.boxed_other_pages.layout-1 #content.col-sm-9,
	body.common-home.boxed_other_pages.layout-1 #content.col-md-9,
	body.common-home.boxed_other_pages.layout-1 #content.col-lg-9 {
		width: 79%;
	}
}

#content .so-page-builder .container {
	overflow: visible;
}

.textColor {
	color: #c12026;
}

ul,
ul.menu,
ol.menu,
ul.blank {

	margin: 0;
	padding: 0;
}

option {
	padding: 0.125rem 0.3125rem;
	border-width: 0.0625rem;
}

.alert ol li {
	list-style-type: decimal;
	margin: 0 0 0.3125rem 0.9375rem;
}

img {
	max-width: 100%;
}

.over {
	overflow: visible;
}

.align-center {
	display: table;
	margin: 0 auto;
}

.text-danger {
	color: #fff !important;
	display: inline-block;
	background-color: #a94442;
	padding: 0 0.3125rem;
	margin: 0.3125rem 0;
	border-radius: 0.1875rem;
	font-size: 0.6875rem;
}

a {
	color: #000;
}

a,
a:visited,
a:active,
a:link,
a:focus {
	cursor: pointer;
	outline: none;
}

ol {
	counter-reset: item;
	padding: 0 0 0 0.9375rem;
}

sup {
	color: #f00;
	font-size: 100%;
	top: -0.25rem;
}

.list-inline {
	display: inline-block;
	margin: 0;
}

.container-megamenu .list-inline a {
	display: inline-block;
}

.clearfix {
	clear: both;
	margin-top: 1.875rem;
}

.img-thumbnail.pull-left {
	margin-right: 1.875rem;
}

.img-thumbnail.pull-right {
	margin-left: 1.875rem;
}

.margin-zero {
	margin: 0;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xl-15 {
	position: relative;
	min-height: 0.0625rem;
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
}

.col-xs-15 {
	width: 20%;
	float: left;
}



@media (min-width: 48rem) and (max-width: 61.9375rem) {
	.col-sm-15 {
		width: 20%;
		float: left;
	}
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
	.col-md-15 {
		width: 20%;
		float: left;
	}
}

@media (min-width: 75rem) {

	.col-lg-15,
	.col-xl-15 {
		width: 20%;
		float: left;
	}
}

legend {
	font-size: 1.125rem;
	padding: 0.4375rem 0rem;
}

.form-select {
	height: 2.75rem;
	border-radius: 0.3125rem;
	padding: 0.5625rem 0.9375rem;

	font-size: 1rem;
	line-height: 1.6rem;

}

.form-select:focus {
	border-color: #c12026;
	box-shadow: none !important;
}

input#input-captcha {
	margin-bottom: 0.9375rem;
}

textarea {
	max-width: 100%;
}

.cart-img img {
	max-width: 6rem !important;
	height: 6rem !important;
	width: 100% !important;
	object-fit: cover;
}

.cart-details .product-title {
	font-size: 1.125rem !important;
	line-height: 0% !important;
	font-weight: 500 !important;
	font-family: "Public Sans" !important;
	text-transform: capitalize !important;
}

.cart-details .cart-price {
	margin-top: 1rem !important;
}

.cart-price .price {
	font-size: 1.125rem !important;
}

.cart-footer {
	padding-top: 1.25rem !important;

	border-top: 0.0625rem solid #a3a3a3 !important;
}

.subtotal {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding-bottom: 1.25rem !important;
}

.subtotal span {
	font-size: 1rem;
	letter-spacing: 2% !important;
	color: #000;
	font-family: "Public Sans", sans-serif;
	font-weight: 600;
}

.subtotal strong {
	font-weight: bold !important;
	font-size: 1.375rem !important;
	color: #d13b27 !important;
}

a.btn.btn-view-cart.inverse {
	font-size: 1.25rem !important;
	background: transparent !important;
	border: 0.0625rem solid #d13b27 !important;
	color: #d13b27 !important;
	gap: 0.625rem;
}

a.btn.btn-view-cart.inverse:hover {
	background: #d13b27 !important;
	color: #fff !important;
}

a.btn.btn-view-cart.inverse:hover svg path {
	fill: #fff;
}

a.btn.btn-checkout.pull-right {
	font-size: 1.25rem !important;
	background: transparent !important;
	border: 0.0625rem solid #d13b27;
	color: #d13b27 !important;
	gap: 0.625rem;
}

a.btn.btn-checkout.pull-right:hover {
	background: #d13b27 !important;
	color: #fff !important;
}

a.btn.btn-checkout.pull-right:hover svg path {
	fill: #fff;
}

.shopping_cart .fa-check-circle {
	display: none;
}

.shopping_cart .dropdown-menu {
	color: #666;

	min-width: 30rem !important;
	padding: 1.75rem 1.375rem !important;
	height: calc(100vh - 8.5rem) !important;
	width: 30rem;
}

@media (min-width: 62rem) {
	.header.scrolled .shopping_cart .dropdown-menu {
		height: calc(100vh - 5.625rem) !important;
	}
}

.shopping_cart .dropdown-menu .cart_product_name {
	color: #495057;
}

.shopping_cart .dropdown-menu .cart_product_name:hover {
	color: #c12026;
}

.shopping_cart .dropdown-menu .empty {
	padding: 0.9375rem;
	margin: 0;
}

.shopping_cart .table>tbody>tr>td {
	border: none;
	border-bottom: 0.0625rem solid #eee;
	vertical-align: middle;
	padding: 1.25rem 0.3125rem;
}

.shopping_cart .table-striped>tbody>tr:nth-of-type(odd)>* {
	background-color: transparent;
	--bs-table-accent-bg: transparent;
}

.shopping_cart table.total-price {
	margin: 0.9375rem 0 !important;
}

.shopping_cart table.total-price>tbody>tr>td {
	border: none;
	padding: 0rem 1.25rem;
}

.shopping_cart table.total-price>tbody>tr>td.text-left {
	color: #000;
	font-size: 1rem;
}

.shopping_cart table.total-price>tbody>tr>td.text-left strong {
	font-weight: 500;
}

.shopping_cart table.total-price>tbody>tr>td.text-right {
	font-size: 1rem;
	font-weight: 700;
	color: #c12026;
}

.shopping_cart .content-item {
	padding: 0 !important;
	max-height: max-content;
	overflow: auto;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25rem;
	margin-bottom: 1.25rem !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 1.25rem !important;
	height: 100%;
}

.shopping_cart .content-item .size-img-cart {
	padding: 1.25rem 0.9375rem 1.25rem 0rem;
}

.shopping_cart .content-item a {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 500;
}

.shopping_cart .content-item .btn-danger:focus {
	box-shadow: none;
}

.shopping_cart .content-item .fa-trash-o:before {
	content: "";
	font-weight: 300;
	font-size: 1rem;
	color: #c12026;
}

.shopping_cart .content-item .img-thumbnail {
	border: 0.0625rem solid #ebebeb;
	border-radius: 0.3125rem;
	padding: 0;
	width: auto;
	max-width: none;
}

.shopping_cart .content-item .prod-total {
	color: #c12026;
}

.shopping_cart .content-item .prod-qty {
	min-width: 2.1875rem;
}

.shopping_cart .added_items {
	padding: 0.625rem;
	color: #000;
}

.cart-details {
	margin-right: auto !important;
}

.header-top-right .top-link>li {
	position: relative;
}

header .dropdown-menu {
	display: block;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
	transition: all 0.2s ease-out;
	margin-top: 0.625rem;
	padding: 0.625rem 1.25rem;
	min-width: 7.5rem;
	box-shadow: 0 0rem 0.625rem 0rem rgba(0, 0, 0, 0.2);
	right: 0;
	left: auto;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border-radius: 0.3125rem;
}

header .dropdown-menu.show {
	opacity: 1;
	filter: alpha(opacity=100);
	visibility: visible;
	display: flex !important;
	justify-content: space-between;
	transform: translate3d(0rem, 1.9375rem, 0rem) !important;
}

header .btn-shopping-cart:not(.open):hover .dropdown-menu:not(.show),
header #cart:not(.open):hover .dropdown-menu:not(.show),
header .shopping_cart:not(.open):hover .dropdown-menu:not(.show) {
	opacity: 0 !important;
	filter: alpha(opacity=0) !important;
	visibility: hidden !important;
	display: block !important;
	pointer-events: none !important;
}

header .dropdown-menu>li .btn-block {
	padding: 0.3125rem 0;
	line-height: 1.375rem;
	color: #495057;
}

header .dropdown-menu>li .btn-block:hover {
	color: #c12026;
}

header .dropdown-menu>li:hover button {
	color: #c12026;
}

header .dropdown-menu .btn-block {
	border: none;
	background: transparent;
	text-align: left;
}

.dropdown-menu>li>a {
	padding: 0.3125rem 0rem;
	line-height: 1.375rem;
	color: #495057;
}

.dropdown-menu>li>a:hover {
	color: #c12026;
}

.btn-group .btn-link {
	text-align: left;
	background: transparent;
	text-decoration: none;
	padding: 0.3125rem 0.625rem;
	font-weight: normal;
	color: #495057;
	position: relative;
	z-index: 1;
}

.btn-group .btn-link:hover {
	color: #c12026;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
	background: transparent;
}

.nav-header {
	color: #667280;
}

.mini-cart-item {
	display: flex !important;
	align-items: start !important;
	gap: 1rem !important;
}

.cart-remove {
	color: #a3a3a3 !important;
	font-size: 1.25rem !important;
}

@media (min-width: 74.9375rem) {

	header .account:hover .dropdown-menu,
	header .header-top .top-link>li:hover .dropdown-menu,
	header .btn-group:hover .dropdown-menu,
	header .dropdown:hover .dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
	}

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
	}

	header .open>.dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: block !important;
	}
}

@media (max-width: 64rem) {
	header .open>.dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: block !important;
	}

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}

@media (min-width: 48rem) and (max-width: 64rem) {

	header .account:hover .dropdown-menu,
	header .header-top .top-link>li:hover .dropdown-menu,
	header .btn-group:hover .dropdown-menu,
	header .dropdown:hover .dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
	}

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	header .open>.dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}

@media (min-width: 64.0625rem) and (max-width: 74.875rem) {

	header .account:hover .dropdown-menu,
	header .header-top .top-link>li:hover .dropdown-menu,
	header .btn-group:hover .dropdown-menu,
	header .dropdown:hover .dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
	}

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
	}

	header .open>.dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: block !important;
	}
}

@media (min-width: 20rem) and (max-width: 47.9375rem) {

	header .btn-shopping-cart,
	header #cart,
	header .shopping_cart {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
	}

	header .open>.dropdown-menu {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: block !important;
	}
}

.dropdown-menu {
	background: #fff;
	padding: 0.3125rem 0;
	margin-top: 0;
	border-radius: 0rem;
	border: none;
	box-shadow: 0rem 0rem 1.5625rem rgba(0, 0, 0, 0.15);
	font-size: 0.75rem;
}

#cart .dropdown-menu {
	padding: 0;
}

#cart .dropdown-menu:after {
	left: auto;
	right: 3.0625rem;
}

.total-shopping-cart.cart-total-full,
.shoppingcart-box .total-shopping-cart.cart-total-full,
#cart .dropdown-menu .total-shopping-cart.cart-total-full {
	color: #000;
	font-family: "Public Sans", sans-serif;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.03rem;
	display: block;
	padding: 0 0 1.5625rem 0;
	margin-bottom: 0;
	position: relative;
}

.shoppingcart-box .cart-close-button,
.dropdown-menu.shoppingcart-box .cart-close-button,
#cart .dropdown-menu .cart-close-button {
	display: none;
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	width: 2rem;
	height: 2rem;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 99999;
	padding: 0;
	color: #a3a3a3;
	transition: all 0.2s ease;
	align-items: center;
	justify-content: center;
	border-radius: 0.25rem;
	opacity: 1;
	visibility: visible;
}

.shoppingcart-box .cart-close-button:hover,
.dropdown-menu.shoppingcart-box .cart-close-button:hover,
#cart .dropdown-menu .cart-close-button:hover {
	background: #f5f5f5;
	color: #c12026;
}

.shoppingcart-box .cart-close-button svg,
.dropdown-menu.shoppingcart-box .cart-close-button svg,
#cart .dropdown-menu .cart-close-button svg {
	width: 1rem;
	height: 1rem;
	display: block;
}

@media (min-width: 62.0625rem) {

	.shoppingcart-box .cart-close-button,
	.dropdown-menu.shoppingcart-box .cart-close-button,
	#cart .dropdown-menu .cart-close-button {
		display: flex !important;
	}
}

@media (max-width: 62rem) and (min-width: 20rem) {

	.shoppingcart-box .cart-close-button,
	.dropdown-menu.shoppingcart-box .cart-close-button,
	#cart .dropdown-menu .cart-close-button {
		display: flex !important;
	}
}

#sosearchpro .dropdown-menu {
	top: 100%;
	display: none;
}

@media (min-width: 75rem) {
	#sosearchpro .dropdown-menu {
		min-width: 18.75rem;
	}
}

#sosearchpro .dropdown-menu .media-left {
	float: left;
}

#sosearchpro .dropdown-menu .media-body a {
	color: #495057;
	float: none;
}

#sosearchpro .dropdown-menu .media-body a:hover {
	color: #c12026;
}

#sosearchpro .dropdown-menu:after {
	display: none;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group-btn:first-child>.btn:not(:first-child) {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.button,
.btn {
	padding: 0.75rem 1.25rem;
	line-height: 1.0625rem;
	border-radius: 0.3125rem;
	background: #8d979e;
	border: none;
	color: #fff;
}

.button:focus,
.btn:focus {
	box-shadow: none !important;
}

.button:hover,
.btn:hover {
	background: #c12026;
	color: #fff;
	border-color: #c12026;
}

.btn-warning {
	background: #f0ad4e;
}

.btn-success {
	background: #5cb85c;
}

.btn-info {
	background: #999;
	border-radius: 0;
	text-transform: uppercase;
	visibility: visible;
}

.btn-primary {
	background: #8d979e;
	text-transform: capitalize;
}

.btn-danger {
	background: #d9534f;
	border-radius: 0.3125rem;
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: #8d979e;
	border-color: #8d979e;
}

.button .fa,
.btn .fa {
	margin: 0 0.3125rem;
}

.button.inverse,
.btn.inverse {
	background-color: #495057;
}

.button.inverse:hover,
.btn.inverse:hover {
	background-color: #c12026;
	color: #fff;
}

.button-continue-shopping {
	display: block;
	float: left;
}

.button-checkout {
	display: block;
	float: right;
}

.btn-lg,
.btn-group-lg>.btn {
	padding: 0.625rem 1rem;
	font-size: 1.125rem;
	line-height: 1.3333333;
}

.btn-sm,
.btn-group-sm>.btn {
	padding: 0.3125rem 0.625rem;
	font-size: 0.75rem;
	line-height: 1.5;
}

.btn-xs,
.btn-group-xs>.btn {
	padding: 0.0625rem 0.3125rem;
	font-size: 0.75rem;
	line-height: 1.5;
}

.btn-inline {
	display: inline-block;
}

.alert {
	margin-bottom: 1.875rem !important;
	clear: both;
	position: relative;
	padding: 1.125rem 2.5rem 1.125rem 4.6875rem;
	z-index: 30;
	color: #fff;
	border-radius: 0;
	min-height: initial;
	box-sizing: border-box;
	border: none;
	font-weight: 600;
	box-shadow: 0.0625rem 0.0625rem 0.3125rem rgba(0, 0, 0, 0.2);
	transition: 1s all cubic-bezier(1, -0.01, 0, 0.99);
	margin-top: 0.625rem 0 0 0;
	line-height: 1.5625rem;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.alert i {
	position: initial;
	top: 1.9375rem !important;
	left: 2.5rem !important;
	bottom: 0;
	height: max-content;
	text-align: left !important;
	width: initial;
	min-height: initial;
	font-size: 12px;
	-webkit-animation: alert-icon-anim 1s;
	-moz-animation: alert-icon-anim 1s;
	-ms-animation: alert-icon-anim 1s;
	-o-animation: alert-icon-anim 1s;
	animation: alert-icon-anim 1s;
	text-shadow: 0.0625rem 0.0625rem 0.3125rem rgba(0, 0, 0, 0.15);
	margin-top: 7px;
}

.alert a:hover {
	text-decoration: underline;
}

.alert button.close {
	position: absolute;
	top: 1.875rem !important;
	line-height: 1;
	right: 1.875rem !important;
	color: #fff;
	opacity: 1;
	background: none;
	border: none;
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.alert-dismissible .btn-close {
	margin-top: 0.625rem;
}

.alert-dismissible .btn-close:focus {
	box-shadow: none;
}

.alert button.close:hover,
.alert button.close:focus {
	opacity: 1;
	color: #fff;
}

.alert.fadeOut {
	-moz-transform: translate(0, -100%);
	-ms-transform: translate(0, -100%);
	-o-transform: translate(0, -100%);
	-webkit-transform: translate(0, -100%);
	transform: translate(0, -106%);
}

.alert.fadeOut .alert {
	top: 100%;
}

#product-form i.fa.fa-check-circle {
	top: 1.9375rem !important;
}

#product-form i.fa.fa-exclamation-circle {
	top: 1.875rem !important;
}

.header-middle .alert button.close {
	top: 0.6875rem !important;
}

@media (max-width: 29.9375rem) {
	.alert {
		padding-right: 1.875rem;
	}

	.alert button.close {
		right: 0.3125rem;
	}
}

input:-webkit-autofill {
	box-shadow: 0 0 0rem 62.5rem #fff inset !important;
	-webkit-text-fill-color: #000 !important;
}

.alert-success {
	background-color: green;
}

.alert-success a,
.alert-success a:visited,
.alert-success a:focus,
.alert-success a:hover {
	color: #fff;
}

.alert-danger {
	background-color: #f44336;
}

.alert-danger i {
	background: transparent;
}

.alert-danger a {
	color: #2c2c2e;
}

.alert-danger a:hover {
	color: #5a5a5e;
	text-decoration: none !important;
}

.alert-info {
	background-color: #c12026;
}

.alert-info i {
	background: #c12026;
}

.alert-info a,
.alert-info a:visited,
.alert-info a:focus,
.alert-info a:hover {
	color: #b3e5fc;
}

.alert-warning {
	background-color: #c12026;
}

.alert-warning a,
.alert-warning a:visited,
.alert-warning a:focus,
.alert-warning a:hover {
	color: #ffccbc;
}

.table thead>tr>th {
	background: #eee;
}

table.std th,
table.std td {
	vertical-align: middle;
	border: #ebebeb;
	padding: 0.625rem;
	text-align: center;
}

table.std th {
	white-space: nowrap;
	background: #f5f5f5;
}

table.std tfoot td {
	color: #333;
	text-align: right;
	white-space: nowrap;
}

table.std {
	background: #fdfdfd;
	border-spacing: 0;
	vertical-align: middle;
	border: #ebebeb;
	width: 100%;
}

table th {
	border: #ebebeb;
	color: #7a7a7a;
	font-size: 0.8125rem;
	font-weight: bold;
	padding: 0.625rem;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
}

.delivery_option table td {
	text-align: center;
}

table tfoot td {
	text-align: right;
}

table.table-bordered thead>* {
	background-color: rgba(51, 51, 51, 0.1);
	font-weight: bold;
}

.pagination>li {
	display: inline-block;
	margin: 0 0.3125rem;
	vertical-align: top;
}

.pagination>li span,
.pagination>li a {
	padding: 0 0.9375rem;
	line-height: 2.375rem;
	z-index: 1;
	min-width: 2.5rem;
	border-radius: 0.3125rem !important;
	transition: none;
	margin: 0 !important;
}

.pagination>li span:focus,
.pagination>li a:focus {
	box-shadow: none;
}

.pagination>li a:hover,
.pagination>li span:hover {
	color: #fff !important;
	background: linear-gradient(to right, #d13b27 0%, #d13b27 100%);
	border-color: transparent;
}

.pagination>li.active,
.pagination>li:hover {
	background: linear-gradient(to right, #d13b27 0%, #d13b27 100%);
	border-color: transparent;
}

.pagination>li.active span,
.pagination>li:hover span {
	color: #fff;
	background: transparent !important;
	border-color: transparent !important;
}

.pagination>li.active span:hover,
.pagination>li:hover span:hover {
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	border-color: transparent;
}

.pagination>li:last-child {
	margin-right: 0;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-radius: 0;
}

.pagination>li>a,
.pagination>li>span {
	color: #000;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-radius: 0;
}

@media (min-width: 48rem) {
	.newsletter .form-inline .form-group {
		display: block;
	}
}

@media (min-width: 20rem) and (max-width: 26.5625rem) {
	.pagination>li a {
		padding: 0 0.625rem !important;
	}
}

.overflow_auto {
	overflow: auto;
}

.hidden-scorll {
	overflow: hidden;
}

.checkout-checkout .check-newsletter #newsletter {
	margin-top: 0.375rem;
}

.information-information footer,
.information footer {
	margin-top: 1.875rem;
}

.hidden {
	display: none !important;
}

.text-left {
	text-align: left;
}

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

.buttons {
	display: flex;
	gap: 0.625rem;
	flex-wrap: wrap;
}


.buttons .pull-right {
	float: none !important;
}

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.media-left,
.media>.pull-left {
	padding-right: 0.625rem;
}

.media-body,
.media-left,
.media-right {
	display: table-cell;
	vertical-align: top;
}

textarea.form-control {
	height: auto;
}

.btn {
	font-size: 1.4rem;
}

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

.navbar-toggle .icon-bar {
	display: block;
}

.desktop-offcanvas .div_sticky {
	max-height: 0;
}

.form-group {
	margin-bottom: 0.9375rem;
}

col,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9 {
	position: relative;
}

[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
	direction: unset;
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
	margin-top: 0;
	margin-left: 0.625rem;
}

.info-store {
	margin-bottom: 1.875rem;
}

.contact-form {
	margin: 0 auto;
}

@media (min-width: 75rem) {
	.contact-form {
		max-width: 100%;
	}
}

.contact-form .form-group {
	margin-bottom: 1.25rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
	font-size: 0.875rem;
	color: #000;
	padding: 0.75rem 1.25rem;
	height: auto;
}

.contact-form .form-group input::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder {
	color: #000;
}

.contact-form .form-group input:-ms-input-placeholder,
.contact-form .form-group textarea:-ms-input-placeholder {
	color: #000;
}

.contact-form .form-group input::-webkit-input-placeholder,
.contact-form .form-group textarea::-webkit-input-placeholder {
	color: #000;
}


@media (min-width: 75rem) {
	.contact-form .list-info {
		padding-left: 3.125rem;
	}
}

.contact-form .list-info .item-info {
	color: #666;
	font-size: 1rem;
	line-height: 1.25rem;
	overflow: hidden;
	margin-bottom: 1.875rem;
	display: flex;
	align-items: center;
}

.contact-form .list-info .item-info:last-child {
	margin-bottom: 0rem;
}

.contact-form .list-info .item-info i {
	width: 3.75rem;
	height: 3.75rem;
	min-width: 3.75rem;
	border-radius: 100%;
	background: #f5f5f5;
	display: inline-block;
	color: #000;
	font-size: 1.875rem;
	text-align: center;
	line-height: 3.75rem;
	margin-right: 1.25rem;
}

.contact-form .list-info .item-info .info-content span {
	display: block;
}

.contact-form .list-info .item-info:hover i {
	color: #c12026;
}

.page-about {
	margin-bottom: -3.75rem;
}

.backg-gradient {
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	font-size: 0.875rem;
	line-height: 1.0625rem;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0.875rem 0.9375rem;
	border-radius: 0.3125rem;
	margin-bottom: 0.75rem;
	display: inline-block;
}

.backg-gradient:hover {
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
}

.our-team {
	text-align: center;
	margin-bottom: 6.25rem;
}

.our-team .modcontent {
	text-align: left;
	padding-top: 1.5rem;
}

.our-team .modcontent .owl2-stage-outer {
	direction: ltr;
}

.our-team .modcontent .item {
	text-align: center;
}

.our-team .modcontent .item .item-img {
	border-radius: 0.3125rem;
	overflow: hidden;
	margin-bottom: 0.625rem;
	display: inline-block;
}

.our-team .modcontent .item .item-img img {
	transition: all 0.3s ease-in-out 0s;
}

.our-team .modcontent .item .item-info h3 {
	color: #000;
	margin-bottom: 0.625rem;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.0625rem;
}

.our-team .modcontent .item .item-info p {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 0.9375rem;
	margin-bottom: 0;
	color: #000;
}

.our-team .modcontent .item:hover img {
	opacity: 0.8;
}

.our-team .modcontent .owl2-controls .owl2-nav {
	position: static;
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 3.375rem;
	height: 3.375rem;
	border: none;
	line-height: 3.125rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 50%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1.125rem;
	margin: 0;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev,
	.our-team .modcontent .owl2-controls .owl2-nav .owl2-next {
		line-height: 3.25rem;
	}
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev:before,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
	font-weight: 900;
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev:hover:before,
.our-team .modcontent .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-prev {
	left: 0;
	right: auto;
}

.our-team .modcontent .owl2-controls .owl2-nav .owl2-next {
	right: 0;
	left: auto;
}

.our-team .modcontent .owl2-controls .owl2-nav>div {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	transition: all 0.2s ease-in-out 0s;
	margin-top: 0.3125rem;
}

.our-team .modcontent:hover .owl2-controls .owl2-nav>div {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
}

.section-tesnimal {
	background-color: #edf0f5;
}

.block-counters {
	margin-bottom: 6.25rem;
}

.block-counters h3.modtitle {
	text-align: left !important;
}

.block-counters>.row {
	align-items: center;
}

.block-counters .counters-text {
	max-width: 75%;
	margin-bottom: 3.75rem;
}

.block-counters .counters-text .b-content {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 400;
}

.block-counters .counters-num {
	display: flex;
	flex-wrap: wrap;
	padding: 1.875rem 3.75rem;
	margin-bottom: 0;
	margin-right: 1.875rem;
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	font-size: 0.875rem;
	line-height: 1.0625rem;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	border-radius: 0.3125rem;
}

.block-counters .counters-num .item {
	text-align: center;
	font-size: 5rem;
	line-height: 3.9375rem;
	font-weight: 700;
	color: #fff;
	width: 33.33%;
	border-right: 0.0625rem solid #fff;
}

.block-counters .counters-num .item:last-child {
	border-right: none;
}

.block-counters .counters-num .item .js-counter {
	margin-bottom: 0.25rem;
}

.block-counters .counters-num .item p {
	font-size: 1.8rem;
	line-height: 1.4375rem;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 0;
}

.block-counters .banners {
	margin-bottom: 1.875rem;
}

.block-counters .banners:last-child {
	margin-bottom: 0rem;
}

.block-counters .banners .banner {
	border-radius: 0.625rem;
}

.block-tesnimal {
	padding: 6.25rem 0;
	text-align: center;
}

@media (min-width: 75rem) and (max-width: 85.375rem) {
	.block-tesnimal {
		margin-left: 0.9375rem;
		margin-right: 0.9375rem;
	}
}

.block-tesnimal .modcontent {
	padding-top: 1.5rem;
	align-items: center;
	text-align: left;
	margin-left: -0.9375rem;
	margin-right: -0.9375rem;
}

.block-tesnimal .modcontent>div {
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

@media (min-width: 85.4375rem) {
	.block-tesnimal .modcontent {
		margin-left: -3.125rem;
		margin-right: -3.125rem;
	}

	.block-tesnimal .modcontent>div {
		padding-left: 3.125rem;
		padding-right: 3.125rem;
	}
}

.block-tesnimal .modcontent .item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4.0625rem;
	position: relative;
}

.block-tesnimal .modcontent .item.item-1:before {
	content: "";
	width: 7.3125rem;
	height: 5.625rem;
	border-radius: 0.3125rem;
	display: inline-block;
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
	opacity: 0.4;
	position: absolute;
	bottom: -6.25rem;
	left: 4.6875rem;
}

.block-tesnimal .modcontent .item.item-3:before {
	content: "";
	width: 7.3125rem;
	height: 5.625rem;
	border-radius: 0.3125rem;
	display: inline-block;
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
	opacity: 0.4;
	position: absolute;
	top: -6.25rem;
	left: 0rem;
}

.block-tesnimal .modcontent .item.item-3:after {
	content: "";
	width: 14.5rem;
	height: 14.5rem;
	display: inline-block;
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
	opacity: 0.4;
	position: absolute;
	bottom: -10rem;
	left: -7.25rem;
	background-size: 50% 50%;
	background-position:
		100% 100%,
		0% 100%,
		100% 0%,
		100% 100%;
	background-repeat: no-repeat;
	border-radius: 50%;
}

.block-tesnimal .modcontent .item.item-3 .item-box {
	position: relative;
}

.block-tesnimal .modcontent .item.item-3 .item-box:after {
	content: "";
	width: 1.9375rem;
	height: 3.875rem;
	border-radius: 3.875rem 0 0 3.875rem;
	display: inline-block;
	background: #d9d9d9;
	position: absolute;
	top: 50%;
	margin-top: -1.9375rem;
	left: -1.9375rem;
}

.block-tesnimal .modcontent .item .item-box {
	padding: 3.125rem;
	border-radius: 0.9375rem;
	background: #fff;
	transition: all 0.3s ease-in-out 0s;
}

.block-tesnimal .modcontent .item .item-box .info-thumb {
	float: left;
	width: 3.875rem;
	height: 3.875rem;
	border-radius: 100%;
	margin-right: 1.5625rem;
	overflow: hidden;
	transition: all 0.3s ease-in-out 0s;
}

.block-tesnimal .modcontent .item .item-box .info-thumb img {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
	transition: all 1.2s ease 0s;
}

.block-tesnimal .modcontent .item .item-box .info-content h3 {
	margin: 0.3125rem 0 0.125rem;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.75rem;
	color: #000;
}

.block-tesnimal .modcontent .item .item-box .info-content .rate i {
	color: #ffc12b;
	font-size: 0;
}

.block-tesnimal .modcontent .item .item-box .info-content .rate i:before {
	font-size: 1.125rem;
}

.block-tesnimal .modcontent .item .item-box .info-des {
	margin-top: 1.4375rem;
	font-size: 1rem;
	line-height: 1.25rem;
}

.block-tesnimal .modcontent .item .item-box:hover {
	box-shadow: 0 0 0.4375rem rgba(0, 0, 0, 0.05);
}

.block-tesnimal .modcontent .item .item-box:hover h3 {
	color: #c12026;
}

.block-tesnimal .modcontent .item .item-box:hover .info-thumb img {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.button-404>a {
	margin: 0 0.625rem;
}

.content_404 {
	margin: 2.5rem 0 1.875rem;
	overflow: hidden;
}

.content_404 .block-top h2 {
	color: #222;
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 1.5625rem;
}

.content_404 .block-top .warning-code {
	font-size: 0.875rem;
	color: #7d7d7d;
	margin-bottom: 2.5rem;
}

.page-comingsoon {
	background: url("../../images//bg-comingsoon.jpg") no-repeat center center;
	text-align: center;
	min-height: 37.5rem;
}

.information-information .module-content {
	background: #fff;
	border: 0.0625rem solid #ddd;
	padding: 0 1.25rem;
}

.information-information .module-content .list-box li {
	position: relative;
	padding-left: 0.9375rem;
}

.information-information .module-content .list-box li:before {
	position: absolute;
	display: block;
	top: 1rem;
	background: #999;
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 100%;
	left: 0;
}

#example-type {
	color: #000;
}

.title-under {
	position: relative;
	margin-bottom: 3.125rem;
	color: #000;
}

.title-under:after {
	content: "";
	position: absolute;
	display: block;
	height: 0.25rem;
	width: 4.25rem;
	background: #c12026;
	bottom: -0.625rem;
}

.title-under.text-center:after {
	left: 50%;
	margin-left: -2.125rem;
}

.media-box-link--arrow .icon {
	font-size: 1.875rem;
}

.media-box-link--figure .icon {
	font-size: 4.375rem;
}

.media-box-link {
	display: table-row;
	width: 100%;
	height: 100%;
	background-color: #c12026;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.btn-default {
	background: #c12026;
	border-radius: 0.3125rem;
}

.btn-default:hover {
	background: #b82a2e;
}

.media-box-link h4 {
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.media-box-link .icon {
	transition: all 0.3s ease-in-out;
}

.media-box-link--figure,
.media-box-link--content,
.media-box-link--arrow {
	display: table-cell;
	padding: 6% 0;
	vertical-align: middle;
}

.media-box-link--figure {
	width: 23%;
}

.media-box-link--content {
	padding-right: 5%;
	width: 67%;
}

.media-box-link--arrow {
	width: 10%;
	vertical-align: middle;
}

.media-box-link:hover {
	background-color: #495057;
}

.item-article .content--gallery .row {
	margin: 0 -0.5rem;
}

.item-article .content--gallery .col-md-1,
.item-article .content--gallery .col-md-10,
.item-article .content--gallery .col-md-11,
.item-article .content--gallery .col-md-12,
.item-article .content--gallery .col-md-2,
.item-article .content--gallery .col-md-3,
.item-article .content--gallery .col-md-4,
.item-article .content--gallery .col-md-5,
.item-article .content--gallery .col-md-6,
.item-article .content--gallery .col-md-7,
.item-article .content--gallery .col-md-8,
.item-article .content--gallery .col-md-9,
.item-article .content--gallery .col-sm-1,
.item-article .content--gallery .col-sm-10,
.item-article .content--gallery .col-sm-11,
.item-article .content--gallery .col-sm-12,
.item-article .content--gallery .col-sm-2,
.item-article .content--gallery .col-sm-3,
.item-article .content--gallery .col-sm-4,
.item-article .content--gallery .col-sm-5,
.item-article .content--gallery .col-sm-6,
.item-article .content--gallery .col-sm-7,
.item-article .content--gallery .col-sm-8,
.item-article .content--gallery .col-sm-9 {
	padding: 0 0.5rem;
}

.item-article .content--gallery .popup-gallery {
	margin: 0 0rem 0.9375rem 0;
	display: inline-block;
}

.item-article .content--gallery .popup-gallery.popup--video {
	position: relative;
	z-index: 2;
	background: black;
}

.item-article .content--gallery .popup-gallery.popup--video img {
	opacity: 0.6;
}

.item-article .content--gallery .popup-gallery.popup--video:before {
	content: "";
	display: block;
	font-family: "FontAwesome";
	position: absolute;
	z-index: 4;
	left: 50%;
	top: 50%;
	font-size: 3.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin: -0.5625rem 0 0 -1.25rem;
}

.item-article .content--gallery .popup-gallery img {
	transition: 0.3 opacity ease-in-out;
	width: 100%;
}

.item-article .content--gallery .popup-gallery:hover img {
	opacity: 0.7;
}

.item-article ul.yt-accordion {
	list-style: none;
	margin: 0;
}

.item-article ul.yt-accordion .yt-accordion-group {
	margin-bottom: 0.1875rem;
}

.item-article ul.yt-accordion .yt-accordion-group .accordion-heading {
	color: #333;
	font-size: 0.9375rem;
	padding: 0.5625rem 0.9375rem;
	margin: 0;
	line-height: 1.375rem;
	cursor: pointer;
	background: #f1f1f1;
	text-transform: capitalize;
	position: relative;
}

.item-article ul.yt-accordion .yt-accordion-group .accordion-heading .fa {
	margin-right: 0.625rem;
}

.item-article ul.yt-accordion .yt-accordion-group .accordion-heading:hover {
	background: #c12026;
	color: white;
}

.item-article ul.yt-accordion .yt-accordion-group .accordion-heading.active {
	background: #c12026;
	color: white;
}

.item-article ul.yt-accordion .yt-accordion-group .accordion-heading.active:before {
	border: 0.5rem solid #c12026;
	border-color: #c12026 transparent transparent transparent;
	content: "";
	position: absolute;
	top: 100%;
	left: 1.875rem;
}

.item-article ul.yt-accordion .yt-accordion-inner {
	padding: 0.9375rem 0.9375rem 0.625rem 0.9375rem;
	background: #f1f1f1;
}

.item-article .nav-tabs>li>a {
	display: block;
}

.item-article .nav-pills {
	flex-direction: column;
}

.item-article .nav-pills>li>a {
	display: block;
	padding: 0.625rem 0.9375rem;
}

.extension-so_gostore-custom-bestseller header,
.extension-so_gostore-custom-newarrivals header,
.extension-so_gostore-custom-mostrate header,
.extension-so_gostore-custom-featured header {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.page_warranity .hr-lg {
	margin-bottom: 1.5625rem;
	margin-top: 1.25rem;
}

.item-article .page_warranity .decimal-list li:last-child {
	margin-bottom: 0;
}

.information-information .item-article>.container>h3 {
	color: #000;
}

.item-article ul.yt-accordion .yt-accordion-group:last-child {
	margin-bottom: 0;
}

.page_support24 .row .col-md-10.col-md-offset-1 {
	width: 100%;
}

.label-stock {
	position: absolute;
	bottom: 0.625rem;
	padding: 0.3125rem 0.625rem;
	left: 0.625rem;
	font-size: 0.75rem;
	font-weight: normal;
	text-transform: uppercase;
	z-index: 1;
}

.label-stock.In {
	right: 0.625rem;
	left: auto;
	background: #d9534f;
}

.label-stock.Pre-Order {
	background: #337ab7;
}

.label-new,
.label-sale {
	text-align: center;
	background-color: #c12026;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	height: 2.5rem;
	width: 2.5rem;
	line-height: 2.5rem;
	position: absolute;
	top: 1.25rem;
	text-transform: uppercase;
	z-index: 2;
	padding: 0;
	margin-bottom: 0.3125rem;
}

.label-sale {
	background-color: #c12026;
	left: 1.25rem;
}

.label-new {
	background-color: #53d542;
	right: 1.25rem;
}

.label-percent {
	padding: 0.125rem 0.3125rem;
	background: #c12026;
	font-size: 0.8125rem;
	font-weight: normal;
}

.product-options label {
	padding: 0;
	color: #666;
}

.product-options .label {
	font-weight: normal;
	font-size: 0.6875rem;
}

.product-options .radio {
	position: relative;
	z-index: 2;
	text-transform: capitalize;
	cursor: pointer;
}

.product-options .radio .fa {
	display: none;
}

.product-options .active .fa {
	display: block;
}

.product-options .fa {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 1.375rem;
	height: 1.375rem;
	color: white;
	line-height: 1.375rem;
	text-align: center;
}

.rate-history .ratings,
.rate-history .order-num {
	display: inline-block;
	color: #999;
}

.rate-history .rating-num,
.rate-history .order-num {
	font-size: 0.75rem;
}

.rate-history .rating-num {
	color: #777;
}

.rate-history .rating-num:hover {
	color: #c12026;
}

.rate-history .order-num:before {
	content: "|";
	display: inline-block;
	padding: 0 0.3125rem;
}

.rating,
.ratings {
	font-size: 0;
}

.rating .rating-box,
.ratings .rating-box {
	display: inline-block;
	font-size: 0;
	vertical-align: middle;
}

.rating span.fa-stack .fa-star-o:before,
.ratings span.fa-stack .fa-star-o:before {
	content: "";
	color: #bbb;
}

.rating span.fa-stack .fa-star.fa-stack-1x,
.ratings span.fa-stack .fa-star.fa-stack-1x {
	z-index: 1;
}

.rating span.fa-stack .fa-star.fa-stack-1x:before,
.ratings span.fa-stack .fa-star.fa-stack-1x:before {
	content: "";
	color: #fec42d;
}

span.fa-stack {
	width: 0.875rem;
	height: 0.6875rem;
	line-height: 0.625rem;
	font-size: 0.75rem;
}

span.fa-stack .fa-star-o:before {
	content: "";
	color: #bbb;
}

span.fa-stack .fa-stack-2x {
	font-size: 0.6875rem;
}

span.fa-stack .fa-star.fa-stack-2x {
	position: relative;
	z-index: 1;
}

span.fa-stack .fa-star.fa-stack-2x:before {
	content: "";
	color: #fec42d;
}

.content_price.price {
	font-size: 0;
}

div.price .price {
	font-size: 1rem;
}

.price {
	margin: 0 0 0.625rem 0;
	line-height: 1.125rem;
	color: #c12026;
	font-size: 0.875rem;
	font-weight: 700;
}

.price .price-old {
	line-height: 1.125rem;
	padding: 0 0.3125rem;
	display: inline-block;
	text-decoration: line-through;
	color: #8d979e;
	font-size: 1.4rem;
	font-weight: 400;
}

.price .price-new,
.price span.price {
	color: #c12026;
	font-size: 1.4rem;
	font-weight: 700;
}

.callforprice {
	font-size: 0.75rem;
	line-height: 100%;
}

.countdown_box {
	position: absolute;
	top: 50%;
	margin-top: -1.75rem;
	left: 50%;
	width: 13.125rem;
	transition: all 0.3s ease-in-out;
}

.countdown_box .countdown_inner {
	width: 100%;
	text-align: center;
}

.countdown_box .title {
	border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
	padding: 0.5rem;
	display: none;
}

.countdown_box .time-item {
	display: inline-block;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 0.3125rem;
	margin: 0 0.1875rem;
	width: 2.5rem;
	text-align: center;
	padding: 0.375rem 0;
	line-height: 1.125rem;
}

.countdown_box .time-item .num-time {
	font-size: 1.125rem;
	font-weight: 500;
}

.countdown_box .time-item .name-time {
	font-size: 0.625rem;
	font-weight: 300;
	text-transform: capitalize;
}

.countdown_box .time-item:last-child {
	border: none;
}

.product-image-container .img-hover {
	left: 0;
	top: 0;
	position: absolute;
	opacity: 0;
	transform: translateX(0%);
	-moz-transform: translateX(0%);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: rotateY(90deg);
	-webkit-transform: rotateY(90deg);
	transition: all 0.4s linear 0s;
}

.product-image-container:hover .img-thumb {
	transform: rotateY(-90deg);
	-webkit-transform: rotateY(-90deg);
	opacity: 0;
	transition: all 0.4s linear 0s;
}

.product-image-container:hover .img-hover {
	transform: rotateY(0);
	-webkit-transform: rotateY(0);
	opacity: 1;
	transition: all 0.4s linear 0s;
}

.products-category .filter_group {
	width: 25%;
	display: inline-block;
	vertical-align: top;
}

.products-category .category-info {
	margin: 0 0 0.9375rem;
}

.products-category .category-info p {
	margin: 0;
	font-size: 1rem;
}

.title-category {
	font-size: 2.6rem;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 2.0625rem;
	color: #000;
	display: inline-block;
	width: 100%;
	position: relative;
	margin-top: 0;
	margin-bottom: 0.625rem;
}

.products-category .form-group .short-by {
	margin-right: 0.625rem;
}

.refine-search__content::after {
	display: block;
	clear: both;
	content: "";
}

.refine-search__content .refine-loadmore {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: stretch;
	float: left;
	border: 0.0625rem solid #ddd;
	overflow: hidden;
	min-height: 3.0625rem;
	height: 7.5rem;
	width: 5rem;
	padding: 0.625rem;
	text-align: center;
	cursor: pointer;
	border-radius: 0.25rem;
	background: #f4f4f4;
}

.refine-search__content .refine-loadmore>span {
	display: inline-block;
	padding: 0 0.3125rem;
}

.refine-search__content .refine-loadmore:hover {
	background: #c12026;
	border-color: #c12026;
	color: white;
}

.refine-search__content .refine-search__subitem {
	width: 7.25rem;
	float: left;
	margin-bottom: 0.9375rem;
	margin-right: 0.9375rem;
}

.refine-search .thumbnail {
	margin-bottom: 0.625rem;
}

.refine-search a {
	color: #495057;
	display: block;
}

.refine-search a:hover {
	color: #c12026;
}

#content.col-sm-6 .product-compare {
	display: none;
}

.filters-panel {
	border-radius: 0rem;
	margin-bottom: 1.875rem;
}

.filters-panel::after {
	display: block;
	clear: both;
	content: "";
}

.filters-panel.product-filter-top {
	padding: 0.9375rem 0 0.375rem;
	border-top: 0.0625rem solid #ebebeb;
	border-bottom: 0.0625rem solid #ebebeb;
}

.filters-panel.product-filter-bottom {
	border-top: 0.0625rem solid #ebebeb;
	padding-top: 1.25rem;
	margin-top: 1.25rem;
}

.filters-panel .pagination {
	margin: -0.3125rem;
}

.filters-panel .product-compare {
	margin-right: 0 !important;
}

.filters-panel .list-view {
	display: inline-block;
}

.filters-panel .list-view .btn-gridview {
	border: none;
	color: #495057;
	float: left;
	padding: 0 0.3125rem;
	font-size: 1rem;
	background: transparent;
	display: none;
}

.filters-panel .list-view button.btn {
	margin: 0rem;
	margin-right: 0.625rem;
	float: left;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	background: #f5f5f5;
	color: #000;
	font-size: 1rem;
	text-align: center;
	padding: 0;
	border-radius: 0.3125rem !important;
	border: none;
}

.filters-panel .list-view button.btn:last-child {
	margin-right: 0rem;
}

.filters-panel .list-view button.btn i {
	color: #000;
}

.filters-panel .list-view button.btn:hover,
.filters-panel .list-view button.btn.active {
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	box-shadow: none;
	color: #fff;
}

.filters-panel .list-view button.btn:hover i,
.filters-panel .list-view button.btn.active i {
	color: #fff;
}

.filters-panel .list-view button.btn:focus {
	border-radius: 0;
	outline: none;
}

.filters-panel .list-view .i {
	font-size: 0.875rem;
}

.filters-panel label {
	font-size: 1rem;
	font-weight: normal;
	color: #495057;
}

.filters-panel .btn-default {
	padding: 0.5625rem 1.25rem;
	background: #eee;
	color: #333;
	border-radius: 0.1875rem;
	border: none;
	font-size: 1rem;
}

.filters-panel .btn-default:hover {
	background: #c12026;
	border-color: #c12026;
	color: #fff;
}

.filters-panel .form-control,
.filters-panel .btn {
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0rem 0.75rem;
	border: 0.0625rem solid #f5f5f5;
	border-radius: 0.3125rem;
	background-color: #f5f5f5;
}

.filters-panel .form-group {
	margin-left: 0.625rem;
	vertical-align: top;
}

.filters-panel .form-group select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../../images/icons/bg-select.png) no-repeat center right;
	border: 0.0625rem solid #f5f5f5;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0rem 1.25rem 0 0.625rem;
	background-color: #f5f5f5;
	border-radius: 0.3125rem;
}

.filters-panel .form-group select.form-control:hover {
	cursor: pointer;
}

.filters-panel .short-by-show .form-group {
	margin-bottom: 0;
}

.filters-panel .short-by-show.text-center .form-group {
	display: none;
}

.filters-panel .form-group select.form-control {
	height: 100% !important;
	line-height: 1rem !important;
}

.filters-panel .list-view button.btn i {
	color: var(--black);
}

.box-pagination .pagination>li {
	margin: 0 0.3125rem;
}

.box-pagination .pagination>li:hover span,
.box-pagination .pagination>li:hover a,
.box-pagination .pagination>li.active span,
.box-pagination .pagination>li.active a {
	border-color: #c12026;
	background-color: #c12026;
	color: #fff;
}

.box-pagination .pagination>li span,
.box-pagination .pagination>li a {
	text-align: center;
	width: 2.0625rem;
	height: 2.0625rem;
	line-height: 2.0625rem;
	border-radius: 0.1875rem;
	padding: 0;
}

.box-pagination .pagination {
	display: block;
}

.products-list .rating .rating-box,
.products-list .ratings .rating-box {
	line-height: 0.75rem;
}

.products-list .ratings {
	line-height: 0.75rem;
}

.products-list .rate-history {
	line-height: 1.125rem;
	margin-bottom: 0.5rem;
}

.products-list .product-layout {
	transition: all 0.5s ease 0s;
	display: block;
}

.products-list .product-layout .product-item-container .product-card__gallery {
	position: absolute;
	z-index: 560;
	top: 0;
	visibility: hidden;
	transition: all 0.3s ease-in 0s;
	margin: 0.625rem;
}

.products-list .product-layout .product-item-container .product-card__gallery.product-card__left {
	transform: translateX(-100%);
	left: 0;
}

.products-list .product-layout .product-item-container .product-card__gallery.product-card__right {
	transform: translateX(100%);
	right: 0;
}

.products-list .product-layout .product-item-container .product-card__gallery.product-card__bottom {
	top: auto;
	bottom: 0;
	align-items: stretch;
	display: flex;
	box-orient: horizontal;
	box-direction: normal;
	flex-direction: row;
	box-pack: center;
	justify-content: center;
	width: 100%;
}

.products-list .product-layout .product-item-container .product-card__gallery.product-card__bottom .item-img {
	width: 1.25rem;
	height: 0.5rem;
	background: #999;
	margin-left: 0.0625rem;
	border: none;
}

.products-list .product-layout .product-item-container .product-card__gallery.product-card__bottom .item-img.thumb-active {
	border: none;
	width: 3.75rem;
}

.products-list .product-layout .product-item-container .product-card__gallery.product-card__bottom .item-img img {
	display: none;
}

.products-list .product-layout .product-item-container .product-card__gallery .item-img {
	padding: 0.0625rem;
	background: white;
	border: 0.0625rem solid #eaeaea;
	margin: 0 0 0.1875rem;
	cursor: pointer;
	opacity: 0.6;
}

.products-list .product-layout .product-item-container .product-card__gallery .item-img.thumb-active {
	opacity: 1;
	border: 0.0625rem solid #ddd;
}

.products-list .product-layout .product-item-container .left-block {
	position: relative;
	overflow: hidden;
}

.products-list .product-layout .product-item-container:hover .product-card__gallery {
	visibility: visible;
	transform: translateX(0%);
}

.products-list .product-layout .product-item-container:hover .countdown_box {
	visibility: hidden;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-ms-opacity: 0;
	-o-opacity: 0;
	opacity: 0;
	transition: all 0.2s ease-in-out 0s;
}

.products-list .product-layout .product-item-container:hover .label-sale,
.products-list .product-layout .product-item-container:hover .label-new {
	visibility: hidden;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-ms-opacity: 0;
	-o-opacity: 0;
	opacity: 0;
	transition: all 0.2s ease-in-out 0s;
}

.products-list .product-grid .product-item-container {
	background-color: #fff;
	margin: 0 0 1.875rem 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	border-radius: 0rem;
}

.products-list .product-grid .product-item-container>.list-block,
.products-list .product-grid .product-item-container .description {
	display: none;
}

.products-list .product-grid .product-item-container .left-block {
	position: relative;
	border-radius: 0.3125rem;
	border: 0.0625rem solid #ebebeb;
	transition: all 0.3s ease-in-out 0s;
}

.products-list .product-grid .product-item-container .left-block img {
	width: 100%;
}

.products-list .product-grid .product-item-container .left-block .product-image-container {
	text-align: center;
}

.products-list .product-grid .product-item-container .left-block .product-image-container a {
	display: block;
}

.products-list .product-grid .product-item-container .left-block .button-group {
	padding: 0;
	position: absolute;
	z-index: 99;
}

.products-list .product-grid .product-item-container .left-block .button-group .loading span,
.products-list .product-grid .product-item-container .left-block .button-group .loading .fa {
	visibility: hidden;
}

.products-list .product-grid .product-item-container .left-block .button-group .loading:before {
	content: "";
	display: block;
	font-family: "FontAwesome";
	position: absolute;
	color: #fff;
	left: 0.5rem;
	font-size: 1rem;
	-webkit-animation: spinner 2s infinite linear;
	animation: spinner 2s infinite linear;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button {
	border: 0.0625rem solid #ebebeb;
	display: block;
	margin-top: 0.625rem;
	padding: 0;
	background-color: #fff;
	border-radius: 100%;
	color: #666;
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	transform: all 0.3s ease 0s;
	position: relative;
	transition: all 0.3s ease-in-out 0s;
	opacity: 0;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button span {
	color: #fff;
	font-size: 0.75rem;
	font-weight: 300;
	height: auto;
	visibility: hidden;
	position: static;
	transition: all 0.15s ease-in-out 0s;
	white-space: nowrap;
	display: none;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button i {
	font-size: 0.75rem;
	color: #666;
	height: 1.75rem;
	line-height: 1.875rem;
	width: 1.75rem;
	text-align: center;
	position: absolute;
	top: 0;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button.addToCart {
	transition-delay: 0.1s;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button.wishlist {
	transition-delay: 0.2s;
	margin-top: 0;
	opacity: 1;
	transform: none;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button.compare {
	transition-delay: 0.3s;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button.compare i:before {
	content: "";
	width: 0.6875rem;
	height: 0.5625rem;
	display: inline-block;
	background-color: #666;
	-webkit-mask-image: url(../../images/icons/icon-compare.svg);
	mask-image: url(../../images/icons/icon-compare.svg);
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button.quickview {
	transition-delay: 0.4s;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button:hover {
	background-color: #c12026;
	border-color: #c12026;
	width: 1.875rem;
	transition: all 0.15s ease-in-out 0s;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button:hover i {
	color: #fff;
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button:hover span {
	visibility: visible;
	padding: 0 0.625rem;
	text-indent: 1.25rem;
	transform: translateX(0);
}

.products-list .product-grid .product-item-container .left-block .button-group .btn-button:hover.compare i:before {
	background-color: #fff;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--left {
	left: 1.25rem;
	transform: translateY(0%);
	top: 1.25rem;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--left .btn-button {
	-webkit-transform: translate(-3.125rem, 0rem);
	-moz-transform: translate(-3.125rem, 0rem);
	-ms-transform: translate(-3.125rem, 0rem);
	-o-transform: translate(-3.125rem, 0rem);
	transform: translate(-3.125rem, 0rem);
}

.products-list .product-grid .product-item-container .left-block .cartinfo--left .btn-button .fa {
	left: 0rem;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--right {
	right: 1.25rem;
	transform: translateY(0%);
	top: 1.25rem;
	direction: rtl;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--right .btn-button {
	-webkit-transform: translate(3.125rem, 0rem);
	-moz-transform: translate(3.125rem, 0rem);
	-ms-transform: translate(3.125rem, 0rem);
	-o-transform: translate(3.125rem, 0rem);
	transform: translate(3.125rem, 0rem);
}

.products-list .product-grid .product-item-container .left-block .cartinfo--right .btn-button .fa {
	right: 0rem;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--static {
	width: 100%;
	bottom: 0.9375rem;
	display: flex;
	justify-content: center;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--static .btn-button {
	margin: 0.125rem;
	width: 1.875rem !important;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--static .btn-button .fa {
	left: 0;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--static .btn-button span {
	display: none;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--center {
	width: 100%;
	bottom: 35%;
	display: flex;
	justify-content: center;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--center .btn-button {
	margin: 0.125rem;
	width: 1.875rem !important;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--center .btn-button .fa {
	left: 0;
}

.products-list .product-grid .product-item-container .left-block .cartinfo--center .btn-button span {
	display: none;
}

.products-list .product-grid .product-item-container .right-block {
	clear: both;
	padding: 0.375rem 0rem 0rem 0rem;
	position: relative;
	background-color: #fff;
}

.products-list .product-grid .product-item-container .right-block .price {
	margin-bottom: 0;
}

.products-list .product-grid .product-item-container .right-block .price .price-old {
	padding: 0 0.3125rem;
}

.products-list .product-grid .product-item-container .right-block h4 {
	margin: 0;
	font-weight: 400;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.products-list .product-grid .product-item-container .right-block h4 a {
	font-size: 1rem;
	color: #000;
	font-weight: 500;
	line-height: 1.25rem;
}

.products-list .product-grid .product-item-container .right-block h4 a:hover {
	color: #c12026;
}

.products-list .product-grid .product-item-container .right-block .addToCart {
	position: absolute;
	bottom: 0rem;
	right: 0rem;
	width: 2.1875rem;
	height: 2.1875rem;
	padding: 0;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	color: #c12026;
	border: none;
	background-color: #ebebeb;
}

.products-list .product-grid .product-item-container .right-block .addToCart i:before {
	content: "";
	width: 1.25rem;
	height: 1.25rem;
	display: inline-block;
	margin-top: 0.5rem;
	background-color: #c12026;
	-webkit-mask-image: url(../../images/icons/icon-cart2.svg);
	mask-image: url(../../images/icons/icon-cart2.svg);
}

.products-list .product-grid .product-item-container .right-block .addToCart span {
	display: none;
}

.products-list .product-grid .product-item-container .right-block .addToCart:hover {
	background-color: #c12026;
	color: #fff;
}

.products-list .product-grid .product-item-container .right-block .addToCart:hover i:before {
	background-color: #fff;
}

.products-list .product-grid .product-item-container:hover .left-block {
	border: 0.0625rem solid #c12026;
}

.products-list .product-grid .product-item-container:hover .left-block .button-group .btn-button {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	visibility: visible;
}

@media (min-width: 75rem) {
	.products-list .product-grid-4:nth-child(4n + 1) {
		clear: both !important;
	}
}

.products-list .product-grid-4 .product-item-container .product-card__gallery .item-img {
	max-width: 3.75rem;
}

@media (min-width: 75rem) {
	.products-list .product-grid-5:nth-child(5n + 1) {
		clear: both !important;
	}
}

.products-list .product-grid-5 .product-item-container .product-card__gallery .item-img {
	max-width: 3.8125rem;
}

.products-list .product-table:last-child .product-item-container {
	border-bottom: 0.0625rem solid #dbdbdb;
}

.products-list .product-table .product-item-container {
	display: flex;
	width: 100%;
	border-style: solid;
	border-width: 0.0625rem 0.0625rem 0rem 0.0625rem;
	border-color: #dbdbdb;
}

.products-list .product-table .product-item-container> :last-child {
	border-left: 0.0625rem solid #dbdbdb;
}

.products-list .product-table .product-item-container .product-card__gallery {
	display: none;
}

.products-list .product-table .list-block {
	width: 20%;
	padding: 0.625rem;
	text-align: center;
}

@media (max-width: 47.9375rem) {
	.products-list .product-table .list-block {
		display: none;
	}
}

.products-list .product-table .list-block .addToCart {
	text-transform: uppercase;
	display: block;
	width: 100%;
	margin-bottom: 0.625rem;
	padding: 0.5625rem 1.25rem;
	background: #eee;
	color: #333;
	border-radius: 0.1875rem;
	border: none;
}

.products-list .product-table .list-block .addToCart:hover {
	background: #c12026;
	border-color: #c12026;
	color: #fff;
}

.products-list .product-table .list-block .addToCart i:before {
	content: "";
	width: 1.25rem;
	height: 1.25rem;
	display: inline-block;
	margin-top: 0.5rem;
	background-color: #c12026;
	-webkit-mask-image: url(../../images/icons/icon-cart2.svg);
	mask-image: url(../../images/icons/icon-cart2.svg);
}

.products-list .product-table .list-block .addToCart:hover {
	background-color: #c12026;
	color: #fff;
}

.products-list .product-table .list-block .addToCart:hover i:before {
	background-color: #fff;
}

.products-list .product-table .list-block .wishlist,
.products-list .product-table .list-block .compare {
	width: 48%;
	padding: 0.5625rem 1.25rem;
	background: #eee;
	color: #333;
	border-radius: 0.1875rem;
	border: none;
}

.products-list .product-table .list-block .wishlist:hover,
.products-list .product-table .list-block .compare:hover {
	background: #c12026;
	border-color: #c12026;
	color: #fff;
}

.products-list .product-table .list-block .wishlist.compare i:before,
.products-list .product-table .list-block .compare.compare i:before {
	content: "";
	width: 0.6875rem;
	height: 0.5625rem;
	display: inline-block;
	background-color: #666;
	-webkit-mask-image: url(../../images/icons/icon-compare.svg);
	mask-image: url(../../images/icons/icon-compare.svg);
}

.products-list .product-table .list-block .wishlist.compare:hover i:before,
.products-list .product-table .list-block .compare.compare:hover i:before {
	background-color: #fff;
}

.products-list .product-table .left-block {
	width: 15%;
	min-width: 4rem;
}

@media (max-width: 47.9375rem) {
	.products-list .product-table .left-block {
		width: 35%;
	}
}

.products-list .product-table .left-block .countdown_box,
.products-list .product-table .left-block .button-group {
	display: none;
}

.products-list .product-table .right-block {
	width: 65%;
	display: flex;
	flex: 1;
}

.products-list .product-table .right-block .addToCart {
	display: none;
}

.products-list .product-table .right-block>* {
	border-left: 0.0625rem solid #dbdbdb;
	margin: 0rem;
	padding: 0.625rem;
}

.products-list .product-table .right-block h4 {
	width: 25%;
	font-weight: 500;
	font-size: 1rem;
}

@media (max-width: 47.9375rem) {
	.products-list .product-table .right-block h4 {
		width: 60%;
	}
}

.products-list .product-table .right-block .so-productlist-colorswatch {
	display: none;
}

.products-list .product-table .right-block .rate-history {
	width: 20%;
	display: none;
}

.products-list .product-table .right-block .price {
	width: 25%;
}

@media (max-width: 47.9375rem) {
	.products-list .product-table .right-block .price {
		width: 40%;
	}
}

.products-list .product-table .right-block .description {
	width: 40%;
}

@media (max-width: 47.9375rem) {
	.products-list .product-table .right-block .description {
		display: none;
	}
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {

	.products-list .product-table .right-block .description,
	.products-list .product-table .label-product {
		display: none;
	}

	.products-list .product-table .right-block h4 {
		width: 50%;
	}
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {

	.products-list .product-table .right-block .description,
	.products-list .product-table .label-product {
		display: none;
	}

	.products-list .product-table .right-block h4 {
		width: 50%;
	}
}

@media (max-width: 47.9375rem) {
	.products-list .product-table .label-product {
		display: none;
	}
}

.products-list .product-list ul.so-productlist-colorswatch {
	text-align: left;
}

.products-list .product-list .box-label {
	left: 0.3125rem;
}

.products-list .product-list .product-item-container {
	display: table;
	margin-bottom: 1.875rem;
	position: relative;
}

.products-list .product-list .product-item-container .left-block {
	width: 16.875rem;
	float: left;
	border: 0.0625rem solid #ebebeb;
	border-radius: 0.3125rem;
}

@media (max-width: 47.9375rem) {
	.products-list .product-list .product-item-container .left-block {
		width: 40%;
	}
}

.products-list .product-list .product-item-container .left-block .product-image-container {
	text-align: center;
}

.products-list .product-list .product-item-container .left-block .product-card__gallery .item-img {
	max-width: 4.375rem;
}

.products-list .product-list .product-item-container .left-block .button-group {
	padding: 0;
	position: absolute;
	z-index: 99;
}

.products-list .product-list .product-item-container .left-block .button-group .loading span,
.products-list .product-list .product-item-container .left-block .button-group .loading .fa {
	visibility: hidden;
}

.products-list .product-list .product-item-container .left-block .button-group .loading:before {
	content: "";
	display: block;
	font-family: "FontAwesome";
	position: absolute;
	color: #fff;
	left: 0.5rem;
	font-size: 1rem;
	-webkit-animation: spinner 2s infinite linear;
	animation: spinner 2s infinite linear;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button {
	border: 0.0625rem solid #ebebeb;
	display: block;
	margin-top: 0.625rem;
	padding: 0;
	background-color: #fff;
	border-radius: 100%;
	color: #666;
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	transform: all 0.3s ease 0s;
	position: relative;
	transition: all 0.3s ease-in-out 0s;
	opacity: 0;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button span {
	color: #fff;
	font-size: 0.75rem;
	font-weight: 300;
	height: auto;
	visibility: hidden;
	position: static;
	transition: all 0.15s ease-in-out 0s;
	white-space: nowrap;
	display: none;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button i {
	font-size: 0.75rem;
	color: #666;
	height: 1.75rem;
	line-height: 1.875rem;
	width: 1.75rem;
	text-align: center;
	position: absolute;
	top: 0;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button.addToCart {
	transition-delay: 0.1s;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button.wishlist {
	transition-delay: 0.2s;
	margin-top: 0;
	opacity: 1;
	transform: none;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button.compare {
	transition-delay: 0.3s;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button.compare i:before {
	content: "";
	width: 0.6875rem;
	height: 0.5625rem;
	display: inline-block;
	background-color: #666;
	-webkit-mask-image: url(../../images/icons/icon-compare.svg);
	mask-image: url(../../images/icons/icon-compare.svg);
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button.quickview {
	transition-delay: 0.4s;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button:hover {
	background-color: #c12026;
	border-color: #c12026;
	width: 1.875rem;
	transition: all 0.15s ease-in-out 0s;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button:hover i {
	color: #fff;
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button:hover span {
	visibility: visible;
	padding: 0 0.625rem;
	text-indent: 1.25rem;
	transform: translateX(0);
}

.products-list .product-list .product-item-container .left-block .button-group .btn-button:hover.compare i:before {
	background-color: #fff;
}

.products-list .product-list .product-item-container .left-block .cartinfo--left {
	left: 1.25rem;
	transform: translateY(0%);
	top: 1.25rem;
}

.products-list .product-list .product-item-container .left-block .cartinfo--left .btn-button {
	-webkit-transform: translate(-3.125rem, 0rem);
	-moz-transform: translate(-3.125rem, 0rem);
	-ms-transform: translate(-3.125rem, 0rem);
	-o-transform: translate(-3.125rem, 0rem);
	transform: translate(-3.125rem, 0rem);
}

.products-list .product-list .product-item-container .left-block .cartinfo--left .btn-button .fa {
	left: 0rem;
}

.products-list .product-list .product-item-container .left-block .cartinfo--right {
	right: 1.25rem;
	transform: translateY(0%);
	top: 1.25rem;
	direction: rtl;
}

.products-list .product-list .product-item-container .left-block .cartinfo--right .btn-button {
	-webkit-transform: translate(3.125rem, 0rem);
	-moz-transform: translate(3.125rem, 0rem);
	-ms-transform: translate(3.125rem, 0rem);
	-o-transform: translate(3.125rem, 0rem);
	transform: translate(3.125rem, 0rem);
}

.products-list .product-list .product-item-container .left-block .cartinfo--right .btn-button .fa {
	right: 0rem;
}

.products-list .product-list .product-item-container .left-block .cartinfo--static {
	width: 100%;
	bottom: 0.9375rem;
	display: flex;
	justify-content: center;
}

.products-list .product-list .product-item-container .left-block .cartinfo--static .btn-button {
	margin: 0.125rem;
	width: 1.875rem !important;
}

.products-list .product-list .product-item-container .left-block .cartinfo--static .btn-button .fa {
	left: 0;
}

.products-list .product-list .product-item-container .left-block .cartinfo--static .btn-button span {
	display: none;
}

.products-list .product-list .product-item-container .left-block .cartinfo--center {
	width: 100%;
	bottom: 35%;
	display: flex;
	justify-content: center;
}

.products-list .product-list .product-item-container .left-block .cartinfo--center .btn-button {
	margin: 0.125rem;
	width: 1.875rem !important;
}

.products-list .product-list .product-item-container .left-block .cartinfo--center .btn-button .fa {
	left: 0;
}

.products-list .product-list .product-item-container .left-block .cartinfo--center .btn-button span {
	display: none;
}

.products-list .product-list .product-item-container .list-block {
	display: none;
	margin-left: 16.875rem;
	padding: 0 1.25rem 1.25rem 1.875rem;
}

@media (max-width: 47.9375rem) {
	.products-list .product-list .product-item-container .list-block {
		margin-left: 0;
		padding: 0.625rem 0 0;
		clear: both;
		overflow: hidden;
	}
}

.products-list .product-list .product-item-container .list-block .btn-button {
	border: 0.0625rem solid #eaeaea;
	border-radius: 0.1875rem;
	display: block;
	margin-right: 0.3125rem;
	padding: 0.4375rem 0.9375rem;
	background-color: #fff;
	color: #666;
	text-align: center;
	float: left;
}

.products-list .product-list .product-item-container .list-block .btn-button i {
	font-size: 1rem;
}

.products-list .product-list .product-item-container .list-block .btn-button:hover {
	background-color: #c12026;
	border-color: #c12026;
	color: #fff;
}

.products-list .product-list .product-item-container .list-block .addToCart {
	background-color: #c12026;
	border-color: #c12026;
	color: #fff;
	border-radius: 0.1875rem;
	font-size: 1.2rem;
	font-weight: 400;
	text-transform: uppercase;
}

.products-list .product-list .product-item-container .list-block .addToCart i {
	margin-right: 0rem;
	font-size: 0.875rem;
}

.products-list .product-list .product-item-container .list-block .addToCart:hover {
	background-color: #495057;
	border-color: #495057;
}

.products-list .product-list .product-item-container .right-block {
	margin-left: 16.875rem;
	padding: 3.4375rem 1.25rem 0rem 1.875rem;
}

@media (max-width: 47.9375rem) {
	.products-list .product-list .product-item-container .right-block {
		margin-left: 40%;
		padding: 0 0.625rem 0rem 0.625rem;
	}
}

.products-list .product-list .product-item-container .right-block .ratings {
	margin-bottom: 0rem;
}

.products-list .product-list .product-item-container .right-block h4 {
	margin-bottom: 0rem;
	font-weight: 700;
	line-height: 1.4375rem;
}

.products-list .product-list .product-item-container .right-block h4 a {
	color: #000;
	font-size: 1.8rem;
}

.products-list .product-list .product-item-container .right-block h4 a:hover {
	color: #c12026;
}

.products-list .product-list .product-item-container .right-block .price {
	display: inline-block;
	margin: 0;
}

.products-list .product-list .product-item-container .right-block .description {
	margin-bottom: 1.25rem;
	line-height: 1.25rem;
	font-size: 1rem;
}

.products-list .product-list .product-item-container .right-block .addToCart {
	position: absolute;
	bottom: 1.25rem;
	right: auto;
	left: 13.4375rem;
	width: 2.1875rem;
	height: 2.1875rem;
	padding: 0;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	color: #c12026;
	border: none;
	background-color: #ebebeb;
	transition: all 0.1s ease-in-out 0s;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-ms-opacity: 0;
	-o-opacity: 0;
	opacity: 0;
}

.products-list .product-list .product-item-container .right-block .addToCart i:before {
	content: "";
	width: 1.25rem;
	height: 1.25rem;
	display: inline-block;
	margin-top: 0.5rem;
	background-color: #c12026;
	-webkit-mask-image: url(../../images/icons/icon-cart2.svg);
	mask-image: url(../../images/icons/icon-cart2.svg);
}

.products-list .product-list .product-item-container .right-block .addToCart span {
	display: none;
}

.products-list .product-list .product-item-container .right-block .addToCart:hover {
	background-color: #c12026;
	color: #fff;
}

.products-list .product-list .product-item-container .right-block .addToCart:hover i:before {
	background-color: #fff;
}

.products-list .product-list .product-item-container:hover .left-block {
	border: 0.0625rem solid #c12026;
}

.products-list .product-list .product-item-container:hover .left-block .button-group .btn-button {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	visibility: visible;
}

.products-list .product-list .product-item-container:hover .right-block .addToCart {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	visibility: visible;
}

@media (max-width: 47.9375rem) {
	.products-list .product-list .product-item-container .label-product {
		display: none;
	}
}

.product-listing .product-grid .so-productlist-colorswatch {
	position: absolute;
	top: -0.625rem;
	width: 100%;
}

@media (min-width: 62rem) {
	.desktop-offcanvas .sidebar-overlay {
		background: rgba(0, 0, 0, 0.5);
		display: none;
		height: 100%;
		opacity: 1;
		position: fixed;
		top: 0;
		left: 0rem;
		right: 0rem;
		width: 100%;
		z-index: 9998;
	}

	.desktop-offcanvas .sidebar-offcanvas {
		padding-left: 0.9375rem !important;
		padding-right: 0.625rem !important;
		background: #fff;
		width: 18.75rem;
		position: fixed;
		top: 0rem;
		bottom: 0rem;
		z-index: 9999;
		height: 100%;
		overflow-x: scroll;
		box-shadow: 0 0 0.3125rem 0 rgba(50, 50, 50, 0.75);
		transition: all 300ms ease-in-out;
		padding-top: 2.5rem;
		margin: 0rem;
	}

	.desktop-offcanvas .sidebar-offcanvas #close-sidebar {
		position: absolute;
		top: 0.625rem;
		right: 0.625rem;
		font-size: 1rem;
		display: block;
	}

	.desktop-offcanvas .sidebar-offcanvas #close-sidebar:hover {
		cursor: pointer;
		color: #f00;
	}

	.desktop-offcanvas .sidebar-offcanvas.right_column {
		right: -100%;
	}

	.desktop-offcanvas .sidebar-offcanvas.left_column {
		left: -100%;
	}

	.desktop-offcanvas .sidebar-offcanvas.left_column.active {
		left: 0;
	}

	.desktop-offcanvas .sidebar-offcanvas.right_column.active {
		right: 0;
	}
}

.product-detail .open-sidebar,
.product-listing .open-sidebar {
	display: inline-block;
	border-radius: 0.3125rem;
	background: #f5f5f5;
	color: #000;
	padding: 0.625rem 1.375rem;
	line-height: 1.25rem;
	font-size: 1rem;
	font-weight: 500;
	vertical-align: top;
	text-transform: capitalize;
	margin-right: 0.3125rem;
}

.product-detail .open-sidebar i,
.product-listing .open-sidebar i {
	margin-right: 0.3125rem;
}

.product-detail .open-sidebar:hover,
.product-listing .open-sidebar:hover {
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	color: #fff;
}

.product-detail .open-sidebar {
	margin-bottom: 0.9375rem;
}

#close-sidebar {
	display: none;
}

@media only screen and (max-width: 62rem) {
	body.open-sboff {
		height: 100%;
		overflow: hidden;
	}

	.blog-detail .sidebar-overlay,
	.blog-list .sidebar-overlay,
	.product-detail .sidebar-overlay,
	.product-listing .sidebar-overlay {
		background: rgba(0, 0, 0, 0.5);
		display: none;
		height: 100%;
		opacity: 1;
		position: fixed;
		top: 0;
		left: 0rem;
		right: 0rem;
		width: 100%;
		z-index: 9998;
	}

	.blog-detail .sidebar-offcanvas,
	.blog-list .sidebar-offcanvas,
	.product-detail .sidebar-offcanvas,
	.product-listing .sidebar-offcanvas {
		padding-left: 0.9375rem !important;
		padding-right: 0.625rem !important;
		background: #fff;
		width: 18.75rem;
		position: fixed;
		top: 0rem;
		bottom: 0rem;
		z-index: 9999;
		height: 100%;
		overflow-x: scroll;
		box-shadow: 0 0 0.3125rem 0 rgba(50, 50, 50, 0.75);
		transition: all 300ms ease-in-out;
		padding-top: 2.5rem;
		margin: 0rem;
	}

	.blog-detail .sidebar-offcanvas #close-sidebar,
	.blog-list .sidebar-offcanvas #close-sidebar,
	.product-detail .sidebar-offcanvas #close-sidebar,
	.product-listing .sidebar-offcanvas #close-sidebar {
		position: absolute;
		top: 0.625rem;
		right: 0.625rem;
		font-size: 1rem;
		display: block;
	}

	.blog-detail .sidebar-offcanvas #close-sidebar:hover,
	.blog-list .sidebar-offcanvas #close-sidebar:hover,
	.product-detail .sidebar-offcanvas #close-sidebar:hover,
	.product-listing .sidebar-offcanvas #close-sidebar:hover {
		cursor: pointer;
		color: #f00;
	}

	.blog-detail .sidebar-offcanvas.right_column,
	.blog-list .sidebar-offcanvas.right_column,
	.product-detail .sidebar-offcanvas.right_column,
	.product-listing .sidebar-offcanvas.right_column {
		right: -100%;
	}

	.blog-detail .sidebar-offcanvas.left_column,
	.blog-list .sidebar-offcanvas.left_column,
	.product-detail .sidebar-offcanvas.left_column,
	.product-listing .sidebar-offcanvas.left_column {
		left: -100%;
	}

	.blog-detail .sidebar-offcanvas.left_column.active,
	.blog-list .sidebar-offcanvas.left_column.active,
	.product-detail .sidebar-offcanvas.left_column.active,
	.product-listing .sidebar-offcanvas.left_column.active {
		left: 0;
	}

	.blog-detail .sidebar-offcanvas.right_column.active,
	.blog-list .sidebar-offcanvas.right_column.active,
	.product-detail .sidebar-offcanvas.right_column.active,
	.product-listing .sidebar-offcanvas.right_column.active {
		right: 0;
	}
}

.filter-horizontal .so-filter-option.so-filter-price .input_max,
.filter-horizontal .so-filter-option.so-filter-price .input_min {
	min-width: 3.125rem;
	width: 3.125rem;
}

.white-popup {
	position: relative;
	background: #fff;
	padding: 1.25rem;
	width: auto;
	max-width: 31.25rem;
	margin: 1.25rem auto;
}

.white-popup .mfp-close {
	background: #999;
}

.mfp-iframe-scaler iframe {
	padding: 0.625rem 0.625rem 0.625rem 0.625rem;
	height: 33.4375rem;
}

#product-quick #product {
	margin-top: 1.25rem;
}

#product-quick .product-view .content-product-right .box-review .ratings {
	margin-right: 0.625rem;
	top: -0.0625rem;
}

#product-quick .product-view .content-product-right .box-review .order-num {
	display: block;
	margin-bottom: 0.625rem;
}

#product-quick .product-view .content-product-right .title-product h1 {
	margin-bottom: 0.625rem;
}

#product-quick .product-view .content-product-right .product-box-desc {
	padding: 0.625rem;
	border: 0.0625rem dotted #ddd;
	margin: 0;
	font-style: italic;
	color: #999;
	font-size: 0.75rem;
}

#product-quick .product-view .content-product-right .product-box-desc span {
	font-weight: normal;
	min-width: 6.25rem;
}

#product-quick .list-unstyled {
	font-size: 0.8125rem;
	color: #666;
	font-weight: normal;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav {
	position: static;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 1.875rem;
	height: 1.875rem;
	border: none;
	line-height: 1.625rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 50%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1rem;
	margin: 0;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev,
	#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
		line-height: 1.75rem;
	}
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:before,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1rem;
	font-weight: 900;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-next,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:hover:before,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev,
#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
	margin-top: -0.9375rem;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:before {
	font-family: "FontAwesome";
	font-weight: 300;
	font-size: 1rem;
	content: "" !important;
}

#product-quick .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:before {
	font-family: "FontAwesome";
	font-weight: 300;
	font-size: 1rem;
	content: "" !important;
}

.product-layout.product-table .product-item-container .seller_logo {
	transform: unset;
	position: static;
}

@media (min-width: 75rem) and (max-width: 103.0625rem) {
	.product-grid.product-grid-5 .countdown_box {
		display: none;
	}

	#product-related .countdown_box {
		display: none;
	}

	.product-layout .product-item-container .seller_logo {
		right: 0.3125rem;
	}
}

.category-featured {
	margin: 0 0 1.875rem 0;
}

@media (min-width: 75rem) {
	.category-featured .wap-listing-tabs {
		min-height: 15.3125rem;
		position: relative;
		z-index: 2;
	}
}

.category-featured .ltabs-wrap .ltabs-tabs-container {
	margin: 0 0 0.625rem;
	border-bottom: 0.125rem solid #eeeeee;
}

.category-featured .ltabs-wrap .ltabs-tabs-container .ltabs-tabs li.ltabs-tab {
	margin: 0 1.25rem 0 0;
	padding: 0.3125rem 0;
}

.category-featured .ltabs-wrap .ltabs-tabs-container .ltabs-tabs li.ltabs-tab>span {
	font-size: 1.8rem;
	color: #999;
	padding: 0;
}

.category-featured .ltabs-wrap .ltabs-tabs-container .ltabs-tabs li.ltabs-tab>span:hover {
	color: #c12026;
}

.category-featured .ltabs-wrap .ltabs-tabs-container .ltabs-tabs li.tab-sel {
	position: relative;
	font-weight: bold;
}

.category-featured .ltabs-wrap .ltabs-tabs-container .ltabs-tabs li.tab-sel span {
	color: #495057;
}

.category-featured .ltabs-wrap .ltabs-tabs-container .ltabs-tabs li.tab-sel:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 0.125rem;
	background-color: #c12026;
	bottom: -0.125rem;
	left: 0;
	z-index: 2;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-nav .owl2-prev,
.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-nav .owl2-next {
	border-radius: 0.1875rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-nav .owl2-prev:hover,
.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-nav .owl2-next:hover {
	color: #fff;
	background-color: #c12026;
	border-color: #c12026;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot {
	margin: 0 0.1875rem;
	display: inline-block;
	transition: all 0.3s ease 0s;
	width: 1.25rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot span {
	height: 0.375rem;
	background: #cacaca;
	display: block;
	border-radius: 0.1875rem;
	margin: 0;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot:hover span {
	background: #c12026;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot.active {
	width: 1.875rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot.active span {
	background: #c12026;
}

.category-featured .ltabs-wrap .wap-listing-tabs .ltabs-item {
	margin: 0 !important;
}

.category-featured .ltabs-wrap .wap-listing-tabs .ltabs-item .item-inner {
	margin: 0;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container {
	margin-bottom: 0;
	display: flex;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .left-block {
	padding: 0;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block {
	text-align: left;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block h4>a {
	font-size: 1rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .item-available {
	margin-top: 0.9375rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .item-available .available {
	background-color: #eee;
	height: 0.625rem;
	width: 100%;
	border-radius: 0.4375rem;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .item-available .available .color_width {
	background: #c12026;
	position: absolute;
	height: 100%;
	left: 0;
	border-radius: 0.4375rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .item-des {
	line-height: 1.375rem;
	margin: 0.3125rem 0 0.9375rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .rating-num {
	font-size: 0.75rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .button-group {
	margin-top: 0.9375rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .btn-button {
	margin: 0 0.125rem;
	padding: 0.6875rem 0.75rem;
	line-height: 100%;
	background-color: white;
	border: 0.0625rem solid #dcdcdc;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .btn-button:hover {
	color: #fff;
	background-color: #c12026;
	border-color: #c12026;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .addToCart {
	padding: 0.6875rem 1.25rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .wishlist,
.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .compare {
	color: #444;
	border-radius: 50%;
}

.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .wishlist span,
.category-featured .ltabs-wrap .wap-listing-tabs .product-item-container .right-block .compare span {
	display: none;
}

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

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

.refine-search .thumbnail {
	background-color: #fff;
	border: 0.0625rem solid #ddd;
	border-radius: 0.25rem;
}

.refine-search__content .refine-search__subitem {
	width: 5.6875rem;
	margin-bottom: 0.625rem;
}

.category-featured .ltabs-items-container .ltabs-items-inner {
	padding-bottom: 1.25rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots {
	left: 0;
	bottom: -0.5rem;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot {
	float: none;
}

.category-featured .ltabs-wrap .wap-listing-tabs .owl2-controls .owl2-dots .owl2-dot span {
	width: 100%;
}

.products-list .product-layout.product-list ul.so-colorswatch-productpage-icons {
	text-align: left !important;
}

.tab-content>.active {
	opacity: 1;
}

#button-review {
	visibility: visible;
}

.zoomContainer {
	z-index: 450;
}

.lightSlider {
	padding: 0;
}

.product_page_price {
	margin-bottom: 2.1875rem;
}

.product_page_price .price-new {
	font-size: 1.25rem !important;
	line-height: 1.375rem !important;
	color: #c12026;
	font-weight: 700 !important;
}

.product_page_price .price-old {
	vertical-align: top;
	color: #999;
	font-size: 1rem;
	line-height: 1.375rem;
}

.product_page_price .price-tax {
	margin-bottom: 0.625rem;
	color: #999;
	font-size: 0.75rem;
	font-weight: normal;
}

.product_page_price .label-product {
	position: static;
	display: inline-block;
	border-radius: 0.125rem;
	height: auto;
	padding: 0 0.625rem;
	width: auto;
	line-height: 1.375rem;
	vertical-align: top;
	margin: 0;
}

.product-detail .so-extraslider {
	margin: 0;
}

.product-detail .producttab .tab-content ul,
.product-detail .producttab .tab-content ol {
	display: block;
	list-style-type: disc;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0rem;
	-webkit-margin-end: 0rem;
	-webkit-padding-start: 2.5rem;
	padding-left: 1.25rem;
}

#tab-review input[type="radio"] {
	position: relative;
	top: 0.125rem;
}

#tab-review .contacts-form span span.text-danger {
	margin-right: 0.9375rem;
	margin-top: 0;
}

#tab-review .form-group textarea {
	height: 9.375rem;
}

.image-popup-sizechart {
	background: url("../../images/size-chart-icon.png") no-repeat left;
	padding-left: 1.25rem;
	top: 0;
	right: 0.9375rem;
	position: absolute;
	z-index: 1;
}

.gallery-button {
	display: block;
	clear: both;
}

.gallery-button .gallery-zoom {
	padding: 0.5625rem 1.25rem;
	background: #eee;
	color: #333;
	border-radius: 0.1875rem;
	border: none;
	clear: both;
	cursor: pointer;
	display: inline-block;
	margin: 0.625rem;
}

.gallery-button .gallery-zoom:hover {
	background: #c12026;
	border-color: #c12026;
	color: #fff;
}

.large-image .gallery-button .gallery-zoom {
	background: none;
}

.gallery-grid {
	padding: 0.3125rem;
}

.gallery-grid .thumbnail {
	border-radius: 0;
	margin: 0;
	display: block;
	border: 0.0625rem solid #d6d6d6;
}

.gallery-slider .owl2-stage-outer .owl2-item {
	transform: scale(0.6);
	transition: 0.3s all ease-in-out;
}

.gallery-slider .owl2-stage-outer .center {
	transform: scale(1.15);
}

.gallery-slider .owl2-controls {
	height: 0;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev,
.gallery-slider .owl2-controls .owl2-nav .owl2-next {
	width: 3.125rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	text-indent: -624.9375rem;
	overflow: hidden;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 50%;
	margin: 0;
	margin-top: -2.5rem;
	display: inline-block;
	border: 0.0625rem solid #dedfe3;
	float: none;
	border-radius: 0;
	z-index: 99;
	opacity: 1;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev:before,
.gallery-slider .owl2-controls .owl2-nav .owl2-next:before {
	opacity: 1;
	font-weight: 400;
	font-family: "FontAwesome";
	position: absolute;
	top: -0.125rem;
	left: 0;
	display: inline-block;
	text-indent: 0;
	width: 100%;
	height: 100%;
	font-size: 1.875rem;
	transition: all 0.2s ease-in-out 0s;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.gallery-slider .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: -0.0625rem;
	left: auto;
	border-top-left-radius: 0.1875rem;
	border-bottom-left-radius: 0.1875rem;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.gallery-slider .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
.gallery-slider .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: -0.0625rem;
	right: auto;
	border-top-right-radius: 0.1875rem;
	border-bottom-right-radius: 0.1875rem;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.gallery-slider .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev:hover,
.gallery-slider .owl2-controls .owl2-nav .owl2-next:hover {
	background-color: #fff;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev,
.gallery-slider .owl2-controls .owl2-nav .owl2-next {
	border-radius: 0.1875rem;
}

.gallery-slider .owl2-controls .owl2-nav .owl2-prev:hover,
.gallery-slider .owl2-controls .owl2-nav .owl2-next:hover {
	background: #c12026;
	color: white;
}

.product-view .content-product-right .rating .rating-box,
.product-view .content-product-right .ratings .rating-box {
	vertical-align: top;
	line-height: 1.125rem;
}

.product-view .content-product-left .large-image {
	cursor: pointer;
	display: block;
	overflow: hidden;
	position: relative;
	padding: 0rem;
	border-radius: 0.3125rem;
}

.product-view .content-product-left .full_slider {
	margin: 0;
	margin-top: 1.25rem;
}

.product-view .content-product-left .full_slider .image-additional {
	width: 100%;
}

.product-view .content-product-left .full_slider .thumbnail {
	border: 0.0625rem solid #f7f7f7;
	padding: 0;
	border-radius: 0.3125rem;
	display: block;
	margin-bottom: 0;
	overflow: hidden;
}

.product-view .content-product-left .full_slider .thumbnail.active {
	border-color: #c12026;
}

.product-view .content-product-left .full_slider:hover .owl2-controls {
	opacity: 1;
}

.product-view .content-product-left .full_slider .owl2-stage {
	display: flex;
}

.product-view .content-product-left .full_slider .owl2-controls {
	opacity: 0;
	transition: 0.3 all ease-in-out;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav {
	position: static;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 2.875rem;
	height: 2.875rem;
	border: none;
	line-height: 2.625rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 50%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1rem;
	margin: 0;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev,
	.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
		line-height: 2.75rem;
	}
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:before,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1rem;
	font-weight: 900;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:hover:before,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev,
.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
	margin-top: -1.4375rem;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:before {
	font-family: "FontAwesome";
	font-weight: 300;
	font-size: 1.25rem;
	content: "" !important;
}

.product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:before {
	font-family: "FontAwesome";
	font-weight: 300;
	font-size: 1.25rem;
	content: "" !important;
}

.product-view .content-product-midde {
	width: 100%;
	display: inline-block;
}

.product-view .content-product-right {
	overflow: hidden;
}

.product-view .content-product-right .title-product h1 {
	font-size: 2.6rem;
	text-transform: capitalize;
	color: #000;
	font-weight: 500;
	line-height: 2rem;
}

.product-view .content-product-right .box-review {

	font-size: 1rem;
	line-height: 1.6rem;

}

.product-view .content-product-right .box-review .ratings {
	display: inline-block;
	margin: 0 1.25rem 0 0;
	z-index: 0;
	position: relative;
}

.product-view .content-product-right .box-review a {
	color: #727272;
	display: inline-block;
	margin: 0 0.9375rem;
}

.product-view .content-product-right .box-review a:hover {
	color: #c12026;
}

.product-view .content-product-right .box-review .rating {
	display: inline-block;
}

.product-view .content-product-right .box-review .order-num {
	padding: 0 0rem;
	font-size: 1rem;
}

.product-view .content-product-right .box-review .order-num .fa {
	font-size: 1rem;
	padding: 0rem;
	margin-right: 1.125rem;
	vertical-align: text-top;
}

.product-view .content-product-right .box-review .order-num .fa:before {
	content: "|";
}

.product-view .content-product-right .product-box-desc {
	float: left;
	width: 100%;
	margin-bottom: 0.9375rem;
	position: relative;
}

.product-view .content-product-right .product-box-desc .short-description {
	margin-bottom: 0.9375rem;
}

.product-view .content-product-right .product-box-desc .brand,
.product-view .content-product-right .product-box-desc .model {
	display: inline-block;
	margin-right: 2.5rem;
}

.product-view .content-product-right .product-box-desc .brand:last-child,
.product-view .content-product-right .product-box-desc .brand.model,
.product-view .content-product-right .product-box-desc .model:last-child,
.product-view .content-product-right .product-box-desc .model.model {
	margin-right: 0rem;
}

.product-view .content-product-right .product-box-desc span {
	display: inline-block;
	margin-right: 0.3125rem;
}

.product-view .content-product-right .product-box-desc .brand a {
	color: #727272;
}

.product-view .content-product-right .product-box-desc .brand a:hover {
	color: #c12026;
}

.product-view .content-product-right .product-box-desc .stock {
	color: #dc3545;
	margin-top: 0.6875rem;
}

.stock {
	color: #808284;
	margin-top: 0.6875rem;
	margin-bottom: 0.6875rem;
}

.product-view .content-product-right .product-box-desc .stock span {
	display: none;
}

.product-view .content-product-right .product-box-desc .stock i {
	font-size: 1.625rem;
	margin-right: 0.3125rem;
}

.product-view .content-product-right .list-discount {
	margin-bottom: 0.9375rem;
}

.product-view .content-product-right .product-label {
	line-height: 1.5rem;
	margin-top: 0.9375rem;
	float: left;
	width: 100%;
}

.product-view .content-product-right .product-label .price {
	float: left;
	margin-top: 0;
	margin-bottom: 0;
}

.product-view .content-product-right .product-label .list-unstyled {
	font-size: 0.8125rem;
	color: #666;
	font-weight: normal;
}

.product-view .content-product-right .so-colorswatch-productpage-icons {
	margin-bottom: 0.9375rem;
	text-align: left;
}

.product-view .content-product-right .countdown_box {
	position: static;
	margin: 0;
	-webkit-transform: scale(1) translateX(0);
	-moz-transform: scale(1) translateX(0);
	-ms-transform: scale(1) translateX(0);
	-o-transform: scale(1) translateX(0);
	transform: scale(1) translateX(0);
	width: 100%;
	margin-bottom: 2.5rem;
	margin-top: 1.25rem;
}

.product-view .content-product-right .countdown_box .countdown_inner {
	text-align: left;
}

.product-view .content-product-right .countdown_box .countdown_inner .title {
	padding: 0rem;
	display: table-cell;
	vertical-align: top;
	border-right: 0.0625rem solid rgba(255, 255, 255, 0.2);
	font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 2.5rem;
}

.product-view .content-product-right h3 {
	font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 600;
}

.product-view .content-product-right .box-info-product {
	float: left;
	width: 100%;
	margin: 0.9375rem 0 0;
}

.product-view .content-product-right .box-info-product .inner {
	display: flex;
	flex-wrap: wrap;
}

.product-view .content-product-right .box-info-product .quantity {
	max-width: 9.5rem;
	margin-right: 1.25rem;
	margin-bottom: 1.25rem;
}

.product-view .content-product-right .box-info-product .quantity .control-label {
	min-width: 7.5rem;
	display: none;
}

.product-view .content-product-right .box-info-product .quantity .quantity-control {
	position: relative;
	border: 0.0625rem solid #e6e6e6;
	border-radius: 0.3125rem;
}

.product-view .content-product-right .box-info-product .quantity .quantity-control input.form-control {
	float: left;
	width: 2.5rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0;
	text-align: center;
	color: #000;
	font-size: 1rem;
	background-color: #f0f0f0;
	border: none;
}

.product-view .content-product-right .box-info-product .quantity .quantity-control span {
	width: 3.5rem;
	height: 3.5rem;
	border: none;
	color: #000;
	float: left;
	text-align: center;
	line-height: 3.5rem;
	padding: 0;
	background-color: #f0f0f0;
	border-radius: 0rem;
}

.product-view .content-product-right .box-info-product .quantity .quantity-control span:hover {
	background-color: #efeded;
	cursor: pointer;
	color: #c12026;
}

.product-view .content-product-right .box-info-product .quantity .quantity-control .fa {
	font-weight: 300;
}

.product-view .content-product-right .box-info-product .cart {
	margin: 0 0 0.625rem;
}

.product-view .content-product-right .box-info-product .cart .btn {
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	border-radius: 0.3125rem;
	border: none;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	padding: 1.125rem 1.25rem;
	line-height: 1.25rem;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	vertical-align: top;
	max-width: 13.125rem;
	width: 13.125rem;
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
	.product-view .content-product-right .box-info-product .cart .btn {
		width: 9.375rem;
	}
}

.product-view .content-product-right .box-info-product .cart .btn.btn-checkout {
	margin-left: 0.9375rem;
	background: #ffad9b;
	width: auto;
}

.product-view .content-product-right .box-info-product .cart {
	background: #b82a2e;
}

.product-view .content-product-right .box-info-product .cart .btn:hover {
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
}

.product-view .content-product-right .box-info-product .add-to-links {
	font-size: 1rem;
	text-transform: capitalize;
	padding: 1.25rem 0;
	width: 100%;
}

.product-view .content-product-right .box-info-product .add-to-links ul {
	display: flex;
	flex-wrap: wrap;
}

.product-view .content-product-right .box-info-product .add-to-links li {
	margin-right: 1.1875rem;
}

.product-view .content-product-right .box-info-product .add-to-links li a {
	color: #000;
}

.product-view .content-product-right .box-info-product .add-to-links li a:hover {
	color: #c12026;
}

.product-view .content-product-right .box-info-product .add-to-links .fa {
	margin-right: 0.3125rem;
	font-size: 1.25rem;
}

.product-view .content-product-right .share {
	margin-top: 0.625rem;
}

.product-view .content-product-right .share .socials-wrap {
	border-top: 0.0625rem solid #ebebeb;
	border-bottom: 0.0625rem solid #ebebeb;
	padding: 1.25rem 0;
}

.product-view .content-product-right .share .socials-wrap span {
	font-size: 1.4rem;
	color: #222;
	font-weight: 600;
}

.product-view .content-product-right .share .socials-wrap ul {
	float: right;
}

.product-view .content-product-right .share .socials-wrap ul li {
	float: left;
	margin-left: 2.1875rem;
}

.product-view .content-product-right .share .socials-wrap ul li a {
	font-size: 1rem;
}

#product div.required .control-label:before {
	content: "* ";
	color: #f00;
	font-weight: bold;
}

#product .image_option_type .product-options {
	display: inline-block;
}

#product .control-label {
	font-weight: 400;
}

#product .product-options .img-thumbnail {
	width: 1.375rem;
	height: 1.375rem;
	border-radius: 0;
	padding: 0.0625rem;
}

#product .radio-type-button {
	display: inline-block;
	vertical-align: top;
	margin: 0 0.4375rem 0.3125rem 0rem;
	padding: 0rem;
}

#product .radio-type-button label {
	padding: 0;
	font-size: 0.875rem;
}

#product .radio-type-button input {
	visibility: hidden;
	display: none;
}

#product .radio-type-button .option-content-box {
	background: #f3f4f6;
	display: block;
	text-align: center;
	border-radius: 0.25rem;
	padding: 0.3125rem 0.625rem;
}

#product .radio-type-button .option-content-box.active,
#product .radio-type-button .option-content-box.active:hover {
	background: #666;
	color: white;
}

#product .radio-type-button .option-content-box:hover {
	background: #dadada;
}

#product .radio-type-button.option_image .option-name {
	display: none;
}

#product .option_image label {
	padding: 0;
}

#product .option_image input {
	visibility: hidden;
}

#product .option_image .option-name {
	padding: 0 0.3125rem;
}

#product .option_image .option-content-box {
	padding: 0.0625rem;
}

#product .box-date {
	padding-left: 0;
}

#product .box-date label {
	margin-right: 0.625rem;
	width: 5rem;
}

#product .box-date input {
	width: 12.5rem;
}

#product .box-date input,
#product .box-date button {
	border-radius: 0;
	position: relative;
	z-index: 0;
	margin-left: 0;
}

#product .box-date .input-group-btn {
	float: left;
}

#product .box-date button:hover {
	background: #c12026;
	color: #fff;
}

#product .icheckbox.checked:before,
#product .iradio.checked:before {
	background-color: #c12026;
	border-color: #c12026;
}

@media (min-width: 75rem) {
	#product .form-group select {
		max-width: 53%;
	}
}

.thumb-vertical-outer {
	width: 5.625rem;
	position: relative;
	float: left;
	margin-right: 1.25rem;
}

.thumb-vertical-outer .thumbnail {
	border: 0.0625rem solid #f7f7f7;
	padding: 0;
	border-radius: 0.3125rem;
	display: block;
	overflow: hidden;
	margin-bottom: 1.25rem;
}

.thumb-vertical-outer .thumbnail.active {
	border-color: #c12026;
}

.content-product-midde {
	margin-top: 2.8125rem;
}

.producttab .tabsslider.horizontal-tabs {
	z-index: 1;
	margin-bottom: 0rem;
	float: left;
	width: 100%;
	border: none;
	padding: 0;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs {
	border-bottom: 0.125rem solid #d6d6d6;
	justify-content: center;
	text-align: center;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li {
	margin-bottom: 0;
	display: inline-flex;
	margin-right: 3.375rem;
}

@media (min-width: 75rem) and (max-width: 74.9375rem) {
	.producttab .tabsslider.horizontal-tabs .nav-tabs li {
		margin-right: 1.25rem;
	}
}

@media (max-width: 47.9375rem) {
	.producttab .tabsslider.horizontal-tabs .nav-tabs li {
		margin-right: 0rem;
		border-bottom: 0.125rem solid #d6d6d6;
		margin-bottom: 0.375rem;
	}

	.producttab .tabsslider.horizontal-tabs .nav-tabs li:last-child {
		margin-bottom: 0rem;
		border-bottom: none;
	}
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li a {
	display: block;
	font-size: 1.125rem;
	color: #898989;
	background-color: transparent;
	position: relative;
	padding: 0rem 0 0.5rem !important;
	margin: 0;
	cursor: pointer;
	text-transform: capitalize;
	font-weight: 500;
	border-radius: 0;
	border: none;
	line-height: 100%;
	transition: all 0.2s ease-in-out 0s;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li a:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -0.125rem;
	height: 0.25rem;
	width: 0%;
	background: #c12026;
	transition: all 0.3s ease-in-out 0s;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li a.active,
.producttab .tabsslider.horizontal-tabs .nav-tabs li a:hover {
	color: #c12026;
	background-color: transparent;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li a.active:before,
.producttab .tabsslider.horizontal-tabs .nav-tabs li a:hover:before {
	width: 100%;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li.active:before {
	width: 100%;
}

.producttab .tabsslider.horizontal-tabs .tab-content {
	padding: 1.6875rem 0rem 0;
	display: block;
	margin: 0;
	border-radius: 0rem;
	border: none;
}

.producttab .tabsslider.horizontal-tabs .tab-content .active {
	opacity: 1;
}

.producttab .tabsslider.vertical-tabs {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border: 0.0625rem solid #e6e6e6;
	padding: 0;
	border-bottom: 0.0625rem solid #ddd;
	border-radius: 0rem;
	margin-bottom: 5rem;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs {
	border-bottom: medium none;
	margin: 0;
	min-height: 11.25rem;
	padding: 0;
	align-content: flex-start;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li {
	border: none;
	border-bottom: 0.0625rem solid #ddd;
	clear: both;
	position: relative;
	width: 100%;
	padding: 0.3125rem 0;
	border-right: none;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li a {
	padding: 0.5rem 1.25rem;
	border: none;
	border-radius: 0;
	font-size: 1rem;
	text-transform: capitalize;
	font-weight: 400;
	display: block;
	height: 100%;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover {
	border-color: #ddd;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover a {
	background: transparent;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li:before {
	content: "";
	width: 0.25rem;
	height: 0%;
	left: -0.0625rem;
	position: absolute;
	top: 0;
	transition: all 0.3s ease-in-out 0s;
	z-index: 99;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover {
	border-left-color: #c12026;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover a {
	color: #c12026;
	border: none;
	font-weight: 600;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover:before {
	background-color: #c12026;
	height: 100%;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li.active {
	border-left-color: #c12026;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li.active:before {
	background-color: #c12026;
	height: 100%;
}

.producttab .tabsslider.vertical-tabs ul.nav-tabs li.active a {
	background: transparent;
	color: #c12026;
	border: none;
	font-weight: 600;
}

.producttab .tabsslider.vertical-tabs .tab-content {
	border: 0;
	border-left: 0.0625rem solid #e6e6e6;
	min-height: 12.5rem;
	margin-bottom: 0;
	padding: 1.25rem;
}

.product-detail .producttab .tab-content .product-property-title {
	font-size: 1rem;
	color: #222;
	text-transform: capitalize;
}

.product-detail .producttab .tab-content .product-property-list {
	padding: 0;
	margin: 0 0 1.875rem;
	list-style: none;
	display: inline-block;
	width: 100%;
}

.product-detail .producttab .tab-content .product-property-list li {
	width: 50%;
	float: left;
	padding: 0.3125rem 0;
	border-bottom: 0.0625rem solid #f4f4f4;
}

.product-detail .producttab .tab-content .product-property-list li .propery-title {
	float: left;
	color: #999;
	min-width: 9.375rem;
}

.product-detail .producttab .tab-content .product-property-list li .propery-des {
	float: left;
	max-width: 18.75rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #495057;
}

.desc-collapse.showup {
	max-height: 100%;
}

.desc-collapse.showdown {
	max-height: 18.75rem;
	display: block;
	overflow: hidden;
	transition: 0.3s all ease-in-out;
	position: relative;
	z-index: 2;
}

.desc-collapse.showdown:before {
	display: block;
	content: "";
	height: 7.5rem;
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	z-index: 2;
	background: linear-gradient(rgba(255, 255, 255, 0) 0, white 100%, #fff);
}

.button-toggle {
	display: block;
	text-align: center;
	background-color: transparent;
	padding: 0.625rem;
	position: relative;
	z-index: 1;
}

.button-toggle a {
	background-color: transparent;
	text-transform: capitalize;
	font-weight: 400;
	color: #666;
}

.button-toggle a:hover,
.button-toggle a:focus,
.button-toggle a:active {
	color: #c12026;
	background-color: transparent;
	box-shadow: none;
}

.button-toggle a.active .toggle-less {
	display: block;
}

.button-toggle a.active .toggle-more {
	display: none;
}

.button-toggle a .toggle-less {
	display: none;
}

.button-toggle a .toggle-more {
	display: block;
}

#content .related-horizontal h3.modtitle {
	margin-bottom: 1.875rem;
	text-align: center;
	font-size: 3.6rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
}

#content .related-horizontal h3.modtitle span {
	font-size: 3.6rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
}

#content .related-horizontal .related-products {
	position: static;
}

#content .related-horizontal .related-products .product-grid .product-item-container {
	margin-bottom: 0;
}

#content .related-horizontal .related-products-slider {
	position: relative;
	z-index: 2;
}

#content .related-vertical,
#content .upsell-sidebar {
	position: relative;
	margin-top: 3.125rem;
}

#content .related-vertical .related-products,
#content .upsell-sidebar .related-products {
	position: static;
}

#content .related-vertical h3.modtitle,
#content .upsell-sidebar h3.modtitle {
	border-bottom: 0.0625rem solid #eaeaea;
	display: inline-block;
	width: 100%;
	position: relative;
	margin-top: 0 !important;
}

#content .related-vertical h3.modtitle span,
#content .upsell-sidebar h3.modtitle span {
	font-size: 1.125rem;
	color: #222;
	font-weight: 700;
	float: left;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {

	#content .related-vertical h3.modtitle span,
	#content .upsell-sidebar h3.modtitle span {
		font-size: 1rem;
	}
}

#content .related-vertical .owl2-controls .owl2-nav,
#content .upsell-sidebar .owl2-controls .owl2-nav {
	position: absolute;
	top: -0.5rem;
	right: 0;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next {
	background-color: #d6d6d6;
	border: none;
	border-radius: 0rem;
	width: 1.5625rem;
	height: 1.5625rem;
	line-height: 1.5625rem;
	text-align: center;
	float: left;
	text-indent: -624.9375rem;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	position: absolute;
	top: 50%;
	z-index: 99;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev:before,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next:before {
	color: #fff;
	font-family: "FontAwesome";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 0.75rem;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev.owl2-next,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev.owl2-next,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next.owl2-next,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next.owl2-next:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next.owl2-prev,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next.owl2-prev:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev:hover,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev:hover,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next:hover,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next:hover {
	background-color: #c12026;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev:hover:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev:hover:before,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next:hover:before,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #fff;
}

#content .related-vertical .owl2-controls .owl2-nav .owl2-prev,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-prev,
#content .related-vertical .owl2-controls .owl2-nav .owl2-next,
#content .upsell-sidebar .owl2-controls .owl2-nav .owl2-next {
	position: static;
	margin-left: 0.1875rem;
}

#content .related-vertical .item-element,
#content .upsell-sidebar .item-element {
	margin-bottom: 1.25rem;
}

#content .related-vertical .item-element .image,
#content .upsell-sidebar .item-element .image {
	width: 5.625rem;
	border: none;
	margin-right: 0.9375rem;
	float: left;
}

#content .related-vertical .item-element h4,
#content .upsell-sidebar .item-element h4 {
	margin-bottom: 0rem;
}

#content .related-vertical .item-element h4 a,
#content .upsell-sidebar .item-element h4 a {
	font-size: 1.4rem;
	color: #444;
}

#content .related-vertical .item-element h4 a:hover,
#content .upsell-sidebar .item-element h4 a:hover {
	color: #c12026;
}

#content .related-vertical .item-element .ratings,
#content .upsell-sidebar .item-element .ratings {
	margin-bottom: 0;
}

.related-products .owl2-stage {
	display: flex;
}

.upsell-sidebar {
	position: relative;
}

.upsell-sidebar h3.modtitle {
	padding: 1.125rem 0 1.125rem 1.25rem;
}

.upsell-sidebar .price .price-old {
	font-size: 0.8125rem;
	padding: 0;
}

.upsell-sidebar.product-simple .so-extraslider .extraslider-inner .item .item-inner .item-image {
	width: 5.625rem;
}

.upsell-sidebar.product-simple .so-extraslider .extraslider-inner .item .item-inner .item-info {
	margin-left: 6.5625rem;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav {
	position: absolute;
	top: 1.0625rem;
	right: 1.25rem;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev,
.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-next {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-ms-opacity: 1;
	-o-opacity: 1;
	opacity: 1;
	background-color: transparent;
	float: left;
	margin-left: 0.9375rem;
	margin-right: 0 !important;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev:before,
.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-next:before {
	font-family: "FontAwesome";
	font-size: 0.75rem;
	color: #cfcfcf;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev:hover,
.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-next:hover {
	background-color: transparent;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev:hover:before,
.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev i,
.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-next i {
	display: none;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev {
	margin-right: 0.9375rem;
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-prev:before {
	content: "";
}

.upsell-sidebar .so-extraslider .owl2-controls .owl2-nav .owl2-next:before {
	content: "";
}

.upsell-sidebar .modcontent .so-extraslider {
	margin: 0;
	background-color: #fff;
	border: 0.0625rem solid #ebebeb;
	border-bottom-right-radius: 0.3125rem;
	border-bottom-left-radius: 0.3125rem;
	padding: 1.5625rem 0.9375rem 0.3125rem 0.9375rem;
}

.upsell-sidebar .modcontent .extraslider-inner {
	border: none;
}

.up-sell-product {
	padding: 0;
	clear: both;
}

.up-sell-product .owl2-carousel .owl2-stage-outer {
	direction: ltr;
}

.up-sell-product .so-basic-product {
	overflow: visible;
	position: relative;
}

.up-sell-product .so-basic-product .item-element {
	width: 100%;
	overflow: visible;
}

.up-sell-product .so-basic-product .item-wrap {
	margin: 0;
	overflow: visible;
}

.product-view .social-share {
	margin-top: 0.9375rem;
	display: inline-block;
	width: 100%;
}

.product-view .social-share .title-share {
	float: left;
	font-size: 0.875rem;
	color: #222;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 0.1875rem;
	margin-right: 0.625rem;
}

.product-view .social-share .wrap-content {
	float: left;
}

.product-view .social-share .wrap-content a {
	margin-left: 0.3125rem;
}

.content-product-bottom {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 3.75rem;
	margin-bottom: 3.4375rem;
}

.content-product-bottom .owl2-controls .owl2-nav {
	position: static;
	margin-top: -1.6875rem;
	z-index: 99;
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 3.375rem;
	height: 3.375rem;
	border: none;
	line-height: 3.125rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 50%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1.125rem;
	margin: 0;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.content-product-bottom .owl2-controls .owl2-nav .owl2-prev,
	.content-product-bottom .owl2-controls .owl2-nav .owl2-next {
		line-height: 3.25rem;
	}
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev:before,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
	font-weight: 900;
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.content-product-bottom .owl2-controls .owl2-nav .owl2-prev:hover:before,
.content-product-bottom .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

.content-product-bottom .owl2-controls .owl2-nav>div {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	transition: all 0.2s ease-in-out 0s;
}

.content-product-bottom .related-products:hover .owl2-controls .owl2-nav>div {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
}

.product-product .sticky-detail {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 0 0.625rem -0.125rem #ddd;
	height: 7.5rem;
	width: 100%;
	z-index: 99;
	padding: 0.9375rem 0;
	opacity: 0;
	visibility: hidden;
}

.product-product .sticky-detail .product-image {
	width: 5.625rem;
	float: left;
	margin-right: 1.25rem;
}

.product-product .sticky-detail .product-cont h1 {
	font-size: 1.125rem;
	font-weight: 400;
	color: #222;
	margin: 0.9375rem 0 0.3125rem 0;
}

.product-product .sticky-detail .product-cont .price .price-new {
	font-size: 1.125rem;
}

@media (min-width: 47.9375rem) {
	.product-product .sticky-detail.sticky-active {
		opacity: 1;
		visibility: visible;
	}
}

.product-product .box-info-product.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	float: none;
	width: auto;
	max-width: 75rem;
	margin: 0 auto;
	z-index: 999;
	text-align: right;
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
	.product-product .box-info-product.fixed-top {
		max-width: 58.75rem;
	}
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
	.product-product .box-info-product.fixed-top {
		max-width: 45rem;
	}
}

@media (max-width: 47.9375rem) {
	.product-product .box-info-product.fixed-top {
		position: unset;
		text-align: left;
	}
}

@media (min-width: 47.9375rem) {
	.product-product .product-view .content-product-right .box-info-product.fixed-top .inner {
		float: right;
		display: flex;
		align-items: center;
		height: 7.5rem;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .quantity {
		float: left;
		margin: 0.3125rem 0;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .quantity .control-label {
		display: none;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .detail-action {
		float: left;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .detail-action .cart {
		margin: 0;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart #button-cart {
		display: none;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .add-to-links {
		display: none;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart-sticky .btn {
		background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
		border-radius: 0.3125rem;
		border: none;
		color: #fff;
		font-weight: 700;
		font-size: 1rem;
		padding: 1.125rem 1.25rem;
		line-height: 1.25rem;
		text-transform: capitalize;
		overflow: hidden;
		text-overflow: ellipsis;
		display: inline-block;
		vertical-align: top;
		max-width: 13.125rem;
		width: 13.125rem;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart-sticky .btn.btn-checkout {
		margin-left: 1.25rem;
		background: #ffad9b;
		width: auto;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart-sticky .btn.btn-checkout:hover {
		background: #b82a2e;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart {
		display: none;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart .button-checkout {
		background-color: #c12026;
		border-radius: 0;
		margin: 0 0 0 1.25rem;
	}

	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart .button-checkout:hover {
		background-color: #b82a2e;
	}
}

@media (min-width: 47.9375rem) and (min-width: 47.9375rem) {
	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart-sticky {
		display: block !important;
	}
}

@media (min-width: 47.9375rem) and (min-width: 62rem) and (max-width: 74.9375rem) {
	.product-product .product-view .content-product-right .box-info-product.fixed-top .cart-sticky .btn {
		width: 9.375rem;
	}
}

@media (max-width: 62rem) {
	.shopping_cart .dropdown-menu {
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		min-width: 19.375rem !important;
		width: 19.375rem !important;
		padding: 1.5625rem 0.9375rem !important;
		height: 100vh !important;
		transform: translateX(100%) !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-between !important;
		transition: transform 0.3s ease !important;
		z-index: 99999 !important;
		border-radius: 0 !important;
	}

	header .btn-shopping-cart .dropdown-menu.show {
		transform: translateX(0) !important;
	}

	header .btn-shopping-cart:not(.show):hover .dropdown-menu {
		transform: translateX(100%) !important;
		opacity: 0 !important;
		visibility: hidden !important;
	}

	.shopping_cart .content-item {
		max-height: 100% !important;
		height: 100% !important;
		overflow-y: auto !important;
	}

	.mini-cart-item {
		display: flex !important;
		align-items: flex-start !important;
		gap: 1rem !important;
		flex-direction: column !important;
		position: relative !important;
		border-bottom: 0.0625rem solid #a3a3a3 !important;
		padding-bottom: 0.625rem !important;

	}

	button.cart-remove {
		position: absolute !important;
		top: 0 !important;
		right: 0 !important;
	}

	.shoppingcart-box .mini-cart-item:last-child {
		border-bottom: none !important;
	}

	.cart-details .product-title {
		font-size: 0.8125rem !important;
		line-height: 1.4 !important;
	}

	.shopping_cart .checkout {
		padding: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 0.625rem !important;
	}

	.cart-price .price {
		font-size: 1rem !important;
	}

	.shopping_cart .content-item::-webkit-scrollbar {
		width: 0 !important;
		display: none !important;
	}

	.shopping_cart .content-item {
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
	}

	.cart-close-btn {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		position: absolute !important;
		top: 1.25rem !important;
		right: 1.25rem !important;
		width: 2.5rem !important;
		height: 2.5rem !important;
		background: transparent !important;
		border: none !important;
		cursor: pointer !important;
		z-index: 100000 !important;
		padding: 0 !important;
		color: #191c1f !important;
		transition: all 0.2s ease !important;
	}

	.cart-close-btn:hover {
		opacity: 0.7 !important;
		transform: scale(1.1) !important;
	}

	.cart-close-btn svg {
		width: 1rem !important;
		height: 1rem !important;
	}
}

@media (min-width: 62.0625rem) {
	.cart-close-btn {
		display: none !important;
	}
}

#form-review>h2 {
	font-size: 1.5rem;
}

#product .form-group select:focus {
	background-color: #e9e9e9;
}

#product .input-group .btn-block {
	border-radius: 0.3125rem;
}

#product .input-group .input-group-btn .btn-default {
	padding: 0.875rem 1.25rem;
}

header #sosearchpro .chosen-container-single .chosen-single {
	padding: 0 0 0 0.9375rem;
}

header #sosearchpro .search .chosen-container input {
	margin: 0;
	padding-left: 0.625rem;
}

header #sosearchpro .chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -0.8125rem 0.75rem;
}

header #sosearchpro input.chosen-search-input {
	height: 1.4375rem !important;
	line-height: 1.4375rem;
	border: 0.0625rem solid #efefef !important;
}

header #sosearchpro .dropdown-menu {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	border-radius: 0;
	width: 100%;
}

header #sosearchpro .searchbox .select_category select:hover {
	cursor: pointer;
}

.navbar-compact .hidden-compact {
	display: none;
}

header .navbar-default {
	background-color: transparent;
}

header .navbar-default .megamenu-wrapper {
	background-color: transparent;
}

header ul.megamenu>li>a {
	text-shadow: unset;
}

.dropdown-menu.shoppingcart-box .table {
	margin-bottom: 0;
}

.dropdown-menu.shoppingcart-box .table .btn-danger {
	background-color: transparent;
}

.dropdown-menu.shoppingcart-box .table .btn-danger i {
	color: #666;
}

.dropdown-menu.shoppingcart-box .table .btn-danger:hover i {
	color: #c12026;
}

.cart-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 1.25rem 0.9375rem 0.9375rem 0.9375rem !important;
	border-bottom: 0.0625rem solid #e5e5e5 !important;
	margin-bottom: 0.9375rem !important;
	position: relative !important;
}

.cart-title {
	font-size: 1.125rem !important;
	font-weight: 600 !important;
	color: #191c1f !important;
	margin: 0 !important;
	line-height: 1.4 !important;
}

.cart-item-count {
	font-weight: 400 !important;
	color: #666 !important;
}

.common-home .container-megamenu.horizontal ul.megamenu>li:first-child>a {
	color: #c12026;
	background-color: transparent;
}

.container-megamenu.horizontal ul.megamenu>li.active>a,
.container-megamenu.horizontal ul.megamenu>li:hover>a {
	color: #c12026;
	background-color: transparent;
}

.container-megamenu.horizontal ul.megamenu>li.active>a .caret:before,
.container-megamenu.horizontal ul.megamenu>li:hover>a .caret:before {
	color: #c12026;
}

.container-megamenu.horizontal .subcategory li a {
	color: #495057;
}

.container-megamenu.horizontal .subcategory li a:hover {
	color: #c12026;
}

.mega-horizontal .navbar-default {
	border: none;
	background: transparent;
}

.megamenu-style-dev {
	position: relative;
}

.container-megamenu.vertical #menuHeading .megamenuToogle-pattern .container {
	background-color: #c12026;
}

@media (max-width: 61.9375rem) {

	.responsive ul.megamenu>li.click:before,
	.responsive ul.megamenu>li.hover:before {
		right: 0;
		left: auto;
	}

	.responsive ul.megamenu>li.active .close-menu {
		right: 0;
		left: auto;
	}
}

header ul.top-link>li .btn-group .btn-link:hover,
header ul.top-link>li>a:hover {
	color: #c12026;
}

header ul.top-link img {
	vertical-align: -0.0625rem;
}

.common-home .typeheader-1 .container-megamenu.horizontal ul.megamenu>li:first-child>a i {
	-webkit-mask-image: url(../../images/icons/icon-home.svg);
	mask-image: url(../../images/icons/icon-home.svg);
	background-color: #c12026;
}

.typeheader-1 .container-megamenu.horizontal ul.megamenu>li:hover>a,
.typeheader-1 .container-megamenu.horizontal ul.megamenu>li.active>a,
.typeheader-1 .container-megamenu.horizontal ul.megamenu>li.menu_active>a,
.typeheader-1 .container-megamenu.horizontal ul.megamenu>li.current-page>a {
	color: #c12026;
}

.typeheader-1 .shopping_cart:hover .btn-shopping-cart .top_cart .shopcart-inner .text-shopping-cart {
	color: #c12026;
}

.typeheader-1 .signin-w ul li a:hover {
	color: #c12026;
}

.typeheader-1 .signin-w .signin-link li a.link-log:hover {
	color: #c12026;
}

.typeheader-1 .wishlist-comp li a.top-link-wishlist:hover:before,
.typeheader-1 .wishlist-comp li a:hover i {
	color: #c12026;
}

.typeheader-1 .telephone a:hover,
.typeheader-1 .header-middle-left ul li a:hover {
	color: #c12026;
}

.typeheader-1 .header-links ul li:hover i {
	color: #c12026;
}

.typeheader-1 .header-links ul li:hover i.fa-truck {
	background-color: #c12026;
}

.typeheader-1 .search-header-w #sosearchpro .search button:hover {
	color: #c12026;
}

.typeheader-1 .search-header-w .icon-search i {
	color: #c12026;
}

.typeheader-2 .welcome-msg span {
	color: #c12026;
}

.typeheader-2 .search-header-w .icon-search:hover {
	color: #c12026;
}

.typeheader-2 .shopping_cart .shoppingcart-box .checkout .btn-checkout,
.typeheader-2 .shopping_cart .shoppingcart-box .checkout .btn-view-cart:hover {
	background: #c12026;
}

@media (max-width: 61.9375rem) {

	.megamenu-style-dev .navbar-default .vertical .vertical-wrapper ul.megamenu>li>a:hover strong,
	.megamenu-style-dev .navbar-default .horizontal .megamenu-wrapper ul.megamenu>li>a:hover {
		color: #c12026 !important;
	}
}

footer #collapse-footer {
	display: block;
}

.footer-container {
	clear: both;
}

footer .so-page-builder .container {
	padding: 0 0.9375rem;
}

.typefooter-1 .socials li a:hover,
.typefooter-1 .footer-socials .socials li a:hover,
.typefooter-1 .footer-copyright a:hover {
	color: #c12026;
}

.typefooter-1 .footer-middle .footer-links li a:hover {
	color: #000;
}

.typefooter-2 .module .modcontent ul li a:hover {
	color: #c12026;
}

.common-home #content {
	margin-bottom: 2.0625rem;
}

.sohomepage-slider .so-homeslider {
	border: none;
	z-index: 0;
}

.container-fluid .container {
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

#main-content,
#content {
	margin-bottom: 3.75rem;
}

.layout-1 .backg-gradient {
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	font-size: 0.875rem;
	line-height: 1.0625rem;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0.875rem 0.9375rem;
	border-radius: 0.3125rem;
	margin-bottom: 0.75rem;
	display: inline-block;
}

.layout-1 .backg-gradient:hover {
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
}

.layout-1.common-home #content {
	margin-bottom: 0;
}

.layout-1.common-home #content .price .price-old {
	padding: 0 0.3125rem;
}

.layout-1.common-home #content .label-product-new,
.layout-1.common-home #content .label-product-sale {
	text-align: center;
	background-color: #c12026;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	height: 2.5rem;
	width: 2.5rem;
	line-height: 2.5rem;
	position: absolute;
	top: 1.25rem;
	text-transform: uppercase;
	z-index: 9;
	padding: 0;
	margin-bottom: 0.3125rem;
}

.layout-1.common-home #content .label-product-sale {
	background-color: #ff3c20;
	right: 1.25rem;
}

.layout-1.common-home #content .label-product-new {
	background-color: #53d542;
	left: 1.25rem;
}

.layout-1.common-home #content .module h3.modtitle {
	margin-bottom: 1.5625rem;
	text-align: center;
	font-size: 3.6rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
}

.layout-1.common-home #content .module h3.modtitle span {
	font-size: 3.6rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
}

.layout-1.common-home #content h3.modtitle {
	margin-bottom: 0.875rem;
	text-align: center;
	font-size: 3.6rem;
	color: #000;
	font-weight: 700;
	line-height: 2.8125rem;
	text-transform: capitalize;
}

.layout-1 #content .products-list .product-grid .product-item-container .left-block .button-group .btn-button.addToCart {
	display: none;
}

.layout-1 #content .products-list .product-list .product-item-container .left-block .button-group .btn-button.addToCart {
	display: none;
}

.module.sohomepage-slider {
	margin: 0;
	z-index: 0;
}

.module.sohomepage-slider .form-group {
	margin-bottom: 0;
}

.module.sohomepage-slider .so-homeslider {
	border: none;
}

.module.sohomepage-slider:hover .owl2-controls .owl2-nav>div {
	transform: scale(1);
	opacity: 1;
}

.module.sohomepage-slider .owl2-controls {
	height: 0;
	margin: 0 auto;
	position: relative;
}

@media (min-width: 75rem) {
	.module.sohomepage-slider .owl2-controls {
		max-width: 101.875rem;
	}
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next,
.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev {
	transform: scale(0);
	opacity: 0;
	transition: all 0.3s ease-in-out 0s;
	font-size: 0rem;
	text-indent: 0;
	z-index: 99;
	width: 5.8125rem;
	height: 5.25rem;
	line-height: 5.25rem;
	text-align: center;
	border-radius: 0rem;
	bottom: 2.5rem;
	margin: 0;
	display: block;
	background-color: #fff;
	box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.08);
	border: none;
	color: #000;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next:after,
.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:after {
	display: none;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next:before,
.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:before {
	font-size: 1.25rem;
	font-family: "FontAwesome";
	display: inline-block;
	text-indent: 0 !important;
	width: 1.9375rem;
	height: 0.875rem;
	margin-top: 2.1875rem;
	background: #000;
	opacity: 1;
	position: unset;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next:hover,
.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:hover {
	color: #c12026;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next:hover:before,
.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:hover:before {
	opacity: 1;
	background: #c12026;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next {
	right: 0.9375rem;
	left: auto;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next:before {
	content: "";
	-webkit-mask-image: url(../../images/icons/icon-arrow-r.svg);
	mask-image: url(../../images/icons/icon-arrow-r.svg);
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev {
	left: auto;
	right: 8.4375rem;
}

.module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:before {
	content: "";
	-webkit-mask-image: url(../../images/icons/icon-arrow-l.svg);
	mask-image: url(../../images/icons/icon-arrow-l.svg);
}

.module.sohomepage-slider .owl2-controls .owl2-dots {
	position: relative;
	bottom: 2.5rem;
	width: 100%;
	left: 0.9375rem;
	right: auto;
	z-index: 10;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot {
	background: transparent !important;
	padding: 0;
	transition: all 0.3s ease 0s;
	float: none;
	display: inline-block;
	color: #707070;
	font-weight: 400;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:after {
	content: "/";
	display: inline-block;
	color: #707070;
	margin: 0 0.625rem;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:last-child:after {
	display: none;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:before {
	content: "01";
	display: inline-block;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot span {
	display: none;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(2):before {
	content: "02";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(3):before {
	content: "03";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(4):before {
	content: "04";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(5):before {
	content: "05";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(6):before {
	content: "06";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(7):before {
	content: "07";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(8):before {
	content: "08";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(9):before {
	content: "09";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:nth-child(10):before {
	content: "10";
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:hover,
.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot.active {
	color: #000;
}

.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:hover span,
.module.sohomepage-slider .owl2-controls .owl2-dots .owl2-dot.active span {
	box-shadow: none;
	-webkit-box-shadow: none;
	color: #000;
}

.module.sohomepage-slider .sohomeslider-description {
	position: static;
	padding: 0;
}

.module.sohomepage-slider .sohomeslider-description .container {
	position: relative;
	padding: 0;
}

.module.sohomepage-slider .sohomeslider-description .des-warp {
	max-width: 45%;
	position: absolute;
	bottom: 12.5rem;
	left: 0.9375rem;
}

.module.sohomepage-slider .sohomeslider-description .title-slider {
	opacity: 0;
	font-size: 0.875rem;
	line-height: 1.0625rem;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0.875rem 0.9375rem;
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	border-radius: 0.3125rem;
	margin-bottom: 0.75rem;
	display: inline-block;
}

.module.sohomepage-slider .sohomeslider-description .title-slider2 {
	opacity: 0;
	font-size: 3.75rem;
	color: #000;
	font-weight: 700;
	line-height: 4.6875rem;
	text-transform: capitalize;
	margin: 0;
}

.module.sohomepage-slider .sohomeslider-description .des-slider {
	opacity: 0;
	font-size: 1rem;
	line-height: 1.4;
	color: #8d979e;
	font-weight: 400;
	padding-left: 1rem;
	border-left: 0.125rem solid #dcdcdc;
	margin-bottom: 1.375rem;
}

.module.sohomepage-slider .sohomeslider-description .slide-button {
	opacity: 0;
}

.module.sohomepage-slider .sohomeslider-description .button {
	display: inline-block;
	font-size: 1.125rem;
	line-height: 1.4375rem;
	color: #fff;
	font-weight: 500;
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	text-align: center;
	text-transform: capitalize;
	padding: 0.75rem 1.875rem;
	margin-right: 0.9375rem;
}

.module.sohomepage-slider .sohomeslider-description .button:hover {
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
}

.module.sohomepage-slider .sohomeslider-description .video-slider {
	display: inline-block;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 3.125rem;
	color: #727272;
}

.module.sohomepage-slider .sohomeslider-description .video-slider i {
	margin-right: 0.5625rem;
	vertical-align: top;
	font-size: 0;
	color: #c12026;
}

.module.sohomepage-slider .sohomeslider-description .video-slider i:before {
	vertical-align: middle;
	font-size: 1rem;
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	border-radius: 100%;
	text-align: center;
	display: inline-block;
	background: var(--white);
	box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.08);
}

.module.sohomepage-slider .sohomeslider-description .video-slider:hover {
	color: #c12026;
}

.module.sohomepage-slider .sohomeslider-description .video-slider:hover i:before {
	box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
}

.module.sohomepage-slider .owl2-item.active .sohomeslider-description .title-slider {
	opacity: 1;
	animation: myeffect-slideshow 2s ease-in-out;
	-webkit-animation: myeffect-slideshow 2s ease-in-out;

	-moz-animation: myeffect-slideshow 2s ease-in-out;
	-o-animation: myeffect-slideshow 2s ease-in-out;
	-ms-animation: myeffect-slideshow 2s ease-in-out;
}

.module.sohomepage-slider .owl2-item.active .sohomeslider-description .title-slider2 {
	opacity: 1;
	animation: myeffect-slideshow 1.5s ease-in-out;
	-webkit-animation: myeffect-slideshow 1.5s ease-in-out;

	-moz-animation: myeffect-slideshow 1.5s ease-in-out;
	-o-animation: myeffect-slideshow 1.5s ease-in-out;
	-ms-animation: myeffect-slideshow 1.5s ease-in-out;
}

.module.sohomepage-slider .owl2-item.active .sohomeslider-description .des-slider {
	opacity: 1;
	animation: myeffect-slideshow 1s ease-in-out;
	-webkit-animation: myeffect-slideshow 1s ease-in-out;

	-moz-animation: myeffect-slideshow 1s ease-in-out;
	-o-animation: myeffect-slideshow 1s ease-in-out;
}

.module.sohomepage-slider .owl2-item.active .sohomeslider-description .slide-button {
	opacity: 1;
	animation: myeffect-slideshow 0.8s ease-in-out;
	-webkit-animation: myeffect-slideshow 0.8s ease-in-out;

	-moz-animation: myeffect-slideshow 0.8s ease-in-out;
	-o-animation: myeffect-slideshow 0.8s ease-in-out;
}

.banner1 img {
	border-radius: 0.625rem;
}

.block-policy {
	padding: 0rem 0.9375rem;
	margin-top: 1.875rem;
	margin-bottom: 1.875rem;
}

.block-policy .item {
	padding: 0rem 0.9375rem;
	display: flex;
	flex-wrap: wrap;
}

.block-policy .item .icon {
	width: 5rem;
	height: 5rem;
	margin-right: 0.9375rem;
	margin-left: -0.5625rem;
	float: left;
}

.block-policy .item .icon img {
	transition: all 0.2s ease-in-out 0s;
}

.block-policy .item .info-cont {
	padding-top: 0.3125rem;
	width: calc(100% - 5.9375rem);
}

@media (min-width: 75rem) {
	.block-policy .item .info-cont {
		padding-right: 1.875rem;
	}
}

.block-policy .item .info-cont a {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4375rem;
	color: #000;
	margin-bottom: 0.4375rem;
}

.block-policy .item .info-cont a:hover {
	color: #c12026;
}

.block-policy .item .info-cont p {
	color: #000;
	line-height: 1.125rem;
	font-size: 0.875rem;
	margin-bottom: 0;
}

.block-policy .item:hover {
	cursor: pointer;
}

.block-policy .item:hover img {
	transform: translateY(-0.625rem);
	-webkit-transform: translateY(-0.625rem);
}

.block-policy .item:hover .info-cont a {
	color: #c12026;
}

.block-counters {
	margin-bottom: 6.25rem;
}

.block-counters h3.modtitle {
	text-align: left !important;
}

.block-counters>.row {
	align-items: center;
}

.block-counters .counters-text {
	max-width: 75%;
	margin-bottom: 3.75rem;
}

.block-counters .counters-text .b-content {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 400;
}

.block-counters .counters-num {
	display: flex;
	flex-wrap: wrap;
	padding: 1.875rem 3.75rem;
	margin-bottom: 0;
	margin-right: 1.875rem;
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	font-size: 0.875rem;
	line-height: 1.0625rem;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	border-radius: 0.3125rem;
}

.block-counters .counters-num .item {
	text-align: center;

	font-size: 3.125rem;
	font-size: 5rem;

	line-height: 3.9375rem;
	font-weight: 700;
	color: #fff;
	width: 33.33%;
	border-right: 0.0625rem solid #fff;
}

.block-counters .counters-num .item:last-child {
	border-right: none;
}

.block-counters .counters-num .item .js-counter {
	margin-bottom: 0.25rem;
}

.block-counters .counters-num .item p {

	font-size: 1.125rem;
	font-size: 1.8rem;

	line-height: 1.4375rem;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 0;
}

.block-counters .banners {
	margin-bottom: 1.875rem;
}

.block-counters .banners:last-child {
	margin-bottom: 0rem;
}

.block-counters .banners .banner {
	border-radius: 0.625rem;
}

.block-tesnimal {
	padding: 6.25rem 0;
	text-align: center;
}

@media (min-width: 75rem) and (max-width: 85.375rem) {
	.block-tesnimal {
		margin-left: 0.9375rem;
		margin-right: 0.9375rem;
	}
}

.block-tesnimal .modcontent {
	padding-top: 1.5rem;
	align-items: center;
	text-align: left;
	margin-left: -0.9375rem;
	margin-right: -0.9375rem;
}

.block-tesnimal .modcontent>div {
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

@media (min-width: 85.4375rem) {
	.block-tesnimal .modcontent {
		margin-left: -3.125rem;
		margin-right: -3.125rem;
	}

	.block-tesnimal .modcontent>div {
		padding-left: 3.125rem;
		padding-right: 3.125rem;
	}
}

.block-tesnimal .modcontent .item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4.0625rem;
	position: relative;
}

.block-tesnimal .modcontent .item.item-1:before {
	content: "";
	width: 7.3125rem;
	height: 5.625rem;
	border-radius: 0.3125rem;
	display: inline-block;
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
	opacity: 0.4;
	position: absolute;
	bottom: -6.25rem;
	left: 4.6875rem;
}

.block-tesnimal .modcontent .item.item-3:before {
	content: "";
	width: 7.3125rem;
	height: 5.625rem;
	border-radius: 0.3125rem;
	display: inline-block;
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
	opacity: 0.4;
	position: absolute;
	top: -6.25rem;
	left: 0rem;
}

.block-tesnimal .modcontent .item.item-3:after {
	content: "";
	width: 14.5rem;
	height: 14.5rem;
	display: inline-block;
	border-radius: 0 0 50% 50%;
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
	opacity: 0.4;
	position: absolute;
	bottom: -10rem;
	left: -7.25rem;
	background-size: 50% 50%;
	background-position:
		100% 100%,
		0% 100%,
		100% 0%,
		100% 100%;
	background-repeat: no-repeat;
	border-radius: 50%;
}

.block-tesnimal .modcontent .item.item-3 .item-box {
	position: relative;
}

.block-tesnimal .modcontent .item.item-3 .item-box:after {
	content: "";
	width: 1.9375rem;
	height: 3.875rem;
	border-radius: 3.875rem 0 0 3.875rem;
	display: inline-block;
	background: #d9d9d9;
	position: absolute;
	top: 50%;
	margin-top: -1.9375rem;
	left: -1.9375rem;
}

.block-tesnimal .modcontent .item .item-box {
	padding: 3.125rem;
	border-radius: 0.9375rem;
	background: #fff;
	transition: all 0.3s ease-in-out 0s;
}

.block-tesnimal .modcontent .item .item-box .info-thumb {
	float: left;
	width: 3.875rem;
	height: 3.875rem;
	border-radius: 100%;
	margin-right: 1.5625rem;
	overflow: hidden;
	transition: all 0.3s ease-in-out 0s;
}

.block-tesnimal .modcontent .item .item-box .info-thumb img {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
	transition: all 1.2s ease 0s;
}

.block-tesnimal .modcontent .item .item-box .info-content h3 {
	margin: 0.3125rem 0 0.125rem;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.75rem;
	color: #000;
}

.block-tesnimal .modcontent .item .item-box .info-content .rate i {
	color: #ffc12b;
	font-size: 0;
}

.block-tesnimal .modcontent .item .item-box .info-content .rate i:before {
	font-size: 1.125rem;
}

.block-tesnimal .modcontent .item .item-box .info-des {
	margin-top: 1.4375rem;
	font-size: 1rem;
	line-height: 1.25rem;
}

.block-tesnimal .modcontent .item .item-box:hover {
	box-shadow: 0 0 0.4375rem rgba(0, 0, 0, 0.05);
}

.block-tesnimal .modcontent .item .item-box:hover h3 {
	color: #c12026;
}

.block-tesnimal .modcontent .item .item-box:hover .info-thumb img {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.deals-id1 {
	position: relative;
}

.deals-id1 .so-deal {
	margin: 0;
	position: relative;
}

.deals-id1 .so-deal .extraslider-inner {
	border: none;
	padding-bottom: 0;
}

.deals-id1 {
	margin-top: 1.875rem;
	padding-bottom: 1.875rem;
}

.deals-id1 .head-title .modtitle {
	margin-top: 6.25rem;
	padding: 0.9375rem 1.875rem !important;
	font-size: 1.375rem !important;
	line-height: 1.75rem !important;
	margin-bottom: 1.875rem !important;
}

.deals-id1 .head-title .modtitle a {
	color: #fff;
}

.deals-id1 .head-title .modtitle a:hover {
	color: #000;
}

.deals-id1 .head-title .time-title {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 2.8125rem;
	color: #000;
	margin-bottom: 2.125rem;
}

.deals-id1 .head-title .time-title span {
	color: #c12026;
}

.deals-id1 .cslider-item-timer {
	background-color: transparent;
}

.deals-id1 .cslider-item-timer .time-item {
	background-color: transparent;
	line-height: 100%;
	float: left;
	text-align: center;
	width: auto;
	margin-right: 2.5rem;
	color: #000;
}

.deals-id1 .cslider-item-timer .time-item .num-time {
	border: none;
	font-size: 3.125rem;
	color: #000;
	font-weight: 700;
	position: relative;
	width: auto;
	line-height: 3.9375rem;
	text-align: center;
	background-color: transparent;
	border-radius: 0rem;
	display: block;
}

.deals-id1 .cslider-item-timer .time-item .num-time:after {
	position: absolute;
	content: ":";
	font-size: 1.125rem;
	top: 0;
	right: -0.5rem;
	display: none;
}

.deals-id1 .cslider-item-timer .time-item.time-sec .num-time:after {
	display: none;
}

.deals-id1 .cslider-item-timer .time-item .name-time {
	color: #c12026;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 0.5rem;
}

.deals-id1 .modcontent .modcontent-in {
	background: #fff;
	box-shadow: 0.5rem 0.625rem 3.3125rem #edf0f5;
}

.deals-id1 .modcontent .container {
	padding: 0 0.9375rem;
}

@media (max-width: 85.375rem) {
	.deals-id1 .modcontent .container {
		margin-top: 0;
		max-width: 100%;
	}
}

.deals-id1 .products-list .product-grid .product-item-container {
	margin-bottom: 0;
}

.deals-id1 .owl2-nav {
	margin: 0 !important;
	position: static;
}

.deals-id1 .owl2-nav .owl2-prev,
.deals-id1 .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 3.375rem;
	height: 3.375rem;
	border: none;
	line-height: 3.125rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 50%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1.125rem;
	margin: 0;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.deals-id1 .owl2-nav .owl2-prev,
	.deals-id1 .owl2-nav .owl2-next {
		line-height: 3.25rem;
	}
}

.deals-id1 .owl2-nav .owl2-prev:before,
.deals-id1 .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
	font-weight: 900;
}

.deals-id1 .owl2-nav .owl2-prev.owl2-next,
.deals-id1 .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

.deals-id1 .owl2-nav .owl2-prev.owl2-next:before,
.deals-id1 .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.deals-id1 .owl2-nav .owl2-prev.owl2-prev,
.deals-id1 .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

.deals-id1 .owl2-nav .owl2-prev.owl2-prev:before,
.deals-id1 .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.deals-id1 .owl2-nav .owl2-prev:hover:before,
.deals-id1 .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

.deals-id1 .owl2-nav .owl2-prev.owl2-prev {
	left: -1.875rem;
	right: auto;
}


@media (max-width: 47.9375rem) {
	.deals-id1 .owl2-nav .owl2-prev.owl2-prev {
		left: 0rem;
	}
}

.deals-id1 .owl2-nav .owl2-next.owl2-next {
	right: -1.875rem;
	left: auto;
}

@media (max-width: 47.9375rem) {
	.deals-id1 .owl2-nav .owl2-next.owl2-next {
		right: 0rem;
	}
}

.deals-id1 .owl2-controls .owl2-dots {
	bottom: 1.25rem;
	position: static;
	left: auto;
	right: auto;
	width: 100%;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 0rem;
	z-index: 10;
}

.deals-id1 .owl2-controls .owl2-dots .owl2-dot {
	background: #000 !important;
	margin: 0 0.3125rem;
	width: 1.875rem;
	height: 0.375rem;
	padding: 0;
	transition: all 0.3s ease 0s;
	border-radius: 0.1875rem;
	float: none;
	display: inline-block;
}

.deals-id1 .owl2-controls .owl2-dots .owl2-dot:hover,
.deals-id1 .owl2-controls .owl2-dots .owl2-dot.active {
	background: #c12026 !important;
}

.deals-id1 .owl2-controls .owl2-dots .owl2-dot:hover span,
.deals-id1 .owl2-controls .owl2-dots .owl2-dot.active span {
	box-shadow: none;
	-webkit-box-shadow: none;
	background: #c12026 !important;
}

.deals-id1 .so-deal .extraslider-inner .item .item-timer {
	background-color: transparent;
}

.deals-id1 .so-deal .extraslider-inner .item .item-timer .time-item {
	background-color: transparent;
	line-height: 100%;
	float: left;
	text-align: center;
	width: auto;
	margin-left: 0.625rem;
}

.deals-id1 .so-deal .extraslider-inner .item .item-timer .time-item .num-time {
	border: none;
	font-size: 0.875rem;
	color: #000;
	font-weight: 700;
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	text-align: center;
	background-color: #eee;
	border-radius: 100%;
}

.deals-id1 .so-deal .extraslider-inner .item .item-timer .time-item .name-time {
	color: #666;
	font-size: 0.625rem;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 0.1875rem;
}

.deals-id1 .so-deal .extraslider-inner .item .item-timer .time-item.time-sec .num-time:after {
	display: none;
}

.listingtab-layout1 {
	position: relative;
	margin-top: 1.875rem;
}

.listingtab-layout1 .so-listing-tabs {
	margin: 0 -0.9375rem;
	overflow: unset;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav {
	position: static;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next {
	background-color: #fff;
	box-shadow: 0rem 0.125rem 0.25rem rgba(0, 0, 0, 0.18);
	width: 3.375rem;
	height: 3.375rem;
	border: none;
	line-height: 3.125rem;
	text-align: center;
	float: left;
	position: absolute;
	top: 60%;
	text-indent: -624.9375rem;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1.125rem;
	margin-top: -1.6875rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev,
	.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next {
		line-height: 3.25rem;
	}
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev:before,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next:before {
	color: #000;
	font-family: "Font Awesome 6 Free";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
	font-weight: 900;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next.owl2-next {
	right: 0;
	left: auto;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev.owl2-prev,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next.owl2-prev {
	left: 0rem;
	right: auto;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev:hover:before,
.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c12026;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-prev {
	left: 0;
	right: auto;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav .owl2-next {
	right: 0;
	left: auto;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner .owl2-controls .owl2-nav>div {
	transform: scale(0);
	opacity: 0;
	transition: all 0.2s ease-in-out 0s;
	margin-top: 0.3125rem;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-inner:hover .owl2-controls .owl2-nav>div {
	transform: scale(1);
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-container .ltabs-items .ltabs-slider .ltabs-item {
	margin-bottom: 0;
}

.listingtab-layout1 .so-listing-tabs .products-list.grid .product-layout .product-item-container {
	margin-bottom: 1.875rem;
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap {
	overflow: unset;
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container {
	margin: 0;
}

@media (min-width: 47.9375rem) {
	.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs {
		text-align: center;
	}
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab {
	border: 0.0625rem solid #ebebeb;
	display: inline-block;
	line-height: 100%;
	border-radius: 0.3125rem;
	float: none;
	margin: 0 0.3125rem;
	padding: 0.6875rem 0.625rem;
	transition: all 0.2s ease-in-out 0s;
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab .ltabs-tab-label {
	color: #000;
	display: block;
	font-size: 0.875rem;
	line-height: 1.125rem;
	font-weight: 400;
	padding: 0;
	text-transform: capitalize;
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab .ltabs-tab-label:hover {
	color: #c12026;
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab:hover,
.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab.tab-sel {
	border: 0.0625rem solid #c12026;
	cursor: pointer;
}

.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab:hover .ltabs-tab-label,
.listingtab-layout1 .so-listing-tabs .ltabs-wrap .ltabs-tabs-container .ltabs-tabs-wrap ul.ltabs-tabs li.ltabs-tab.tab-sel .ltabs-tab-label {
	color: #c12026;
}

.listingtab-layout1 .so-listing-tabs .wap-listing-tabs {
	clear: both;
	margin-top: 1.875rem;
	margin-bottom: 1.875rem;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-container .ltabs-items .ltabs-items-inner {
	position: static;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-container .ltabs-items .ltabs-items-inner .ltabs-item .item-inner {
	margin: 0 0.9375rem 0rem 0.9375rem;
}

.listingtab-layout1 .so-listing-tabs .ltabs-items-container .ltabs-items .ltabs-items-inner .ltabs-item .item-inner:last-child .product-item-container {
	margin-bottom: 0;
}

.slider-brands {
	border: 0.0625rem solid #ebebeb;
	border-radius: 0.1875rem;
	padding: 1.875rem 0rem;
	margin-top: 1.5625rem;
	margin-bottom: 3.125rem;
}

.slider-brands .contentslider {
	padding: 0 1.25rem;
	position: relative;
}

.slider-brands .contentslider .owl2-stage-outer {
	direction: ltr;
}

.slider-brands .owl2-carousel .owl2-item {
	height: 0;
}

.slider-brands .owl2-carousel .owl2-item.active {
	height: auto;
}

.slider-brands .item {
	text-align: center;
	opacity: 0.4;
}

.slider-brands .item:hover {
	opacity: 1;
}

.slider-brands .owl2-controls .owl2-nav {
	top: 0;
	right: 0;
	position: static;
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev,
.slider-brands .owl2-controls .owl2-nav .owl2-next {
	background-color: transparent;
	border: 0.125rem solid #e9e9e9;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.375rem;
	text-align: center;
	float: left;
	text-indent: -624.9375rem;
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	z-index: 99;
	font-size: 1.25rem;
	font-weight: 400;
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev:before,
.slider-brands .owl2-controls .owl2-nav .owl2-next:before {
	color: #e9e9e9;
	font-family: "FontAwesome";
	display: block;
	text-indent: 0 !important;
	width: 100%;
	height: 100%;
	font-size: 1.25rem;
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev.owl2-next,
.slider-brands .owl2-controls .owl2-nav .owl2-next.owl2-next {
	margin-left: 0.3125rem;
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev.owl2-next:before,
.slider-brands .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
	content: "";
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before,
.slider-brands .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
	content: "";
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev:hover,
.slider-brands .owl2-controls .owl2-nav .owl2-next:hover {
	border-color: #c3c3c3;
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev:hover:before,
.slider-brands .owl2-controls .owl2-nav .owl2-next:hover:before {
	color: #c3c3c3;
}

.slider-brands .owl2-controls .owl2-nav .owl2-prev {
	left: -1.25rem;
	position: absolute;
	top: 50%;
	margin-top: -1.25rem;
	background-color: #fff;
}

.slider-brands .owl2-controls .owl2-nav .owl2-next {
	right: -1.25rem;
	position: absolute;
	top: 50%;
	margin-top: -1.25rem;
	background-color: #fff;
}

.newsletter-id1 {
	z-index: 1;
}

@media (min-width: 75rem) and (max-width: 85.375rem) {
	.newsletter-id1 {
		margin-left: 0.9375rem;
		margin-right: 0.9375rem;
	}
}

.newsletter-id1 .newsletter {
	border-radius: 0.9375rem;
	padding: 3.125rem 4.375rem 3.125rem;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.newsletter-id1 .newsletter .newsletter-in {
	text-align: left;
}

@media (min-width: 75rem) {
	.newsletter-id1 .newsletter .newsletter-in {
		max-width: 49%;
		display: inline-block;
	}
}

.newsletter-id1 .newsletter h3.modtitle {
	text-align: left !important;
}

@media (min-width: 75rem) {
	.newsletter-id1 .newsletter h3.modtitle {
		max-width: 64%;
	}
}

.newsletter-id1 .newsletter .title-block .promotext {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 400;
	margin-bottom: 0rem;
}

.newsletter-id1 .newsletter .form-group {
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 400;
	margin-bottom: 0;
}

.newsletter-id1 .newsletter .block_content {
	margin-top: 2.1875rem;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group {
	display: flex;
	margin: 0;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group .input-box {
	vertical-align: top;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group #txtemail {
	background-color: #fff;
	border-radius: 0.3125rem;
	height: 3.25rem;
	font-size: 1rem;
	line-height: 1.25rem;
	color: #727272;
	border: none;
	margin-right: 1.25rem;
	box-shadow: none;
	padding: 0 0 0 1.25rem;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group #txtemail::-moz-placeholder {
	color: #727272;
	opacity: 1;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group #txtemail:-ms-input-placeholder {
	color: #727272;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group #txtemail::-webkit-input-placeholder {
	color: #727272;
}

.newsletter-id1 .newsletter .block_content form.signup .form-group #txtemail:focus {
	z-index: 0;
}

.newsletter-id1 .newsletter .block_content form.signup .subcribe button {
	border: 0 none;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 1.75rem;
	text-transform: capitalize;
	margin-bottom: 0;
	background: linear-gradient(to right, #df4979 0%, #e36b31 100%);
	border-radius: 0.3125rem;
}

.newsletter-id1 .newsletter .block_content form.signup .subcribe button i {
	font-size: 1.125rem;
	margin-left: 0.5rem;
}

.newsletter-id1 .newsletter .block_content form.signup .subcribe button:hover {
	background: linear-gradient(to right, #df4979 37.36%, #e36b31 71.43%);
}

.newsletter-id1 .newsletter .block_content form.signup .subcribe button:focus {
	box-shadow: none;
}

.newsletter .block_content form.signup .form-group #txtemail {
	direction: unset;
}

@media (max-width: 576px) {
	.clearfix {
		display: flex;
		justify-content: start;
		flex-wrap: wrap;
		gap: 1.25rem;
		align-items: center;
	}

	.checkout-cart ul.breadcrumb {
		margin-bottom: 0.625rem;
	}

	#product-search .clearfix {
		display: block !important;
	}

	.checkout .btn {
		width: 100%;
	}

	.cart-badge,
	.wishlist-badge {
		font-size: 0.625rem !important;
		min-width: 0.938rem !important;
		width: 0.938rem !important;
		height: 0.938rem !important;
	}
}

@media (max-width: 1440px) {

	.header-middle-content,
	.header-bottom-content {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.header-bottom-content {
		gap: 6.25rem;
	}
}

@media (max-width: 1250px) {
	.nav-left .nav-link {
		padding-left: 0;
		padding-right: 0;
	}

	.nav-left {
		gap: 0.9375rem;
	}

	.header-bottom-content {
		gap: 2.5rem;
	}

	.nav-right {
		gap: 0.9375rem;
	}

	.nav-item-phone {
		padding-left: 0;
	}
}

@media (max-width: 1200px) {
	.best-seller-image-slider {
		height: 20.625rem;
	}

	.best-seller-image-slide {
		width: 100%;
		height: 100%;
	}

	.item-article .title-decimal {
		font-size: 1.625rem;
	}

	.service-features-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-title {
		font-size: 0.875rem;
	}

	.service-desc {
		font-size: 0.75rem;
	}

	.shop-products-wrap.dropdown-open .shop-products {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products {
		grid-template-columns: repeat(3, 1fr);
	}

	.best-sellers-section {
		margin: 0 0;
	}

	.best-deals-section {
		padding: 3.75rem 0;
	}

	.shop-cat {
		padding: 3.75rem 0;
	}

	.featured-products-section-2 {
		padding: 0 0 3.75rem 0;
	}

	.banner-promo {
		padding: 3.75rem 0;
	}

	.product-details-wrap {
		gap: 1.25rem;
	}

	.product-details-left {
		max-width: 40%;
	}

	.product-details-right {
		max-width: 60%;
	}

	.shop-products {
		grid-template-columns: repeat(3, 1fr);
	}

	.shop-products.grid-5 {
		grid-template-columns: repeat(3, 1fr);
	}

	.shop-products.grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	.lazy.lazy-loaded {
		background: none;
		height: auto;
	}

	.lazy img {
		transition: all 1s ease;
		opacity: 0;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		display: inline-block;
	}

	.lazy.lazy-loaded img {
		opacity: 1;
	}

	.wrapper-boxed {
		max-width: 78.75rem;
		margin: 0 auto;
		background: #fff;
		box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
	}

	.wrapper-full .container {
		width: 75rem;
	}

	.wrapper-full .products-list .product-grid-5 .product-card__gallery,
	.wrapper-full .products-list .product-grid-5 .countdown_box,
	.wrapper-full .products-list .product-grid-5 .order-num {
		display: none;
	}

	.wrapper-fluid header .container,
	.wrapper-fluid footer .container,
	.common-home .wrapper-fluid .container {
		max-width: 101.875rem;
		padding: 0;
		width: 93%;
	}

	.full_other_pages .wrapper-fluid .container {
		max-width: 101.875rem;
		padding: 0 0.9375rem;
		width: 100%;
	}

	.modal-lg {
		margin-top: 10%;
		width: 65.625rem;
	}

	#previewModal .cart-popup-info {
		padding-top: 1.875rem;
	}
}

@media (min-width: 1200px) and (min-width: 1200px) {
	.wrapper-full .products-list .product-grid-5:nth-child(5n + 1) {
		clear: both !important;
	}
}

@media (max-width: 1024px) {
	.shop-banner-part {
		margin: 4.875rem 0 0 0;
	}

	#information-contact {
		margin-top: 4.875rem !important;
	}

	#account-affiliate {
		margin-top: 4.875rem !important;
	}

	#product-compare {
		margin-top: 4.875rem !important;
	}

	#account-completeprofile {
		margin-top: 4.875rem !important;
	}

	#account-uploadcsv {
		margin-top: 4.875rem !important;
	}

	.product-details-wrap {
		gap: 1.875rem;
	}

	.container {
		padding: 0 1rem;
	}

	.header-middle-content {
		flex-wrap: nowrap;
	}

	.header-search {
		max-width: 25rem;
	}

	.category-dropdown-wrapper {
		position: static;
	}

	.category-dropdown {
		position: static;
		width: 100%;
		left: auto;
		transform: none;
		overflow-y: auto;
		overflow-x: hidden;
		scrollbar-width: thin;
		scrollbar-color: #0000000D #f2f4f5;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		padding: 0 1rem;
		margin-top: 0;
		box-shadow: none;
		border-radius: 0;
		transition: all 300ms ease-in-out;
	}

	.category-dropdown::-webkit-scrollbar {
		width: 0.375rem;
	}

	.category-dropdown::-webkit-scrollbar-track {
		background: #f2f4f5;
		border-radius: 0.1875rem;
	}

	.category-dropdown::-webkit-scrollbar-thumb {
		background: var(--secondary-one);
		border-radius: 0.1875rem;
	}

	.category-dropdown-wrapper:hover .category-dropdown,
	.category-dropdown-wrapper.active .category-dropdown {
		opacity: 1;
		visibility: visible;
		max-height: 25rem;
		padding: 1rem;
		padding-left: 0;
		margin-top: 0.5rem;
	}

	.category-dropdown-wrapper.active .category-dropdown {
		border-bottom: 0.0625rem solid #e4e7e9;
	}

	.category-dropdown-content {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		flex-direction: column;
		display: flex;
	}

	.category-nav {
		width: 100%;
	}

	.category-products-grid {
		display: none !important;
	}

	.category-mobile-children-wrap {
		list-style: none;
		margin: 0;
		padding: 0;
		background: #f8f9fa;
		border-radius: 0.25rem;
		/* margin-left: 0.75rem; */
		margin-bottom: 0.5rem;
		border-left: 0rem solid var(--secondary-one);
	}

	.category-mobile-children-list,
	.category-mobile-grandchildren-list {
		list-style: none;
		margin: 0;
		padding: 0.25rem 0;
	}

	.category-mobile-child a,
	.category-mobile-grandchild a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.625rem 0.75rem;
		font-size: 0.875rem;
		color: var(--category-nav-bg);
		text-decoration: none;
		transition:
			background 0.2s,
			color 0.2s;
		text-transform: capitalize;
	}

	.category-mobile-child a:hover,
	.category-mobile-grandchild a:hover {
		background: #eef0f2;
		color: var(--heading-color, #191c1f);
	}

	.category-mobile-child.has-children .nav-item-arrow {
		width: 1rem;
		height: 1rem;
		flex-shrink: 0;
		opacity: 0.7;
	}

	.category-mobile-grandchildren-wrap {
		list-style: none;
		margin: 0;
		padding: 0;
		background: #eef0f2;
		border-radius: 0.25rem;
		margin-left: 1.5rem;
		margin-bottom: 0.25rem;
		border-left: 0.125rem solid #c1c7cd;
	}

	.category-mobile-grandchild a {
		padding: 0.5rem 0.75rem;
		font-size: 0.8125rem;
	}

	.category-products-grid::-webkit-scrollbar {
		width: 0.375rem;
		height: 0.375rem;
	}

	.category-products-grid::-webkit-scrollbar-track {
		background: #f2f4f5;
		border-radius: 0.1875rem;
	}

	.category-products-grid::-webkit-scrollbar-thumb {
		background: var(--secondary-one);
		border-radius: 0.1875rem;
	}

	.category-product-item {
		min-width: 0;
		overflow: hidden;
		padding: 0.375rem;
		flex-shrink: 0;
	}

	.category-product-image {
		max-width: 5rem;
		height: 5rem;
		width: 100%;
	}

	.category-promo-card {
		grid-column: 1 / -1;
		grid-row: auto;
		width: 100%;
		max-width: 100%;
		height: 12.5rem;
	}

	.category-promo-image {
		height: 100%;
	}

	.nav-left {
		width: 100%;
		flex-direction: column;
		gap: 0;
		border-bottom: 0rem solid #e4e7e9;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}

	.nav-right {
		width: 100%;
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}

	.category-dropdown-wrapper {
		width: 100%;
	}

	.nav-left .nav-link {
		width: 100%;
		text-align: left;
		padding: 0.875rem 0;
		background-color: transparent;
		border-radius: 0;
		border-bottom: 0.0625rem solid #e4e7e9;
		font-size: 0.9375rem;
	}

	.nav-left .nav-link:hover {
		background-color: rgba(209, 59, 39, 0.05);
	}

	.nav-item {
		width: 100%;
		justify-content: flex-start;
		padding: 0.875rem 0;
		background-color: transparent;
		border-radius: 0;
		border-bottom: 0.0625rem solid #e4e7e9;
		font-size: 0.9375rem;
		gap: 0.75rem;
	}

	.nav-item:hover {
		background-color: rgba(209, 59, 39, 0.05);
	}

	.nav-item .icon-img {
		width: 1.375rem;
		height: 1.375rem;
	}



	.nav-item-phone {
		padding-left: 0;
		justify-content: flex-start;
		padding: 0.875rem 0;
		background-color: transparent;
		border-radius: 0;
		border-bottom: 0.0625rem solid #e4e7e9;
		font-size: 0.9375rem;
	}

	.nav-item-phone:hover {
		background-color: rgba(209, 59, 39, 0.05);
	}

	.header-bottom {
		position: fixed;
		top: 0;
		left: -100%;
		width: 85%;
		max-width: 21.875rem;
		height: 100vh;
		background-color: var(--white);
		z-index: 9999 !important;
		transition: left 300ms ease-in-out;
		overflow-y: auto;
		box-shadow: 0.125rem 0 0.625rem rgba(0, 0, 0, 0.1);
	}

	.header-bottom.active {
		left: 0;
	}

	.header-bottom-content {
		flex-direction: column;
		padding: 1.5rem 1.25rem;
		gap: 0;
		align-items: stretch;
	}

	.mobile-search-toggle {
		display: flex;
	}

	.desktop-search {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.header-middle-content {
		padding: 0.75rem 1.25rem;
		gap: 1rem;
	}

	.logo-img {
		width: 7.5rem;
		height: 3.25rem;
	}

	.header-icons {
		gap: 1rem;
	}

	.header-icon {
		width: 1.75rem;
		height: 1.75rem;
	}

	.header-icon .icon-img {
		width: 1.75rem;
		height: 1.75rem;
	}

	.header-bottom {
		position: fixed;
		top: 0;
		left: -100%;
		width: 85%;
		max-width: 21.875rem;
		height: 100vh;
		background-color: var(--white);
		z-index: 1000;
		transition: left 300ms ease-in-out;
		overflow-y: auto;
		box-shadow: 0.125rem 0 0.625rem rgba(0, 0, 0, 0.1);
	}

	.header-bottom.active {
		left: 0;
	}

	.header-bottom-content {
		flex-direction: column;
		padding: 1.5rem 1.25rem;
		gap: 0;
		align-items: stretch;
	}

	.nav-left {
		width: 100%;
		flex-direction: column;
		gap: 0;
		border-bottom: 0rem solid #e4e7e9;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}

	.nav-right {
		width: 100%;
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}

	.category-dropdown-wrapper {
		width: 100%;
	}

	.nav-left .nav-link {
		width: 100%;
		text-align: left;
		padding: 0.875rem 0;
		background-color: transparent;
		border-radius: 0;
		border-bottom: 0.0625rem solid #e4e7e9;
		font-size: 0.9375rem;
	}

	.nav-left .nav-link:hover {
		background-color: rgba(209, 59, 39, 0.05);
	}

	.nav-item {
		width: 100%;
		justify-content: flex-start;
		padding: 0.875rem 0;
		background-color: transparent;
		border-radius: 0;
		border-bottom: 0.0625rem solid #e4e7e9;
		font-size: 0.9375rem;
		gap: 0.75rem;
	}

	.nav-item:hover {
		background-color: rgba(209, 59, 39, 0.05);
	}

	.nav-item .icon-img {
		width: 1.375rem;
		height: 1.375rem;
	}

	.nav-item-phone {
		padding-left: 0;
		justify-content: flex-start;
		padding: 0.875rem 0;
		background-color: transparent;
		border-radius: 0;
	}

	.phone-icon {
		width: 2rem;
		height: 2rem;
	}

	.phone-icon .icon-img {
		width: 2rem;
		height: 2rem;
	}

	.features-bar-content {
		flex-wrap: wrap;
		padding: 0 1.25rem;
	}

	.feature-text {
		font-size: 0.75rem;
		white-space: normal;
	}

	.footer-columns {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.footer-col-wide {
		grid-column: span 3;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.newsletter-input {
		max-width: 23.4375rem;
		width: 100%;
	}

	.category-btn {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0.875rem 0rem;
		background-color: transparent;
		border-bottom: 0.0625rem solid #e4e7e9;
		font-size: 0.9375rem;
		color: var(--heading-color);
		transition: all 300ms ease-in-out;
	}

	.category-btn .category-arrow {
		width: 1rem;
		height: 1rem;
		filter: brightness(0);
		transform: rotate(0deg);
		transition:
			transform 300ms ease-in-out,
			filter 300ms ease-in-out;
	}

	.category-btn:hover,
	.category-dropdown-wrapper:hover .category-btn {
		background-color: transparent !important;
		color: var(--heading-color) !important;
	}

	.category-dropdown-wrapper:hover .category-btn .category-arrow {
		filter: brightness(0) !important;
		transform: rotate(0deg) !important;
	}

	.category-dropdown-wrapper.active .category-btn {
		background-color: var(--secondary-one) !important;
		color: var(--white) !important;
		padding: 0.875rem 0.625rem !important;
	}

	.category-dropdown-wrapper.active .category-btn .category-arrow {
		filter: brightness(0) invert(1) !important;
		transform: rotate(180deg) !important;
	}
}

@media (max-width: 992px) {
	.shop-products {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products.grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-product-content-top h3 {
		font-size: 1.25rem;
	}

	.shop-product-ammount p {
		font-size: 1.25rem;
	}

	.shop-product-ammount del {
		font-size: 1rem;
	}

	.related-products-title {
		font-size: 2.25rem;
	}

	.related-products-section {
		padding-top: 55px;
		padding-bottom: 55px;
	}

	.product-showcase-section {
		margin: 0;
	}

	.background-image-content {
		padding: 1.875rem;
	}

	.page-breadcrumb {
		margin-bottom: 1.875rem;
	}

	.shop-banner h1 {
		font-size: 1.875rem;
		line-height: 1.875rem;
	}

	.shop-banner {
		padding: 0 3.75rem;
	}

	.shop-products {
		margin-top: 0;
	}

	.shop-products-wrap.dropdown-open {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 2.5rem;
		align-items: center;
	}

	.shop-products-wrap.dropdown-open .shop-products-head {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: flex-start;
	}

	.shop-products-wrap.dropdown-open .shop-category-products-head {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: flex-start;
	}

	.shop-products-wrap.dropdown-open .shop-ct {
		grid-column: auto;
		grid-row: auto;
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-fillter {
		grid-column: auto;
		grid-row: auto;
		margin-bottom: 0;
		position: static;
	}

	.shop-products-wrap.dropdown-open .shop-products {
		grid-column: auto;
		grid-row: auto;
	}

	.shop-products-wrap.dropdown-open .shop-products {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		margin-top: 0;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-5 {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		margin-top: 0;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		margin-top: 0;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		margin-top: 0;
	}

	.shop-products {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products.grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-products.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-product-content-top h3 {
		font-size: 1.25rem;
	}

	.shop-product-ammount p {
		font-size: 1.25rem;
	}

	.shop-product-ammount del {
		font-size: 1rem;
	}

	.description-title {
		padding: 1.5625rem;
	}

	.description-content-wrap {
		padding: 1.875rem;
	}

	.product-title {
		font-size: 1.75rem;
		max-width: 25rem;
	}

	.example-content-main {
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.example-content-secondary {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.product-details-left {
		max-width: 100%;
	}

	.product-details-right {
		max-width: 100%;
	}

	.product-details-wrap {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 1.25rem;
	}

	.mobile-menu-toggle {
		width: 1.25rem;
		height: 0.9375rem;
	}

	.top-header-content {
		padding: 0.625rem 1rem;
	}

	.warning-text {
		font-size: 0.8125rem;
		line-height: 1.3em;
	}

	.header-middle-content {
		padding: 0.625rem 1.25rem;
		gap: 0.75rem;
		flex-wrap: wrap;
	}

	.header-logo {
		flex-shrink: 0;
	}

	.logo-img {
		width: 6.25rem;
		height: 2.6875rem;
		object-fit: contain;
	}

	.header-icons {
		gap: 0.75rem;
		flex-shrink: 0;
		display: flex;
		align-items: center;
	}

	.header-icon {
		width: 1.5rem;
		height: 1.5rem;
		flex-shrink: 0;
	}

	.header-icon .icon-img {
		width: 1.5rem;
		height: 1.5rem;
	}

	.mobile-search-toggle {
		display: flex;
		width: 1.5rem;
		height: 1.5rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.cart-badge {
		font-size: 0.625rem;
		min-width: 1rem;
		height: 1rem;
		padding: 0.0625rem 0.25rem;
	}

	.header-bottom {
		max-width: 20rem;
	}

	.header-bottom-content {
		padding: 1.25rem 1rem;
	}

	.features-bar-content {
		gap: 1.25rem;
		padding: 0 1rem;
	}

	.features-bar .feature-item {
		flex: 1 1 40%;
	}

	.features-bar .feature-item {
		width: 100%;
		justify-content: flex-start;
	}

	.feature-text {
		text-align: flex-start;
		white-space: normal;
	}

	.footer-main {
		padding: 2rem 0;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-col-wide {
		grid-column: span 1;
	}

	.footer-extra-row {
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
		margin-top: 1.5rem;
		padding-top: 1.25rem;
	}

	.footer-selectors {
		width: 100%;
		gap: 0.75rem;
	}

	.selector-item {
		flex: 1;
		min-width: 7.5rem;
	}

	.payment-methods {
		justify-content: center;
		flex-wrap: wrap;
	}

	.footer-bottom {
		padding: 1.25rem 0;
	}

	.social-media {
		justify-content: center;
	}

	.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
		transform: rotate(45deg) translateY(0.5625rem);
	}

	.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
		transform: rotate(-45deg) translateY(-0.5625rem);
	}

	#shopping-cart .input-group button {
		width: 100%;
		border-radius: 0;
	}

	.bd-clipboard {
		display: block;
	}

	.shop-cat {
		padding: 3.75rem 0;
	}

	.shop-box-title {
		font-size: 1.25rem;
	}

	.shop-now {
		font-size: 1.125rem;
	}

	.shop-box-content {
		padding: 1.5rem 1.25rem 1.5rem 1.25rem;
	}

	.shop-cat-top .shop-cat-title {
		font-size: 1.563rem;
	}

	.shop-cat-wrap {
		gap: 1.5625rem;
	}

	.shop-cat-nav a {
		height: 2.5rem;
		width: 2.5rem;
	}

	.shop-cat-slide-box {
		margin: 0 0.625rem;
	}

	.shop-product {
		padding-bottom: 3.75rem;
	}

	.shop-banner-part {
		margin: 3.9375rem 0 0 0;
		padding: 1.625rem 0 3.75rem 0;
	}

	#information-contact {
		margin-top: 3.9375rem !important;
		padding-top: 1.625rem !important;
	}

	#account-affiliate,
	#affiliate-register {
		margin-top: 3.9375rem !important;
		padding-top: 1.625rem !important;
	}

	#product-compare {
		margin-top: 3.9375rem !important;
		padding-top: 1.625rem !important;
	}

	#account-completeprofile {
		margin-top: 3.9375rem !important;
		padding-top: 1.625rem !important;
	}

	#account-uploadcsv {
		margin-top: 3.9375rem !important;
		padding-top: 1.625rem !important;
	}

	.shop-ct-title h3 {
		font-size: 1.25rem;
	}

	.shot-dropdown-list li a {
		font-size: 1.125rem;
	}

	.shot-dropdown-list {
		gap: 0.5rem;
	}

	.shop-banner {
		min-height: 18.75rem;
		border-radius: 0.625rem;
		padding: 0 1.25rem;
		justify-content: center;
	}

	.shop-banner h1 {
		text-align: center;
	}

	.shop-products {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-5 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.shop-products-wrap.dropdown-open .shop-products {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-5 {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.product-details {
		padding: 0 0 2.5rem 0;
	}

	.product-details-wrap {
		flex-direction: column;
		gap: 1.875rem;
	}

	.product-details-right {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.table-wrapper {
		overflow-x: auto;
		overflow-y: auto;
		max-height: 50rem;
		-webkit-overflow-scrolling: touch;
	}

	.order-table {
		min-width: 37.5rem;
	}

	.description-title {
		padding: 1.25rem;
	}

	.description-content-wrap {
		padding: 1.25rem;
	}

	.product-description-title {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

	.product-overview {
		font-size: 1rem;
		margin-bottom: 1.25rem;
		min-width: 100%;
		max-width: 100%;
	}

	.feature-section-title {
		font-size: 1.25rem;
	}

	.feature-list li {
		font-size: 1rem;
	}

	.description-features {
		margin-bottom: 1.25rem;
	}

	.spec-header-label,
	.spec-value {
		font-size: 1.125rem;
	}

	.spec-title {
		font-size: 1rem;
	}

	.spec-value {
		font-size: 1rem;
	}

	span.description-accordion-title {
		font-size: 1.25rem !important;
	}

	.review-accordion-title {
		font-size: 1.25rem !important;
	}

	.description-accordion-header {
		padding: 1rem 1.25rem !important;
	}

	.review-accordion-icon .icon-plus svg,
	.description-accordion-icon .icon-plus svg {
		width: 0.9375rem;
	}

	.review-accordion-icon .icon-minus svg,
	.description-accordion-icon .icon-minus svg {
		width: 0.9375rem;
	}

	.product-overview strong span {
		font-size: 1.25rem !important;
	}

	.product-overview strong {
		font-size: 1rem !important;
	}

	.related-products-title {
		font-size: 1.875rem !important;
	}

	.shop-product-content-top h3 {
		font-size: 1.125rem !important;
	}

	.shop-product-ammount p {
		font-size: 1.125rem !important;
	}

	.shop-product-content {
		gap: 0.625rem !important;
	}

	.description-section {
		padding: 0 0 1.25rem 0;
	}

	.review-section {
		padding: 0 0 3.75rem 0;
	}

	.review-accordion-header {
		padding: 1rem 1.25rem;
	}

	.review-list {
		padding: 0 1.25rem 1.25rem 1.25rem;
	}

	.review-item {
		padding: 1rem 0;
	}

	.review-header-info {
		flex-direction: column;
		gap: 0.75rem;
		align-items: flex-start;
	}

	.review-author-date {
		gap: 0.625rem;
	}

	.review-author,
	.review-date,
	.review-text {
		font-size: 1rem;
	}
}

@media (min-width: 576px) {
	.highlight {
		padding: 1.5rem;
		margin-right: 0;
		margin-left: 0;
	}

	.bd-example .fixed-top,
	.bd-example .sticky-top {
		margin: -1.5rem -1.5rem 1rem;
	}

	.bd-example .fixed-bottom {
		margin: 1rem -1.5rem -1.5rem;
	}

	.bd-example .pos-f-t {
		margin: -1.5rem;
	}

	.bd-example {
		padding: 1.5rem;
		margin-right: 0;
		margin-bottom: 0;
		margin-left: 0;
		border-width: 0.3rem;
	}

	.example-content-secondary {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.example-content-main {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 480px) {
	.product-title {
		font-size: 1.125rem;
	}

	.write-review-btn {
		margin-left: 0;
	}

	.options-list {
		grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
		gap: 0.625rem;
	}

	.option-checkbox,
	.option-radio {
		padding: 0.5rem 0.625rem;
		font-size: 1rem;
	}

	.option-label {
		font-size: 1rem;
	}

	.order-table-row {
		padding: 0.625rem;
	}

	.main-nav-prev,
	.main-nav-next {
		height: 1.5rem;
		width: 1.5rem;
		min-width: 1.5rem;
		min-height: 1.5rem;
		display: flex !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	.main-nav-prev svg,
	.main-nav-next svg {
		width: 0.5rem;
		height: 0.625rem;
	}



	.category-dropdown {
		display: none;
		width: 100%;
		padding: 0.75rem;
		max-height: 60vh;
		overflow-y: auto;
		overflow-x: hidden;
		scrollbar-width: thin;
		scrollbar-color: #0000000D #f2f4f5;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 300ms ease-in-out,
			visibility 300ms ease-in-out,
			max-height 300ms ease-in-out;
	}

	.category-dropdown-wrapper.active .category-dropdown {
		display: block;
		opacity: 1;
		visibility: visible;
	}

	.category-dropdown::-webkit-scrollbar {
		width: 0.375rem;
	}

	.category-dropdown::-webkit-scrollbar-track {
		background: #f2f4f5;
		border-radius: 0.1875rem;
	}

	.category-dropdown::-webkit-scrollbar-thumb {
		background: var(--secondary-one);
		border-radius: 0.1875rem;
	}

	.category-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: thin;
		scrollbar-color: var(--secondary-one) #f2f4f5;
	}

	.category-products-grid::-webkit-scrollbar {
		height: 0.375rem;
	}

	.category-products-grid::-webkit-scrollbar-track {
		background: #f2f4f5;
		border-radius: 0.1875rem;
	}

	.category-products-grid::-webkit-scrollbar-thumb {
		background: var(--secondary-one);
		border-radius: 0.1875rem;
	}

	.category-product-item {
		min-width: 4.375rem;
		overflow: hidden;
		padding: 0.25rem;
		flex-shrink: 0;
	}

	.category-product-image {
		max-width: 3.75rem;
		height: 3.75rem;
		padding: 0.5rem;
		width: 100%;
	}

	.category-product-name {
		font-size: 0.625rem;
	}

	.category-promo-card {
		height: 9.375rem;
	}

	.top-header-content {
		padding: 0.625rem 0.75rem;
	}

	.warning-text {
		font-size: 0.75rem;
	}

	.header-middle-content {
		padding: 0.625rem 1.25rem;
		gap: 0.5rem;
		flex-wrap: wrap;
	}

	.header-logo {
		order: 1;
		flex: 1;
		min-width: 5.625rem;
	}

	.logo-img {
		width: 5.625rem;
		height: 2.4375rem;
		object-fit: contain;
	}

	.header-icons {
		gap: 0.5rem;
		order: 2;
		flex-shrink: 0;
	}

	.mobile-search-toggle {
		width: 1.5rem;
		height: 1.5rem;
		display: flex;
	}

	.mobile-search-toggle .icon-img {
		width: 1.125rem;
		height: 1.125rem;
	}

	.mobile-menu-toggle {
		display: flex;
		width: 1.25rem;
		height: 0.9375rem;
	}

	.header-icon {
		width: 1.375rem;
		height: 1.375rem;
		flex-shrink: 0;
	}

	.header-icon .icon-img {
		width: 1.375rem;
		height: 1.375rem;
	}

	.cart-badge {
		font-size: 0.5625rem;
		min-width: 0.875rem;
		height: 0.875rem;
		padding: 0.0625rem 0.1875rem;
	}

	/*
.header-bottom {
width: 100%;
max-width: 100%;
} */

	.header-bottom-content {
		padding: 1.25rem 1rem;
	}

	.nav-left .nav-link,
	.nav-item,
	.nav-item-phone {
		padding: 0.75rem 0;
		font-size: 0.875rem;
	}

	.phone-label {
		font-size: 0.75rem;
	}

	.phone-number {
		font-size: 0.9375rem;
	}

	.footer-main {
		padding: 1.5rem 0;
	}

	.footer-heading {
		font-size: 1.125rem;
	}

	.footer-links a {
		font-size: 0.875rem;
	}

	.newsletter-title {
		font-size: 1rem;
	}

	.social-btn {
		width: 2rem;
		height: 2rem;
	}

	.social-btn i {
		font-size: 0.75rem;
	}

	.footer-extra-row {
		gap: 1rem;
		margin-top: 1.25rem;
		padding-top: 1rem;
	}

	.footer-selectors {
		width: 100%;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.selector-item {
		padding: 0.5rem 0.75rem;
		flex: 1;
		min-width: 6.25rem;
	}

	.payment-methods {
		gap: 0.75rem;
	}

	.payment-img {
		max-width: 2.1875rem;
	}

	.footer-bottom {
		padding: 1rem 0;
	}

	.hero-title {
		font-size: 1.625rem;
	}

	.btn {
		padding: 0.625rem 1rem;
		font-size: 0.75rem;
	}

	.shop-cat-top .shop-cat-title {
		font-size: 1.563rem;
	}

	.featured-products-title,
	.featured-products-title-2,
	.shop-cat-top .shop-cat-title,
	.deals-title {
		font-size: 1.563rem;
	}
}

.quickview-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 25rem;
	position: relative;
}

.quickview-loading .loader-spinner {
	width: 3.125rem;
	height: 3.125rem;
	border: 0.25rem solid rgba(189, 0, 40, 0.2);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: quickview-loader-spin 0.8s linear infinite;
	margin-bottom: 1.25rem;
}

.quickview-loading .loader-text {
	font-family: "Public Sans", sans-serif;
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

@keyframes quickview-loader-spin {
	0% {
		transform: rotate(0deg);
	}

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

.quickview-inner {
	display: flex;
	gap: 2rem;
	padding: 2rem 2.5rem;
	box-sizing: border-box;
	width: 100%;
	align-items: start;
}

.quickview-image {
	flex: 0 0 46%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quickview-image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 1rem;
	object-fit: cover;
}

.quickview-details {
	flex: 1;
	overflow-y: auto;
	padding: 1.25rem 0;
	height: auto;
}

.quickview-title {
	font-family: "Public Sans", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1rem 0;
	color: #1f1f1f;
	max-width: 100%;
	width: 100%;
}

.quickview-description {
	font-family: "Public Sans", sans-serif;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #555;
	margin: 0 0 1.25rem 0;
}

.quickview-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-family: "Public Sans", sans-serif;
	font-size: 0.875rem;
	color: #333;
}

.quickview-categories a {
	color: #2d7a2d;
	text-decoration: none;
}

.quickview-categories a:hover {
	text-decoration: underline;
}

.quickview-price {
	margin: 0.5rem 0 1.125rem;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-family: "Public Sans", sans-serif;
}

.quickview-price-original {
	font-size: 1rem;
	color: #8d8d8d;
	text-decoration: line-through;
}

.quickview-price-special {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-one);
}

.quickview-actions {
	margin-top: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.quickview-details .view-product-btn {
	width: max-content;
}

.quickview-actions .wishlist-btn,
.quickview-actions .add-to-cart-btn {
	flex-shrink: 0;
}

.compare-alert-inline {
	margin-top: 0.75rem;
	margin-bottom: 0;
}

@media (min-width: 47.9375rem) and (max-width: 61.9375rem) {
	.quickview-details {
		padding-right: 0.5rem;
		height: 100%;
	}
}

@media (max-width: 48rem) {
	.quickview-modal {
		width: 95%;
		height: 90vh;
		padding: 0;
	}

	.quickview-content {
		padding: 28px !important;
	}

	.quickview-inner {
		flex-direction: column;
		padding: 1.25rem;
	}

	.quickview-title {
		font-size: 1.5625rem;
	}

	.quickview-image {
		flex: 0 0 auto;
	}

	.quickview-details .available-options .section-title {
		font-size: 1.25rem;
		margin-bottom: 0.625rem;
	}

	.quickview-details .view-product-btn {
		font-size: 1rem;
	}

	.quickview-content {
		overflow-y: auto;
		padding: 1.25rem;
	}

	.quickview-details {
		overflow-y: visible;
	}
}

::-webkit-scrollbar {
	width: 0.0625rem !important;
}

::-webkit-scrollbar-track {
	background: transparent !important;
}

::-webkit-scrollbar-thumb {
	background-color: transparent !important;
	border-radius: 0.625rem !important;
}

#product-form .alert {
	margin-top: 0.625rem;
}

#product-form .alert i {
	top: 1.875rem;
}

@media (max-width: 48rem) {
	.product-details-left {
		max-width: 100%;
	}

	.newsletter-btn {
		padding: 0.75rem 0.625rem;
	}

	.page-breadcrumb .breadcrumb {
		margin-bottom: 0;
	}

	.quickview-image-section {
		max-width: 100%;
		width: 100%;
	}

	.btn-add-cart {
		font-size: 1.125rem;
		padding: 0.9375rem 1.5625rem;
	}

	.btn-add-cart svg {
		width: 1.25rem;
	}

	.your-order {
		margin-bottom: 1.875rem;
	}

	.action-buttons {
		justify-content: space-between;
	}

	.related-products-section {
		padding-top: 55px;
		padding-bottom: 55px;
	}
}

@media (max-width: 36rem) {
	.shop-pagination ul.pagination li {
		width: 2.5rem !important;
		height: 2.5rem !important;
		margin: 0;
	}

	.order-table-header th {
		font-size: 1.125rem !important;
	}

	.shop-banner {
		min-height: 11.5625rem;
	}

	.btn-add-cart {
		font-size: 1rem;
		height: max-content;
		border-radius: 0.3125rem;
	}

	.shop-products-wrap.dropdown-open .shop-products {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-5 {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-4 {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-3 {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}

	.shop-products-wrap.dropdown-open .shop-products.grid-2 {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}

	.shop-pagination ul.pagination li {
		width: 1.875rem;
		height: 1.875rem;

		margin: 0;
	}

	.shop-pagination ul.pagination li a {
		font-size: 0.875rem;
	}

	.shop-products {
		grid-template-columns: repeat(1, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-5 {
		grid-template-columns: repeat(1, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-4 {
		grid-template-columns: repeat(1, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-3 {
		grid-template-columns: repeat(1, 1fr);
		gap: 1.25rem;
	}

	.shop-products.grid-2 {
		grid-template-columns: repeat(1, 1fr);
		gap: 1.25rem;
	}

	.quickview-image-section .main-nav-prev,
	.quickview-image-section .main-nav-next {
		width: 2.5rem;
		height: 2.5rem;
	}

	.quickview-content {
		padding: 1.25rem !important;
	}

	a.btn.btn-view-cart.inverse {
		font-size: 1.125rem !important;
	}

	a.btn.btn-checkout.pull-right {
		font-size: 1.125rem !important;
	}
}

.quickview-image-section {
	max-width: 50%;
	width: 100%;
	height: 100%;
}

@media (min-width: 20rem) and (max-width: 47.9375rem) {

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		margin-top: 0;
		opacity: 1;
		filter: alpha(opacity=100);
		visibility: visible;
		display: contents !important;
	}
}

@media (min-width: 20rem) and (max-width: 47.9375rem) {

	header .btn-shopping-cart.open>.dropdown-menu,
	header .btn-shopping-cart .dropdown-menu.show {
		display: flex !important;
	}
}

@media (max-width: 36rem) {
	.background-image-content {
		padding: 1.875rem 1.25rem;
	}

	.background-btn {
		padding: 0.625rem 0.9375rem;
	}
}

.product-box {
	margin-bottom: 0;
}

@media (max-width: 62rem) {
	.product-showcase-section {
		margin: 3.125rem 0 3.125rem 0;
	}
}

.eaav-item-additionalInfo.jsx-4124003552 {
	margin: 3.25rem auto 0 !important;
}

.login-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(0.25rem);
	-webkit-backdrop-filter: blur(0.25rem);
}

.login-modal {
	background: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.3);
	max-width: 28.125rem;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(-1.25rem);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.login-modal-close {
	position: absolute;
	top: 0.9375rem;
	right: 0.9375rem;
	background: transparent;
	border: none;
	font-size: 1.75rem;
	color: #666;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 1.875rem;
	height: 1.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
	z-index: 1;
}

.login-modal-close:hover {
	color: #d13b27;
}

.login-modal-content {
	padding: 2.5rem 1.875rem 1.875rem;
}

.login-modal-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0 0 1.5625rem;
	color: #191c1f;
	text-align: center;
}

.login-modal-message {
	padding: 0.75rem 0.9375rem;
	margin-bottom: 1.25rem;
	border-radius: 0.25rem;
	font-size: 0.875rem;
}

.login-modal-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 0.0625rem solid #f5c6cb;
}

.login-modal-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 0.0625rem solid #c3e6cb;
}

.login-modal .form-group {
	margin-bottom: 1.25rem;
}

.login-modal .form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #191c1f;
	font-size: 0.875rem;
}

.login-modal .form-control {
	width: 100%;
	padding: 0.75rem 0.9375rem;
	border: 0.0625rem solid #ddd;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.login-modal .form-control:focus {
	outline: none;
	border-color: #d13b27;
	box-shadow: 0 0 0 0.125rem rgba(209, 59, 39, 0.1);
}

.login-modal .form-control.error {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.0625rem rgba(220, 53, 69, 0.25);
}

.login-modal .form-control.error:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.125rem rgba(220, 53, 69, 0.2);
}

.login-modal input:-webkit-autofill,
.login-modal input:-webkit-autofill:hover,
.login-modal input:-webkit-autofill:focus,
.login-modal textarea:-webkit-autofill,
.login-modal textarea:-webkit-autofill:hover,
.login-modal textarea:-webkit-autofill:focus,
.login-modal select:-webkit-autofill,
.login-modal select:-webkit-autofill:hover,
.login-modal select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--black) !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

[data-theme="dark"] .login-modal input:-webkit-autofill,
[data-theme="dark"] .login-modal input:-webkit-autofill:hover,
[data-theme="dark"] .login-modal input:-webkit-autofill:focus,
[data-theme="dark"] .login-modal textarea:-webkit-autofill,
[data-theme="dark"] .login-modal textarea:-webkit-autofill:hover,
[data-theme="dark"] .login-modal textarea:-webkit-autofill:focus,
[data-theme="dark"] .login-modal select:-webkit-autofill,
[data-theme="dark"] .login-modal select:-webkit-autofill:hover,
[data-theme="dark"] .login-modal select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--black) !important;
    -webkit-box-shadow: 0 0 0 30px #141417 inset !important;
}

.login-modal .btn {
	padding: 5px 20px;
    font-size: 16px !important;
    line-height: inherit;
    min-width: 100px;
}

.login-field-error {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: 0.375rem;
	font-size: 0.8125rem;
	color: #dc3545;
}

.login-field-error::before {
	content: "!";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	min-width: 1rem;
	background-color: #dc3545;
	color: #fff;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 700;
}

.forgot-password-link {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	color: #d13b27;
	text-decoration: none;
	transition: color 0.3s ease;
}

.forgot-password-link:hover {
	color: #b02e1f;
	text-decoration: underline;
}

.login-submit-btn {
	width: 100%;
	padding: 0.75rem 1.25rem;
	background-color: #d13b27;
	color: #fff;
	border: none;
	border-radius: 0.25rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: 0.625rem;
}

.login-submit-btn:hover {
	background-color: #b02e1f;
}

.login-submit-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.login-modal-footer {
	margin-top: 1.5625rem;
	padding-top: 1.25rem;
	border-top: 0.0625rem solid #eee;
}

.login-modal-footer p {
	margin: 0;
	font-size: 0.875rem;
	color: #666;
}

.login-modal-footer a {
	color: #d13b27;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.login-modal-footer a:hover {
	color: #b02e1f;
	text-decoration: underline;
}

.login-to-view-price,
.loginviewprice {
	cursor: pointer;
	transition: opacity 0.3s ease;
	position: relative;
	z-index: 2;
	pointer-events: auto;
}

.deal-price .login-to-view-price,
.product-box-price .login-to-view-price,
.featured-prices .login-to-view-price,
.best-seller-price .login-to-view-price {
	display: inline-block;
	cursor: pointer;
}

.login-to-view-price:hover,
.loginviewprice:hover {
	opacity: 0.8;
}

@media (max-width: 48rem) {
	.login-modal {
		width: 95%;
		max-width: none;
		margin: 1.25rem;
	}

	.login-modal-content {
		padding: 1.875rem 1.25rem 1.25rem;
	}

	.login-modal-title {
		font-size: 1.25rem;
		margin-bottom: 1.25rem;
	}
}

#account-wishlist .breadcrumb {
	margin-bottom: 1.25rem !important;
	padding: 0;
	list-style: none;
}

#account-wishlist .breadcrumb li {
	display: inline-block;
}

#account-wishlist .breadcrumb li a {
	color: #717171 !important;
	text-decoration: none;
}

#account-wishlist .breadcrumb li a:hover {
	color: #1f1f1f;
	text-decoration: underline;
}

#account-wishlist .breadcrumb li:last-child span {
	color: #1f1f1f;
}

#account-wishlist .breadcrumb li .icon {
	color: #717171;
}

#account-wishlist #close-sidebar,
#account-wishlist .icom-x,
#account-wishlist .close-sidebar,
#account-wishlist span#close-sidebar,
#account-wishlist span.icom-x,
#column-left #close-sidebar,
#column-left .icom-x,
#column-left .close-sidebar,
aside#column-left #close-sidebar,
aside#column-left .icom-x,
.sidebar-offcanvas #close-sidebar,
.sidebar-offcanvas .icom-x,
.content-aside #close-sidebar,
.content-aside .icom-x,
.left_column #close-sidebar,
.left_column .icom-x {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	left: -624.9375rem !important;
}

#wishlist-message {
	padding: 0.9375rem 2.5rem 0.9375rem 3.75rem;
	margin: 0.9375rem 0;
	border-radius: 0.25rem;
	position: relative;
	min-height: 3.125rem;
	display: none;
}

#wishlist-message.alert-success {
	background-color: #28a745 !important;
	color: #fff !important;
	border: 0.0625rem solid #28a745 !important;
}

#wishlist-message.alert-danger {
	background-color: #dc3545 !important;
	color: #fff !important;
	border: 0.0625rem solid #dc3545 !important;
}

#wishlist-message i {
	margin-right: 0.625rem;
	font-size: 1.125rem;
}

#wishlist-message .close {
	position: absolute;
	top: 50%;
	right: 0.9375rem;
	transform: translateY(-50%);
	color: #fff;
	opacity: 0.8;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

#wishlist-message .close:hover {
	opacity: 1;
}

.wishlist-buttons-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.wishlist-share-wrap {
	position: relative;
	display: inline-block;
	margin-left: 0.5rem;
}

.wishlist-share-dropdown {
	display: none !important;
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 0.375rem;
	padding: 0.5rem 0.625rem;
	background: #fff;
	border: 0.0625rem solid #ddd;
	border-radius: 0.375rem;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	z-index: 1050;
	white-space: nowrap;
	min-width: 0;
}

.wishlist-share-dropdown[aria-hidden="false"] {
	display: block !important;
}

.wishlist-share-dropdown .btn {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	min-width: 2.375rem;
	margin: 0 0.125rem;
	background-color: #fcf0ee;
	border: 0.0625rem solid #ddd;
	color: #333;
}

.wishlist-share-dropdown .btn:hover {
	border-color: var(--primary);
	color: #333;
}

.wishlist-share-dropdown .btn i {
	font-size: 1.125rem;
}

.wishlist-share-dropdown .btn i.fa-whatsapp {
	color: #25d366;
}

.wishlist-share-dropdown .btn i.fa-facebook {
	color: #1877f2;
}

.wishlist-share-dropdown .btn i.fa-twitter {
	color: #1da1f2;
}

.wishlist-share-dropdown .btn i.fa-envelope {
	color: var(--primary);
}

.wishlist-share-dropdown .btn i.fa-link {
	color: var(--primary);
}

.blog {
	padding: 0 0 7.5rem;
}

.blog .container {
	max-width: 90.5rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.blog-wrap {
	display: flex;
	align-items: flex-start;
	gap: 3.75rem;
}

.blog-left {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.875rem;
}

.blog-box {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.blog-box-img {
	display: flex;
	border-radius: 0.5rem;
}

.blog-box-img img {
	border-radius: 0.5rem;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-box-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.625rem;
	flex: 1;
	height: 100%;
}

.blog-box-content h4 {
	font-size: 1.375rem;
	line-height: 1.625rem;
	font-weight: 600;
	font-family: var(--font-primary);
	color: var(--heading-color);
	margin-bottom: 0.5rem;
	text-transform: capitalize;
	margin-top: 0;
}

.blog-box-content .blog-date {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.875rem;
}

.blog-box-content .blog-date svg {
	width: 1rem;
	height: 1rem;
}

.blog-box-content .blog-date {
	color: var(--category-nav-bg);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
}

.blog-box-content p {
	font-family: var(--font-primary);
	color: var(--heading-color);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.375rem;
	margin: 0;
}

.blog-box-content .blog-read-more {
	color: var(--primary) !important;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	width: max-content;
}

.blog-box-content .blog-read-more:hover {
	text-decoration: underline;
}

.blog-right {
	max-width: 24.375rem;
	width: 100%;
}

.blog-recent-post {
	background-color: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 2.25rem 0 rgba(0, 0, 0, 0.1);
	padding: 1.875rem;
	display: flex;
	align-items: flex-start;
	gap: 1.0625rem;
	flex-direction: column;
}

.blog-recent-post h3 {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.625rem;
	font-weight: 700;
	margin: 0;
}

.blog-recent-post ul {
	list-style: disc;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin: 0;
	padding: 0 0 0 0.9375rem;
}

.blog-recent-post ul li a {
	color: #1f1f1f !important;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.125rem;
	text-decoration: none;
}

.blog-recent-post ul li a:hover {
	color: var(--primary) !important;
}

.blog-detail {
	padding: 1rem 0 7.5rem;
}

.blog-detail .container {
	max-width: 85.625rem;
	width: 100%;
	padding: 0 1.25rem;
	margin: 0 auto;
}

.blog-detail-wrap {
	margin-bottom: 5rem;
	display: flex;
	flex-direction: column;
}

.blog-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.6875rem;
	margin-bottom: 3.75rem;
}

.blog-title h1 {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 2.875rem;
	font-weight: 500;
}

.blog-info {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.blog-info-detail {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.blog-info-detail svg {
	width: 1.5rem;
	height: 1.5rem;
}

.blog-info-detail img {
	width: 1.5rem;
	height: 1.5rem;
	border: 0.0625rem solid #bd0028;
	border-radius: 100%;
}

.blog-info-detail {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 500;
}

.blog-featured-img {
	border-radius: 1.875rem;
	margin-bottom: 3.125rem;
}

.blog-featured-img img {
	border-radius: 1.875rem;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-detail-wrap p {
	margin-bottom: 1.25rem;
	color: #6b6b6b;
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5rem;
}

.blog-img-row {
	display: flex;
	align-items: center;
	gap: 4.375rem;
	padding: 3.75rem 0;
}

.blog-img-row .blog-inner-img {
	border-radius: 0.625rem;
	background: var(--white);
	box-shadow: 0 0.5rem 1.5rem 0 rgba(25, 28, 31, 0.12);
	padding: 1.25rem;
}

.blog-img-row .blog-inner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-detail-wrap ul {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 0 0 0 1.25rem;
	margin-bottom: 1.25rem;
}

.blog-detail-wrap ul li {
	color: #424242;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
}

blockquote {
	margin: 1.875rem 0;
	border-radius: 0.625rem;
	background: rgb(248 213 220 / 30%);
	padding: 3.125rem;
	display: flex;
	flex-direction: column;
	gap: 1.625rem;
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2.25rem;
}

blockquote .bloc-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

blockquote .bloc-bottom p {
	margin-bottom: 0;
	color: var(--primary);
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.875rem;
	position: relative;
	padding-left: 6.25rem;
}

blockquote .bloc-bottom p::before {
	position: absolute;
	content: "";
	background: var(--black);
	width: 5rem;
	height: 0.125rem;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.blog-detail-wrap ol {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 0 0 0 1.25rem;
	margin-bottom: 1.25rem;
}

.blog-detail-wrap ol li {
	color: #424242;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
}

.blog-share-post {
	margin-top: 3.125rem;
	padding: 1.25rem 0;
	border-top: 0.0625rem solid var(--primary);
	border-bottom: 0.0625rem solid var(--primary);
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 600;
}

.blog-share-post ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	gap: 1.25rem;
	align-items: center;
}

.blog-share-post ul li a {
	display: flex;
}

.blog-comment {
	max-width: 56.25rem;
	margin: 0 auto;
}

.blog-comment .blog-author {
	margin-bottom: 3.125rem;
	border-radius: 0.625rem;
	background: rgba(220, 162, 175, 0.2);
	padding: 2.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1.875rem;
}

.blog-comment .blog-author img {
	height: 8.4375rem;
	width: 8.4375rem;
	object-fit: cover;
	object-position: center;
	border-radius: 0.5rem;
}

.blog-author-detail h5 {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.875rem;
	margin-bottom: 0.5rem;
}

.blog-author-detail p {
	color: #424242;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

.blog-author-detail ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.blog-main-comment {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.875rem;
}

.blog-main-comment h3 {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.75rem;
	font-weight: 500;
}

.blog-main-comment p {
	color: #424242;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
}

.blog-comment-wrap {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.blog-comments {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	border-bottom: 0.0625rem solid var(--primary);
	padding-bottom: 2.5rem;
}

.blog-comment-user {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
}

.blog-user-comment {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.3125rem;
}

.blog-user-comment h4 {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.875rem;
	margin: 0;
}

.blog-user-comment p {
	color: #424242;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin: 0;
	word-break: break-word;
}

.blog-comments-reply {
	margin-left: 7.25rem;
}

.blog-reply-form {
	margin-top: 2.6875rem;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.blog-reply-form h5 {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 1.75rem;
	font-weight: 600;
}

.blog-reply-form form .form-row {
	display: flex;
	gap: 1.875rem;
}

.blog-reply-form form {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.blog-reply-form form .form-row input {
	width: 100%;
	border-radius: 0.5rem;
	border: 0.0625rem solid #d9d9d9;
	padding: 1.125rem 1.25rem;
	color: #191919;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
}

.blog-reply-form form .form-row input::placeholder {
	opacity: 0.6;
}

.blog-reply-form form textarea {
	width: 100%;
	border-radius: 0.5rem;
	border: 0.0625rem solid #d9d9d9;
	padding: 1.125rem 1.25rem;
	color: #191919;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
}

.blog-reply-form form textarea::placeholder {
	opacity: 0.6;
}

.blog-reply-form .reply-btn {
	width: max-content;
	display: flex;
	padding: 0.9375rem 2.25rem;
	justify-content: center;
	align-items: center;
	border-radius: 0.625rem;
	border: 0.0625rem solid var(--primary);
	background: transparent;
	color: var(--primary);
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.5s ease;
	cursor: pointer;
}

.blog-reply-form .reply-btn:hover {
	background: var(--primary);
	color: var(--white);
}

.blog-reply-form input:-webkit-autofill,
.blog-reply-form input:-webkit-autofill:hover,
.blog-reply-form input:-webkit-autofill:focus,
.blog-reply-form input:-webkit-autofill:focus-visible,
.blog-reply-form input:focus-visible,
.blog-reply-form textarea:-webkit-autofill,
.blog-reply-form textarea:-webkit-autofill:hover,
.blog-reply-form textarea:-webkit-autofill:focus,
.blog-reply-form textarea:-webkit-autofill:focus-visible,
.blog-reply-form textarea:focus-visible {
	-webkit-box-shadow: 0 0 0rem 62.5rem transparent inset !important;

	box-shadow: 0 0 0rem 62.5rem transparent inset !important;

	-webkit-text-fill-color: #191919 !important;

	transition: background-color 5000s ease-in-out 0s;

	outline: none !important;
}

.faq {
	padding: 0 0 7.875rem;
}

.faq .container {
	max-width: 74.3125rem !important;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.faq-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 66.875rem;
}

.faq-wrap {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
	justify-content: center;
	align-items: center;
}

.faq-wrap .faq-wrap-heading {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: center;
	justify-content: center;
}

.faq-wrap .faq-wrap-heading h2 {
	color: var(--black);
	text-align: center;
	font-family: var(--font-primary);
	font-size: 2.875rem;
	font-weight: 500;
	margin-bottom: 0;
}

.faq-wrap .faq-wrap-heading p {
	color: #6b6b6b;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 400;
}

.faq-box {
	border-radius: 0.625rem;
	border: 0.0625rem solid #e4e7e9;
	background: var(--white);
	padding: 1.5rem 1.875rem;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.9375rem;
}

.faq-heading .icon svg {
	opacity: 0.5;
}

.faq-heading h5 {
	color: var(--heading-color);
	font-family: var(--font-primary);
	font-size: 1.375rem;
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.faq-box .faq-content {
	color: #6b6b6b;
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 400;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.35s ease-in-out;
}

.faq-box .faq-content p {
	margin: 0;
}

.faq-box.is-open .faq-content {
	max-height: 31.25rem;
	opacity: 1;
}

.faq-heading {
	cursor: pointer;
}

.faq-heading .icon-open {
	display: none;
}

.faq-heading .icon-close {
	display: block;
}

.faq-box.is-open .faq-heading .icon-open {
	display: block;
}

.faq-box.is-open .faq-heading .icon-close {
	display: none;
}

.faq-box.is-open {
	gap: 1rem;
	background-color: #FEF9F2;
	border: 1px solid #F58946
}

@media (max-width: 75rem) {
	.blog-left {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.blog-wrap {
		gap: 1.25rem;
	}

	.blog-img-row {
		gap: 2.5rem;
	}
}

@media (max-width: 62rem) {
	.blog-wrap {
		flex-direction: column;
	}

	.blog-right {
		max-width: 100%;
		width: 100%;
	}

	.blog-wrap {
		gap: 2.5rem;
	}

	.blog {
		padding: 0 0 3.75rem;
	}

	.blog-title {
		margin-bottom: 1.875rem;
	}

	.blog-featured-img {
		margin-bottom: 1.875rem;
	}

	.blog-img-row {
		padding: 1.875rem 0;
	}

	.blog-img-row {
		gap: 1.25rem;
	}

	blockquote {
		padding: 1.875rem;
		gap: 1.25rem;
	}

	.blog-share-post {
		margin-top: 1.25rem;
	}

	.blog-detail-wrap {
		margin-bottom: 2.5rem;
	}

	.blog-comment {
		max-width: 100%;
	}

	.faq-wrap .faq-wrap-heading h2 {
		font-size: 1.875rem;
	}
}

@media (max-width: 48rem) {
	.blog-title h1 {
		font-size: 1.875rem;
	}

	.blog-featured-img img {
		border-radius: 0.625rem;
	}

	.blog-featured-img {
		border-radius: 0.625rem;
	}

	.blog-img-row {
		padding: 1.25rem 0;
	}

	.faq-wrap {
		gap: 1.875rem;
	}

	.faq-box {
		padding: 1.25rem 1.5625rem;
	}

	.faq-heading h5 {
		font-size: 1.125rem;
	}

	.faq-box .faq-content {
		font-size: 1rem;
	}

	.faq {
		padding: 0 0 3.75rem;
	}
}

@media (max-width: 36rem) {
	.blog-left {
		grid-template-columns: repeat(1, 1fr);
	}

	.blog-recent-post {
		padding: 1.25rem;
	}

	.blog-recent-post h3 {
		font-size: 1.25rem;
	}

	.blog-detail {
		padding: 1rem 0 3.75rem;
	}

	.blog-img-row {
		flex-direction: column;
	}

	.blog-comment .blog-author {
		padding: 1.5625rem;
		flex-direction: column;
	}

	.blog-comment .blog-author {
		margin-bottom: 1.875rem;
	}

	.blog-comments-reply {
		margin-left: 2.5rem;
	}

	.blog-reply-form form .form-row {
		flex-direction: column;
		gap: 1.25rem;
	}

	.blog-reply-form form {
		gap: 1.25rem;
	}

	blockquote {
		font-size: 1.125rem;
		line-height: 1.875rem;
	}

	blockquote .bloc-bottom p {
		font-size: 1.25rem;
	}

	.bloc-bottom svg {
		width: 1.875rem;
		height: 1.875rem;
	}

	.blog-comment-user img {
		width: 3.125rem;
		height: 3.125rem;
	}
}

.blog-detail .blog-user-comment .blog-comment-date {
	display: block;
	font-size: 0.8125rem;
	color: #888;
	margin-top: 0.25rem;
}

.blog-detail .blog-user-comment .blog-reply-btn {
	display: inline-block !important;
	visibility: visible !important;
	margin-top: 0.625rem;
	border: 0;
	background: none;
	color: var(--primary);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

.blog-detail .blog-user-comment .blog-reply-btn:hover {
	text-decoration: underline;
}

.blog-detail .blog-replying-to {
	font-size: 0.875rem;
	color: #555;
	margin-bottom: 0.5rem;
}

.blog-detail .blog-cancel-reply {
	margin-left: 0.5rem;
	padding: 0.125rem 0.5rem;
	border: 0.0625rem solid #ccc;
	background: #f5f5f5;
	font-size: 0.8125rem;
	cursor: pointer;
	border-radius: 0.25rem;
}

.blog-detail .blog-cancel-reply:hover {
	background: #eee;
}

.blog-detail .blog-comment-success {
	color: #1a6b1a !important;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	background: rgba(45, 138, 45, 0.12);
	border: 0.0625rem solid #2d8a2d;
	border-radius: 0.5rem;
	transition: opacity 0.4s ease;
}

.blog-detail .blog-comment-success.blog-comment-success-hide {
	opacity: 0;
	pointer-events: none;
	margin-bottom: 0;
	padding: 0;
	height: 0;
	overflow: hidden;
}

.blog-detail .blog-comment-error {
	color: var(--primary);
	font-size: 0.875rem;
	margin-bottom: 0.625rem;
}

.reorder-modal-overlay {
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.9375rem;
}

.reorder-modal-box {
	position: relative;
	background: var(--white);
	border-radius: 0.5rem;
	max-width: 43.75rem;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
}

.reorder-modal-title {
	margin: 0;
	padding: 0.9375rem 2.8125rem 0.9375rem 1.25rem;
	border-bottom: 0.0625rem solid #eee;
	font-size: 1.875rem;
}

.reorder-modal-close {
	position: absolute;
	top: 0.75rem;
	right: 0.9375rem;
	background: none;
	border: none;
	font-size: 1.75rem;
	cursor: pointer;
	color: #999;
	line-height: 1;
	padding: 0;
}

.reorder-modal-close:hover {
	color: #333;
}

.reorder-modal-body {
	padding: 1.25rem;
	overflow-y: auto;
	flex: 1;
}

.reorder-modal-content .reorder-modal-meta {
	margin-bottom: 0.9375rem;
}

.reorder-modal-content .table {
	margin-bottom: 1.25rem;
}

.reorder-modal-content .reorder-product-thumb {
	vertical-align: middle;
}

.reorder-modal-content .reorder-product-thumb img {
	max-width: 3.75rem;
	max-height: 3.75rem;
	object-fit: contain;
}

.reorder-modal-content .reorder-no-image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.125rem;
	height: 3.125rem;
	background: #f5f5f5;
	color: #ccc;
	font-size: 1.5rem;
}

.reorder-modal-actions {
	margin-top: 0.9375rem;
}

.shop-product-content-top h3 a {
	color: inherit;
	text-decoration: none;
}

.shop-product-content-top h3 a:hover {
	color: var(--primary-one);
}

.shop-product-box-img .product-image-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.shop-product-box-img .badge {
	z-index: 2;
}

.product-action {
	z-index: 2;
}

.shop-product-box-img .product-nav {
	z-index: 2;
}

.page-not-found-section {
	background-color: var(--table-heading);
	padding: 18.0625rem 0 4.5rem;
}

.page-not-found-section .container {
	max-width: 59.25rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.page-not-found-section-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.page-not-found-section-wrap p {
	color: var(--black);
	text-align: center;
	font-family: var(--font-primary);
	font-size: 2.875rem;
	line-height: 3.125rem;
	font-weight: 500;
	margin: 2.5625rem 0 3.625rem;
}

.page-not-found-section-wrap .back-button {
	display: flex;
	padding: 1rem 2.25rem;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	border-radius: 0.75rem;
	background: var(--primary);
	color: var(--white) !important;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	border: 0.0625rem solid var(--primary);
}

.page-not-found-section-wrap .back-button:hover {
	background: transparent;
	color: var(--primary) !important;
}

.comming-soon {
	background-image: url("./media/comming-soon.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.comming-soon .container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.comming-soon-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.comming-soon-wrap h2 {
	color: var(--black);
	text-align: center;
	font-family: var(--font-primary);
	font-size: 5rem;
	line-height: 4.75rem;
	font-weight: 700;
	margin-bottom: 3.75rem;
	text-transform: uppercase;
}

.comming-soon-wrap .back-button {
	display: flex;
	padding: 1rem 2.25rem;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	border-radius: 0.75rem;
	background: var(--primary);
	color: var(--white) !important;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	border: 0.0625rem solid var(--primary);
	width: max-content;
}

.comming-soon-wrap .back-button:hover {
	background: transparent;
	color: var(--primary) !important;
}

@media (max-width: 62rem) {
	.page-not-found-section {
		padding: 9.375rem 0 4.5rem;
	}
}

@media (max-width: 48rem) {
	.comming-soon-wrap h2 {
		font-size: 3.125rem;
		margin-bottom: 1.875rem;
		line-height: 3.4375rem;
	}
}

@media (max-width: 36rem) {
	.page-not-found-section-wrap p {
		font-size: 1.875rem;
		margin: 1.875rem 0 1.5625rem;
		line-height: 2.1875rem !important;
	}

	.page-not-found-section-wrap .back-button {
		font-size: 1rem;
	}

	.comming-soon-wrap h2 {
		font-size: 1.875rem;
		margin-bottom: 1.25rem;
		line-height: 2.1875rem;
	}

	.comming-soon-wrap .back-button {
		font-size: 1rem;
		padding: 0.625rem 1.5625rem;
	}
}

.age-verification-modal .eaav-item-content.jsx-4124003552 {
	padding: 2.0625rem !important;
}

.age-verification-modal-content {
	width: max-content !important;
}

.age-verification-modal-content .eaav-item-allow-buttons-container {
	justify-content: center;
	gap: 0.625rem;
}

.age-verification-modal-content .eaav-item-allow-buttons-button {
	margin: 0;
}

.age-verification-modal-content .eaav-btn-submit {
	padding: 1rem 2.25rem !important;
}

.age-verification-modal-content .eaav-btn-cancel {
	padding: 1rem 2.25rem !important;
}

.age-verification-modal-content .eaav-dob-container {
	width: 100%;
	max-width: 100%;
}

.age-verification-dob {
	display: block;
	align-items: center;
	margin: 0 auto;
}

.age-verification-dob .eaav-dob-label {
	color: #6b6b6b !important;
	font-size: 1.125rem;
	line-height: 1.3125rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 0.625rem;
}

.age-verification-dob .eaav-dob-input {
	max-width: 4.875rem;
	padding: 0.625rem 0.625rem;
	background-color: rgba(239, 239, 239, 0.7);
	color: rgba(25, 28, 31, 1);
	border: none;
}

.age-verification-modal-content .eaav-btn-submit {
	font-weight: 400 !important;
}

.age-verification-modal-content .eaav-btn-cancel {
	font-weight: 400 !important;
}

.eaav-item-allow-buttons-button:hover {
	top: 0 !important;
}

.age-verification-modal-content .eaav-item-allow-buttons-container {
	margin-top: 0 !important;
}

.age-verification-dob {
	margin-bottom: 1.8125rem;
}

.eaav-dob-error {
	text-align: center !important;
}

#newsletter-toast.newsletter-toast {
	position: fixed !important;
	top: 11.5625rem !important;
	right: 0.625rem !important;
	left: auto !important;
	bottom: auto !important;
	z-index: 999999 !important;
	max-width: 23.75rem;
	padding: 0.875rem 1.125rem;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.25);
	opacity: 0;
	transform: translateX(120%);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	pointer-events: none;
	visibility: hidden;
}

#newsletter-toast.newsletter-toast.newsletter-toast-show {
	opacity: 1 !important;
	transform: translateX(0) !important;
	visibility: visible !important;
}

#newsletter-toast.newsletter-toast-success {
	background: #1e7e34;
	color: #fff;
	border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

#newsletter-toast.newsletter-toast-error {
	background: #c12127;
	color: #fff;
	border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.search-result-drawer {
	font-family: var(--font-primary);
	color: var(--heading-color);
	background: var(--white);
	width: 100%;
	max-width: 40.625rem;
	overflow: hidden;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
	max-height: 90vh;
	flex-direction: column;
	position: absolute;
	margin-top: 0.25rem;
	display: none;
}

.ajax-search-results.ajax-search-visible {
	display: flex !important;
	visibility: visible !important;
}

.search-drawer__title {
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 1rem 0;
	padding: 0;
}

@media (min-width: 48rem) {
	.search-drawer__title {
		font-size: 1.625rem;
		margin-bottom: 2.5rem;
	}
}

.search-drawer__categories {
	padding: 1.25rem 1rem 0;
	flex-shrink: 0;
}

@media (min-width: 48rem) {
	.search-drawer__categories {
		padding: 1.875rem 1.375rem 0;
	}
}

.search-drawer__carousel-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
}

@media (min-width: 48rem) {
	.search-drawer__carousel-wrap {
		gap: 0.625rem;
	}
}

.search-drawer__carousel {
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	flex: 1;
	min-width: 0;
	padding-bottom: 0.25rem;
}

@media (min-width: 48rem) {
	.search-drawer__carousel {
		gap: 1rem;
	}
}

.search-drawer__carousel::-webkit-scrollbar {
	display: none;
}

.search-drawer__category-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	min-width: 4rem;
}

@media (min-width: 30rem) {
	.search-drawer__category-item {
		min-width: 4.5rem;
		gap: 0.625rem;
	}
}

@media (min-width: 48rem) {
	.search-drawer__category-item {
		min-width: 5rem;
		gap: 0.9375rem;
	}
}

.search-drawer__category-img {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.625rem;
	background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
	font-size: 0.6rem;
	color: var(--heading-color);
	text-align: center;
	padding: 0.25rem;
	overflow: hidden;
}

@media (min-width: 30rem) {
	.search-drawer__category-img {
		width: 4rem;
		height: 4rem;
		font-size: 0.65rem;
	}
}

@media (min-width: 48rem) {
	.search-drawer__category-img {
		width: 5rem;
		height: 5rem;
	}
}

.search-drawer__category-label {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--heading-color);
	text-align: center;
	line-height: 1.2;
	max-width: 5rem;
	word-wrap: break-word;
}

@media (min-width: 48rem) {
	.search-drawer__category-label {
		font-size: 0.875rem;
		line-height: 1.5rem;
	}
}

.search-drawer__carousel-prev,
.search-drawer__carousel-next {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 0.375rem;
	background: rgba(31, 31, 31, 0.1);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		color 0.2s;
	border: none;
}

@media (min-width: 48rem) {

	.search-drawer__carousel-prev,
	.search-drawer__carousel-next {
		width: 1.5rem;
		height: 1.5625rem;
	}
}

.search-drawer__carousel-prev:hover,
.search-drawer__carousel-next:hover {
	background: var(--primary);
	color: var(--white);
}

.search-drawer__carousel-indicator {
	height: 0.1875rem;
	width: 1.5rem;
	max-width: 1.5rem;
	margin: 0.5rem auto 0;
	background: var(--primary-one);
	border-radius: 0.125rem;
}

.search-drawer__divider {
	border: none;
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
	margin: 1rem 1rem 0;
}

@media (min-width: 48rem) {
	.search-drawer__divider {
		margin: 1rem 1.375rem 0;
	}
}

.search-drawer__results {
	padding: 1rem 1rem 1.25rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	min-height: 0;
}

@media (min-width: 48rem) {
	.search-drawer__results {
		padding: 1.25rem 1.625rem 1.875rem;
	}
}

.search-drawer__result-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.625rem 0;
	font-size: 0.875rem;
	line-height: 1.25;
	color: var(--heading-color);
	text-decoration: none;
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.06);
	transition:
		background 0.15s,
		color 0.15s;
}

@media (min-width: 48rem) {
	.search-drawer__result-item {
		padding: 0.75rem 0;
		font-size: 0.875rem;
		line-height: 1rem;
	}
}

.search-drawer__result-item:last-child {
	border-bottom: none;
}

.search-drawer__result-item:first-child {
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.06);
}

.search-drawer__result-item:hover {
	color: var(--primary);
}

.search-drawer__result-item span:first-child {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-drawer__result-arrow {
	flex-shrink: 0;
	color: var(--black);
	transform: rotate(273deg);
}

.search-drawer__result-item:hover .search-drawer__result-arrow {
	color: var(--primary);
}

@media (max-width: 64rem) {
	.search-result-drawer {
		top: 8.375rem;
	}
}

@media (max-width: 48rem) {
	.search-result-drawer {
		max-width: 25rem;
	}
}

@media (max-width: 24.1875rem) {
	.search-result-drawer {
		max-width: 20.625rem;
	}
}

@media (max-width: 18.75rem) {
	.search-result-drawer {
		max-width: 18.75rem;
	}
}

.result-page .shop-banner-part {
	padding-bottom: 0;
}

.result-page {
	padding: 1.5rem 0 7.5rem 0;
}

.result-layout {
	max-width: 88.125rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 20rem 1fr;
	gap: 3.125rem;
	align-items: start;
	transition:
		grid-template-columns 0.35s ease-out,
		grid-template-rows 0.35s ease-out,
		gap 0.35s ease-out;
}

.result-layout:has(.result-filters.is-closed) {
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
}

.result-filters.is-closed {
	grid-column: 1;
	grid-row: 1;
}

.result-filters.is-closed+.result-main {
	grid-column: 1;
	grid-row: 2;
}

.result-filters {
	display: flex;
	flex-direction: column;
	gap: 1.375rem;
	width: 20.625rem;
}

.result-ct-title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	border: 0.0625rem solid #ebebeb;
	background: #fff;
	width: 100%;
	cursor: pointer;
	font: inherit;
	color: inherit;
	text-align: left;
}

.result-ct-title:hover {
	background: rgba(235, 235, 235, 0.8);
}

.result-ct-title.active {
	background: rgba(235, 235, 235, 0.8);
}

.result-ct-title .result-filter-chevron,
.result-ct-title .result-ct-icon {
	transition: transform 0.3s ease-out;
}

.result-ct-title[aria-expanded="true"] .result-filter-chevron {
	transform: rotate(180deg);
}

.result-ct-icon {
	flex-shrink: 0;
}

.result-ct-heading {
	margin: 0;
	color: #000;
	font-family: "Public Sans";
	font-size: 1.625rem;
	line-height: 1.9375rem;
	font-weight: 600;
}

.result-ct-dropdown {
	border-radius: 0.5rem;
	background: #fff;
	box-shadow: 0 0.25rem 2.25rem 0 rgba(0, 0, 0, 0.1);
	padding: 1.25rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	border: 0 solid transparent;
	box-shadow: none;
	transition:
		max-height 0.35s ease-out,
		opacity 0.25s ease-out,
		margin-top 0.35s ease-out,
		padding 0.35s ease-out,
		box-shadow 0.25s ease-out;
}

.result-ct-dropdown.is-open {
	max-height: 87.5rem;
	opacity: 1;
	margin-top: 0.75rem;
	padding: 1.25rem;
	box-shadow: 0 0.25rem 2.25rem 0 rgba(0, 0, 0, 0.1);
	transition:
		max-height 0.4s ease-in-out,
		opacity 0.3s ease-out,
		margin-top 0.35s ease-out,
		padding 0.35s ease-out,
		box-shadow 0.25s ease-out;
}

.result-filter-section {
	border-bottom: 0.0625rem solid #d9d9d9;
	margin: 0;
}

.result-filter-section:last-of-type {
	border-bottom: none;
}

.result-filter-section.is-closed {
	border-bottom: 0.0625rem solid #d9d9d9;
}

.result-filter-section.is-closed:last-of-type {
	border-bottom: none;
}

.result-filter-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.625rem;
	padding: 0.625rem 0;
	margin: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #000;
	text-align: left;
}

.result-filter-chevron {
	width: 0.625rem;
	height: 0.625rem;
	margin-left: auto;
	transition: transform 0.2s ease;
	display: flex;
}

.result-filter-content {
	padding: 0 0 0.875rem 0;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition:
		max-height 0.25s ease,
		opacity 0.2s ease,
		padding 0.2s ease;
}

.result-filter-content.is-open {
	max-height: 25rem;
	opacity: 1;
	padding: 0 0 0.875rem 0;
}

.result-filter-radio {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.375rem 0;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
}

.result-filter-radio input[type="radio"] {
	width: 1.125rem;
	height: 1.125rem;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	border: 0.125rem solid var(--primary);
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
	transition:
		border-color 0.15s ease,
		background 0.15s ease;
}

.result-filter-radio input[type="radio"]:checked {
	background: var(--primary);
	box-shadow: inset 0 0 0 0.125rem var(--white);
}

.result-filter-radio input[type="radio"]:focus-visible {
	outline: 0.125rem solid var(--primary);
	outline-offset: 0.125rem;
}

.result-filter-radio input[type="radio"]:checked+span {
	color: #1f1f1f;
}

input#result-price-min {
	display: none;
}

.result-filter-more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #c12127 !important;
	text-decoration: none;
}

.result-filter-more:hover {
	color: #1f1f1f !important;
}

.result-filter-more:hover svg path {
	stroke: #1f1f1f;
}

.result-filter-price-range {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.result-price-input-wrap {
	display: inline-flex;
	align-items: center;
	flex: 1;
	padding: 0 0.625rem;
	border: 0.0625rem solid #c12127;
	border-radius: 0.375rem;
	background: #fff;
}

.result-price-prefix {
	padding-right: 0.25rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #1f1f1f;
}

.result-price-input {
	width: 100%;
	min-width: 0;
	padding: 0.5rem 0;
	border: none;
	background: transparent;
	border-radius: 0;
	font-size: 0.9375rem;
	color: #1f1f1f;
}

.result-price-input:focus {
	outline: none;
}

.result-price-input-wrap:focus-within {
	border-color: #d82f3b;
	box-shadow: 0 0 0 0.0625rem #d82f3b;
}

.result-price-slider-wrap {
	position: relative;
	height: 1.75rem;
	padding: 0.625rem 0;
}

.result-price-slider-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 0.375rem;
	background: #f0f0f0;
	border-radius: 62.4375rem;
}

.result-price-slider-fill {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 0.375rem;
	left: 0;
	width: 0;
	background: #c41d2e;
	border-radius: 62.4375rem;
	pointer-events: none;
}

.result-price-slider {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 0.375rem;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0.1875rem;
}

.result-price-slider-max {
	z-index: 2;
}

.result-price-slider::-webkit-slider-runnable-track {
	height: 0.375rem;
	background: transparent;
	border-radius: 62.4375rem;
}

.result-price-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: #c41e2e;
	cursor: pointer;
	margin-top: -0.4375rem;
	position: relative;
	z-index: 1;
}

.result-price-slider::-moz-range-track {
	height: 0.375rem;
	background: transparent;
	border-radius: 62.4375rem;
}

.result-price-slider::-moz-range-thumb {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: #c41e2e;
	cursor: pointer;
	border: none;
}

.result-main {
	min-width: 0;
	transition:
		margin-top 0.35s ease-out,
		transform 0.35s ease-out;
}

.result-main-wrap {
	margin-bottom: 1.875rem;
}

.result-page-title {
	margin: 0 0 1.25rem;
	font-family: "Public Sans";
	font-size: 2rem;
	font-weight: 600;
	color: #1f1f1f;
}

.result-product-count {
	margin: 0 0 1.5rem;
	font-size: 1.125rem;
	color: #6b6b6b;
}

.result-search-criteria {
	margin-bottom: 2.5rem;
}

.result-search-label {
	margin: 0 0 1.125rem;
	font-family: "Public Sans";
	font-size: 1.25rem;
	font-weight: 500;
	color: #1f1f1f;
}

.result-search-box {
	display: flex;
	align-items: center;
	max-width: 40.375rem;
	background: rgba(239, 239, 239, 0.7);
	border-radius: 0.375rem;
	overflow: hidden;
}

.result-search-input {
	flex: 1;
	padding: 0.75rem 0.875rem;
	border: none;
	background: transparent;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	color: #1f1f1f;
}

.result-search-input::placeholder {
	color: var(--search-placeholder-color);
}

.result-search-input:focus {
	outline: none;
}

.result-search-btn {
	padding: 0.75rem 0.625rem;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
}

.result-search-btn:hover {
	color: #c12127;
}

.result-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem;
	justify-content: space-between;
}

.result-active-filters-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem;
}

.result-filter-tag {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.375rem;
	padding: 0.625rem;
	border-radius: 0.375rem;
	border: 0.0625rem solid #e4e7e9;
	font-size: 0.875rem;
	color: #191c1f;
	min-width: 9.375rem;
}

.result-tag-remove {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	font-size: 1.125rem;
	line-height: 1;
	color: #666;
	cursor: pointer;
}

.result-tag-remove:hover {
	color: #c12127;
}

.result-clear-all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.375rem;
	padding: 0.625rem;
	font-size: 0.875rem;
	cursor: pointer;
	border-radius: 0.375rem;
	border: 0.0625rem solid #e4e7e9;
	background: rgba(189, 0, 40, 0.2);
	min-width: 9.375rem;
	font-weight: 600;
	font-family: "Public Sans";
}

.result-filter-toggle .result-filter-chevron {
	flex-shrink: 0;
}

@media (max-width: 48rem) {
	.result-layout {
		grid-template-columns: 1fr;
	}

	.result-filters {
		width: 100%;
	}
}

#product-manufacturer {
	margin-top: 12.5rem;
}

#upload-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1050;
	pointer-events: all;
}

#upload-loader .loader-content {
	text-align: center;
	color: #ffffff;
}

#upload-loader .loader-spinner {
	width: 4rem;
	height: 4rem;
	border: 0.375rem solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: upload-spinner 0.8s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes upload-spinner {
	0% {
		transform: rotate(0deg);
	}

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

body.uploading {
	overflow: hidden;
}

body.uploading #upload-loader {
	display: flex;
}

body.uploading #account-uploadcsv> :not(#upload-loader) {
	pointer-events: none;
}

#product-manufacturer .brand-wrap h2[id] {
	scroll-margin-top: 14.0625rem;
}

#product-manufacturer .brand-index-sticky-bar {
	position: sticky;
	top: 10.9375rem;
	z-index: 100;
	background: #fff;
	padding: 0.75rem 0;
	margin: 0 0 0.5rem 0;
	border-bottom: 0.0625rem solid #eee;
}

#product-manufacturer .brand-index-links .brand-index-link {
	color: inherit;
	text-decoration: none;
}

#product-manufacturer .brand-index-links .brand-index-link:hover {
	color: #d13b27;
}

#product-manufacturer .brand-index-links .brand-index-link.active {
	color: #d13b27 !important;
	font-weight: 600;
}

#product-manufacturer .brand-search-no-results {
	margin-top: 1rem;
	font-weight: 500;
	color: #666;
}

#content>h1 {
	color: #1f1f1f;
	font-family: "Public Sans";
	font-size: 2rem;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 1.875rem;
}

.fluid-sidebar .result-search-label {
	color: #6b6b6b !important;
	font-family: "Public Sans" !important;
	font-size: 1.125rem !important;
	font-weight: 400 !important;
	margin-bottom: 1.5rem !important;
}

.brand-index-links a {
	color: #6b6b6b !important;
	font-family: "Public Sans" !important;
	font-size: 1.25rem !important;
	font-weight: 400 !important;
	transition: all 0.5s ease-in-out;
}

.brand-index-links a:hover {
	color: #d13b27 !important;
}

.brand-index-links strong {
	color: #6b6b6b !important;
	font-family: "Public Sans" !important;
	font-size: 1.25rem !important;
	font-weight: 400 !important;
}

.brand-wrap {
	padding: 1.25rem 0;
	border-bottom: 0.0625rem solid #e4e7e9;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}

.brand-wrap h2 {
	margin-bottom: 0;
	color: #c12127 !important;
	font-family: "Public Sans" !important;
	font-size: 2.5rem !important;
	font-weight: 400;
}

.brand-wrap .row {
	width: 100%;
}

.brand-name-cell a {
	color: #000 !important;
	font-family: "Public Sans" !important;
	font-size: 1.25rem !important;
	font-weight: 400 !important;
}

.brand-name-cell a:hover {
	color: #d13b27 !important;
}

@media (max-width: 75rem) {
	#product-manufacturer .brand-index-sticky-bar {
		position: static;
	}
}

@media (max-width: 62rem) {
	#product-manufacturer {
		margin-top: 5.25rem;
	}

	#content>h1 {
		font-size: 2.25rem;
	}
}

@media (max-width: 48rem) {
	#content>h1 {
		font-size: 1.75rem;
	}

	.brand-index-links a {
		line-height: 2.5rem;
	}

	.brand-wrap h2 {
		font-size: 1.75rem !important;
	}

	.brand-name-cell a {
		font-size: 1.125rem !important;
	}

	.brand-wrap .row {
		gap: 1.25rem;
	}
}

#account-login,
#account-register,
#account-account,
#account-edit,
#account-password,
#account-address,
#account-order,
#account-download,
#account-recurring,
#account-reward,
#account-return,
#account-transaction,
#account-newsletter,
#common-success,
#account-forgotten {
	padding-top: 1.625rem;
	padding-bottom: 7.5rem;
}

#account-login .card-body {
	padding: 1.875rem;
}

.btn-primary,
.btn-default,
.btn-danger {
	display: flex;
	padding: 0.688rem 1rem;
	justify-content: center;
	align-items: center;
	width: max-content;
	min-width: max-content;
	border-radius: 0.625rem;
	background: transparent;
	color: #c12127 !important;
	font-family: "Public Sans";
	font-size: 1.25rem !important;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border: 1px solid #c12127;
}

/* Cart "Empty Cart" button: the global .btn { color:#FFF !important; border:none }
in iak-home.css leaks onto the cart page and made this transparent button
white-on-white (invisible). Re-assert the theme's red outline with enough
specificity + !important to win regardless of stylesheet order. */
.btn-danger[data-cart-clear] {
	background: transparent !important;
	color: #c12127 !important;
	border: 1px solid #c12127 !important;
}

.btn-danger[data-cart-clear]:hover {
	background: #c12127 !important;
	color: #fff !important;
}

#account-forgotten input.btn.btn-primary,
#account-edit input.btn.btn-primary,
#account-password input.btn.btn-primary {
	font-size: 1.25rem !important;
}

.btn-primary:hover,
.btn-default:hover,
.btn-danger:hover {
	background-color: #c12127;
	transform: none;
	box-shadow: none;
	color: var(--white) !important;
}

#account-login .card-body p {
	color: #6b6b6b;
}

#account-login form label {
	font-weight: 500;
	margin-bottom: 0.625rem;
}

#account-login form .form-group input {
	padding: 0.75rem 0.9375rem;
	font-size: 0.875rem;
}

/* #account-login form input[type="password"] {
margin-bottom: 0.625rem;
} */

#account-login form .form-group a {
	color: #818285 !important;
	font-weight: 500;
	transition: all 0.5s ease;
}

#account-login form .form-group a:hover {
	color: #212529 !important;
}

#biometric-quick-login p {
	text-align: left;
}

#biometric-login-btn {
	width: 100% !important;
	max-width: 100% !important;
	margin-top: 0;
}

#biometric-login-btn:hover {
	transform: none !important;

}

#biometric-login-btn svg {
	fill: var(--white) !important;
	margin-bottom: 0 !important;
	width: 1.875rem;
	height: 1.875rem;
}

.content-aside .list-group .list-group-item {
	background-color: transparent !important;
	border: 1px solid #BD002866;
	padding: 1rem 1.25rem;
	transition: all 0.5s ease;
	border-radius: 0.75rem;
	color: #6B6B6B !important;
	font-size: 1.125rem;
}

.content-aside .list-group .list-group-item:hover {
	background-color: #BD002814 !important;
	color: #1F1F1F !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0rem 62.5rem transparent inset !important;

	box-shadow: 0 0 0rem 62.5rem transparent inset !important;

	-webkit-text-fill-color: #000 !important;

	transition: background-color 5000s ease-in-out 0s;

}

.form-control:focus {
	border-color: #ced4da !important;
	box-shadow: none !important;
}

#form-register fieldset {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

fieldset input {
	border-radius: 0.375rem !important;
}

#form-register fieldset input {
	padding: 0.75rem 0.9375rem;
	font-size: 0.875rem;
	border-radius: 0.375rem !important;
}

#form-register fieldset input:focus {
	outline: none;
	border: 0.0625rem solid var(--input-focus) !important;
}

#account-forgotten #input-email:focus {
	outline: none;
	/* border: 0.0625rem solid var(--input-focus) !important; */
}

.form-control:focus {
	outline: none;
	border: 0.0625rem solid var(--input-focus) !important;
}

#account-login form .form-group input {
	border-radius: 0.375rem !important;
}

#form-register fieldset .row {
	flex-direction: column;
	gap: 0.625rem;
}

#form-register .text-end {
	width: 100%;
	align-items: center;
	justify-content: space-between;
	display: flex;
}

#form-register .text-end a {
	color: var(--primary) !important;
	transition: all 0.5s ease;
}

#form-register .text-end a:hover {
	color: #212529 !important;
}

.form-horizontal fieldset {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.form-horizontal fieldset input {
	padding: 0.75rem 0.9375rem;
	font-size: 0.875rem;
}

.form-horizontal fieldset .row {
	flex-direction: row;
	gap: 0;
}

.form-horizontal fieldset .row .control-label {
	width: max-content;
}

.form-horizontal .clearfix {
	width: 100%;
	align-items: center;
	justify-content: space-between;
	display: flex;
	margin-top: 2.5rem !important;
}

.clearfix:before {
	display: none;
}

.clearfix::after {
	display: none;
}

#content #shipping-address-select.form-control {
	padding: 0.75rem 0.9375rem !important;
	font-size: 0.875rem;
	width: 100%;
	border: 1px solid #ddd !important;
	border-radius: 6px !important;
	background-color: #fff !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#content #shipping-address-select.form-control:focus {
	outline: none;
	border: 0.0625rem solid var(--input-focus) !important;
}


.write-review-btn #account-account #content>h2 {
	font-weight: 600;
	margin-bottom: 1.25rem !important;
}

#account-account ul li a {
	color: #6B6B6B !important;
	font-size: 1.25rem !important;
	text-decoration-line: underline;
	text-decoration-style: solid;
	font-weight: 500 !important;
}

#account-account .list-unstyled li {
	margin-bottom: 0.75rem !important;
}

#account-account ul li a:hover {
	color: #c12127 !important;
}

#account-address table tbody tr,
#account-address table tbody tr td {
	border-width: 0 !important;
}

#account-address table tbody tr:hover td {
	--bs-table-accent-bg: transparent !important;
}

#account-address .btn-info {
	border-radius: 0.75rem;
}

#account-address h3 {
	margin-bottom: 1.25rem !important;
}

#account-wishlist .table-responsive {
	margin-top: 3.125rem;
}

#account-wishlist .table-responsive thead tr {
	background-color: #FDDBC2 !important;
}

#account-wishlist .table-responsive thead tr td {
	padding: 0.5625rem;
}

#account-wishlist table tbody tr:hover td {
	--bs-table-accent-bg: transparent !important;
}

#account-wishlist table .btn-primary {
	min-width: auto;
	padding: 0.688rem 1rem;
	border-radius: 0.3125rem;
	margin-bottom: 0;
	border: 0.0625rem solid var(--primary) !important;
}

#account-wishlist table .btn-primary:hover path {
	stroke: #c12127;
	fill: #c12127;
}

#account-wishlist table .btn-primary:hover svg path:last-of-type {
	fill: none !important;
}

#account-wishlist table .btn-primary:hover svg {
	fill: #BD002814 !important;
}

.btn-primary:hover .fa-shopping-cart {
	color: var(--primary) !important;

}

#account-wishlist table .btn-danger {
	min-width: auto;
	padding: 0.688rem 1rem;
	border-radius: 0.3125rem;
}

#account-wishlist table .btn-danger svg {
	width: 2rem;
	height: 2rem;
}

#account-wishlist table .btn-primary .fa-shopping-cart {
	font-size: 0.875rem;
}

#account-wishlist .clearfix {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.625rem;
}

#checkout-cart .table-responsive tbody tr td {
	padding: 0.5625rem !important;
}

#checkout-cart table .btn-primary,
#shopping-cart table .btn-danger {
	min-width: auto;
	padding: 0.75rem 1.1875rem;
	border-radius: 0.3125rem;
	margin-bottom: 0.3125rem;
}

#checkout-cart .form-control {
	width: 100% !important;
}

#checkout-cart .input-group {
	align-items: center !important;
	width: 100% !important;
	gap: 0.625rem !important;
	justify-content: center !important;
}

#checkout-cart .table-responsive thead tr td {
	white-space: nowrap !important;
	padding: 0.5625rem !important;
}

#checkout-cart .table-responsive thead tr {
	background-color: var(--table-heading) !important;
}

#checkout-cart #accordion {
	border-radius: 0.625rem !important;
}

#checkout-cart .accordion-button {
	padding: 0.9375rem 0.9375rem !important;
	font-size: 14px !important;
}

#account-order .table-responsive {
	margin-top: 0;
}

#account-order .table-responsive thead tr {
	background-color: var(--table-heading) !important;
}

#account-order .table-responsive thead tr td {
	padding: 0.5625rem;
}

#account-order table tbody tr:hover td {
	--bs-table-accent-bg: transparent !important;
}

#account-order .btn-info {
	border-radius: 0.3125rem;
}

#account-order .table thead tr {
	background-color: #FDDBC2 !important;
}

#account-order .table thead tr td {
	padding: 0.5625rem;
	white-space: nowrap;
}

#account-order .table tbody tr td {
	padding: 0.625rem;
	white-space: nowrap;
}

#account-order .table tfoot tr td {
	padding: 0.625rem;
	white-space: nowrap;
}

#account-order table .btn-primary {
	min-width: auto;
	padding: 0.75rem 1.1875rem;
	border-radius: 0.3125rem;
	margin-bottom: 0.3125rem;
}

#account-order table .btn-danger {
	min-width: auto;
	padding: 0.75rem 1.1875rem;
	border-radius: 0.3125rem;
}

#account-order .table tfoot tr td b {
	color: var(--primary);
}

#account-transaction .table-responsive {
	margin-top: 3.125rem;
	margin-bottom: 1.875rem;
}

#account-transaction .table-responsive table.table.table-bordered.table-hover {
	margin-bottom: 0;
}

#account-transaction .table-responsive thead tr {
	background-color: #FDDBC2 !important;
}

#account-transaction .table-responsive thead tr td {
	padding: 0.5625rem;
}

#account-transaction table tbody tr:hover td {
	--bs-table-accent-bg: transparent !important;
}

#account-reward .table-responsive {
	margin-top: 3.125rem;
	margin-bottom: 1.875rem;
}

#account-reward .table-responsive thead tr {
	background-color: #FDDBC2 !important;
}

#account-reward .table-responsive thead tr td {
	padding: 0.5625rem;
}

#account-reward table tbody tr:hover td {
	--bs-table-accent-bg: transparent !important;
}

#account-reward .btn-primary,
#account-transaction .btn-primary {
	margin-top: 1.875rem;
}

#account-wishlist .table-responsive thead tr td {
	white-space: nowrap !important;
}

.form-check-inline input {
	margin: 0 !important;
}

.form-check-inline {
	padding: 0;
}

#input-default-no {
	margin: 0 !important;
}

#account-wishlist .page-not-found-section {
	background: transparent !important;
}

.form-check-input:checked {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	margin: 0 !important;
}

label.form-check-label,
.form-check-input[type=radio] {
	cursor: pointer;
}

.form-check-input:focus {
	border-color: var(--primary) !important;
	box-shadow: none !important;
}

#account-wishlist .page-not-found-section {
	padding: 4.5rem 0 !important;
}

.form-control {
	padding: 0.75rem 0.9375rem !important;
	font-size: 1rem !important;
}

#account-address .btn-danger {
	background: #999 !important;
	padding: 0.75rem 1.25rem !important;
	min-width: auto !important;
}

#account-wishlist .clearfix {
	margin-top: 2.5rem !important;
}

#account-order .btn-success {
	background: var(--primary) !important;
}

#account-order .table-responsive .btn-success {
	border: 0.0625rem solid var(--primary) !important;
	background: var(--primary) !important;
}

#account-order .table-responsive .btn-success:hover {
	background: var(--white) !important;
}

#account-order .table-responsive .btn-success:hover .fa-refresh {
	color: var(--primary) !important;
}

.mobile-overlay {
	background-color: rgba(0, 0, 0, 0.25);
}

.form-switch .form-check-input {
	width: 3em !important;
	margin: 0 !important;
}

.form-switch .form-check-input:focus {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -4 8 8"><circle r="3" fill="%23c12127"/></svg>') !important;
}

.form-check-input:checked[type="checkbox"] {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -4 8 8"><circle r="3" fill="%23fff"/></svg>') !important;
}

#shopping-cart {
	margin-top: 1.5625rem !important;
	margin-bottom: 1.25rem;
}

#account-forgotten {
	margin-top: 12.5rem !important;
}

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

#checkout-checkout {
	margin-top: 25px !important;
	padding-bottom: 64px !important;
}

#checkout-checkout #accordion .panel-heading {
	border-radius: 0.625rem !important;
	background: transparent !important;
	padding: 0.9375rem 0.9375rem !important;
}

#checkout-checkout .panel-title {
	color: inherit !important;
}

#account-wishlist .table-responsive tbody .btn-danger {
	background: #BD002814 !important;
	transition: all 0.3s ease;
	border: none !important;

}

/* #account-wishlist .table-responsive tbody .btn-danger:hover {
background: var(--primary) !important;
border-color: var(--primary) !important;
} */

#account-wishlist .table-responsive tbody .btn-danger:hover svg {
	fill: #BD002814 !important;
}

#account-wishlist .table-responsive tbody .btn-danger:hover path {
	stroke: #c12127;
	fill: #c12127;
}

#account-wishlist .table-responsive tbody .btn-danger:hover path:nth-of-type(5) {
	fill: none !important;
}

#account-wishlist table .btn-danger .fa {
	color: var(--primary) !important;
	transition: color 0.3s ease;

}

#account-wishlist .table-responsive tbody .btn-danger:hover .fa {
	color: var(--white) !important;
}

#account-wishlist .table-responsive tbody .price {
	color: #000000 !important;
	font-weight: normal !important;
}

#biometric-login-btn {
	background: var(--secondary) !important;
}

#biometric-login-btn:hover {
	background: var(--primary) !important;
}

#biometric-float-trigger {
	background: var(--secondary) !important;
}

#biometric-float-trigger:hover {
	background: var(--primary) !important;
}

#biometric-modal-login-btn {
	background: var(--secondary) !important;
}

#biometric-modal-login-btn:hover {
	background: var(--primary) !important;
}

#account-address .table-responsive .btn-info,
#account-address .table-responsive .btn-danger {
	padding: 0.6875rem 1rem !important;
	background: rgba(189, 0, 40, 0.08) !important;
	border: none !important;
}

#account-address table tbody tr {
	border-bottom: 0.0625rem solid #000 !important;
}

#account-address table tbody tr td {
	padding-bottom: 1.25rem !important;
	padding-top: 1.25rem !important;
}

#account-address table tbody tr:last-child {
	border-bottom: none !important;
}

#account-register .form-check label.form-check-label {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	gap: 0.625rem;
	justify-content: start;
	align-items: center;
}

#account-register #form-register .text-end a {
	margin-left: 0.3125rem;
}

#form-register .text-end .form-check {
	padding: 0;
}

#account-newsletter fieldset input {
	border-radius: 2em !important;
}

#account-newsletter .form-switch {
	padding-left: 0 !important;
}

#account-order .table-responsive .btn-info {
	background: #BD002814 !important;
	border: none !important;
}

#account-order .table-responsive .btn-info:hover svg path {
	stroke: #c12127;
	fill: none;
}

#account-order .table-responsive .btn-info:hover .fa-eye {
	color: var(--white) !important;
}

#account-order .table-responsive .fa-eye {
	color: var(--primary) !important;
}

#reorder-modal-overlay .reorder-modal-content .reorder-modal-meta {
	margin-bottom: 0.9375rem !important;
	font-size: 1.25rem !important;
}

/* Table wrapper — allows horizontal scroll on small screens */
.reorder-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 0.375rem;
	border: 0.0625rem solid #e8e8e8;
	margin-bottom: 1rem;
}

/* Target both .table (legacy) and .iak-tbl (current template) */
#reorder-modal-overlay .reorder-tbl,
#reorder-modal-overlay .table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

#reorder-modal-overlay .reorder-tbl thead tr,
#reorder-modal-overlay .table thead tr {
	background-color: var(--table-heading) !important;
}

#reorder-modal-overlay .reorder-tbl thead tr th,
#reorder-modal-overlay .reorder-tbl thead tr td,
#reorder-modal-overlay .table thead tr th,
#reorder-modal-overlay .table thead tr td {
	padding: 0.625rem 0.75rem !important;
	white-space: nowrap !important;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #555;
	border-bottom: 0.0625rem solid #e8e8e8;
}

#reorder-modal-overlay .reorder-tbl tbody tr td,
#reorder-modal-overlay .table tbody tr td {
	padding: 0.75rem !important;
	border-bottom: 0.0625rem solid #f0f0f0;
	vertical-align: middle;
}

#reorder-modal-overlay .reorder-tbl tbody tr:last-child td,
#reorder-modal-overlay .table tbody tr:last-child td {
	border-bottom: none;
}

#reorder-modal-overlay .reorder-tbl tfoot tr td,
#reorder-modal-overlay .table tfoot tr td {
	padding: 0.625rem 0.75rem !important;
	white-space: nowrap !important;
	border-top: 0.0625rem solid #e8e8e8;
}

#reorder-modal-overlay .reorder-tbl tfoot tr.reorder-total-grand td,
#reorder-modal-overlay .table tfoot tr.reorder-total-grand td {
	font-weight: 700;
	font-size: 1rem;
}

/* Product name cell — allow wrapping, don't force min-width to nothing */
#reorder-modal-overlay .reorder-tbl td.text-left:nth-child(2) {
	min-width: 9rem;
}

/* Product option badge */
.reorder-product-option {
	display: inline-block;
	background: #f2e8e4;
	color: #7a3b2e;
	border-radius: 0.25rem;
	font-size: 0.6875rem;
	padding: 0.1875rem 0.5rem;
	margin-top: 0.25rem;
	font-weight: 500;
	white-space: nowrap;
}

#account-register .form-check-input {
	padding: 0.75rem 0.9375rem;
	font-size: 0.875rem;
}

#account-register .form-check-input {
	width: 2em !important;
	margin: 0 !important;
}

#checkout-checkout .form-check-input {
	min-width: 2em !important;
	margin: 0 !important;
}

#checkout-checkout .panel-body .form-switch {
	padding: 0;
}

#checkout-checkout .form-check-input {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");

	transition: background-position .15s ease-in-out;
}

#checkout-checkout .form-check-input:checked {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	margin: 0 !important;
}

#account-register .form-check-input:checked[type="checkbox"] {
	background-image: url(data:image/svg + xml,
<svgxmlns="http://www.w3.org/2000/svg" viewBox="-4 -4 8 8" ><circler="3" fill="%23fff" /></svg>) !important;
}

#account-register .form-check-input,
#checkout-checkout .form-check-input {
	border-radius: 2em !important;
	border: 0.0625rem solid var(--primary);
}

#checkout-checkout .form-check-label {
	margin-left: 0.625rem !important;
}

#checkout-checkout .form-check-input {
	margin-top: 0.3125rem !important;
}

#checkout-checkout .radio input {
	accent-color: var(--primary) !important;
}

#account-wishlist table tbody tr td:last-child {
	display: flex;
	align-items: stretch;
	gap: 0.3125rem;
	flex-direction: column;
}

.table-responsive .table tbody td.text-left a {
	font-weight: normal !important;
}

.modal-body h2 {
	font-size: 1.5rem !important;
}

.modal-body h1 {
	font-size: 1.875rem !important;
}

#account-login .form-group input,
#account-register #form-register input,
#account-forgotten input,
#account-edit .form-horizontal input,
#account-password input,
#account-address .form-horizontal input {
	font-size: 0.875rem !important;
}

#checkout-cart .table-responsive .input-group {
	max-width: 100%;
	width: 100%;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
}

#checkout-cart .table-responsive .input-group input,
#checkout-cart .table-responsive .input-group .btn-primary,
#checkout-cart .table-responsive .input-group .btn-danger {
	max-width: calc(33.33% - 0.3125rem) !important;
	width: 100% !important;
}

#checkout-cart .table-responsive .input-group input {
	min-width: auto !important;
}

#checkout-cart .table-responsive .input-group .btn-primary,
#checkout-cart .table-responsive .input-group .btn-danger {
	margin: 0 !important;
}

#checkout-cart .table-responsive .input-group .btn-primary {
	border: 0.0625rem solid var(--primary) !important;
}

#checkout-cart .table-responsive .input-group .btn-primary:hover {
	background: var(--white) !important;
}

#checkout-cart .table-responsive .input-group .btn-primary:hover .fa-refresh {
	color: var(--primary);
}

#checkout-cart .table-responsive .input-group .btn-danger {
	background: var(--white) !important;
	border: 0.0625rem solid var(--primary) !important;
}

#checkout-cart .table-responsive .input-group .btn-danger .fa {
	color: var(--primary) !important;
}

#checkout-cart .table-responsive .input-group .btn-danger:hover {
	background: var(--primary) !important;
}

#checkout-cart .table-responsive .input-group .btn-danger:hover .fa {
	color: var(--white) !important;
}

.accordion-button:focus {
	border-color: rgba(189, 0, 40, 0.4) !important;
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	color: var(--black);
	background-color: rgba(189, 0, 40, 0.08) !important;
	box-shadow: none !important;
	border: none !important;
	font-weight: 600 !important;
}

.accordion-button::after {
	width: 15px;
	height: 15px;
	background-size: contain;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,<svg xmlns=" http: //www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%23BD0028"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>") !important;
	transform: rotate(-180deg);
}

#checkout-cart #accordion .btn-primary,
#checkout-checkout .panel-group .btn-primary {
	padding: 0.625rem 0.9375rem !important;
	font-size: 1rem !important;
}

#checkout-cart table tbody tr td:nth-child(3) {
	width: 100%;

	min-width: 12.5rem;
	max-width: max-content;
}

#checkout-cart table tbody tr td:nth-child(2) {
	width: 100%;

	min-width: 12.5rem;
	max-width: max-content;
}

.shoppingcart-box {
	max-height: 100vh !important;
	display: flex !important;
	flex-direction: column !important;
}

.shoppingcart-box .cart-wrapper {
	flex: 1 1 auto !important;
	overflow-y: auto !important;
	overscroll-behavior: contain !important;
	padding-right: 0.3125rem !important;

}

.shoppingcart-box .cart-footer {
	flex-shrink: 0 !important;
}

#account-savecartlist .table-responsive thead tr td,
#account-savecartlist-info .table-responsive thead tr td {
	padding: 0.5625rem !important;
	white-space: nowrap;
}

#account-savecartlist .table thead tr td,
#account-savecartlist-info .table thead tr td {

	white-space: nowrap;
	padding: 0.5625rem !important;
	color: #191C1F !important;
}

#account-savecartlist .table tbody tr td,
#account-savecartlist-info .table tbody tr td {
	padding: 0.625rem;
	white-space: nowrap;
}

#account-savecartlist table tbody tr td:last-child {
	display: flex;
	align-items: stretch;
	gap: 0.3125rem;
	justify-content: center;
}

#account-savecartlist-info .input-group .form-control:last-child {
	border-bottom-left-radius: .25rem !important;
	border-top-left-radius: .25rem !important;
}

#account-savecartlist .table-responsive .btn-danger {
	background: rgba(189, 0, 40, 0.08) !important;
	border: none !important;
	min-width: auto !important;
	max-width: max-content;
	padding: 0.75rem 1.25rem;
}

#account-savecartlist .table-responsive .btn-danger:hover {
	background: var(--primary) !important;
}

#account-savecartlist .table-responsive .btn-danger:hover .fa-times {
	color: var(--white) !important;
}

#account-savecartlist .table-responsive .btn-danger .fa-times {
	color: var(--primary) !important;
}

#account-savecartlist .table-responsive .btn-primary {
	padding: 0.75rem 1.25rem;
	width: max-content;
	min-width: auto;
	background: rgba(189, 0, 40, 0.08) !important;
	border: none !important;
}

#account-savecartlist .table-responsive .btn-primary:hover svg path {
	stroke: #c12127;
	fill: none;
}

#account-savecartlist .table-responsive .btn-primary:hover .fa-eye {
	color: var(--primary) !important;
}

.btn-primary:focus,
.btn-primary:active {
	background-color: var(--primary) !important;

	border-color: var(--primary) !important;
	box-shadow: none !important;
	outline: none !important;
}

.btn-default:focus,
.btn-default:active {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	box-shadow: none !important;
	outline: none !important;
}

.btn-danger:focus,
.btn-danger:active {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	box-shadow: none !important;
	outline: none !important;
}

#account-address .alert-success {
	margin-bottom: 1.875rem !important;
}

/* #account-order .table-bordered {
display:block !important;
overflow-x:auto !important;
} */

#account-order .table-responsive .table tbody tr td {
	white-space:wrap !important;
}

.shop-products {
	display: grid;
	gap: 1.25rem;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
	grid-template-columns: repeat(5, 1fr);
}

.product-list {
	display: block !important;
}

.product-table {
	display: block !important;
}

.list-view-mode {
	display: block !important;
}

.list-view-mode .shop-product-box {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}

.table-view-mode .shop-product-box {
	display: grid;
	grid-template-columns: 9.375rem 1fr auto;
	align-items: center;
}

.list-view .btn.active {
	background: #D13B27;
	color: #fff;
}

.list-view .btn-gridview {
	border: none;
	color: #495057;
	float: left;
	padding: 0 0.3125rem;
	font-size: 1rem;
	background: transparent;
	display: none;
}

.form-check .form-check-input {
	float: none !important;
}

@media (min-width: 576px) and (max-width: 1100px) {
	.modal-dialog {
		max-width: 90%;
		margin: 1.75rem auto;
	}
}

@media (max-width: 1024px) {

	#account-wishlist,
	#account-forgotten,
	#checkout-checkout {
		margin-top: 5.625rem !important;
	}
}

@media (max-width: 991px) {
	.wishlist-share-wrap {
		margin: 0;
	}

	#checkout-cart ul.breadcrumb {
		margin-bottom: 1.25rem !important;
	}

	.btn-primary,
	.btn-default,
	.btn-danger,
	#account-address .btn-danger {
		min-width: auto !important;
		padding: 0.625rem 1rem !important;
	}

	.page-not-found-section-wrap .back-button {
		display: flex;
		padding: 0.625rem 1rem;
	}

	.wishlist-share-dropdown .btn {
		padding: 0.5rem !important;
		min-width: auto !important;
	}

	#account-wishlist .page-not-found-section {
		padding: 4.5rem 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#account-register .left_column {
		flex: 0 0 auto;
		width: 41.66% !important;
	}
}

@media (max-width: 586px) {
	#form-register .text-end {
		flex-wrap: wrap !important;
		gap: 0.9375rem !important;
	}

	.modal-body {
		padding: 0;
	}

	#reorder-modal-overlay .reorder-modal-content .reorder-modal-meta {
		font-size: 1rem !important;
	}

	.reorder-modal-title {
		font-size: 1.375rem;
	}
}

@media (min-width: 340px) and (max-width: 576px) {
	.wishlist-share-dropdown {
		left: -140% !important;
	}
}

@media (max-width: 389px) {
	.form-switch .form-check-input {
		margin-top: -1.3em !important;
	}

	#account-newsletter .form-horizontal fieldset .row {
		gap: 1.25rem !important;
	}
}

@media (max-width: 576px) {
	.modal-dialog {
		max-width: 90% !important;
		margin: 1.75rem auto !important;
	}

	.modal-content .modal-header {
		padding: 1.25rem;
	}

}


#information-information h1 {
	display: none;
}

#information-information h2 {
	color: var(--primary) !important;
	font-family: var(--font-primary);
	font-size: 26px;
	font-weight: 600;
}

#information-information p {
	color: var(--heading-color);
	font-family: var(--font-primary);
	font-size: 18px;
	font-weight: 400;
	padding: 0 !important;
}

#information-contact {
	padding-top: 1.625rem;
	margin-top: 10.5625rem;
}

#account-affiliate {
	padding-top: 1.625rem;
	margin-top: 10.5625rem;
}

#product-compare {
	padding-top: 1.625rem !important;
}

#account-completeprofile {
	padding-top: 1.625rem;
}

#account-uploadcsv {
	padding-top: 1.625rem;
}

.contact-form .btn {
	background: var(--primary) !important;
	color: var(--white) !important;
	padding: 1rem 2.25rem !important;
	font-size: 1.125rem !important;
	font-weight: 500 !important;
}

.contact-form .btn:hover {
	background-color: var(--secondary) !important;
}

.info-content address {
	margin-bottom: 0;
}

.info-content {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.info-content br {
	display: none;
}

.info-content strong {
	color: var(--primary);
	font-size: 1.25rem;
}

#account-affiliate {
	padding-top: 1.625rem;
	margin-top: 10.5625rem;
}

#product-compare {
	padding-top: 1.625rem !important;
	margin-top: 10.5625rem !important;
}

#account-completeprofile {
	padding-top: 1.625rem;
	margin-top: 10.5625rem;
}

#account-uploadcsv {
	padding-top: 1.625rem;
	margin-top: 10.5625rem;
}

.radio input {
	accent-color: var(--primary) !important;
}

#information-information .information-content {
	max-width: 100% !important;
	padding : 20px 0 !important;
}

.item-article div {
	max-width: 100% !important;
	padding: 20px 0 0 0 !important;
}

#product-compare table tbody .text-center {
	display: flex;
	align-items: center;
	gap:0.625rem;
}

#product-compare #content {
	width: 100%;
	overflow: auto;
}

#product-compare table thead tr td {
	padding: 0.5625rem;
}

#product-compare table thead tr {
	background-color: var(--table-heading) !important;
}

@media(max-width:576px) {
	#product-compare table tbody .text-center {
		flex-direction: column;
		align-items: flex-start;
		gap:0;
	}
}

.panel-default .form-group label {
	margin-bottom: 0.625rem;
}

.panel-default .form-group label {
	color: var(--primary);
	font-weight: 500;
}






/* 23-3-26 css changes  */

#account-login .card {
	border: 1px solid #BD002899;
	background-color: #F6F6F699 !important;
	border-radius: 0.625rem !important;
	max-width: 650px;
}

.card-body h2 {
	font-size: 2rem;
	margin: 0 0 1.25rem 0;
}

.card-body p:first-of-type {
	color: #1F1F1F !important;
	font-size: 1.25rem;
}

.card-body p:first-of-type strong {
	font-weight: 500;
}

.card-body .btn.btn-primary {
	margin-top: 1.5rem;
}

#account-password fieldset legend {
	font-size: 1.25rem;
	font-weight: 500;
	color: #1F1F1F;
	padding: 0;
}

#account-address .table-responsive .table {
	border: 0.063rem solid #BD002880 !important;
	border-radius: 0.75rem;
	overflow: hidden;
	border-spacing: 0;
	border-collapse: separate;
}

/* legacy #account-address input[type=submit] font-size removed — superseded by iak-pill-btn (vform) */

.table-responsive .table .text-left {
	padding: 0.625em;
}

#account-address .buttons {
	justify-content: space-between;
	margin-top: 1.5rem;
}


#account-wishlist tbody, #account-wishlist td, #account-wishlist tfoot, #account-wishlist th, #account-wishlist thead, #account-wishlist tr {
	border-color: #F5894633 !important;
}

#account-wishlist tbody tr {
	background-color: #FEF9F2;
}

#account-wishlist .table-responsive thead tr {
	background-color: #F6F6F6;

}

#account-wishlist .table-responsive thead tr td {
	color: #191C1F !important;
}

#account-wishlist table .btn-primary {
	background-color: #BD002814 !important;
	border: none !important;
}

#account-wishlist .table-responsive td {
	color: #1F1F1F;
}

#account-wishlist .table-responsive {
	margin-bottom: 0;
	border-radius: 0.625rem;
}

#account-wishlist table tbody tr:last-child {
	/* border-bottom: 1px solid #C5C5C580 !important; */
	border-radius: 0 0 0.625rem 0.625rem !important;
}

#account-wishlist table.table.table-bordered.table-hover {
	margin-bottom: 0;
}

/* 
#account-wishlist thead tr td svg path {
stroke: #FFFFFF !important;
} */

#account-order .table-responsive {
	margin-bottom: 50px;
	border-radius: 0.625rem;
}

#account-order .table thead tr td {
	color: #191C1F !important;
}

#account-order tbody, #account-order td, #account-order tfoot, #account-order th, #account-order thead, #account-order tr {
	border-color:#F5894633 !important;
}


#account-order tbody tr {
	background: #FEF9F2 !important;
}

#account-order td {
	color: #1F1F1F;
}


#account-order .buttons {
	margin-top: 1.5rem;
}


#account-order table tbody tr:last-child {
	border-bottom: 0px solid #C5C5C580 !important;
	border-radius: 0 0 0.625rem 0.625rem !important;
}

#account-order table.table.table-bordered.table-hover {
	margin-bottom: 0;

}




#account-download p {
	font-size: 1.25rem;
	margin-bottom: 1.875rem !important;
}

#account-download .buttons {
	justify-content: flex-end;
}

#account-recurring p {
	font-size: 1.25rem;
	margin-bottom: 1.875rem !important;
}

#account-recurring .buttons {
	justify-content: flex-end;
}


#account-reward .table thead tr td {
	color: #191C1F !important;
}

#account-reward tbody, #account-reward td, #account-reward tfoot, #account-reward th, #account-reward thead, #account-reward tr {
	border-color:#F5894633 !important;
}



#account-reward table tbody tr {
	background: #FEF9F2 !important;
}



#account-reward .table-responsive {
	margin-bottom: 0.688rem;
	border-radius: 0.625rem;
}

#account-reward .table-responsive table.table.table-bordered.table-hover {
	margin-bottom: 0;
}

#account-reward table tbody {
	border-bottom: 0px solid #C5C5C580 !important;
	border-radius: 0 0 0.625rem 0.625rem !important;
}

#account-reward .row {
	color: #818285;
}

#account-reward .buttons {
	justify-content: flex-end;
}



#account-return p {
	font-size: 1.25rem;
	margin-bottom: 1.875rem !important;
}

#account-return .buttons,
.iak-acct__main .buttons {
	justify-content: flex-end;
}




#account-transaction .table thead tr td {
	color: #191C1F !important;
}

#account-transaction tbody, #account-transaction td, #account-transaction tfoot, #account-transaction th, #account-transaction thead, #account-transaction tr {
	border-color:#F5894633 !important;
}

#account-transaction .table-responsive {
	margin-bottom: 0.688rem;
	border-radius: 0.625rem;
}

#account-transaction table tbody {
	border-bottom: 1px solid #F5894633 !important;
	border-radius: 0 0 0.625rem 0.625rem !important;
}

#account-transaction .buttons {
	justify-content: flex-end;
}

#account-transaction .row,
#account-order .row {
	color: #818285;
}

#account-transaction tbody tr {
	background: #FEF9F2;
}



/* date:24/3/26 changes */

#account-newsletter form fieldset {
	border: 1px solid #BD002866;
	padding: 1.125rem 0.688rem;
	border-radius: 0.375rem;
}

#account-newsletter form fieldset .row {
	margin-bottom: 0 !important;
	color: #818285;
	font-size: 0.875rem;
}


#account-newsletter .buttons {
	margin-top: 2.063rem !important;
}

#common-success #content p {
	color: #818285;
	margin-bottom: 0.875rem !important;
}


#common-success .buttons {
	margin-top: 1.875rem;
	justify-content: flex-end;
}



.content-aside .list-group {
	gap:0.75rem;
}

/* #account-login */


#account-login form fieldset {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 0 12px 15px;
	margin-bottom: 15px;
}

#account-login .form-control {
	background: transparent;
	padding: 15px 5px 0 !important;
	border: none !important;
	font-size: 14px !important;
	color: #818285;
}



#account-login form fieldset legend {
	font-size: 14px;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 6px;
	margin-bottom: 0;
	float: none;
}

#account-login form fieldset input_.form-control_ {
	border: none;
	padding: 6px 3px;
	font-size: 14px;
	box-shadow: none;
	background: transparent;
}

#account-login form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-login form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-login form fieldset:focus-within legend {
	color: #1F1F1F;
}

#account-login form > a {
	color: #818285 !important;
	font-weight: 400;
	transition: all 0.5s ease;
	display: inline-block;
	font-size: 0.875rem;
}

#account-login form > a:hover {
	color: #1F1F1F !important;
}


#account-login #content {
	width: 100%;
}

/* #account-login #content .row {
justify-content: center;
gap: 111px
} */

/* #account-login #content .row div {
max-width: 650px;
width: 100%;
} */

#account-account h2:not(:first-of-type) {
	margin-top: 40px;
}





#account-edit form fieldset {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-bottom: 0.938rem;
}

/* legacy #account-edit .form-control override removed — superseded by iak-account.css redesign (vform) */



#account-edit form fieldset legend {
	font-size: 14px;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 6px;
	margin-bottom: 0;
	float: none;
}

#account-edit form fieldset input_.form-control_ {
	border: none;
	padding: 6px 3px;
	font-size: 14px;
	box-shadow: none;
	background: transparent;
}

#account-edit form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-edit form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-edit form fieldset:focus-within legend {
	color: #1F1F1F;
}



#content>h3,
h3.form-section-title {
	color: #1F1F1F;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

#account-newsletter .form-check.form-switch.form-switch-lg {
	display: flex;
	align-items: center;
	gap:0.625rem;
}


/* Hide default style */
#input-newsletter,
#form-register .form-check-input {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	width: 1.531rem !important;
	height: 0.875rem;
	border: 1px solid #c12127;
	border-radius: 3.125rem;
	/* background: transparent; */
	cursor: pointer;
	transition: 0.3s;
	padding: 0 !important;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Circle */
#input-newsletter::before,
#form-register .form-check-input::before {
	content: "";
	position: absolute;
	height: 0.438rem;
	width:0.438rem;
	left: 0.188rem;
	top: 0.188rem;
	background-color: #BD002866;
	border-radius: 50%;
	border: 1.5px solid #c12127;
	transition: 0.3s;
}

/* Checked state */
#input-newsletter:checked,
#form-register .form-check-input:checked {
	background-color: transparent !important;
}

/* Move circle */
#input-newsletter:checked::before,
#form-register .form-check-input:checked::before {
	transform: translateX(0.688rem);
}


#account-address form fieldset {
	border: 1px solid #ddd;
	border-radius: 0.375rem;
	margin-bottom: 0.938rem;
}

/* legacy #account-address .form-control override removed — superseded by iak-account.css redesign (vform) */



#account-address form fieldset legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 0.375rem;
	margin-bottom: 0;
	float: none;
}

#account-address form fieldset input .form-control_ {
	border: none;
	padding: 0.375rem 0.188rem;
	font-size: 0.875rem;
	box-shadow: none;
	background: transparent;
}

#account-address form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-address form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-address form fieldset:focus-within legend {
	color: #1F1F1F;
}



#account-return form fieldset {
	border: 1px solid #ddd;
	border-radius: 0.375rem;
	margin-bottom: 0.938rem;
}

/* legacy #account-return .form-control override removed — superseded by iak-account.css redesign (vform) */



#account-return form fieldset legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 0.375rem;
	margin-bottom: 0;
	float: none;
}

#account-return form fieldset input .form-control_ {
	border: none;
	padding: 0.375rem 0.188rem;
	font-size: 0.875rem;
	box-shadow: none;
	background: transparent;
}

#account-return form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-return form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-return form fieldset:focus-within legend {
	color: #1F1F1F;
}



#account-password form fieldset {
	border: 1px solid #ddd;
	border-radius: 0.375rem;
	margin-bottom: 15px;
}

/* legacy #account-password .form-control override removed — superseded by iak-account.css redesign (vform) */



#account-password form fieldset legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 0.375rem;
	margin-bottom: 0;
	float: none;
}

#account-password form fieldset input .form-control_ {
	border: none;
	padding: 0.375rem 0.188rem;
	font-size: 0.875rem;
	box-shadow: none;
	background: transparent;
}

#account-password form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-password form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-password form fieldset:focus-within legend {
	color: #1F1F1F;
}




#account-register #form-register fieldset {
	border: 1px solid #ddd;
	border-radius: 0.375rem;
	margin-bottom: 0.938rem;
}


#account-register #form-register .form-control {
	background: transparent;
	padding: 0 5px !important;
	border: none !important;
	font-size: 0.875rem !important;
	color: #818285 !important;
}




#account-register #form-register fieldset legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 0.375rem;
	margin-bottom: 0;
	float: none;
}


#account-register #form-register fieldset input .form-control_ {
	border: none;
	padding: 0.375rem 0.188rem;
	font-size: 0.875rem;
	box-shadow: none;
	background: transparent;
}


#account-register #form-register fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}


#account-register #form-register fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}


#account-register #form-register fieldset:focus-within legend {
	color: #1F1F1F;
}


/* Hide default style */
/* .form-check-input {
appearance: none;
-webkit-appearance: none;
position: relative;
width: 24.5px !important;
height: 14px;
border: 1px solid #1F1F1F !important;
border-radius: 50px;
/* background: transparent; */
/* cursor: pointer;
transition: 0.3s;
padding: 0 !important;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */


/* Circle */
/* .form-check-input::before {
content: "";
position: absolute;
height: 7px;
width: 7px;
left: 2.5px;
top: 2.5px;
background-color: gray;
border-radius: 50%;
border: 2px solid #1F1F1F;
transition: 0.3s;
} */

/* Checked state */
/* .form-check-input:checked {
background-color: #c12127 !important;
}

/* Move circle */
/* .form-check-input:checked::before {
transform: translateX(11px);
} */

#account-completeprofile .form-horizontal fieldset {
	border: 1px solid #ddd;
	border-radius: 0.375rem;
	margin-bottom: 0.938rem;
}

/* legacy #account-completeprofile .form-control override removed — superseded by iak-account.css redesign (vform) */



#account-completeprofile .form-horizontal fieldset legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 0.375rem;
	margin-bottom: 0;
	float: none;
}

#account-completeprofile .form-horizontal fieldset input .form-control_ {
	border: none;
	padding: 0.375rem 0.188rem;
	font-size: 0.875rem;
	box-shadow: none;
	background: transparent;
}

#account-completeprofile .form-horizontal fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-completeprofile .form-horizontal fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-completeprofile .form-horizontal fieldset:focus-within legend {
	color: #1F1F1F;
}





#information-contact .form-horizontal fieldset {
	border: 1px solid #ddd;
	border-radius: 0.375rem;
	margin-bottom: 0.938rem;
}

#information-contact .form-control {
	background: transparent;
	padding: 0 5px !important;
	border: none !important;
	font-size: 0.875rem !important;
	color: #818285;
}



#information-contact .form-horizontal fieldset legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 0.375rem;
	margin-bottom: 0;
	float: none;
}

#information-contact .form-horizontal fieldset input .form-control_ {
	border: none;
	padding: 0.375 0.188;
	font-size: 0.875;
	box-shadow: none;
	background: transparent;
}

#information-contact .form-horizontal fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#information-contact .form-horizontal fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#information-contact .form-horizontal fieldset:focus-within legend {
	color: #1F1F1F;
}


#account-return .form-horizontal .form-check-input:checked {
	margin-left: -1.5em !important;
}

#account-return .form-check.form-check-inline .form-check-input:checked {
	margin: 0 !important;
}




#account-savecartlist .table-responsive thead tr {
	background-color: #FDDBC2 !important;
}

#account-savecartlist tbody, #account-savecartlist td, #account-savecartlist tfoot, #account-savecartlist th, #account-savecartlist thead, #account-savecartlist tr {
	border-color:#F5894633 !important;

}

#account-savecartlist .table-responsive {
	margin-bottom: 0;
	border-radius: 0.625rem;
}

#account-savecartlist table.table.table-bordered.table-hover {
	margin-bottom: 0;
}

#account-savecartlist table tbody {
	border-bottom: 0px solid #C5C5C580 !important;
	border-radius: 0 0 0.625rem 0.625rem !important;
}

#account-savecartlist .buttons {
	justify-content: flex-end;
}

#account-savecartlist #form-saved-carts tbody tr {
	background: #F6F6F6 !important;
}

#account-savecartlist .clearfix {
	margin-top: 2.5rem !important;
}


#form-saved-cart tbody, #form-saved-cart td, #form-saved-cart tfoot, #form-saved-cart th, #form-saved-cart thead, #form-saved-cart tr {
	border-color:#C5C5C580 !important;
	background: #F6F6F6 !important;
}

#form-saved-cart .table-responsive {
	margin-bottom: 0;
	border-radius: 0.625rem;
}

#form-saved-cart table.table.table-bordered.table-hover {
	margin-bottom: 0;
}

#form-saved-cart table tbody {
	border-bottom: 1px solid #C5C5C580 !important;
	border-radius: 0 0 0.625rem 0.625rem !important;
}

#account-savecartlist .buttons {
	justify-content: flex-end;
}

#account-savecartlist #form-saved-carts tbody tr {
	background: #F6F6F6 !important;
}

#account-savecartlist .clearfix {
	margin-top: 2.5rem !important;
}

#account-reward table tbody tr td,
#account-transaction table tbody tr td {
	color: #1F1F1F;
}

#account-completeprofile {
	padding-bottom: 7.5rem;
}

/* 25-3-26 changes */



#account-edit h3 {
	margin-bottom: 1.25rem;
}



#account-login, #account-register, #account-account, #account-edit, #account-password, #account-address, #account-order, #account-download, #account-recurring, #account-reward, #account-return, #account-transaction, #account-newsletter, #common-success {
	padding-bottom: 1.625rem;
}

/* 
26/3/26 changes */
#affiliate-login .well {
	border: 1px solid #BD002899;
	background-color: #F6F6F699;
	border-radius: 0.625rem !important;
	padding: 1.875rem;
}

#affiliate-login .well h2 {
	font-size: 2rem;
	margin: 0 0 1.25rem 0;
}

/* .row:nth-of-type(2) .well p {
color: #1F1F1F !important;
font-size: 1.25rem !important;
} */
#affiliate-login .well p {
	color: #6b6b6b;
	font-size: 1rem !important;
}


#affiliate-login .btn.btn-primary {
	margin-top: 1.5rem;
}

#affiliate-login .well .returning_affiliate_title {
	color: #1F1F1F;
	font-size: 1.25rem !important;
}

#affiliate-login .well .returning_affiliate_title strong {
	font-weight: 500;
}

#affiliate-login form fieldset {
	margin-bottom: 15px;
}

#affiliate-login .form-control {
	background: transparent;
	padding: 0 5px !important;
	border: none !important;
	font-size: 14px !important;
	color: #818285;
}



#affiliate-login form fieldset legend {
	font-size: 14px;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 6px;
	margin-bottom: 0;
	float: none;
}

#affiliate-login form fieldset input_.form-control_ {
	border: none;
	padding: 6px 3px;
	font-size: 14px;
	box-shadow: none;
	background: transparent;
}

#affiliate-login form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#affiliate-login form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#affiliate-login form fieldset:focus-within legend {
	color: #1F1F1F;
}

#affiliate-login form > a {
	color: #818285 !important;
	font-weight: 400;
	transition: all 0.5s ease;
	display: inline-block;
	font-size: 0.875rem;
}

#affiliate-login form > a:hover {
	color: #1F1F1F !important;
}














#account-forgotten form fieldset {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-bottom: 15px;
}

#account-forgotten .form-control {
	background: transparent;
	padding: 0 5px !important;
	border: none !important;
	font-size: 14px !important;
	color: #818285;
}



#account-forgotten form fieldset legend {
	font-size: 14px;
	font-weight: 500;
	color: #818285;
	width: auto;
	padding: 0 6px;
	margin-bottom: 0;
	float: none;
}

#account-forgotten form fieldset input_.form-control_ {
	border: none;
	padding: 6px 3px;
	font-size: 14px;
	box-shadow: none;
	background: transparent;
}

#account-forgotten form fieldset input_.form-control:focus_ {
	border: none !important;
	outline: none;
	box-shadow: none;
}

#account-forgotten form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#account-forgotten form fieldset:focus-within legend {
	color: #1F1F1F;
}

#account-forgotten form > a {
	color: #818285 !important;
	font-weight: 400;
	transition: all 0.5s ease;
	display: inline-block;
	font-size: 0.875rem;
}

#account-forgotten form > a:hover {
	color: #1F1F1F !important;
}

#account-login #content .row > div:first-of-type .card {
	background: transparent !important;
}





/* 27-03-26 changes  */

.shop-products-wrap.dropdown-open .list-view {
	display: none;
}


/* 30/03/26 changes */
#account-login, #account-register, #account-account, #account-edit, #account-password, #account-address, #account-order, #account-download, #account-recurring, #account-reward, #account-return, #account-transaction, #account-newsletter, #common-success {
	padding-bottom: 7.5rem !important;
}




@media (max-width:26.563rem) {
	#account-login .card-body {
		padding: 1.25rem;
	}

	.card-body h2,
	#affiliate-login .well h2 {
		font-size: 1.75rem;
		margin: 0 0 1.25rem 0;
	}
}

thead tr td:first-child {
	border-radius: 0;
	border-left: none;
}

thead tr td:last-child {
	border-radius: 0;
	border-right: none;
}

thead tr td {
	border-right: 0.063rem solid #F5894633;
}

tbody tr:last-child td:first-child {
	border-radius: 0;
}

tbody tr:last-child td:last-child {
	border-radius: 0;
}

.table tbody tr td:last-child {
	border-right: none;
}

/* 07/04/2026 */

/* tbody, td, tfoot, th, thead, tr{
border-style: none;
}

.table-bordered>:not(caption)>* {
border-width: 1px 0;
} */

/* table tbody tr:last-child{
border-bottom: 0 !important;
} */



/* 08-04-26 */

#input-newsletter,
#form-register .form-check-input {
	border: 1px solid var(--primary);
	/* background-color: transparent !important; */
}

#input-newsletter::before,
#form-register .form-check-input::before {
	background-color: var(--white) !important;
	top: 0.156rem !important;
	/* border: 1px solid var(--white); */
}

.form-switch .form-check-input {
	background-image: none;
}


.form-check-input:checked[type="checkbox"] {
	background-image: none;
}

.form-check-input:checked[type="checkbox"] {
	background-image: none !important;
}

#input-newsletter:checked::before,
#form-register .form-check-input:checked::before {
	border-color: var(--primary) !important;
	background-color: var(--primary) !important;
}

#input-newsletter:checked,
#form-register .form-check-input:checked {
	background-color: var(--white) !important;
}

/* input Placeholder float to top effect in whole site start CSS*/

/* Floating legend label */
fieldset.form-field {
	position: relative;
	border: 1px solid #d0d7e2;
	border-radius: 6px;
	padding: 14px 12px 10px;
}

fieldset.form-field > legend {
	position: absolute;
	left: 10px;
	top: 17px;
	margin: 0;
	padding: 0 6px;
	color: #afbdcf;
	font-size: 16px;
	line-height: 1;
	transition: 0.2s ease all;
	pointer-events: none;
}

fieldset.form-field:focus-within > legend,
fieldset.form-field.has-value > legend {
	top: -6px;
	font-size: 12px;
	color: #afbdcf;
	background: #fafafa;
}

/* Optional: remove default focus outline (keep if you want accessibility) */
fieldset.form-field input:focus {
	outline: none;
}

/* input Placeholder float to top effect in whole site end CSS*/


/* Homepage GIF to VIDEO CSS fixes starts*/
.bottom-gif-item {
	aspect-ratio: 16/9;
}

.bottom-gif-item video {
	object-fit: fill;
	width: 100%;
	height: 100%;
}

.hero-banner-section .bottom-gifs:last-of-type {
	margin-top: 30px;
}

@media (max-width:992px) {
	.hero-banner-section .bottom-gifs:last-of-type {
		margin-top: 20px;
	}
}

/* Homepage GIF to VIDEO CSS fixes ends*/

.custom-select-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 13px;
}

.custom-select-wrapper #input-country {
	width: 100% !important;
	padding: 8px 36px 8px 12px !important;
	border: 1px solid #ddd !important;
	border-radius: 4px !important;
	background-color: #fff !important;
	-webkit-appearance: none !important;
	-moz-appearance: none;
	appearance: none;
}

.custom-select-wrapper select#input-custom-field5 {
	width: 100% !important;
	padding: 14px 36px 14px 12px !important;
	border: 1px solid #ddd !important;
	border-radius: 6px !important;
	-webkit-appearance: none !important;
	-moz-appearance: none;
	appearance: none;
}

.custom-select-wrapper span {
	transform: none !important;
}


.custom-select-wrapper #input-zone {
	width: 100% !important;
	padding: 8px 36px 8px 12px !important;
	border: 1px solid #ddd !important;
	border-radius: 4px !important;
	background-color: #fff !important;
	-webkit-appearance: none !important;
	-moz-appearance: none;
	appearance: none;
}

fieldset.form-field:focus-within > legend, fieldset.form-field.has-value > legend {
	background-color: var(--white) !important;
}

.custom-datepicker-wrapper #input-date-ordered {
	border: 1px solid #ced4da !important;
	padding: 0.675rem .75rem !important;
	font-size: 0.875rem !important;
	color: #818285;
}

.custom-datepicker-wrapper legend {
	margin-bottom: 0;
}

.custom-datepicker-wrapper {
	margin-bottom: 0.875rem;
}

#content form fieldset {
	margin-bottom: 0.938rem;
}

/* #content .form-control {
background: transparent;
padding: 0 !important;
border: none !important;
font-size: 0.875rem !important;
color: #818285;
} */

#content fieldset.form-field {
	padding: 14px 12px 14px;
}

#content form fieldset:focus-within {
	border-color: rgba(189, 0, 40, 0.4) !important;
}

#content form fieldset:focus-within legend {
	color: #1F1F1F;
}

#content fieldset.form-field > legend {
	width: max-content;
}

/* .footer-selectors {
display: none;
} */

.order-table-row td:last-child {
	border-right: none;
}

.form-switch .form-check-input:focus {
	background-image: none !important;
}

.table>:not(:first-child) {
	border-top: 0 !important;
}

.table tbody tr td {
	border-right: 0.063rem solid #F5894633;
	border-left: none;
}

table tbody tr {
	border-bottom: 0.063rem solid #F5894633;
	background-color: #FEF9F2;
	border-left: 0;

}

table tbody tr:nth-child(even) {
	background-color: #FEF9F2;
}

#account-address .custom-select-wrapper .form-control {
	width: 100% !important;
	padding: 8px 36px 8px 12px !important;
	border: 1px solid #ddd !important;
	border-radius: 4px !important;
	background-color: #fff !important;
	-webkit-appearance: none !important;
}

@media (max-width: 1024px) {
	.regular-deals-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.deal-card {
		width: 100%;
	}

	.best-seller-name {
		font-size: 1.125rem;
	}

	.best-seller-price span {
		font-size: 1rem;
	}

	.shop-box-title {
		font-size: 1.125rem;
	}
}

@media (max-width:768px) {
	.featured-deal-card {
		border-right: 0.0625rem solid #e4e7e9;
	}

	.regular-deals-wrapper {
		border-left: 0;
	}


}

/* Mobile */
@media (max-width: 600px) {
	.regular-deals-wrapper {
		grid-template-columns: 1fr;
	}

	.deal-card {
		width: 100%;
	}

	.best-seller-content {
		padding: 0 0.75rem;
	}

	.promo-banner-image {
		bottom: 50%;
		height: 100%;
	}

	.featured-products-header {
		padding-top: 3.75rem;
	}

	.service-title {
		font-size: 1.125rem;
	}

	.service-desc {
		font-size: 0.875rem;
	}

	.service-features-row {
		gap: 0.5rem;
	}

	.best-sellers-tab {
		font-size: 0.875rem;
		padding: 0.75rem;
	}

}

#checkout-cart #content, #product-compare #content {
	margin-bottom: 25px;
}

#form-saved-cart,
#form-contact {
	padding-bottom: 50px;
}

.no-products-msg {
	grid-column: 1 / -1;
}

#product-manufacturer {
	padding-bottom: 50px;
}

table.table-bordered thead>* {
	background-color: #FDDBC2;
}

input[type="radio"],
input[type="checkbox"] {
	accent-color: var(--primary);
}

#account-affiliate #content label.form-check-label {
	margin-bottom: 20px;
}

#account-affiliate .form-field .form-check {
	padding-left: 0 !important;
}

#account-affiliate .form-field .form-check input {
	margin-right: 5px;
}

#account-affiliate .form-horizontal .clearfix {
	margin-top: 0 !important;
}

#account-register .form-field-group {
	padding: 14px 22px;
}

#account-register .form-switch {
	padding-left: 0 !important;
	padding-bottom: 15px
}

#affiliate-register .form-control {
	background: transparent;
	padding: 0 !important;
	border: none !important;
	font-size: 0.875rem !important;
	color: #818285;
}

#affiliate-register .form-horizontal .clearfix {
	margin-top: 0 !important;
}

#affiliate-register .form-horizontal .clearfix .form-check {
	padding-left: 0 !important;
	padding-bottom: 15px;
}

#account-return .table-responsive {
	margin-bottom: 0;
	border-radius: 0.625rem;
}

#affiliate-register {
	padding-top: 1.625rem;
	margin-top: 10.5625rem;
	margin-bottom: 1.875rem;
}

#affiliate-register #content label.form-check {
	margin-bottom: 20px !important;
	padding-left: 0 !important;
}

#affiliate-register .custom-field .custom-select-wrapper span {
	top: 30% !important;
}

#account-register #content label.form-check-label {
	margin-bottom: 20px !important;
	padding-left: 0 !important;
}

#account-register #content label.form-check-label input {
	margin-top:5px !important;
}

#common-success {
	padding-top: 25px !important;
    padding-bottom: 64px !important;
}

#common-success .buttons a.btn {
	font-size: 16px !important;
    padding: 10px 20px;
}

fieldset.g-captcha {
	border: none !important;
}

fieldset.g-captcha legend {
	display: none;
}

fieldset.g-captcha .form-group label {
	width: 100%;
}

#account-wishlist .page-not-found-section {
	padding: 0 0 !important;
}

#account-wishlist .page-not-found-section .container {
	padding: 0 !important;
}

#account-wishlist .page-not-found-section-wrap {
	align-items: flex-start;
    justify-content: flex-start;
}

#account-wishlist .page-not-found-section-wrap p {
	font-size: 23px;
    margin: 0 0 15px;
}

#account-wishlist .page-not-found-section-wrap a {
	font-size: 16px;
    height: initial;
    min-height: inherit;
    padding: 8px 26px;
    border-radius: 8px;
    text-transform: capitalize;
}