:root {
	--primary: #6e4594;/* --primary: #d197ca; */
	--primary-rgb: 110 69 148;
	--secondary: #cca2cc;/* --secondary: #97d19e; */
	--secondary-rgb: 204 162 204;

	--primary-gradient: linear-gradient(90deg, rgba(var(--primary-rgb) / 100%) 0%, rgba(var(--secondary-rgb) / 100%) 65%, rgba(var(--alt1-rgb) / 100%) 100%);
	--secondary-gradient: linear-gradient(90deg, rgba(var(--alt1-rgb) / 100%) 0%, rgba(var(--secondary-rgb) / 100%) 65%, rgba(var(--primary-rgb) / 100%) 100%);

	--alt1: #f2e5f2;/* --alt1: #f3e6f2; */
	--alt1-rgb: 242 229 242;
	--alt2: #412669;/* --alt2: #402c47; */
	--alt3: #33472c;

	/* --primarybg: var(--secondary); */
	/* --primarybg: var(--primary); */
	/* --secondarybg: #f8f8f8; */
	/* --secondarybg: var(--alt1); */

	/* --bgfooter: #8f8f8f; */
	/* --bgfooter: var(--alt2); */
	/* --bg-breadcrumb: var(--primary); */

	--black: #000000;
	--white: #ffffff;
	--light: #f8f8f8;
	
	--title: var(--black);
	--text: #121212;
	/* --btn: #121212; */
	--btn: #ffffff;
	--footertitle: var(--white);
	--footertext: var(--white);
	
	/* --roboto: "Roboto", sans-serif; */
	
	--transition: all 0.2s ease;
}
.bg-shape {
	background: -webkit-gradient(linear, left top, left bottom, from(var(--alt2)), color-stop(var(--primary)), color-stop(var(--secondary)), to(var(--alt1)));
	background: linear-gradient(to bottom, var(--alt2), var(--primary), var(--secondary), var(--alt1));
}
.bg-shape-reverse {
	background: -webkit-gradient(linear, left top, left bottom, from(var(--alt1)), color-stop(var(--secondary)), color-stop(var(--primary)), to(var(--alt2)));
	background: linear-gradient(to bottom, var(--alt1), var(--secondary), var(--primary), var(--alt2));
}
.img-shape .elementor-widget-wrap {
	position: absolute;
	inset: auto 0px -1px 0px;
}
.img-shape-reverse .elementor-widget-wrap {
	position: absolute;
	/* inset: -1px 1px auto 1px; */
	/* inset: 0px 0px auto 0px; */
	inset: -1px 0px auto 0px;
	/* inset: -110px 1px auto 1px; */
	transform: rotateX(180deg);
	/* transform: rotate(190deg); */
}
.decoration-title {
	position: relative;
	padding-bottom: 60px;
}
.decoration-title:after {
	content: '';
	display: block;
	width: 429px;
	height: 27px;
	background-image: url(/img/cms/decorations/title-h2.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}
.decoration-title-left .elementor-heading-title,
.decoration-title-right .elementor-heading-title,
.decoration-title-inline .elementor-heading-title {
	position: relative;
	display: inline-block;
	/* padding-bottom: 60px; */
}
.decoration-title-left .elementor-heading-title:before,
.decoration-title-right .elementor-heading-title:after,
.decoration-title-inline .elementor-heading-title:before,
.decoration-title-inline .elementor-heading-title:after {
	content: '';
	display: block;
	width: 137px;
	height: 8px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.decoration-title-left .elementor-heading-title:before,
.decoration-title-inline .elementor-heading-title:before {
	background-image: url(/img/cms/decorations/title-start.png);
	left: 0%;
	transform: translate(-150px, -50%);
}
.decoration-title-right .elementor-heading-title:after,
.decoration-title-inline .elementor-heading-title:after {
	background-image: url(/img/cms/decorations/title-end.png);
	right: 0%;
	transform: translate(150px, -50%);
}
.btn-unstyle:focus .expand-more,
.search-widget form input[type=text]:focus + button .search {
    color: var(--alt2);
}
.btn-primary {
	color: var(--btn);
	background-color: var(--primary);
	/* border-color: transparent; */
	transition: 0.3s ease;
	/* border-radius: 5px; */
	border-radius: 50px;
}
.btn-primary.disabled:hover, .btn-primary:disabled:hover {
	color: var(--btn);
    background-color: var(--secondary);
    /* border-color: transparent; */
}
.btn-primary.active, .btn-primary:active, .btn-primary:hover {
	color: var(--btn);
	background-color: var(--secondary);
	/* border-color: transparent; */
	transition: 0.3s ease;
}
.btn-primary.focus, .btn-primary:focus {
	color: var(--btn);
	border-color: transparent;
	outline: unset;
	outline-offset: unset;
}
.btn-primary.disabled:focus.focus, .btn-primary.disabled:focus, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary.focus, .btn-primary:focus {
	color: var(--btn);
	background-color: var(--secondary);
}
.open > .btn-primary.dropdown-toggle {
	color: var(--btn);
	background-color: var(--secondary);
	/* border-color: transparent; */
	transition: 0.3s ease;
}
.open > .btn-primary.dropdown-toggle.focus, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle:hover {
	color: var(--btn);
	background-color: var(--secondary);
}
.btn-secondary {
	color: var(--btn);
	background-color: var(--secondary);
	transition: 0.3s ease;
	/* border-radius: 5px; */
	border-radius: 50px;
}
.btn-secondary:hover {
	color: var(--btn);
	background-color: var(--primary);
	transition: 0.3s ease;
}
.btn-secondary.focus, .btn-secondary:focus {
	color: var(--btn);
	border-color: transparent;
	outline: unset;
	outline-offset: unset;
}
.btn-secondary.active.focus, .btn-secondary.active:focus, .btn-secondary.active:hover, .btn-secondary:active.focus, .btn-secondary:active:focus, .btn-secondary:active:hover, .btn-secondary.focus, .btn-secondary:focus {
	color: var(--btn);
	background-color: var(--primary);
}
.open > .btn-secondary.dropdown-toggle.focus, .open > .btn-secondary.dropdown-toggle:focus, .open > .btn-secondary.dropdown-toggle:hover {
	color: var(--btn);
	background-color: var(--primary);
}
#subcategories ul li .subcategory-name:hover,
.block-categories .arrows .arrow-down:hover,
.block-categories .arrows .arrow-right:hover,
.block-categories .collapse-icons .add:hover,
.block-categories .collapse-icons .remove:hover,
.cart-grid-body a.label:hover {
	color: var(--secondary);
}
a:focus {
	outline: unset;
	outline-offset: 0px;
	text-decoration: none;
}
.form-control {
	/* padding: .5rem 1rem; */
	border-radius: 5px !important;
}
.form-control[name="password"],
.form-control[name="new_password"] {
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}
.form-control:focus {
	color: var(--black);
	background-color: var(--white);
	outline: 0.1875rem solid var(--primary);
	border-color: var(--primary);
}












.block-category .block-category-inner #category-description strong {
    font-weight: 600;
    color: #000000;
}
.products-sort-order .select-title {
	background-color: var(--white);
	border: 1px solid var(--alt1);
	border-radius: 5px;
}
.products-sort-order .dropdown-menu {
	left: auto;
	width: calc(100% - 30px);
	padding: 0;
	margin-top: 3px;
	background: var(--white);
	border: 0;
	border-left: 1px solid var(--alt1);
	border-right: 1px solid var(--alt1);
	border-bottom: 1px solid var(--alt1);
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
.products-sort-order .dropdown-menu a:hover {
	color: #fff;
	/* text-decoration: none; */
	background: var(--primary);
}
body#checkout .custom-checkbox span {
	border-radius: 5px;
}
.img-100,
.img-100 img {
	width: 100%;
}
.radius-10 {border-radius: 10px;}
.me-3 {
	margin-right: 16px;
}
.mh-210 {
	min-height: 210px;
}
.mh-285 {
	min-height: 285px;
}
.mh-320 {
	min-height: 320px;
}
.mh-380 {
	min-height: 380px;
}
.no-title .featured-products h2 {
	display: none;
}
.title .elementor-heading-title {
	color: var(--title);
}
.title-white {
	color: var(--white);
}
.title-white .h3 {
	color: var(--white);
}
.text-white {
	color: var(--white);
}
.text-white a {
	color: var(--white);
}
.text-center {
	text-align: center;
}
.bg-primary {
	background-color: var(--primary);
}
.bg-secondary {
	/* background-color: var(--secondarybg); */
	background-color: var(--secondary);
	/* background-color: var(--alt1); */
}
.bg-alt1,
.card-bg-alt1 .product-miniature {
	background-color: var(--alt1);
}
.bg-alt2 {
	background-color: var(--alt2);
}
.bg-alt3 {
	background-color: var(--alt3);
}
.bg-card {
	background-color: var(--light);
}
.bg-footer {
	/* background-color: var(--bgfooter); */
	background-color: var(--alt2);
}
.radius-20 {
	border-radius: 20px;
	overflow: hidden;
}
.page-content.page-cms ul, p {
	/* font-size: .9375rem;
	font-weight: 400; */
	color: var(--text);
}
/* ***** RESET CE ****** */
/* .elementor-button-danger a.elementor-button:not(#e), .elementor-button-info a.elementor-button:not(#e), .elementor-button-primary a.elementor-button:not(#e), .elementor-button-success a.elementor-button:not(#e), .elementor-button-warning a.elementor-button:not(#e) {
	color: #000000;
	color: #000000;
} */
.elementor-widget-image-box .elementor-image-box-title {
	color: var(--title);
	/* font-family: "Roboto", sans-serif;
	font-weight: 600; */
}
.elementor-widget-heading .elementor-heading-title {
	color: var(--title);
	/* font-family: "Roboto", sans-serif; */
	font-weight: 600;
}
.section-after-none + .section-after-none {
	display: none;
}
body {
	font-family: "Poppins", serif;
	color: var(--text);
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
}
#wrapper {
	/* padding-top: 1rem; */
	padding-top: 100px;
	background: unset;
}
/* #cms #wrapper {
	padding-top: 0rem;
} */
#wrapper .breadcrumb {
	margin: 0px;
	padding: 0px;
	background: 0px 0px;
}
/* #cms #wrapper {
	padding-top: 0rem;
} */
.page-content.page-cms {
	padding: 0rem;
	text-align: left;
	background: transparent;
}
#footer {
	padding-top: 0rem;
}
#main .page-header {
	margin-bottom: 1rem;
}
#main .page-content {
	margin-bottom: 1rem;
}
#main .page-footer {
	margin-bottom: 1rem;
}
a, li {
	color: var(--text);
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
}
a, button, input[type=submit] {
	cursor: pointer;
}
a:hover {
	color: var(--primary);
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Yeseva One", serif;
	text-transform: initial;
	color: var(--title);
	margin-top: 0px;
	margin-bottom: 28px;
	font-weight: 500;
}
h1, .h1 {
	font-size: 2rem;
}
h2, .h2 {
	font-size: 1.75rem;
}
h3, .h3 {
	font-size: 1.5rem;
}
h4, .h4 {
	font-size: 1.25rem;
}
h5, .h5 {
	font-size: 1.15rem;
}
h6, .h6 {
	font-size: 1rem;
}
/* .elementor-widget-wrap {
	min-height: 0px;
} */
.elementor-nav--main .elementor-nav a, .elementor-nav--main .elementor-nav a.highlighted, .elementor-nav--main .elementor-nav a:hover {
	/* padding: 13px 20px; */
	padding: 0px;
}
.elementor-cart__toggle .elementor-button {
	padding: 0px;
	border-radius: 0px;
	background: 0 0;
	border-radius: 0;
	border: unset;
}
.elementor-sign-in {
	/* display: flex; */
	justify-content: center;
}
.elementor-sign-in .elementor-item > i {
	font-size: 24px;
	display: block;
	width: 24px;
	height: 24px;
}
.elementor-sign-in .elementor-item > i:before {
	/* content: "\e7fd"; */
	content: "\e853";
	font-family: "Material Symbols Outlined";
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: "liga";
	font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
}
.elementor-image-box-img > img {
	width: 100%;
}
.elementor-button {
	/* display: inline-block;
	line-height: 1;
	background-color: #818a91;
	font-size: 15px;
	padding: 12px 24px;
	border: 0 solid; */
	/* border-radius: 5px; */
	border-radius: 50px;
	/* color: #fff;
	fill: currentColor;
	text-align: center; */
	transition: 0.3s;
}
.modal-backdrop.in {
	opacity: 0.7;
}
/* ***** /RESET CE ****** */
/* ***** HEADER ****** */
#top-banner-custom + section {
	margin-top: 40px;
}
#topbanner {
	height: 40px;
}
#topbanner p {
	margin-bottom: 0px;
	color: var(--white);
}
#topbanner a {
	color: var(--white);
}
#header #top-banner-custom .elementor-widget-wrap {
    min-height: 1px;
}
#header {
	/* border-bottom: 1px solid rgba(255 255 255 / 10%); */
	box-shadow: none;
	/* .top-menu { */
	/* < .top-mainmenu */
	/* < #header .top-right */
}
#header > .elementor > .elementor-section-wrap > section {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
}
#header a:hover {
	color: var(--primary);
}
#header .elementor-widget-wrap {
	min-height: 101px;
	transition: var(--transition);
}
#header .top-logo .elementor-widget-container {
	margin: 10px 0px 10px 0px;
}
#header .top-logo .elementor-widget-container img {
	max-width: 230px;
	height: auto;
	width: 100%;
	transition: var(--transition);
}
/* body.scrolled #header {
	border-bottom: 1px solid rgba(255 255 255 / 50%);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
} */
body.scrolled #header .section-after-none {
	box-shadow: rgb(0, 0, 0) 0px 0px 60px -20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
body.scrolled #header .top-logo .elementor-widget-container img {
	max-width: 100%;
	height: 50px;
	width: auto;
	transition: var(--transition);
}
body.scrolled #header .elementor-widget-wrap {
	max-height: 60px;
	min-height: 60px;
	transition: var(--transition);
}
body.scrolled #header #_desktop_top_menu .sub-menu {
	top: 49px !important;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}
#header .elementor-cart__container .elementor-cart__product-image a, #header .elementor-cart__container .elementor-cart__product-image img {
	/* display: block; */
	border-radius: 5px;
}
#header .elementor-cart__container .elementor-cart__footer-buttons .elementor-button--view-cart {
	color: var(--btn);
	background-color: var(--primary);
}
#header .elementor-cart__container .elementor-cart__footer-buttons .elementor-button--view-cart:hover {
	background-color: var(--alt1);
}
#header .elementor-cart__container .elementor-cart__footer-buttons .elementor-button--checkout {
	color: var(--btn);
	background-color: var(--secondary);
}
#header .elementor-cart__container .elementor-cart__footer-buttons .elementor-button--checkout:hover {
	background-color: var(--alt1);
}
/* #header .top-mainmenu {
	
} */
#header .top-mainmenu .header-mobile-top-menu {
	display: none;
}
#header .top-mainmenu a[data-depth="0"] {
	/* padding: 10px 25px; */
	padding: 10px 15px;
	/* border-radius: 5px; */
	border-radius: 50px;
	/* background-color: #ffffff; */
}
#header .top-mainmenu .current.hovered a[data-depth="0"],
#header .top-mainmenu a[data-depth="0"]:hover {
	background-color: var(--primary);
	color: #ffffff;
}
/* #header .top-mainmenu a[data-depth="0"] li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	border-radius: 10px;
	top: 69px !important;
} */
#header .top-mainmenu .sub-menu {
	width: 100%;
	min-width: 1px;
	margin-left: 0px;
	padding: 15px 5px;
	top: 69px;
}
#header .top-mainmenu .sub-menu:before {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: -50%;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #ffffff;
}
#header .top-mainmenu .sub-menu:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: -50%;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #ffffff;
}
#header .top-mainmenu .sub-menu.collapse.in {
	visibility: visible;
	opacity: 1;
	border-radius: 10px;
	top: 69px !important;
}
#header .top-mainmenu .sub-menu .dropdown-submenu {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	background-color: var(--alt1);
}
#header .top-mainmenu .sub-menu .top-menu {
	display: flex;
	/* flex-direction: column; */
	/* flex-wrap: wrap; */
	flex-direction: row;
	flex-wrap: wrap;
	/* justify-content: space-around; */
	justify-content: flex-start;
	margin: 0px;
}
#header .top-mainmenu .sub-menu .top-menu .dropdown-submenu > img {
	border-radius: 10px;
	margin-bottom: 10px;
	width: 100%;
	max-width: 100%;
}
#header .top-mainmenu .sub-menu .top-menu.menu-1 li, #header .top-mainmenu .sub-menu .top-menu.menu-2 li, #header .top-mainmenu .sub-menu .top-menu.menu-3 li, #header .top-mainmenu .sub-menu .top-menu.menu-4 li, #header .top-mainmenu .sub-menu .top-menu.menu-5 li {
	flex: 0 0 auto;
	margin: 0px 10px;
	width: calc(20% - 20px);
}
/* #header .top-right {
	
} */
#header .top-right .elementor-widget:not(:last-child) {
	margin-bottom: 0px;
}
#header .top-right .elementor-widget-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
#header .top-right .elementor-widget-wrap > .elementor-element {
	flex: 1;
	width: auto;
	/* max-width: 50px; */
	/* max-width: 48px; */
	max-width: 40px;
	/* padding: 8px; */
	border-radius: 5px;
	/* background-color: #ffffff; */
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
#header .top-right .elementor-widget-wrap > .elementor-element .elementor-search,
#header .top-right .elementor-widget-wrap > .elementor-element .menu-item-type-account a,
#header .top-right .elementor-widget-wrap > .elementor-element .elementor-cart__toggle a,
#header .top-right .elementor-widget-wrap > .elementor-element .language-selector button {
	padding: 8px;
	/* border-radius: 5px; */
	border-radius: 50px;
	/* background-color: #ffffff; */
	background-color: transparent;
	transition: all 0.2s ease;
}
#header .top-right .elementor-widget-wrap > .elementor-element .elementor-search:hover,
#header .top-right .elementor-widget-wrap > .elementor-element .menu-item-type-account a:hover,
#header .top-right .elementor-widget-wrap > .elementor-element .elementor-cart__toggle a:hover,
#header .top-right .elementor-widget-wrap > .elementor-element .language-selector button:hover {
	background-color: var(--primary);
	color: #ffffff;
	transition: all 0.2s ease;
}
#header .top-right .elementor-widget-wrap > .elementor-element .menu-item-type-account ul {
	padding: 8px;
	border-radius: 10px;
	background-color: var(--secondary);
	/* margin-left: -140px; */
}
#header .top-right .elementor-widget-wrap > .elementor-element .language-selector button:hover .material-symbols-outlined {
	color: #ffffff;
}
#header .top-right .elementor-widget-wrap > .elementor-element .elementor-search:hover svg,
#header .top-right .elementor-widget-wrap > .elementor-element .elementor-cart__toggle a:hover .elementor-button-icon {
	filter: invert(1);
}
#header .top-right .ico-language,
#header .top-right .ico-search .elementor-search__toggle {
	line-height: 10px;
}
#header .top-right .ico-shopping .elementor-cart__toggle,
#header .top-right .ico-shopping .elementor-cart__toggle .elementor-button-icon {
	line-height: 10px;
}
#header .top-right .ico-shopping .elementor-cart__toggle svg {
	display: none;
}
#header .top-right .ico-shopping .elementor-cart__toggle .elementor-button-icon {
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(/img/cms/icons/shopping_cart.svg);
	background-size: 22px 22px;
	background-position: center center;
}
#header .top-right .elementor-search--skin-topbar .elementor-search input[type=search].elementor-search__input {
	font-size: 22px;
	/* border-style: solid;
	border-width: 0 0 1px;
	border-color: #eceaea;
	border-radius: 0;
	line-height: 1.5; */
	color: var(--black);
}
#header .top-right .elementor-search--skin-topbar .elementor-search__container {
	border-left-width: calc(0vw - 0px);
	border-right-width: calc(0vw - 0px);
	padding: 30px 120px;
}
#header .top-right .elementor-search--skin-topbar .elementor-search__products:not(:empty) {
	/* position: static; */
	display: flex !important;
	/* max-width: 100%; */
	width: 100% !important;
	/* border: none;
	border-radius: 0;
	background: 0 0; */
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 30px;
}
#header .top-right .elementor-search--skin-topbar .elementor-search__products:not(:empty) > li {
	flex: 0 0 auto;
	/* width: 25%; */
	width: calc(25% - 30px);
}
#header .top-right .elementor-search--skin-topbar .elementor-search__products .elementor-search__product a.elementor-search__product-link {
	display: flex;
	align-items: center;
	border: none;
	border-radius: 10px;
	padding: 15px;
	gap: 15px;
	background-color: var(--alt1);
}
#header .top-right .elementor-search--skin-topbar .elementor-search__products .elementor-search__product-image {
	/* align-self: flex-start; */
	margin-right: 0px;
	border-radius: 10px;
}
.language-selector > .dropdown-menu {
	overflow: hidden;
	left: auto;
	right: 0px;
	border-radius: 15px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.language-selector > .dropdown-menu a.dropdown-item {
	padding: 8px 16px;
}
.language-selector > .dropdown-menu .current a.dropdown-item {
	color: var(--white) !important;
	background-color: var(--primary);
}
.language-selector > .dropdown-menu a.dropdown-item:hover,
.language-selector > .dropdown-menu .current a.dropdown-item:hover {
	color: var(--dark) !important;
	background-color: var(--alt1);
}
/* ***** /HEADER ****** */
/* ***** BREADCRUMB ****** */
#breadcrumb {
	/* background-color: var(--bg-breadcrumb); */
	background-color: var(--primary);
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	margin-bottom: 60px;
}
#breadcrumb a, #breadcrumb span {
	color: var(--white);
}
#breadcrumb a:hover {
	text-decoration: underline;
}
/* ***** /BREADCRUMB ****** */
/* ***** FOOTER ****** */
footer a, footer li {
	/* color: var(--text); */
	font-size: 14px;
	/* font-weight: 400; */
	/* line-height: 18px; */
}
.links li + li {
	margin-top: 12px;
}
.links .h3 {
	margin-bottom: 28px;
}
.elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon {
	/* margin-bottom: 0px; */
	color: var(--footertext);
}
.elementor-icon-box-content .elementor-icon-box-title {
	margin-bottom: 0px;
	color: var(--footertext);
}
.footer-content a {
	color: var(--footertext);
}
.copyright a {
	display: flex;
	align-items: flex-start;
	color: #ffffff;
	font-size: 13px;
	color: var(--footertext);
}
.footer-content a:hover {
	color: var(--primary);
}
body#checkout #footer {
	padding: 0rem;
	/* color: #7a7a7a; */
	/* background: #fff; */
}
/* ***** /FOOTER ****** */
/* ***** HOME ****** */
.home-video .elementor-widget-wrap .elementor-element {
	margin-bottom: 0px;
}
.home-video-content {
	position: absolute;
	bottom: 0px;
}
.product-miniature .thumbnail-container {
	/* position: relative; */
	/* height: auto; */
	margin-bottom: 0px;
	/* overflow: hidden; */
	background: transparent;
}
.product-miniature .product-description {
	/* position: relative; */
	/* bottom: 0; */
	/* height: auto; */
	padding: 16px 0px;
	background: transparent;
}
.featured-products .product-miniature {
	padding: 16px;
	border-radius: 20px;
	/* background-color: var(--primary); */
	background-color: var(--alt1);
}
.featured-products .product-miniature .product-thumbnail {
	/* padding: 8px; */
	border-radius: 16px;
	overflow: hidden;
	/* background-color: var(--primary); */
}
.product-miniature .product-flags li.product-flag {
	min-width: 3.125rem;
	min-height: 10px;
	padding: 2px 8px;
	font-weight: 400;
	/* font-size: 13px; */
	font-size: 12px;
	/* margin-top: 8px; */
	margin-top: 8px !important;
	margin-left: 8px;
	text-transform: initial;
	/* border-radius: 5px; */
	border-radius: 30px;
	/* background-color: rgba(200, 200, 200, 0.6); */
	background-color: var(--alt3);
	list-style: none;
	width: fit-content;
}
.product-flags li.product-flag {
	min-width: 3.125rem;
	min-height: 10px;
	padding: 2px 8px;
	font-weight: 400;
	/* font-size: 13px; */
	font-size: 12px;
	margin-top: 8px;
	margin-left: 8px;
	text-transform: initial;
	border-radius: 30px;
	background-color: var(--alt3);
	list-style: none;
}
.products .wishlist-button-add {
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	/* height: 2.5rem; */
	/* width: 2.5rem; */
	/* min-width: 2.5rem; */
	/* padding-top: .1875rem; */
	/* background-color: #fff; */
	box-shadow: unset;
	/* border-radius: 50%; */
	/* cursor: pointer; */
	/* transition: .2s ease-out; */
	/* border: none; */
}
/* ***** /HOME ****** */
/* ***** CONTENT ****** */
#wrapper .top-img-page .elementor-widget {
	margin-bottom: 0px;
}
.product-about figure {
	padding: 16px;
	border-radius: 20px;
	/* background-color: var(--primary); */
	background-color: var(--alt1);
}
.product-about figure .ce-gallery-icon {
	/* padding: 8px; */
	border-radius: 16px;
	overflow: hidden;
	/* background-color: var(--primary); */
}
.product-about figure figcaption {
	padding: 16px 0px;
	background: transparent;
}
.elementor-widget-button a.elementor-button {
	/* font-family: "Roboto", sans-serif; */
	font-weight: 500;
	/* color: #000000; */
	background-color: var(--primary);
}
.elementor-widget-button a.elementor-button:hover {
	/* font-family: "Roboto", sans-serif;
	font-weight: 500; */
	background-color: var(--secondary);
	color: var(--black);
}
.quickview .modal-content {
	/* width: 100%; */
	/* min-height: 28.13rem; */
	background: #ffffff;
}
.quickview .images-container .product-images > li.thumb-container .thumb {
	/* width: 100%;
	max-width: 4.938rem;
	height: auto;
	margin-bottom: .8125rem;
	background: #fff; */
	border-radius: 10px;
}
.product-variants > .product-variants-item select {
	/* width: auto;
	padding-right: 1.875rem;
	background-color: #fff; */
	border-radius: 5px;
}
#blockcart-modal .product-image {
	/* display: block;
	width: 100%;
	max-width: 9.375rem;
	margin: 0 0 0 auto; */
	border-radius: 5px;
}
#blockcart-modal .cart-content .page-content.page-cms ul.product-total, #blockcart-modal .cart-content p.product-total, .page-content.page-cms #blockcart-modal .cart-content ul.product-total {
	/* padding: .5rem; */
	background-color: var(--alt1);
	/* border-radius: 5px; */
	border-radius: 50px;
}
#submit-login {
	background-color: var(--primary);
	color: var(--white);
}
#submit-login:hover {
	background-color: var(--secondary);
	color: var(--black);
}
#wrapper .about-map {
	margin-bottom: 0px;
}
/* .schedule-table table thead th {
	width: 100px;
} */
.schedule-table table.table {
	max-width: 400px;
	border-radius: 20px;
	overflow: hidden;
}
.schedule-table table.table thead {
	background-color: var(--primary);
	color: var(--white);
	/* border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	overflow: hidden; */
}
/* .schedule-table table.table tbody {
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	overflow: hidden;
} */
/* .schedule-table table.table tbody tr:nth-child(odd) { */
.schedule-table table.table tbody tr:nth-child(even) {
	background-color: var(--alt1);
}
/* .schedule-table table.table tbody tr:nth-child(even) {
	background-color: var(--secondary);
} */
.schedule-table table.table th,
.schedule-table table.table td {
	padding: 8px;
}
/* ***** /CONTENT ****** */
/* ***** CMS ****** */
/* #cms:not(.scrolled) #header .elementor-section-wrap > .elementor-element {
	background-color: transparent;
} */
#cms #content {
	/* margin-top: -75px; */
	/* margin-top: -34px; */
	margin-top: 0px;
}
#cms.scrolled #content {
	margin-top: -75px;
}
#cms .breadcrumb {
	display: none;
}
#cms .cms-page-title {
	margin-bottom: 0px !important;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#cms .cms-page-title .elementor-heading-title {
	display: inline-block;
    padding: 5px 50px;
	/* border-radius: 10px; */
	border-radius: 50px;
	background: var(--primary-gradient);
	color: var(--white);
}
#cms #main > .page-header {
	margin-bottom: 0px;
	/* position: relative; */
	position: absolute;
	z-index: 1;
	max-width: 480px;
	/* max-width: 520px; */
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	text-align: center;
	top: 300px;
	left: 50%;
	transform: translateX(-50%);
	/* background-color: rgba(var(--primary-rgb) / 75%); */
	background: var(--primary-gradient);
}
#cms #main > .page-header > h1 {
	color: var(--white);
	margin-bottom: 0px;
}
.vertus-col-2 .elementor-row > .elementor-element {
	max-width: 33.3333333333%;
}
.vertus-col-2 .elementor-row > .elementor-element:first-child {
	margin-left: 16.6666666667%;
}
.page-content.card.card-block {
	padding: 0px;
}
.page-content .vertus-card {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}
.page-content .vertus-card .elementor-widget-container,
.page-content .vertus-card .elementor-image-box-wrapper {
	height: 100%;
}
.page-content .vertus-card .elementor-image-box-img {
	margin-bottom: 0px !important;
	height: 280px;
}
.page-content .vertus-card .elementor-image-box-content {
	height: calc(100% - 280px);
	padding: 30px;
	background-color: var(--alt1);
}
/* .page-content .vertus-bottom {
	
} */
.page-content .vertus-bottom .img-cristal-bg {
	/* padding: 32px; */
	/* border-radius: 10px; */
	/* background-color: var(--alt1); */
	/* margin: 30px 0px 0px; */
	background-image: url(/img/cms/product-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.page-content .vertus-bottom .elementor-button-wrapper a:hover {
	background-color: var(--alt2);
}
#vertus_collapse .elementor-accordion-item {
	border-radius: 10px;
	border: 1px solid var(--alt1);
}
#vertus_collapse .elementor-accordion-item p,
#vertus_collapse .elementor-accordion-item li {
	font-size: 15px;
}
#vertus_collapse .elementor-accordion-item + .elementor-accordion-item {
	margin-top: 8px;
}
#vertus_collapse .elementor-tab-title {
	border-radius: 10px;
	background-color: var(--secondary);
	color: var(--dark);
}
#vertus_collapse .elementor-tab-title.elementor-active {
	background-color: var(--primary);
	color: var(--white);
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#vertus_collapse .elementor-tab-title .elementor-accordion-title:hover {
	color: var(--alt1);
}
/* ***** /CMS ****** */
/* ***** CATEGORY ****** */
.category-home figure {
	padding: 16px;
	border-radius: 20px;
	background-color: var(--alt1);
}
.category-home figure .ce-gallery-icon {
	/* padding: 8px; */
	border-radius: 16px;
	overflow: hidden;
	/* background-color: var(--primary); */
}
.category-home figure figcaption {
	padding: 16px 0px;
	background: transparent;
}
#product-list-header .block-category {
	padding-left: 0px;
	padding-right: 0px;
}
#product-list-header .block-category .block-category-inner {
	/* display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between; */
	flex-direction: column-reverse !important;
}
#product-list-header .block-category .block-category-inner > .category-cover {
	position: relative;
	height: 380px;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
}
#product-list-header .block-category .block-category-inner > .category-cover picture {
	display: block;
	height: 100%;
	position: absolute;
	/* top: 50%; */
	top: 25%;
	transform: translateY(-50%);
}
#product-list-header .block-category .block-category-inner .category-cover img {
	/* width: 350px; */
	width: 100%;
	max-width: 100%;
	height: auto;
	/* border-radius: 10px; */
}
#subcategories {
	padding-left: 0px;
	padding-right: 0px;
}
#subcategories .subcategories-list {
	margin: 0px;
	/* display: flex; */
	/* flex-wrap: wrap; */
	justify-content: flex-start;
	gap: 10px;
}
#subcategories .subcategories-list li {
	width: calc(25% - 10px);
	min-width: 190px;
	border-radius: 10px;
	margin: 0px;
	/* background-color: var(--alt1); */
	box-shadow: 0px 0px 0px var(--primary);
	transition: box-shadow 0.3s ease;
	/* text-align: center; */
}
#subcategories .subcategories-list li .subcategory-image a {
	position: relative;
	overflow: hidden;
	/* display: block; */
	padding: 0px;
	border: unset;
	border-radius: 10px;
	transition: border-radius 0.3s ease;
}
#subcategories .subcategories-list li .subcategory-image a img {
	transform: scale(1.5);
	transition: transform 0.3s ease, border-radius 0.3s ease;
}
#subcategories .subcategories-list li:hover {
	box-shadow: 0px 0px 35px -15px var(--primary);
	transition: box-shadow 0.3s ease;
}
#subcategories .subcategories-list li:hover .subcategory-image a {
	padding: 0px;
	border: unset;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	transition: border-radius 0.3s ease;
}
#subcategories .subcategories-list li:hover .subcategory-image a img {
	transform: scale(1.2);
	transition: transform 0.3s ease;
}
#subcategories .subcategories-list li h5 {
	margin: 0;
}
#subcategories .subcategories-list li h5 .subcategory-name {
	display: block;
	font-family: "Yeseva One", serif;
	text-transform: initial;
	color: var(--title);
	margin-top: 2px;
	margin-bottom: 10px;
	font-weight: 500;
}
.ce-product-grid .js-product a.product-thumbnail.second-image,
.featured-products .js-product a.product-thumbnail.second-image,
#js-product-list .thumbnail-container a.product-thumbnail.second-image {
	position: relative;
}
.ce-product-grid .js-product a.product-thumbnail.second-image .default-image,
.featured-products .js-product a.product-thumbnail.second-image .default-image,
#js-product-list .thumbnail-container a.product-thumbnail.second-image .default-image {
	position: relative;
	opacity: 1;
	z-index: 1;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
.ce-product-grid .js-product a.product-thumbnail.second-image .additional-image,
.featured-products .js-product a.product-thumbnail.second-image .additional-image,
#js-product-list .thumbnail-container a.product-thumbnail.second-image .additional-image {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
.ce-product-grid .js-product a.product-thumbnail.second-image:hover .default-image,
.featured-products .js-product a.product-thumbnail.second-image:hover .default-image,
#js-product-list .thumbnail-container a.product-thumbnail.second-image:hover .default-image {
	opacity: 0;
	z-index: 0;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
.ce-product-grid .js-product a.product-thumbnail.second-image:hover .additional-image,
.featured-products .js-product a.product-thumbnail.second-image:hover .additional-image,
#js-product-list .thumbnail-container a.product-thumbnail.second-image:hover .additional-image {
	opacity: 1;
	z-index: 1;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
#js-product-list .thumbnail-container:hover .product-description:after {
	opacity: 0;
}
#left-column #search_filters .btn-tertiary {
	/* padding: .25rem;
	margin: .25rem 0;
	font-size: .875rem;
	font-weight: 400; */
	color: var(--text);
	/* text-transform: lowercase; */
	border-radius: 5px;
	background-color: var(--alt1);
}
#left-column #search_filters > .text-uppercase {
	text-transform: initial !important;
}
#left-column #search_filters .facet .facet-title {
	margin-top: 10px;
	margin-bottom: 10px;
}
#left-column #search_filters .facet .facet-dropdown {
	padding-left: 0px;
	padding-right: 0px;
	border-radius: 5px;
	border: 1px solid var(--alt1);
	box-shadow: unset;
}
#left-column #search_filters .facet .facet-dropdown .select-title {
	background-color: var(--white);
	border: 1px solid var(--alt1);
	border-radius: 5px;
}
#left-column #search_filters .facet .facet-dropdown .open > .select-title {
	background-color: var(--white);
	border: 1px solid var(--primary);
}
#left-column #search_filters .facet .facet-dropdown .dropdown-menu {
	left: auto;
	width: 100%;
	padding: 0;
	margin-top: 3px;
	background: var(--white);
	border: 0;
	border-left: 1px solid var(--alt1);
	border-right: 1px solid var(--alt1);
	border-bottom: 1px solid var(--alt1);
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
#left-column #search_filters .facet .facet-dropdown .dropdown-menu .select-list {
	/* display: block;
	padding: .625rem 1.25rem; */
	color: var(--text);
	background: var(--white);
}
#left-column #search_filters .facet .facet-label .custom-checkbox input[type=checkbox] + span {
	border-radius: 5px;
	border-color: var(--primary);
}
#left-column #search_filters .facet .facet-label .custom-checkbox input[type=checkbox] + span .checkbox-checked {
	/* display: none; */
	/* margin: -.125rem; */
	/* font-size: 1.25rem; */
	color: var(--text);
}
#js-active-search-filters.active_filters {
	/* padding: .625rem 1.875rem 0;
	margin-bottom: 1.25rem; */
	background: var(--secondary);
	border-radius: 20px;
}
#js-active-search-filters.active_filters .filter-block {
	/* display: inline-block; */
	/* padding: .625rem; */
	/* margin-right: .625rem; */
	/* margin-bottom: .625rem; */
	/* font-size: .8125rem; */
	color: var(--black);
	background: var(--white);
	border-radius: 5px;
}
.category-id-2 #main > #product-list-header {
	display: none;
}
/* ***** /CATEGORY ****** */
/* ***** PRODUCTS ****** */
#products {
	color: var(--text);
}
#product .product-container #content {
	/* position: relative; */
	max-width: 100%;
	/* margin: 0 auto; */
}
#product .product-container .product-prices {
	margin-top: 1rem;
	margin-bottom: 1rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
#product .product-container .product-prices .product-price, #product .product-container .product-prices .current-price, #product .product-container .product-prices .tax-shipping-delivery-label {
	margin-bottom: 0px;
}
#product .product-container .product-prices .product-price {
	color: var(--primary);
}
#product .product-container .product-prices .tax-shipping-delivery-label {
	color: var(--black);
}
#product .product-container .product-information {
	font-size: 1rem;
	color: var(--text);
	padding: 24px;
	border-radius: 10px;
	background-color: var(--alt1);
}
#product .product-container .product-information .wishlist-button-add {
	box-shadow: unset;
}
#product #detail_product_bottom {
	/* position: relative; */
	padding: 32px;
	border-radius: 10px;
	background-color: var(--alt1);
	margin: 30px 0px 0px;
	/* margin: 15px 0px 0px; */
	background-image: url(/img/cms/product-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#product #detail_product_bottom > div:first-child:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 1px;
	height: 100%;
	background-color: var(--white);
}
#product #detail_product_bottom .detail-product-description {
	padding-right: 32px;
	/* border-right: 1px solid var(--white); */
}
#product #detail_product_bottom .detail-product-detail {
	padding-left: 32px;
}
#product #detail_product_bottom .detail-product-detail #attachments {
	margin-top: 32px;
}
#product #detail_product_bottom .detail-product-detail #attachments .attachment h4 {
	margin-bottom: 1rem;
}
#product #detail_product_bottom .detail-product-detail section.product-features {
	margin-left: 0px;
}
#product #detail_product_bottom .detail-product-detail section.product-features .data-sheet {
	/* border: 1px solid var(--white); */
	border-radius: 5px;
}
#product #detail_product_bottom .detail-product-detail section.product-features .data-sheet dd, #product #detail_product_bottom .detail-product-detail section.product-features .data-sheet dt {
	background-color: rgba(var(--alt1-rgb)/0%);
	border-bottom: 1px solid var(--white);
	margin: 0px;
}
#product #detail_product_bottom .detail-product-detail section.product-features .data-sheet dd:last-child, #product #detail_product_bottom .detail-product-detail section.product-features .data-sheet dt:last-child {
	border-bottom: unset;
}
#product #detail_product_bottom .detail-product-detail section.product-features .data-sheet dt:nth-last-of-type(1) {
	border-bottom: unset;
}
.pagination .current a {
	/* font-size: 1.25rem; */
	color: var(--primary);
	/* text-decoration: none; */
}
#products .all-product-link, .featured-products .all-product-link, .product-accessories .all-product-link {
	/* margin-top: 30px;
	color: var(--title); */
	margin-top: 30px;
	margin-bottom: 0px;
	margin-bottom: 1.5rem;
	margin-left: 15px;
	margin-right: 15px;
	font-family: "Poppins", serif;
	padding: 15px 20px;
	/* border-radius: 5px; */
	border-radius: 50px;
	background-color: var(--primary);
	color: var(--white);
	font-size: 18px;
	/* line-height: 18px; */
}
#products .all-product-link > i, .featured-products .all-product-link > i, .product-accessories .all-product-link > i {
	/* line-height: 18px; */
	display: none;
}
.category-home-section .all-product-link .elementor-button-link {
	margin-top: 30px;
	margin-bottom: 0px;
	margin-bottom: 1.5rem;
	font-family: "Poppins", serif;
	padding: 15px 20px;
	/* border-radius: 5px; */
	border-radius: 50px;
	background-color: var(--primary);
	color: var(--white);
	font-size: 18px;
}
.category-home-section .all-product-link .elementor-button-link .elementor-button-icon {
	font-size: 13px;
}
.js-product.product article, .js-product .products article, .products.product article, .products .products article {
	padding: 16px;
	border-radius: 20px;
	/* background-color: var(--primary); */
	background-color: var(--alt1);
	margin-bottom: 30px;
}
.js-product.product .product-thumbnail, .js-product .products .product-thumbnail, .products.product .product-thumbnail, .products .products .product-thumbnail {
	border-radius: 16px;
	overflow: hidden;
}
.js-product.product .product-description, .js-product .products .product-description, .products.product .product-description, .products .products .product-description {
	padding: 16px 0px 0px;
	background: transparent;
}
.js-product.product .product-title, .js-product .products .product-title, .products.product .product-title, .products .products .product-title {
	margin-top: 0px;
	text-align: center;
	/* text-transform: capitalize; */
}
.js-product.product article .wishlist-button-add,
.js-product article .wishlist-button-add, .products.product article .wishlist-button-add,
.products article .wishlist-button-add {
	position: absolute;
	top: 0.635rem;
	right: 0.635rem;
	z-index: 10;
	box-shadow: unset;
}
.js-product.product article .wishlist-button-add i,
.js-product article .wishlist-button-add i, .products.product article .wishlist-button-add i,
.products article .wishlist-button-add i {
	color: var(--primary);
}
.product-actions .add-to-cart {
	/* height: 2.75rem;
	padding-top: .625rem;
	line-height: inherit; */
	/* border-radius: 5px; */
	border-radius: 50px;
}
.images-container .product-cover {
	/* position: relative;
	margin-bottom: 1.25rem; */
	border-radius: 10px;
	overflow: hidden;
}
.images-container .product-images > li.thumb-container {
	width: calc(33.33333% - 0.8125rem);
	height: auto;
}
.images-container .product-images > li.thumb-container img {
	border-radius: 10px;
	width: calc(33.33333% - 0.8125rem);
	border: 3px solid transparent;
	height: auto;
}
.images-container .product-images > li.thumb-container .thumb.selected, .images-container .product-images > li.thumb-container .thumb:hover {
	border: 3px solid var(--primary);
}
.input-group .form-control:not(:first-child):not(:last-child),
.product-quantity #quantity_wanted {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}
ul.product-images.js-qv-product-images > li:nth-child(n+4) {
	display: none;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up, .product-quantity .input-group-btn-vertical .bootstrap-touchspin-up {
	border-top-right-radius: 5px;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover, .product-quantity .input-group-btn-vertical .bootstrap-touchspin-up:hover {
	background-color: var(--alt1);
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down, .product-quantity .input-group-btn-vertical .bootstrap-touchspin-down {
	border-bottom-right-radius: 5px;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover, .product-quantity .input-group-btn-vertical .bootstrap-touchspin-down:hover {
	background-color: var(--alt1);
}
.product-miniature .highlighted-informations {
	/* position: absolute; */
	/* top: 100%; */
	/* z-index: 2; */
	/* width: 100%; */
	/* height: auto; */
	padding: 0.625rem 0.625rem;
	/* text-align: center; */
	background: transparent;
	/* -webkit-transition: .3s; */
	/* transition: .3s; */
}
.product-miniature .highlighted-informations .quick-view {
	/* font-size: 1rem; */
	width: 100%;
	display: block;
	color: #000;
	padding: 6px 16px;
	/* border-radius: 10px; */
	border-radius: 50px;
	/* background-color: var(--alt1);
	background-color: var(--secondary); */
	background-color: var(--white);
	transition: background-color 0.3s ease;
}
.product-miniature .highlighted-informations .quick-view:hover {
	/* font-size: 1rem; */
	color: #000;
	/* padding: 6px 16px;
	border-radius: 10px; */
	background-color: var(--secondary);
	transition: background-color 0.3s ease;
}
.product-miniature .thumbnail-container:focus .highlighted-informations.no-variants,
.product-miniature .thumbnail-container:hover .highlighted-informations.no-variants {
	top: calc(100% - 3.5rem);
}
.product-miniature .product-title a {
	/* font-size: .875rem;
	font-weight: 400; */
	color: var(--text);
	/* text-align: center;
	text-decoration: none; */
}
.product-actions .add-to-cart .material-symbols-outlined {
	/* line-height: inherit; */
	margin-right: 0.625rem;
	/* display: inline-block;
	width: 1em;
	height: 1em;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap; */
	vertical-align: middle;
	/* text-rendering: optimizeLegibility;
	-webkit-font-feature-settings: "liga";
	font-feature-settings: "liga"; */
}
.store-picture img, .product-line-grid-left img {
	border-radius: 5px;
}
.cart-items > .cart-item + .cart-item {
	border-top: 1px solid #dddddd;
}
#product-modal.js-product-images-modal .modal-body {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	margin-left: 0%;
	/* margin-left: -15%; */
	/* margin-right: -15%; */
}
#product-modal.js-product-images-modal .modal-body figure {
	flex: 0 0 auto;
	width: 75%;
}
#product-modal.js-product-images-modal .modal-body figure img {
	width: 100%;
	height: auto;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#product-modal.js-product-images-modal .modal-body figure figcaption {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
#product-modal.js-product-images-modal .modal-body aside {
	flex: 0 0 auto;
	width: 25%;
}
#product-modal.js-product-images-modal .modal-body aside .product-images img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	background-color: transparent;
	border: 3px solid transparent;
}
#product-modal.js-product-images-modal .modal-body aside .product-images img.thumb.selected, #product-modal.js-product-images-modal .modal-body aside .product-images img .thumb:hover {
	border: 3px solid var(--primary);
}
#product-modal.js-product-images-modal .modal-body aside .product-images img:hover {
	border: 3px solid var(--primary);
}
#blockcart-modal .product-name {
	/* font-size: 1.125rem; */
	color: var(--title);
}
#product #wrapper .images-container .js-qv-mask {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}
/* ***** /PRODUCTS ****** */
/* ***** CHECKOUT ****** */
body#checkout section.checkout-step.-reachable.-current .step-number {
	/* -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	margin-right: .65rem;
	font-size: 1rem;
	color: #fff;
	vertical-align: middle; */
	background-color: var(--primary);
	/* border: 0;
	border-radius: 50%; */
}
body#checkout #checkout-personal-information-step .nav.nav-inline {
	padding: 15px;
	border-radius: 10px;
	background-color: var(--alt1);
}
body#checkout .nav-item .nav-link.active,
body#checkout section.checkout-step .add-address a {
	color: var(--black);
	text-decoration: underline;
}
body#checkout .custom-radio input[type=radio]:checked + span {
	/* position: absolute;
	top: .125rem;
	left: .125rem;
	display: block;
	width: 12px;
	height: 12px; */
	/* background-color: var(--primary); */
	background-color: var(--alt3);
	/* border-radius: 50%; */
}
/* body#checkout .form-control:focus {
	color: var(--dark);
	background-color: var(--white);
	outline: .1875rem solid var(--primary);
} */
body#checkout #field-password + .input-group-btn button {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: var(--primary);
}
body#checkout section.checkout-step .delivery-options .delivery-option {
	/* min-height: 80px;
	padding: .9375rem 0;
	margin-bottom: .9375rem; */
	background: var(--alt1);
	border-right: 0.1rem solid var(--alt3);
	margin-left: 0px;
	margin-right: 0px;
}
body#checkout .js-address-item.address-item.selected {
	background: transparent;
	border: 3px solid var(--primary) !important;
	border-radius: 10px;
}
body#checkout .js-address-item header {
	min-height: 13.5rem !important;
	padding: 16px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background-color: var(--alt1);
	margin-bottom: 0px;
}
body#checkout .js-address-item header label {
	margin-bottom: 0rem;
}
body#checkout .js-address-item header .address-alias {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 28px;
}
body#checkout .js-address-item header .address {
	/* margin-bottom: 1.875rem; */
	font-size: 0.875rem;
	color: var(--black);
	background-color: transparent;
	font-weight: 400;
}
body#checkout .js-address-item footer {
	padding: 16px;
	/* border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px; */
	background-color: var(--primary);
	display: flex;
	justify-content: space-around;
	align-items: center;
}
body#checkout .js-address-item footer a {
	color: var(--white) !important;
}
body#checkout .js-address-item:not(.selected) {
	background: transparent !important;
	border: 3px solid transparent !important;
	border-radius: 10px;
}
body#checkout .js-address-item:not(.selected) header {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
body#checkout .js-address-item:not(.selected) footer {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
/* ***** /CHECKOUT ****** */
/* ***** ACCOUNT ****** */
.wishlist-add-to-new i,
.wishlist-add-to-new.text-primary {
	color: var(--primary) !important;
}
.wishlist-list .wishlist-list-item:hover {
	background: var(--alt1) !important;
}
#my-account #wrapper .links > a {
	color: var(--black);
	font-weight: 600;
	text-transform: initial;
}
#my-account #wrapper .links > a > .link-item {
	border-radius: 10px;
	background-color: var(--alt1);
}
#my-account #wrapper .links > a:hover .link-item {
	color: var(--primary);
}
#my-account #wrapper .links > a:hover i {
	color: var(--primary);
}
.page-customer-account #wrapper .custom-radio input[type=radio]:checked + span {
	/* position: absolute;
	top: .125rem;
	left: .125rem;
	display: block;
	width: 12px;
	height: 12px; */
	background-color: var(--alt3);
	/* border-radius: 50%; */
}
/* .page-customer-account #wrapper .form-control:focus {
	color: var(--dark);
	background-color: var(--white);
	outline: .1875rem solid var(--primary);
} */
.page-customer-account #wrapper #field-password + .input-group-btn button, .page-customer-account #wrapper #field-new_password + .input-group-btn button {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: var(--primary);
}
.page-customer-account #wrapper .table {
	border-radius: 10px;
	overflow: hidden;
}
.page-customer-account #wrapper .table.table-bordered {
	border-color: var(--alt1);
}
.page-customer-account #wrapper .table .thead-default th {
	color: var(--white);
	background-color: var(--primary);
}
.page-customer-account #wrapper .table.table-striped tbody tr:nth-of-type(odd) {
	color: var(--black);
	background-color: var(--alt1);
}
.page-customer-account #wrapper .table.table-striped tbody tr:nth-of-type(even) {
	color: var(--black);
	background-color: var(--secondary);
}
.page-order-detail #wrapper .table.table-striped tbody .label,
.page-customer-account #wrapper .table.table-striped tbody .label {
    border-radius: 50px;
}
.page-customer-account #wrapper #content {
	padding-left: 0px;
	padding-right: 0px;
}
.page-addresses #wrapper .address .address-body {
	padding: 16px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: var(--alt1);
}
.page-addresses #wrapper .address .address-footer {
	padding: 16px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: var(--primary);
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.page-addresses #wrapper .address .address-footer a {
	color: var(--white);
}
.page-addresses #wrapper .address .address-footer a:hover {
	text-decoration: underline;
}
/* .page-order-detail #wrapper .form-control:focus {
	color: var(--black);
	background-color: var(--white);
	outline: .1875rem solid var(--primary);
	border-color: var(--primary);
} */
.page-order-detail #wrapper h3 {
	/* margin-bottom: 1rem; */
	color: var(--title);
	text-transform: initial;
}
.page-order-detail #wrapper h4 {
	/* font-size: 1.25rem; */
	font-weight: 500;
}
.page-order-detail #wrapper .box {
	padding: 1rem 0px;
	background: #fff;
	margin-bottom: 1rem;
}
.page-order-detail #wrapper .table {
	border-radius: 10px;
	overflow: hidden;
}
.page-order-detail #wrapper .table.table-bordered {
	border-color: var(--alt1);
}
.page-order-detail #wrapper .table .thead-default th {
	color: var(--white);
	background-color: var(--primary);
}
.page-order-detail #wrapper .table.table-striped tbody tr:nth-of-type(odd) {
	color: var(--black);
	background-color: var(--light);
}
.page-order-detail #wrapper .table.table-striped tbody tr:nth-of-type(even) {
	color: var(--black);
	background-color: var(--alt1);
}
.page-order-detail #wrapper .table#order-products {
	background-color: var(--light);
}
.psgdprinfo17 {
	/* margin-top: 15px;
	margin-bottom: 15px; */
	background: var(--alt1);
	/* padding: 20px; */
	border-radius: 10px;
}
#module-blockwishlist-lists .wishlist-container-header .wishlist-add-to-new {
	color: var(--text) !important;
}
#module-blockwishlist-lists .wishlist-footer-links {
	color: var(--text);
}
#module-blockwishlist-lists .wishlist-list-item:hover .wishlist-list-item-title {
	color: var(--primary);
}

/* ***** /ACCOUNT ****** */
@media (min-width: 576px) {
	.modal-dialog {
		max-width: 700px;
		margin: 30px auto;
	}
}
@media (min-width: 992px) {
	#product-modal .modal-content .modal-body .product-images {
		margin-left: 1rem;
	}
}
@media (min-width: 1920px) {
	.img-shape-reverse .elementor-widget-wrap {
		/* position: absolute; */
		inset: -61px 0px auto 0px;
		/* transform: rotateX(180deg); */
	}
}
@media (max-width: 1920px) {
	.bg-shape-reverse.mh-210 {
		min-height: 240px;
	}
}
@media (max-width: 1399px) {
	#header .top-right .elementor-search--skin-topbar .elementor-search__products:not(:empty) > li {
		/* flex: 0 0 auto; */
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
	.vertus-card .elementor-image-box-img > img {
		/* width: auto;
		height: 100%; */
	}
}
@media (max-width: 1199px) {
	/* #header {
		
	} */
	#header .top-menu a[data-depth="0"]:hover, #header a:hover {
		color: inherit;
		text-decoration: none;
	}
	body.scrolled #header #_desktop_top_menu .sub-menu {
		top: 0px !important;
		transition: height 0.2s ease;
	}
	#header .top-right {
		width: 193px;
	}
	#header .top-right .elementor-widget-wrap > .elementor-element .elementor-search, #header .top-right .elementor-widget-wrap > .elementor-element .menu-item-type-account a, #header .top-right .elementor-widget-wrap > .elementor-element .elementor-cart__toggle a, #header .top-right .elementor-widget-wrap > .elementor-element .language-selector button {
		display: block !important;
	}
	#header .top-right .elementor-widget-wrap .open > .dropdown-menu {
		display: block !important;
	}
	#header .top-right .elementor-widget-wrap #language-selector-label,
	#header .top-right .elementor-widget-wrap select.link.hidden-md-up {
		display: none !important;
	}
	#header .top-mainmenu {
		width: calc(80% - 193px);
	}
	#header .top-mainmenu a[data-depth="0"]:hover {
		background-color: var(--secondary);
		color: #ffffff;
	}
	#header .top-mainmenu .elementor-widget-container {
		text-align: end;
	}
	#header .top-mainmenu .menu.js-top-menu .header-mobile-top-menu {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
		padding: 0px 10px;
	}
	#header .top-mainmenu .menu.js-top-menu .header-mobile-top-menu ~ li .header-mobile-top-menu {
		display: none !important;
	}
	#header .top-mainmenu .menu.js-top-menu .header-mobile-top-menu .title-menu,
	#header .top-mainmenu .menu.js-top-menu .header-mobile-top-menu .close-menu {
		display: block;
		font-size: 25px;
		font-weight: 600;
		line-height: 32px;
		color: var(--alt1);
	}
	#header .top-mainmenu .menu.js-top-menu > .menu-burger {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		padding: 12px 10px;
		width: 40px;
		height: 40px;
		position: relative;
		left: auto;
		right: 0px;
		z-index: 9;
		border-radius: 5px;
		background-color: var(--white);
		/* &:hover + .top-menu, */
	}
	#header .top-mainmenu .menu.js-top-menu > .menu-burger:hover {
		background-color: var(--primary);
		color: var(--white);
		transition: all 0.2s ease;
	}
	#header .top-mainmenu .menu.js-top-menu > .menu-burger:hover > span {
		background-color: var(--white);
		transition: all 0.2s ease;
	}
	#header .top-mainmenu .menu.js-top-menu > .menu-burger > span {
		display: block;
		background-color: var(--primary);
		width: 100%;
		height: 2px;
		transition: all 0.2s ease;
	}
	#header .top-mainmenu .menu.js-top-menu > .menu-burger > span ~ span {
		margin-top: 5px;
	}
	#header .top-mainmenu .menu.js-top-menu > .menu-burger.hovered + .top-menu {
		right: 0px;
		transition: right 0.2s ease;
	}
	#header .top-mainmenu .js-top-menu > .top-menu {
		overflow-y: scroll;
	}
	#header .top-mainmenu .js-top-menu > .hovered + .top-menu:before {
		content: "";
		position: fixed;
		inset: 0px;
		background-color: rgba(0, 0, 0, 0.5);
	}
	#header .top-mainmenu .top-menu {
		/* display: none; */
		padding: 32px 20px 32px;
		background-color: var(--primary);
		color: var(--white);
		display: block;
		/* flex-direction: column;
		flex-wrap: wrap; */
		/* align-content: flex-start; */
		/* align-items: flex-start; */
		position: fixed;
		z-index: 11;
		/* height: 100%; */
		width: 320px;
		top: 0px;
		bottom: 0px;
		left: auto;
		right: -320px;
		/* background-color: var(--white); */
		transition: right 0.2s ease;
		/* .current,  */
		/* .sub-menu .top-menu { */
		/* display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin: 0px; */
	}
	#header .top-mainmenu .top-menu li {
		flex: 0 0 auto;
		width: 100%;
		text-align: start;
		position: relative;
		border-radius: 10px;
	}
	#header .top-mainmenu .top-menu li + li {
		background-color: rgba(0, 0, 0, 0);
		margin-top: 8px;
		transition: background-color 0.2s ease;
	}
	#header .top-mainmenu .top-menu a {
		color: var(--alt1);
	}
	#header .top-mainmenu .top-menu .show-hide-sub-menu {
		position: absolute;
		top: 7px;
		right: 7px;
		color: var(--alt1);
		transform: rotate(0deg);
		transition: transform 0.2s ease;
	}
	#header .top-mainmenu .top-menu .hovered .show-hide-sub-menu {
		transform: rotate(180deg);
		transition: transform 0.2s ease;
	}
	#header .top-mainmenu .top-menu .navbar-toggler {
		/* width: auto;
		height: auto;
		padding: 0px; */
		font-size: 16px;
		line-height: 1;
		background: unset;
		background-size: unset;
		border: unset;
		border-radius: unset;
	}
	#header .top-mainmenu .top-menu .sub-menu, #header .top-mainmenu .top-menu .sub-menu.collapse {
		visibility: visible;
		opacity: 1;
		background-color: transparent !important;
		position: static !important;
		display: block;
		overflow: hidden;
		padding: 0px;
		box-shadow: unset;
		position: relative;
		height: 0px;
		top: 0;
		left: 0;
		/* height: auto; */
	}
	#header .top-mainmenu .top-menu .sub-menu .top-menu, #header .top-mainmenu .top-menu .sub-menu.collapse .top-menu {
		position: static;
		/* display: block; */
		padding: 0px 0px 3px 0px;
		background-color: transparent;
		width: auto;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin: 0px;
	}
	#header .top-mainmenu .top-menu .sub-menu .top-menu li, #header .top-mainmenu .top-menu .sub-menu.collapse .top-menu li {
		margin: 0px;
		/* width: 100%; */
		width: calc(100% - 4px);
	}
	#header .top-mainmenu .top-menu[data-depth="0"] > li > a:hover,
	#header .top-mainmenu .top-menu[data-depth="0"] > li.current.hovered > a {
		background-color: var(--primary) !important;
		border-radius: 5px;
		margin-bottom: 5px;
		/* border-bottom: 1px solid;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px; */
	}
	#header .top-mainmenu .top-menu[data-depth="1"] > li > a:hover,
	#header .top-mainmenu .top-menu[data-depth="1"] > li.current > a {
		background-color: var(--primary) !important;
		/* padding: 5px 11px;
		width: calc(100% - 4px); */
		margin-left: 2px;
	}
	#header .top-mainmenu .top-menu .sub-menu .dropdown-item.dropdown-submenu, #header .top-mainmenu .top-menu .sub-menu.collapse .dropdown-item.dropdown-submenu {
		/* padding: 5px 15px; */
		padding: 5px 11px;
		border-radius: 10px;
		background-color: transparent;
		align-items: start;
		text-transform: initial;
	}
	#header .top-mainmenu .top-menu .sub-menu .dropdown-item.dropdown-submenu img, #header .top-mainmenu .top-menu .sub-menu.collapse .dropdown-item.dropdown-submenu img {
		display: none !important;
	}
	#header .top-mainmenu .top-menu .sub-menu:before, #header .top-mainmenu .top-menu .sub-menu:after, #header .top-mainmenu .top-menu .sub-menu.collapse:before, #header .top-mainmenu .top-menu .sub-menu.collapse:after {
		display: none !important;
		content: none !important;
	}
	#header .top-mainmenu .top-menu .hovered {
		background-color: var(--secondary);
	}
	#header .top-mainmenu .top-menu .hovered .sub-menu, #header .top-mainmenu .top-menu .hovered .sub-menu.collapse,
	#header .top-mainmenu .top-menu .hovered .sub-menu, #header .top-mainmenu .top-menu .hovered .sub-menu.collapse {
		height: auto;
	}
	.pagination {
		font-size: 13px;
	}
	.pagination .page-list a, .pagination .page-list li {
		font-size: 14px;
	}
	.pagination .page-list .current a {
		font-size: 1.1rem;
	}
}
@media (max-width: 991px) {
	#header .top-right .elementor-search--skin-topbar .elementor-search__products:not(:empty) > li {
		/* flex: 0 0 auto; */
		width: calc(50% - 5px);
		margin-bottom: 10px;
	}
	#header .top-right .elementor-search--skin-topbar .elementor-search__products:not(:empty) > li img {
		width: 70px;
		height: auto;
	}
	.pagination {
		/* font-size: 13px; */
		display: flex;
		flex-direction: column-reverse;
		flex-wrap: wrap;
		align-content: center;
		align-items: center;
	}
	.pagination > div {
		width: 100%;
		padding: 0px;
		margin: 0px;
		text-align: center;
	}
	.product-container .images-container {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.product-container .images-container .product-cover {
		flex: 0 0 auto;
		width: 75%;
	}
	#product #wrapper .images-container .js-qv-mask,
	.product-container .images-container .js-qv-mask {
		flex: 0 0 auto;
		width: 25%;
	}
	#product #wrapper .images-container .js-qv-mask .product-images,
	.product-container .images-container .js-qv-mask .product-images {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
	}
	#product #wrapper .images-container .js-qv-mask .product-images .thumb-container,
	.product-container .images-container .js-qv-mask .product-images .thumb-container {
		width: 100%;
		height: auto;
	}
	#product #wrapper .images-container .js-qv-mask .product-images .thumb-container img,
	.product-container .images-container .js-qv-mask .product-images .thumb-container img {
		margin-left: 1rem;
		margin-right: 0px;
		/* border-radius: 10px; */
		width: calc(100% - 1rem);
		/* border: 3px solid transparent;
		height: auto; */
	}
	ul.product-images > li.thumb-container .thumb {
		margin-bottom: 25px;
	}
	ul.product-images > li.thumb-container:nth-child(3) .thumb {
		margin-bottom: 0px;
	}
	#product-list-header .block-category .block-category-inner > .category-cover {
		/* position: relative; */
		height: 300px;
		/* overflow: hidden;
		border-radius: 10px;
		margin-bottom: 30px; */
	}
	.page-content .vertus-card .elementor-image-box-img {
		/* margin-bottom: -5px !important;
		height: 280px; */
	}
	.vertus-card .elementor-image-box-img > img {
		/* width: 100%;
		height: auto; */
	}
	.vertus-card .elementor-image-box-wrapper .elementor-image-box-img {
		/* overflow: hidden; */
	}
	.vertus-col-2 .elementor-row > .elementor-element:first-child {
		/* margin-left: 0%; */
	}
	.vertus-col-2 .elementor-row > .elementor-element {
		/* max-width: 50%; */
	}
	.vertus-col-3 .elementor-row > .elementor-element {
		/* width: 50%; */
	}
	.vertus-col-3 .elementor-row > .elementor-element:last-child {
		/* width: 100%; */
	}
	.vertus-col-3 .elementor-row > .elementor-element:last-child .elementor-image-box-wrapper {
		/* display: flex;
		flex-direction: row;
		align-items: center; */
	}
	.vertus-col-3 .elementor-row > .elementor-element:last-child .vertus-card .elementor-image-box-content {
		/* height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center; */
	}
	.vertus-col-3 .elementor-row > .elementor-element:last-child .vertus-card .elementor-image-box-img > img {
		/* width: 100%;
		height: auto; */
	}
}
@media (max-width: 767px) {
	.home-video .elementor-aspect-ratio-219 .elementor-fit-aspect-ratio {
		padding-bottom: 52.8571%;
	}
	#header .top-right .elementor-search--skin-topbar .elementor-search__container {
		/* border-left-width: calc(0vw - 0px);
		border-right-width: calc(0vw - 0px); */
		padding: 30px 25px;
	}
	#header .top-mainmenu {
		width: calc(60% - 193px);
	}
	#header .elementor-widget-wrap {
		min-height: 80px;
		transition: var(--transition);
	}
	#wrapper {
		/* padding-top: 1rem; */
		padding-top: 80px;
		/* background: unset; */
	}
	#product #detail_product_bottom > div:first-child:after {
		content: none;
	}
	#product #detail_product_bottom .detail-product-description {
		padding-right: 0px;
		border-right: unset;
	}
	#product #detail_product_bottom .detail-product-detail {
		border-top: 1px solid var(--white);
		padding-left: 0px;
		padding-top: 24px;
		margin-top: 24px;
	}
	#products .all-product-link, .featured-products .all-product-link, .product-accessories .all-product-link {
		float: none !important;
		margin-left: auto;
		margin-right: auto;
		display: block;
		width: fit-content;
	}
	/* .decoration-title-left .elementor-heading-title:before,
	.decoration-title-right .elementor-heading-title:after,
	.decoration-title-inline .elementor-heading-title:before,
	.decoration-title-inline .elementor-heading-title:after {
		content: '';
		display: block;
		width: 137px;
		height: 8px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	} */
	.decoration-title-left .elementor-heading-title:before,
	.decoration-title-inline .elementor-heading-title:before {
		/* background-image: url(/img/cms/decorations/title-start.png); */
		left: 50%;
		transform: translate(-50%, -35px);
	}
	.decoration-title-right .elementor-heading-title:after,
	.decoration-title-inline .elementor-heading-title:after {
		/* background-image: url(/img/cms/decorations/title-end.png); */
		right: 50%;
		transform: translate(50%, 25px);
	}
	.decoration-title-right.decoration-title-solo {
		padding-bottom: 30px;
	}
	.decoration-title-right.decoration-title-solo .elementor-heading-title:after {
		right: auto;
		/* transform: translate(0%, 25px); */
		/* transform: translate(0%, 30px); */
		transform: translate(0%, 40px);
	}
	.schedule-table table.table {
		max-width: 100%;
	}
	.block-categories {
		padding: 1.563rem 0rem;
		/* margin-bottom: 1.563rem;
		background: #fff; */
	}
	.block-category-inner .category-cover {
		display: block;
	}
	#product-list-header .block-category .block-category-inner > .category-cover {
		height: 250px;
	}
	/* #footer .links .wrapper ul.collapse {
		padding-top: 15px !important;
	} */
	#footer .links .wrapper .title {
		margin-bottom: 15px;
	}
}
@media (max-width: 575px) {
	#header .top-right .elementor-search--skin-topbar .elementor-search__products:not(:empty) > li {
		/* flex: 0 0 auto; */
		width: 100%;
		/* margin-bottom: 10px; */
	}
	#wrapper .top-img-page {
		height: 180px;
	}
	#wrapper .top-img-page > .elementor-container,
	#wrapper .top-img-page > .elementor-container .elementor-widget.elementor-widget-image,
	#wrapper .top-img-page > .elementor-container .elementor-widget.elementor-widget-image .elementor-widget-container,
	#wrapper .top-img-page > .elementor-container .elementor-widget.elementor-widget-image .elementor-image,
	#wrapper .top-img-page > .elementor-container .elementor-widget.elementor-widget-image img {
		height: 100%;
	}
	#wrapper .top-img-page > .elementor-container .elementor-widget.elementor-widget-image img {
		width: auto;
		object-fit: cover;
	}
}
@media (max-width: 480px) {
	#product-list-header .block-category .block-category-inner > .category-cover {
		height: auto;
	}
	#product-list-header .block-category .block-category-inner > .category-cover picture {
		position: relative;
		top: 0%;
		transform: translateY(0%);
	}
	.product-container .product-actions .product-add-to-cart.js-product-add-to-cart .product-quantity {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}
	/* .product-container .product-actions .product-add-to-cart.js-product-add-to-cart .product-quantity .qty {
		flex: 0 0 auto;
		width: 72px;
	} */
	/* .product-container .product-actions .product-add-to-cart.js-product-add-to-cart .product-quantity .add {
		flex: 0 0 auto;
		width: cacl(100% - 72px);
	} */
	.product-container .product-actions .product-add-to-cart.js-product-add-to-cart .product-quantity .wishlist-button-add {
		/* flex: 0 0 auto;
		width: 100%; */
		margin-left: 0px;
		margin-top: 15px;
		margin-bottom: 20px;
	}
	#cart .product-line-grid-right {
		margin-top: 15px;
		background-color: var(--alt1);
		padding: 15px;
		border-radius: 10px;
	}
	#cart .product-line-grid-right .row > .col-xs-4.hidden-md-up {
		display: none;
	}
	#cart .product-line-grid-right .row .col-md-10 {
		float: left;
		width: 83.33333%;
	}
	.modal.quickview .images-container.js-images-container {
		min-height: auto;
	}
}
@media (max-width: 410px) {
	body.scrolled #header .top-logo .elementor-widget-container img {
		max-width: 100px;
		height: auto;
		width: 90px;
		transition: var(--transition);
	}
	#header .top-logo {
		/* width: 30%; */
		width: 100%;
		max-width: 100px;
	}
	#header .top-logo .elementor-widget-container img {
		/* max-width: 230px; */
		height: auto;
		width: 90px;
		/* transition: var(--transition); */
	}
	#header .top-mainmenu {
		width: 100%;
		max-width: 45px;
	}
	#header .top-right {
		width: calc(100% - 145px);
		/* padding-bottom: 10px; */
	}
	#header .elementor-widget-wrap {
		min-height: 45px;
		transition: var(--transition);
	}
	#header .elementor-widget-wrap > .elementor-element {
		max-width: 30px;
	}
	#header .elementor-widget-wrap > .elementor-element .elementor-search, #header .elementor-widget-wrap > .elementor-element .menu-item-type-account a, #header .elementor-widget-wrap > .elementor-element .elementor-cart__toggle a, #header .elementor-widget-wrap > .elementor-element .language-selector button {
		padding: 8px 4px;
		border-radius: 5px;
		background-color: #ffffff;
		transition: all 0.2sease;
	}
	#wrapper {
		/* padding-top: 1rem; */
		padding-top: 50px;
		/* background: unset; */
	}
}
@media (max-width: 400px) {
	.modal.quickview .images-container.js-images-container .mask {
		width: 100%;
		/* max-height: 22.5rem; */
		margin-left: 0;
		/* overflow: hidden; */
	}
	.modal.quickview .images-container.js-images-container {
		flex-direction: column;
	}
	.modal.quickview .images-container.js-images-container .product-images > li.thumb-container .thumb {
		margin-right: 4px;
	}
}
@media (max-width: 380px) {
	.pagination {
		/* font-size: 13px; */
		display: flex;
		flex-direction: column-reverse;
		flex-wrap: wrap;
		align-content: center;
		align-items: center;
	}
	.pagination > div {
		width: 100%;
		padding: 0px;
		margin: 0px;
		text-align: center;
	}
	.pagination .page-list a.previous, .pagination .page-list a.next {
		font-size: 0;
	}
	#header .top-right .elementor-widget-wrap {
		/* display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end; */
		gap: 0px;
	}
	#header .top-right .elementor-widget-wrap > .elementor-element {
		/* flex: 1;
		width: auto; */
		max-width: 36px;
		/* border-radius: 5px;
		background-color: transparent;
		display: flex;
		align-items: center;
		justify-content: center; */
	}
	#header .top-right .elementor-widget-wrap > .elementor-element .elementor-search,
	#header .top-right .elementor-widget-wrap > .elementor-element .menu-item-type-account a,
	#header .top-right .elementor-widget-wrap > .elementor-element .elementor-cart__toggle a,
	#header .top-right .elementor-widget-wrap > .elementor-element .language-selector button {
		padding: 4px;
		/* border-radius: 5px;
		background-color: transparent;
		transition: all 0.2s ease; */
	}
}
/* JSINFO 20250619 */
#layout-error {
	padding-right: 15px;
	padding-left: 15px;
}
/* /JSINFO 20250619 */
/* JSINFO 20251111 */
.product-description .elementor-button-wrapper > .elementor-button-link {
	/* padding: .5rem 1.25rem; */
	font-weight: 600;
	text-transform: uppercase;
}
/* /JSINFO 20251111 */
/* JSINFO 20251116 */
#detail_product_bottom + .product-accessories {
	padding-top: 100px;
	padding-bottom: 50px;
}
#detail_product_bottom + .product-accessories .elementor-heading-title {
	margin-bottom: 50px;
    color: var(--title);
    font-weight: 600;
    font-size: 26px;
	text-transform: uppercase;
}
#detail_product_bottom + .product-accessories .thumbnail-container a.product-thumbnail.second-image .default-image {
	position: relative;
	opacity: 1;
	z-index: 1;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
#detail_product_bottom + .product-accessories .thumbnail-container a.product-thumbnail.second-image .additional-image {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
#detail_product_bottom + .product-accessories .thumbnail-container a.product-thumbnail.second-image:hover .additional-image {
	opacity: 1;
	z-index: 1;
	transition: opacity 0.5s ease, z-index 0.5s ease;
}
/* /JSINFO 20251116 */