<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, html {
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	font-family:var(--mainfont);
	font-size:var(--default-p);
	color:var(--black);

}
 
p {
	margin-top:0;
	margin-bottom:3rem;
}

a {
	color:var(--black);
	transition:var(--transition-all);
}

a:hover {
	color:var(--purple);
	text-decoration:none;
	transition:var(--transition-all);
}

h1 {
	font-size:3rem;
	letter-spacing:-1pt;
}
h2 {
	font-size:2.5rem;
	letter-spacing:-0.75pt;
}
h3 {
	font-size:2rem;
	letter-spacing:-0.5pt;
}
h4 {
	font-size:1.5rem;
}


/*general markup*/

main {
	width:100%;
	 
	height:100%;
}

header {
	width:100%;
	height:auto;
	display:flex;
	flex-direction:column;
}
header .topflip {
	width:100%;
	height:36px;
	background:var(--gray-medium);
	color:var(--light-gray);
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
}
header nav.top {
	width:100%;
	height:78px;
	background-color:var(--vampire-black);
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
}
header nav.mobile {
	display:none;
}

header nav.top .btnMobileMenu {
	display:none;
}
header nav.top &gt; ul {
	margin:0;
	padding:0;
	display:flex;
	gap:0;
	width:100%;
	z-index:11;
	position:absolute;
	 
}
header nav.top ul li {
	list-style:none;
	white-space:nowrap;
	
}
header nav.top ul li.left, 
header nav.top ul li.right {
	display:flex;
	flex-grow:14;
	width:50%;
}

header nav.top ul li.left {
	
	align-items:center;
}

header nav.top ul li.left a.logo {
	background:url(../images/mantionable-logo-icon.svg) 0% 0% / 50px 26px no-repeat;
	width:50px;
	height:26px;
	margin-left:20px;
}
body.home header nav.top ul li.left a.logo {display:none;}
header nav.top ul li a.topnav {
	color:var(--ivory);
	text-decoration:none;
	font-size:1.35rem;
	font-weight:600;
	letter-spacing:-0.5pt;
	background: url(../images/arr-down.svg) calc(100% - 15px) calc(50% + 2px) no-repeat;
	padding-right:31px;
	height:78px;
	display:flex;
	align-items:center;
	padding-left:15px;
	transition:var(--transition-all);
}
header nav.top ul li a.topnav:hover {
	color:var(--purple-light);
	transition:var(--transition-all);
	background: url(../images/arr-down.svg) calc(100% - 15px) calc(50% + 2px) no-repeat;
	
	
}
header nav.top &gt; ul &gt; li {
	background:url(../images/menu-hover.svg) 50% calc(100% + 10px) no-repeat;
	transition:var(--transition-all);
}
header nav.top &gt; ul &gt; li:hover {
	background:url(../images/menu-hover.svg) 50% 100% no-repeat;
	transition:var(--transition-all);
	
 }
 
header nav.top &gt; ul &gt; li.left,
header nav.top &gt; ul &gt; li.right,
header nav.top &gt; ul &gt; li.left:hover,
header nav.top &gt; ul &gt; li.right:hover {
	background:none !important;
}

header nav.top ul li.right {
	display:flex;
	align-items:center;
	justify-content:flex-end;
}
header nav.top ul.corner-buttons {
	margin:0;
	padding:0;
	display:flex;
	flex-direction:row;
	width:auto;
	margin-right:var(--gap);
}
header nav.top ul.corner-buttons a {
	width:40px;
	height:40px;
	display:flex;
}
header nav.top ul.corner-buttons a.search {
	background:url(../images/icon-search.svg) 50% 50% no-repeat;
	transition:var(--transition-all);
}
header nav.top ul.corner-buttons a.profile {
	background:url(../images/icon-profile.svg) 50% 50% no-repeat;
	transition:var(--transition-all);
}
header nav.top ul.corner-buttons a.profile:hover {
	background:url(../images/icon-profile-purple.svg) 50% 50% no-repeat;
	transition:var(--transition-all);
}
header nav.top ul.corner-buttons a.shopping-cart {
	background:url(../images/icon-shoppingcart.svg) 50% 50% no-repeat;
	position:relative;
	transition:var(--transition-all);
}
header nav.top ul.corner-buttons a.shopping-cart:hover {
	background:url(../images/icon-shoppingcart-purple.svg) 50% 50% no-repeat;
	position:relative;
	transition:var(--transition-all);
}
header nav.top ul.corner-buttons a.shopping-cart span {
	width:15px;
	height:15px;
	border-radius:50%;
	background:var(--purple-light);
	color:var(--white);
	font-size:0.7rem;
	display:flex;
	align-items:center;
	justify-content:center;
	position:absolute;
	right:0;
	top:0;
}

/*inner menu*/
header nav.top ul li:hover div.innermenu {
	display:block;
	margin-top:-3px;
	transition:var(--transition-all);
	z-index:-1;
	 
}
header nav.top div.innermenu {
	position:absolute;
	width:100%;
	/* max-width:var(--mainwidthsmaller);
	left:calc((100vw - var(--mainwidthsmaller)) / 2); */
	max-width:100%;
	height:auto;
	
	
	left:0;
	margin-top:100px;  
	z-index:-1;
	background:var(--black);
	border-top:2px solid var(--purple);
	display:none; 
	/* opacity:0; */
	transition:var(--transition-all);
}
header nav.top div.innermenu div.inner {
	width:100%;
	max-width:var(--mainwidthsmaller);
	display:flex;
	gap:5rem;
	
	margin:2.5rem auto;
	
}
header nav.top div.innermenu div.inner &gt; div {
	width:50%;
}

header nav.top div.innermenu ul.nav {
	display:flex;
	flex-direction:column;
	width:auto;
	
}
header nav.top div.innermenu ul.nav h1 {
	color:var(--white);
	font-weight:400;
	margin-top:0;
	line-height:normal;
}
header nav.top div.innermenu ul.nav li {
	line-height:180%;
}
header nav.top div.innermenu ul.nav li a {
	font-size:2.1rem;
	font-weight:300;
	background:none;
	margin:0;
	padding:0;
	height:auto;
	line-height:170%;
	color:var(--white);
	text-decoration:none;
	letter-spacing:-0.75pt;
}
header nav.top div.innermenu ul.nav li a:hover {
	color:var(--purple-light);
}

header nav.top div.innermenu ul.brands {
	display:flex;
	width:auto;
	height:auto;
	flex-wrap:wrap;
	gap:25px;
}
header nav.top div.innermenu ul.brands li {
	width:calc(33.33% - 17px);
	width:calc(50% - 13px);
	max-height:95px;
	height:auto;
	border:1px solid var(--dark-gray-border);
}
header nav.top div.innermenu ul.brands li:hover {
	border:1px solid var(--purple);
}


header nav.top div.innermenu ul.brands li a {
	height:auto;
	background: none;
    display: flex;
    position: relative;
    width: 100%;
    height:70px;
    align-items: center;
    justify-content: center;
	
}
header nav.top div.innermenu ul.brands li a span {
	display:flex;
	width:50%;
	height:55px;
	align-items:center;
	justify-content:center;
	
}
header nav.top div.innermenu ul.brands li a &gt; img {
	 width:50%;
}
header nav.top div.innermenu ul.brands li a span img {
	max-width:150px;
	max-height:55px;
	height: auto;
    width: auto;
}






section.head {
	width:100%;
	height:60vh;
	max-height:650px;
	background:var(--black);
	position:relative;
	display:flex;
	border-top: 1px solid var(--dark-gray-border);
}
section.head &gt; a.logo {
	background:url(../images/mantionable-logo-full.svg) 50% 50% no-repeat;
	width:256px;
	height:100px;
	display:flex;
	position:absolute;
	top:var(--top-gap);
	left:calc(50% - 128px);
	z-index:3;
}
section.head .header-slide {
	width:100%;
	height:100%;
	display:flex;
	
	justify-content:center;
	background-size:cover !important;
}

section.head::after {
	width:100%;
	height:80px;
	display:block;
	
	background:url(../images/header-shape-bg-long.svg) 50% 100% / 3558px 88px no-repeat;
	position:absolute;
	content:"  ";
	bottom:0;
	left:0;
	z-index:2;
}
section.head .header-slide .inner {
	width:100%;
	width: calc(100% - var(--default-spacing-gap) * 2);
	max-width:var(--mainwidth);
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:center;
/* 	border:1px solid red; */
	height:calc(100% - var(--top-gap) - 100px);
	margin-top:calc(var(--top-gap) + 100px);
	z-index:10;
	 
}
section.head .header-slide h4 {
	font-size:1.7rem;
	font-weight:500;
	color:var(--white);
	margin:0;
	padding:0;
	
}
section.head .header-slide h1 {
	font-size:3rem;
	font-weight:600;
	color:var(--white);
	margin:0;
	padding:0;
	letter-spacing:-1pt;
	margin-bottom:1.5rem;
}


section.head ul.pagination {
	margin:0;
	margin-left:-2rem;
	padding:0;
	gap:25px;
	position:relative;
	color:#fff;
	height:calc(100% - var(--top-gap) - 100px);
	margin-top:calc(var(--top-gap) + 100px);
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:center;
	 
}
section.head ul.pagination li {
	list-style:none;
	padding:0;
	margin:0;
	cursor:pointer;
}
section.head ul.pagination li span {
	display:block;
	width:var(--medium-br);
	height:var(--medium-br);
	border-radius:var(--medium-br);
	background:var(--ivory);
	
}
section.head ul.pagination li.active span {
	height:calc(var(--medium-br) * 3);
}



section.innerhead {
	width:100%;
	height:auto;
	min-height:150px;
	
	background:var(--skin);
	position:relative;
	display:flex;
 
}

section.innerhead.adventure-and-outdoors {
	background:var(--dgray);
}
section.innerhead.every-day-carry {
	background:var(--lblue);
}
section.innerhead.barware {
	background:var(--lblue);
}
section.innerhead.bling {
	background:var(--lblue);
}
section.innerhead.post {
	background:var(--black);
	border-top:1px solid var(--gray);
}

section.innerhead.mancave {
	background:var(--lblue);
}
section.innerhead.personal-care-and-grooming {
	background:var(--skin);
}
section.innerhead.watches {
	background:var(--lblue);
}

section.innerhead::after {
	width:100%;
	height:120px;
	display:block;
	
	background:url(../images/header-shape-bg-long.svg) 50% 100% / 3558px 88px no-repeat;
	position:absolute;
	content:" ";
	bottom:0;
	left:0;
}
section.innerhead div.inner {
	width:calc(100% - var(--default-spacing-gap) * 2);
	max-width:var(--mainwidth);
	margin:0 auto;
	height:100%;
	display:flex;
	gap:3rem;
}
section.innerhead div.inner div.left {
	z-index:1;
	width:auto;
}
section.innerhead div.inner div.left p {
	font-size:1.4rem;
	color:var(--medium-gray);
	line-height:150%;
}
section.innerhead div.inner div.left h1 {
	letter-spacing:-1pt;
	font-weight:500;
	color:var(--black);
}
section.innerhead div.inner div.left h1 a {
	text-decoration:none;
}
section.innerhead div.inner div.left h1 a:hover {
	color:var(--purple);
}

section.innerhead div.inner div.left ul.inner-categories {
	margin:0;
	padding:0;
	display:flex;
	gap:15px;
	flex-wrap:wrap;
	margin-bottom:70px;
}
section.innerhead div.inner div.left ul.inner-categories li {
	list-style:none;
	font-size:1.2rem;
	display:flex;
}
section.innerhead div.inner div.left ul.inner-categories li a {
	text-decoration:none;
	font-weight:500;
	color:var(--medium-gray);
	border-radius:var(--medium-br);
	border:1px solid var(--gray);
	padding:9px 17px;
	transition:var(--transition-all);
}
section.innerhead div.inner div.left ul.inner-categories li a:hover {
	 transition:var(--transition-all);
	color:var(--black);
	background:var(--gray);
}
section.innerhead div.inner div.left ul.inner-categories li.active a {
	background:var(--medium-gray);
	color:var(--white);
}
section.innerhead div.inner div.right {
	display:flex;
	align-items:end;
	justify-content:flex-end;
	width:40% !important;
	min-width:40%;
}
section.innerhead.brand div.inner div.right {
	position: absolute;
    right: 0;
	top:3rem;
}
section.innerhead.brand div.inner div.right img {
	max-height: 100px;
    max-width: 150px;
}

section.innerhead.brand div.inner {
	position:relative;
}
section.innerhead.brand div.inner div.left {
	width:calc(100% - 200px);
	padding-bottom:2rem;
}



section.wrapper,
.woocommerce-notices-wrapper {
	max-width:var(--mainwidth);
	 width:calc(100% - var(--default-spacing-gap) * 2); 
	 
	display:flex;
	flex-direction:column;
	margin:0 auto;
	margin-bottom:75px;
}

.woocommerce-notices-wrapper {
	margin-bottom:0;
	max-width:var(--mainwidthsmaller);
}

section.wrapper &gt; h1 {
	margin-top:0;
	font-weight:500;
}

section.wrapper.productcontainer {
	max-width:var(--mainwidthsmaller);
}




.header-wrapper {
	margin:0 auto;
	padding:0;
	display:flex;
	height:70px;
	gap:15px;
	margin-bottom:30px;
}
.header-wrapper li {
	list-style:none;
	font-size:36px;
	letter-spacing:-1pt;
	
}
.header-wrapper li.btn {
	background:url(../images/icon-arrow-underline-gray.svg) 0% 50px repeat-x;
	cursor:pointer;
	transition:var(--transition-all);
}
.header-wrapper li.btn:hover {
	
	transition:var(--transition-all);
}
.header-wrapper li.btn.active {
	background:url(../images/icon-arrow-underline-purple.svg) 0% 50px repeat-x;
	transition:var(--transition-all);
}
.header-wrapper li.btn.active:hover {
	color:var(--purple);
	
	transition:var(--transition-all);
}
.header-wrapper li.active {
	font-weight:400;
}
.header-wrapper li {
	text-decoration:none;
	color:var(--black);
	font-weight:400;
}



.productlist-container {
	width:100%;
}

ul.productlist {
	margin:0;
	padding:0;
	display:flex;
	gap:39px;
	width:100%;
}


ul.productlist.hidden,
.swiper.productlist.hidden  {
	display:none;
}
ul.productlist.list3items,
ul.products.columns-3  {
	width:75%;
}

.productlist-container .productlist.list3items.list5items {
	width:100%;
}

.category .swiper-horizontal.medium {
	margin-left:4rem;
	/* gap:20px; */
	margin-bottom:2rem;
	width:calc(100% - 4rem);
	max-width:690px;
	margin-top:0;
	max-height:370px;
}
.category .swiper-horizontal.medium .swiper-slide {
	justify-content:flex-start;
	align-items:flex-start;
	max-width:280px;
}


ul.productlist li,
div.swiper-products-normal div.product {
	list-style:none;
	width:25%;
	max-width:300px;
	display:flex;
	flex-direction:column;
	gap:5px;
}
div.swiper-products-normal div.product {
	width:100%;
	max-width:auto;
	margin-right:30px;
}
div.swiper-products-normal div.swiper-slide {
	max-width:20%;
}
.swiper.medium .product {
	list-style:none;
	width:25%;
	max-width:240px;
	display:flex;
	flex-direction:column;
	gap:5px;
}

ul.productlist li div.p {
	display:flex;
	flex-direction:column;
	gap:5px;
}



.woocommerce span.onsale,
span.onsale {
    min-height: 40px;
    min-width: 60px;
	display:flex;
	align-items:center;
	justify-content:center;
    padding:0;
    font-size: 1.2rem;
	font-family: var(--mainfont);
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    border-radius: 0;
    background-color:var(--purple);
    color: var(--white);
    
    z-index: 9;
}


ul.productlist.double-horizontal li {
	list-style:none;
	width:50%;
	display:flex;
	flex-direction:row;
	gap:20px;
	align-items:center;
}
ul.productlist.double-vertical {
	flex-direction:column;
	gap:10px;
	margin-left:4rem;
	margin-right:4rem;
	margin-top:6rem;
	width:calc(100% - 8rem);
}
div.swiper-category {
	margin-left:4rem;
	margin-right:4rem;
	margin-top:6rem;
	width:calc(100% - 8rem);
	max-height:320px;
	
}

 

ul.productlist.double-vertical li,
div.swiper-category .swiper-slide .product {
	list-style:none;
	width:100%;
	max-width:100%;
	display:flex;
	flex-direction:row;
	gap:20px;
	align-items:center;
	justify-content:flex-start;
}
div.swiper-category.dark .swiper-slide .product {
	flex-direction:column;
	max-width:200px;
	align-items:center;
	justify-content:flex-start;
	margin-right:25px;
}
div.swiper-category .swiper-slide .product span.onsale {
	position: absolute;
    left: 0;
    top: 0;
    background: var(--purple);
    color: var(--white);
    padding: 3px 6px;
    font-size: 1rem;
}



ul.productlist.double-vertical li.separator {
	border-bottom:1px dotted black;
}

ul.productlist li.fullwidth {
	width:100%;
	max-width:100%;
	
}
ul.productlist li.not-found {
	height:100%;
}

ul.productlist.list3items {
	flex-wrap:wrap;
}
ul.productlist.list3items li.product {
	width:calc(33.33% - 26px);
}

ul.productlist.list3items.list5items li.product {
	width:calc(20% - 32px);
}

ul.productlist.superdeal {
/* 	margin:0 auto; */
	width:auto;
}
ul.productlist.superdeal li {
	width:30%
}
ul.productlist li.spacer {
	width:5%;
}
ul.productlist li.spacer div.plus {
	font-size:5.5rem;
	display:flex;
	width:auto;
	 
	font-weight:300;
	color:var(--gray);
	flex-direction:column;
	align-items:flex-start;
	justify-content:center;
	 
	aspect-ratio:52/315;
}

/* thumbnail */

ul.productlist li a.image,
div.swiper-category .swiper-slide .product a.image,
div.swiper-products-normal .swiper-slide .product a.image {
	display:flex;
	width:100%;
	/* border:1px solid var(--gray-border); */
	/* border-radius:var(--medium-br); */
	background:var(--white);
	aspect-ratio: 1 / 1;
	position:relative;
	max-height:500px;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}
ul.productlist li a.image &gt; img,
div.swiper-category .swiper-slide .product a.image &gt; img,
div.swiper-products-normal .swiper-slide .product a.image &gt; img {
	width:100% !important;
	height:auto !important;
	/* border-radius:var(--medium-br); */
	max-height:500px;
	/*max-width:100%; */
	/* object-fit: contain; */
 
}
ul.productlist.double-horizontal li a.image {
	width:140px;
}
ul.productlist.double-vertical li a.image,
div.swiper-category .swiper-slide .product a.image {
	width:100px;
}

div.swiper-category.dark .swiper-slide .product a.image {
	width:100%;
}

div.swiper-category .swiper-slide .product {
	 /* padding-bottom:20px; */
}
div.swiper-category .swiper-slide .product .right,
div.swiper-products-normal .swiper-slide .product .right {
	text-align:left;
	width:100%;
}



ul.productlist li div.cat a,
div.swiper-category .swiper-slide .product div.cat a,
div.swiper-products-normal .swiper-slide .product div.cat a {
	color:var(--gray);
	text-decoration:none;
	font-size:1.14rem;
	transition:var(--transition-all);
}
ul.productlist li div.cat a:hover,
div.swiper-category .swiper-slide .product div.cat a:hover,
div.swiper-products-normal .swiper-slide .product div.cat a:hover {
	color:var(--purple);
 transition:var(--transition-all);
}

div.swiper-category.dark .swiper-slide .product div.cat a {
	color:var(--gray);
	text-decoration:none;
	font-size:1.14rem;
}


ul.productlist li .product-name,
div.swiper-category .swiper-slide .product .product-name,
div.swiper-products-normal .swiper-slide .product .product-name {
	margin:0;
	padding:0;
	font-size:1.28rem;
	font-weight:500;
}

ul.productlist li .product-name a,
div.swiper-category .swiper-slide .product .product-name a,
div.swiper-products-normal .swiper-slide .product .product-name a {
	color:var(--gray-medium);
	text-decoration:none;
	transition:var(--transition-all);
}
ul.productlist li .product-name a:hover,
div.swiper-category .swiper-slide .product .product-name a:hover,
div.swiper-products-normal .swiper-slide .product .product-name a:hover {
	color:var(--purple);
	text-decoration:none;
	transition:var(--transition-all);
}

div.swiper-category.dark .swiper-slide  .product-name a,
div.swiper-category.dark .swiper-slide .product .price  {
	color:var(--white);
}
ul.productlist li .price,
div.swiper-category .swiper-slide .product .price,
div.swiper-products-normal .swiper-slide .product .price {
	color:var(--black);
	font-size:1.28rem;
	font-weight:800;
}
ul.productlist li .price del, 
div.swiper-category .swiper-slide .product .price del, 
div.swiper-products-normal .swiper-slide .product .price del,
section.productcontainer div.product .product-price del {
	color:var(--light-gray);
}
ul.productlist li .price ins .woocommerce-Price-amount, 
div.swiper-category .swiper-slide .product .price ins .woocommerce-Price-amount, 
div.swiper-products-normal .swiper-slide .product .price ins .woocommerce-Price-amount,
section.productcontainer div.product .product-price	ins .woocommerce-Price-amount {
	color:var(--purple);
}


ul.productlist li .add-to-cart {

    position: relative;
    height:0px;
    align-items: flex-end;
    display: flex;
    justify-content: end;
	flex-flow:row-reverse;
	 
}
ul.productlist li .add-to-cart .outofstock {
	width: 100%;
    background:var(--black);
	font-size:1.2rem;
	font-weight:600;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	padding-left:10px;
	color:var(--white);
    height: 40px;
    top: -45px;
    position: absolute;
 
}


ul.productlist li .add-to-cart &gt; a.add_to_cart_button {
	position:relative;
	width:40px;
	height:40px;
	background:var(--white);
	top:-10px;
	right:5px;
	display:block;
	border-radius:50%;
	font-size:0;
	background:var(--white) url(../images/icon-add-to-cart.svg) 50% 50% no-repeat;
	transition:var(--transition-all);
	border:0;
}
ul.productlist li .add-to-cart &gt; a.add_to_cart_button:hover {
	background:var(--purple) url(../images/icon-add-to-cart-white.svg) 50% 50% no-repeat;
}
ul.productlist li .add-to-cart &gt; a.add_to_cart_button.added {
	display:none;
}

ul.productlist li .add-to-cart &gt; a.added_to_cart {
	position:relative;
	width:40px;
	height:40px;
	background:var(--white);
	top:-10px;
	font-size:0;
	right:5px;
	display:block;
	border-radius:50%;
	background:var(--black) url(../images/btn-add-to-cart-added.svg) 50% 50% no-repeat;
	transition:var(--transition-all);
}

section.wrapper.category-listing {
	display:flex;
	flex-direction:row;
	padding-top:3.5rem;
	width: calc(100% - var(--default-spacing-gap)* 2);

}
section.wrapper.category-listing &gt; .productlist.list3items {
	/*width:75%;*/
	width:calc(100% - 290px);
}
section.wrapper.category-listing .woocommerce-no-products-found {
	width:100%;
	margin-top:2rem;
}

section.wrapper.category-listing .woocommerce-no-products-found .woocommerce-info::before {
    font-family: WooCommerce;
    content: "\e028";
    content: "\e028" / "";
    display: inline-block;
    position: absolute;
    top: 1em;
    left: 1.5em;
}

div.left-filters {
	width:25%;
	max-width:250px;
	display:flex;
	flex-direction:column;
	margin-right:40px;
}
div.left-filters ul {
	display:flex;
	flex-direction:column;
	margin:0;
	padding:0;
	margin-right:2rem;
	gap:10px;
	width:100%;
}
div.left-filters ul li {
	list-style:none;
	position:relative;
}
div.left-filters ul.sorting li.filters {
	display:none;
}

div.left-filters h4,
div.left-filters .wpc-filter-header .widget-title.wpc-filter-title,
div.left-filters .wpc-filter-header .widget-title.wpc-filter-title button {
	margin:20px 0 15px;
	padding:0;
	color:var(--medium-gray);
	font-size:1.4rem;
	font-weight:600;
	font-family: var(--mainfont);
	letter-spacing:-0.5pt;
}

div.left-filters select {
	width:100%;
	max-width:250px;
	height:44px;
	border:1px solid var(--medium-gray);
	border-radius:var(--medium-br);
	outline:none;
	padding-left:70px;
	background:transparent;
	font-size:1.2rem;
	color:var(--medium-gray);
}
div.left-filters select + div {
	 
	width:70px;
	max-width:240px;
	position:absolute;
	z-index:-1;
	margin-top:-44px;
	height:44px;
	display:flex;
	align-items:center;
	padding-left:10px;
	font-size:1.2rem;
	font-weight:700;
	color:var(--medium-gray);
}
div.left-filters ul li.buttons div {
	display:flex;
	gap:10px;
}



div.left-filters  .woocommerce-ordering {
	float:none !important;
	margin:0;
}

nav.pagination {
	width:max-content;
	float:left;
}
nav.pagination ul {
	margin:0;
	padding:0;
	display:flex;
	width:auto;
	gap:20px;
	border-bottom:1px solid var(--light-gray);
}
nav.pagination ul li {
	width:55px;
	height:55px;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
}
nav.pagination ul li a,
nav.pagination ul li span.current {
	text-decoration:none;
	font-size:1.4rem;
	font-weight:600;
	color:var(--light-gray);
	display:flex;
	width:100%;
	height:100%;
	align-items:center;
	justify-content:center;
	border-bottom:2px solid var(--white);
	transition:var(--transition-all);
	 
}
nav.pagination ul li a:hover {
	border-bottom:2px solid var(--light-gray);
	transition:var(--transition-all);
}

nav.pagination ul li.active a {
	color:var(--black);
	font-weight:800;
	
}
nav.pagination ul li span.current {
	background:var(--white) url(../images/shape-pagination-hover.svg) 0% 100% no-repeat;
	border-bottom:0;
	color:var(--purple);
}
nav.pagination ul li span.current::after {
	background:var(--white) url(../images/shape-pagination-hover.svg) 0% 100% no-repeat;
	width:55px;
	height:15px;
	content:" ";
	position:absolute;
	bottom:-5px;
}

section.wrapper.categories-list {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	/* gap:30px; */
	gap:0px;
	margin-bottom:100px;
	
}
section.wrapper.categories-list .category {
	width:50%;
	display:flex;
	/* background:#f4f4f4; */
	aspect-ratio:auto;
	flex-direction:column;
	 
	/* border-radius:var(--medium-br); */
	/* overflow:hidden; */
	 margin-bottom:4rem;
}


section.wrapper.categories-list .category.product-slider {
	aspect-ratio:auto;
	height:auto;
}

section.wrapper.categories-list .category &gt; a {
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:flex-end;
	width:100%;
	height:100%;
	text-decoration:none;
	
	
/* 	border-radius:var(--medium-br); */
}
section.wrapper.categories-list .category &gt; a &gt; h2 {
	font-size:5rem;
	color:var(--white);
	font-weight:500;
	letter-spacing:-0.75pt;
	margin:0;
	padding:0;
	margin-bottom:-65px;
	margin-left:4rem;
	text-decoration:none !important;
	background:var(--ocean-black);
	padding:2rem 4rem;
}
section.wrapper.categories-list .category.category-in &gt; a &gt; h2 {
	margin-bottom:50px;
}


section.wrapper.categories-list .category &gt; a &gt; h2:hover {
	background:var(--purple);
}

section.wrapper.categories-list .category.double {
	width:100%;
	aspect-ratio:auto;
} 







/*deal*/
section.wrapper.categories-list .category.gift-ideas {
	width:100%;
	flex-direction:row;
	gap:calc(var(--gap)*2);
	flex-wrap:wrap;
	padding-top:calc(var(--gap)*3);
}
section.wrapper.categories-list .category.gift-ideas div.header {
	width:100%;
}

div.superdeal {
	width:calc(50% - var(--gap)); 
	padding:calc(var(--gap)*2);
	border:1px solid var(--gray-border);

	display:flex;
	flex-direction:column;
	background:var(--light-gray-bg);
}
div.superdeal .sd-inner {
	
    width: auto;
    height: auto;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

}
div.superdeal .featuredimage {
	margin-bottom:calc(var(--gap)*2);
	display: flex;
 
    width: calc(100% + var(--gap) * 4);
    margin-left: calc(var(--gap) * -2);
	margin-right: calc(var(--gap) * -2);
	margin-top: calc(var(--gap) * -2);
}
div.superdeal a.featuredimage&gt; img {
    width: 100% !Important;
	height:auto !important;
    max-width: 100%!important;
    max-height: 100% !important;
}
div.superdeal .woosb-products.woosb-products-layout-list .woosb-product .woosb-thumb {
	width:60px;
	height:60px;
	flex: 0 0 60px;
	padding:0;
}
.superdeal .woosb-products.woosb-products-layout-list .woosb-item-product {
	gap:10px;
}
.superdeal .woosb-products.woosb-products-layout-list .woosb-product .woosb-title .woosb-name {
	font-size:1.2rem;
	font-weight:500;
}


div.superdeal a.thumb,
div.superdeal a.thumb img {
	max-height:500px;
	width:100%;
}
div.superdeal a.thumb {
	margin-bottom:calc(var(--gap)*3);
}


div.superdeal h1 {
	font-size:2.3rem;
	margin:0;
	padding:0;
	margin-bottom:0;
	font-weight:600;
	letter-spacing:-1pt;
	color:var(--black);
}
div.superdeal h4 {
	margin-top:0;
	margin-bottom:2rem;
}

div.superdeal h1 a,
div.superdeal h4 a {
	text-decoration:none;
}

div.superdeal .price del {
	  color: var(--light-gray);
}
 



/*superdealnew*/
.superdeal .woosb-products {
	gap:30px;
	margin:0;
}


.superdeal .woosb-products .woosb-item-product {

	border:0;
	text-align: left;
	margin:0;
	padding:0;
}

.woosb-products[class*="woosb-products-layout-grid"] .woosb-product .woosb-name {
	    color: var(--gray-medium);
   		 text-decoration: none;
    	transition: var(--transition-all);
		font-size:1.18rem;
		font-weight:500;
}
.woosb-products[class*="woosb-products-layout-grid"] .woosb-product &gt; div {
	text-align:left;
}

.superdeal .woosb-products.woosb-products-layout-list {
	gap:1rem;
	display:flex;
	flex-direction: column;
}

.superdeal  .woosb-wrap.woosb-bundled {
	margin-bottom:calc(var(--gap)*2);
}


div.superdeal .buttons-container {
	display:flex;
	margin-top:2rem
}
section.wrapper.categories-list .category {
	height:auto;
}
section.wrapper.categories-list .category.edc {
	flex-direction:column;
	 
}
section.wrapper.categories-list .category.edc &gt; a {
	background:url(../images/web/edc.jpg) 50% 50% / cover no-repeat;
	display:flex;
	width:100%;
	height:800px;
	max-height:80vh;
}
section.wrapper.categories-list .category.bling {
	
	flex-direction:column;
	 
}
section.wrapper.categories-list .category.bling &gt; a {
	background:url(../images/web/bling.jpg) 50% 50% / cover no-repeat;
	display:flex;
	width:100%;
	height:800px;
	max-height:80vh;
}

 
section.wrapper.categories-list .category.personalcare {
	background:url(../images/web/personalcare.jpg) 50% 50% / cover no-repeat;
	height:1000px;
	max-height:80vh
}

section.wrapper.categories-list .category.mancave {
	background:url(../images/web/mancave.jpg) 50% 50% / cover no-repeat;
	height:1000px;
	max-height:80vh
}
 

section.wrapper.info-section {
	max-width:100%;
	background:var(--light-gray-bg);
	margin-bottom:0;
	width:100%;
}
div.info-section {
	width:100%;
	margin:0 auto;
	max-width:var(--mainwidth);
	min-height:240px;
	display:flex;
	align-items:center;
	 
	justify-content:center;
	
	
}
div.info-section ul {
	margin:0;
	padding:0;
	display:flex;
	width:100%;
	height:100%;
	align-items:center;
	gap:2rem; 
	justify-content:center;
}
div.info-section ul li {
	width:25%;
	display:flex;
	flex-direction:column;
	align-items:center;
	list-style:none;
	justify-content:center;
	
}
div.info-section ul li p {
	display:flex;
	align-items:center;
	text-align:center;
	justify-content:center;
	margin:0;
	padding:0;
	margin-top:10px;
	height:70px;
	font-size:1.4rem;
	font-weight:500;
	color:var(--black);
}

div.info-section ul li::before {
	width:100px;
	height:60px;
	display:block;
	content:" ";
	 
}
div.info-section ul li.shipping::before {
	background:url(../images/icon-shipping.svg) 50% 50% no-repeat;
}
div.info-section ul li.checkout::before {
	background:url(../images/icon-secure-checkout.svg) 50% 50% no-repeat;
}
div.info-section ul li.returns::before {
	background:url(../images/icon-returns.svg) 50% 50% no-repeat;
}
div.info-section ul li.authentic::before {
	background:url(../images/icon-star.svg) 50% 50% no-repeat;
}


div.pocket-dump {
	width:100%;
	max-width:var(--mainwidth);
	margin:0 auto;
	 
	padding-top:120px;
	padding-bottom:200px;
	display:flex;
	gap:40px;
}
section.pocket-dump {
	max-width:100%;
	position:relative;
	margin-bottom:0;
	
}
section.pocket-dump::before,
section.pocket-dump::after {
	background:url(../images/separator-m-shape.svg) 50% 0% / 3675px 152px no-repeat;
	max-width:100%;
	width:100%;
	height:152px;
	display:block;
	content:" ";
	position:absolute;
}
section.pocket-dump::after {
	bottom:0;
	
}
div.pocket-dump &gt; div {
	width:50%;
}
div.pocket-dump .photo {
	
	height:auto;
	aspect-ratio:654/530;
	position:relative;
}
div.pocket-dump .photo img {
	width:100%;
	height:auto;
	border-radius:0;
}
/* div.pocket-dump .photo::before {
	width:100%;
	height:100%;
	content:" ";
	position:absolute;
	top:0;
	left:0;
	background:url(../images/shape-pocket-dump.svg) 0% 0% / 100% 100% no-repeat;
} */

div.pocket-dump .description {
	display:flex;
	flex-direction:column;
	justify-content:center;
	gap:20px;
}
div.pocket-dump .description h1 {
	font-size:3rem;
	margin:0;
	padding:0;
	font-weight:600;
	letter-spacing:-1pt;
	margin-bottom:10px;
}
div.pocket-dump .description h4 {
	font-size:1.4rem;
	font-weight:700;
	margin:0;
	padding:0;
	margin-bottom:5px;
}
div.pocket-dump .description &gt; div {
	 display:inline-block;
	
}
div.pocket-dump .description p {
	font-size:1.4rem;
	line-height:150%;
	color:var(--dark-gray);
	font-weight:500;
	margin:0;
	padding:0;
}

div.our-vision {
	display:flex;
	gap:5rem;
}
div.our-vision &gt; div {
	width:50%;
}
div.our-vision h1 {
	font-weight:600;
}
div.our-vision .description p {
	font-size:1.4rem;
	color:var(--dark-gray);
	line-height:150%;
}
div.our-vision .video {
	display:flex;
	flex-direction:column;
	gap:5rem;
}
div.our-vision .video &gt; div {
	display:flex;
}
div.our-vision .video &gt; div:first-child {
	justify-content:flex-end;
}

/*breadcrumb*/

section.wrapper.breadcrumb {
	margin-bottom:0;
	max-width:var(--mainwidthsmaller);
}
section.wrapper.breadcrumb.archive-bc {
	max-width:var(--mainwidthmin);
}

ul.bc-nav {
	padding:10px 0;
	margin:0;
	display:flex;
	
	align-items:center;
	gap:20px;
	min-height:50px;
}
ul.bc-nav li {
	list-style:none;
	font-size:1.1rem;
	letter-spacing:-0.5pt;
	font-weight:500;
	display:flex;
}
ul.bc-nav li:after {
	content:" ";
	display:flex;
	
	margin-left:18px;
	background:url(../images/icon-separator-horizontal-gray.svg) 50% 50% no-repeat;
	width:10px;
	height:auto;
}
ul.bc-nav li:last-child:after {
	display:none;
}
ul.bc-nav li a {
	text-decoration:none;
	color:var(--medium-gray);
}
ul.bc-nav li a:hover {
	color:var(--black);
	text-decoration:underline;
}

/*product view*/
section.wrapper.productcontainer {
	flex-direction:row;
	flex-wrap:wrap;
	gap:45px;
	margin-bottom:50px;
}
section.wrapper.pairswith,
section.wrapper.related-products,
section.wrapper.reviewscontainer {
	max-width: var(--mainwidthsmaller);
}

section.productcontainer div.photos {
	/* border:1px solid var(--gray-border); */
	display:flex;
	 
}

section.productcontainer div.photos,
section.productcontainer div.product-information {
	width:calc(60% - 25px);

}
 
section.productcontainer div.product,
section.productcontainer div.product-details {
	width:calc(40% - 20px);

}

section.wrapper.productcontainer h1 {
	font-weight:500;
	margin:0;
	padding:0;
	margin-bottom:1.5rem;
}
section.wrapper.productcontainer h2 {
	font-weight:500;
	font-size:2.2rem;
}
section.productcontainer div.product h5,
section.productcontainer div.product h5 a {
	margin:0;
	padding:0;
	font-size:1.4rem;
	color:var(--medium-gray);
	font-weight:400;
	margin-bottom:0.5rem;
	text-decoration:none;
}
section.productcontainer div.product h5.brand,
section.productcontainer div.product h5.brand a {
	font-size:1.2rem;
	margin-bottom:0;
}
section.productcontainer div.product {
	display:flex;
	flex-direction:column;
	gap:10px;
}
section.productcontainer div.product .product-name {
	line-height:125%;
	margin-bottom:0;
}

section.productcontainer div.product .product-price {
	font-size:2.3rem;
	font-weight:500;
	margin-bottom:1rem;
}
section.productcontainer div.product .product-short-desc {
	font-size:1.4rem;
	color:var(--medium-gray);
	line-height:150%;
	font-weight:400;
}
section.productcontainer div.product .product-short-desc p {
	margin-bottom:0.5rem;
}


section.productcontainer div.product .asnp-App-GridItem-wrapper {
	flex-direction: column;
	margin:0;
}

section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-BundleGridItem-ProductBox  {
	flex-direction: row;
	width:100%;
	gap:15px;
}
section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-BundleGridItem-ProductBox .asnp-bundleGridItem-productInfo-size,
section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-BundleGridItem-ProductBox .asnp-bundleGridItem-productInfo-size ins {
	font-size:1.2rem !important;
	font-weight:600 !important;
	color:var(--black);
	padding:0;
}
section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-BundleGridItem-ProductBox .asnp-bundleGridItem-productInfo-size ins bdi {
	color:var(--purple);
}


section.productcontainer div.product .asnp-App-GridItem-wrapper  .asnp-BundleGridItem-imageBox,
section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-image-field-wrapper  {
	width:60px !important;
	height:60px !important;
	border-radius:0;
}
section.productcontainer div.product .asnp-App-GridItem-wrapper  .asnp-BundleGridItem-imageBox img {
	width:60px !important;
	height:60px !important;
	border-radius:0;
}
section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-BundleGridItem-product-info {
	width:100%;
	overflow:auto;
	text-align:left;
	align-items:flex-start;
	box-shadow:none;
	margin:0;
	padding:0;
}
.asnp-BundleGridItem-product-info .asnp-product-quantity-field&gt;input {
	background:var(--light-gray-bg) !important;
}

section.productcontainer div.product .asnp-App-GridItem-wrapper .asnp-BundleGridItem-product-info .asnp-product-quantity-field {
	align-items:flex-start !important;
	justify-content: flex-start !important;
}
section.productcontainer div.product  .asnp-productList-wrapper {
	display:none;
}
section.productcontainer div.product .asnp_easy_product_bundle .asnp-totalPrice-section .asnp-savedPrice {
	background-color: var(--purple);
}








section.productcontainer div.product .stock.out-of-stock {
	width:100%;
	background:var(--gray);
	
	font-size: 1.6rem;
	color:var(--black);
	border-radius:var(--medium-br);
	padding:15px 20px;
}

section.productcontainer div.product .shipping-options {
	display:flex;
	gap:10px;
}
section.productcontainer div.product .shipping-options &gt; div {
	border:1px solid var(--gray-border);
	border-radius:var(--medium-br);
	width:40%;
	padding:1rem;
	text-align:center;
	min-height:100px;
	display:flex;
	flex-direction:column;
	align-items:center;
	
	gap:15px;
	color:var(--medium-gray);
	font-size:1.1rem;
	margin-top:1rem;
}
section.productcontainer div.product .shipping-options &gt; div:before {
	width:100%;
	height:30px;
	min-height:30px;
	content:" ";
	display:block;
	background:transparent;
}
section.productcontainer div.product .shipping-options &gt; div.freeshipping:before {
	background: url(../images/icon-shipping.svg) 50% 50% / 30px auto no-repeat;
}
section.productcontainer div.product .shipping-options &gt; div.fastshipping:before {
	background: url(../images/icon-arrows-fast.svg) 50% 50% / 25px auto no-repeat;
}
section.productcontainer div.product .shipping-options &gt; div.slowshipping:before {
	background: url(../images/icon-turtle.svg) 50% 50% / 44px auto no-repeat;
}
section.productcontainer div.product .shipping-options &gt; div span {
	display:flex;
	align-items:center;
	height:100%;
}

section.productcontainer div.product .shipping-options &gt; div.coupon:before {
	display:none;
}
section.productcontainer div.product .shipping-options &gt; div.coupon {
	background: var(--purple);
	color:var(--ivory);
	gap:0;
	
	
}
section.productcontainer div.product .shipping-options &gt; div.coupon span {
	flex-direction: column;
	justify-content: center;
}
/*icon-arrows-fast*/


section.productcontainer div.product-extra .content {
	font-size:1.4rem;
	color:var(--medium-gray);
	line-height:150%;
}
section.productcontainer div.product-extra .content p {
	margin-bottom:0.75rem;
}
section.productcontainer div.product form.cart {
	margin-bottom:0;
	display:flex;
	flex-direction:column;
}


section.productcontainer div.product h5.options {
	font-weight:700;
	color:var(--black);
	margin-top:1rem;
}
section.productcontainer div.product-extra .SKU {
	color:var(--vampire-black);
	font-weight:600;
	font-size:1.4rem;
}

section.productcontainer div.product-extra .woocommerce-product-attributes {
	
}
section.productcontainer div.product-extra .woocommerce-product-attributes th.woocommerce-product-attributes-item__label {
	text-align:left;
}
section.productcontainer div.product-extra .woocommerce-product-attributes  td.woocommerce-product-attributes-item__value {
	padding-left:0.5rem;
}
section.productcontainer div.product-extra table.shop_attributes tr td, 
section.productcontainer div.product-extra table.shop_attributes tr th {
	font-size:1.1rem;
	font-style:normal;
}
section.productcontainer div.product-extra table.shop_attributes tr:nth-child(even) td, 
section.productcontainer div.product-extra table.shop_attributes tr:nth-child(even) th {
	background:var(--white);
}
section.productcontainer div.product-extra table.shop_attributes th {
	width:100px;
}

.variable-items-wrapper, .options-radio {
	margin:0;
	padding:0;
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}
.options-radio li, .variable-items-wrapper li {
	list-style:none;
	display:flex;
}
.options-radio li label, .variable-items-wrapper li div {
text-decoration: none;
    font-weight: 500;
    color: var(--medium-gray);
    border-radius: var(--medium-br);
    border: 1px solid var(--gray);
    padding: 9px 17px;
	font-size:1.2rem;
	cursor:pointer;
	transition:var(--transition-all);
}

.options-radio li label:hover, .variable-items-wrapper li div:hover {
	background: var(--gray);
	transition:var(--transition-all);
}
.options-radio li input[type="radio"] {
	display:none;
}
.options-radio li input[type="radio"]:checked + label,
.variable-items-wrapper li.selected &gt; div {
	 background: var(--dark-gray);
	 color:var(--white);
	 border: 1px solid var(--dark-gray);
	 transition:var(--transition-all);
}
.woocommerce div.product form.cart .variations {
	margin-bottom:2rem;
} 

.single_variation_wrap, .single_variation_wrap .woocommerce-variation-add-to-cart {
	width:100%;
	display:flex;
	flex-direction:column;
}
.woo-variation-items-wrapper ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item {
	background:transparent;
	border:0;
}
.woo-variation-items-wrapper ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.disabled {
	
	opacity: 0.25;
}

.woo-variation-items-wrapper ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item div.variable-item-contents {
	padding:0;
	border:0;
	background:transparent;
	border: 1px solid var(--gray-border);
} 
.woo-variation-items-wrapper ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.selected div.variable-item-contents {
	border: 1px solid var(--black);
}

ul.variable-items-wrapper li.variable-item div.variable-item-contents span.variable-item-span-color {
	 padding:10px;
	 width:30px;
	 height:30px;
	 display:block;
	 border-radius: var(--medium-br);
	 box-sizing:border-box;
	 border: 2px solid var(--white);
 }
 
section.productcontainer div.product div.reviews {
	display:flex;
	align-items:center;
	gap:10px;
	font-size:1rem;
	color:var(--medium-gray);
	font-weight:500;
	margin-bottom:1rem;
}
.review-stars {
	width:88px;
	height:16px;
	display:flex;
	background:url(../images/stars-reviews-outlined.svg) 0% 0% no-repeat;
}
.review-stars &gt; div {
	width:88px;
	height:16px;
	display:flex;
	background:url(../images/stars-reviews-filled.svg) 0% 0% no-repeat;
}


section.productcontainer div.product .number {
	display:flex;
	align-items:center;
	gap:10px;
	margin-top:10px;
	margin-bottom:10px;
}
section.productcontainer div.product .number input {
	width:160px;
	height:50px;
	border-radius:var(--medium-br);
	border:1px solid var(--medium-gray);
	outline:none;
	text-align:center;
	
}
section.productcontainer div.product .number .instock {
	font-size:1.4rem;
	color:var(--medium-gray);

}

section.wrapper.reviewscontainer {
	
}
section.page-separator {
    background: url(../images/separator-m-shape.svg) 50% 0% / 3675px 152px no-repeat;
  
    width: 100%;
    height: 122px;
    display: block;
  
   
}
section.wrapper.reviewscontainer ul.reviews {
	margin:0;
	padding:0;
	width:100%;
	display:flex;
	flex-direction:column;
	gap:20px;
	margin-bottom:20px;
}
section.wrapper.reviewscontainer ul.reviews li.item {
	list-style:none;
	display:flex;
	border-bottom:1px solid var(--gray-border);
	padding-bottom:20px;
}
section.wrapper.reviewscontainer ul.reviews li.item .review-meta {
	width:25%;
	display:flex;
	flex-direction:column;
	gap:5px;
}
section.wrapper.reviewscontainer ul.reviews li.item .review-meta .date {
	font-size:1.1rem;
	color:var(--gray);
}
section.wrapper.reviewscontainer ul.reviews li.item .review-meta .name {
	font-size:1.3rem;
	color:var(--black);
	font-weight:600;
}
section.wrapper.reviewscontainer ul.reviews li.item .review-text {
	font-size:1.4rem;
	color:var(--medium-gray);
	font-weight:400;
	width:75%;
}


section.wrapper.posts-section {
	max-width:var(--mainwidthmin);
	 
}

section.wrapper.posts-section article.post {
	display:flex;
	gap:calc(var(--gap) * 2);
	margin-bottom:calc(var(--gap) * 5);

}
section.wrapper.posts-section article.post img {
	max-width:400px;
	max-height:400px;
}
section.wrapper.posts-section article.post .entry-title {
	margin:1.1rem 0 0.8rem;
}
section.wrapper.posts-section article.post .entry-title a {
	text-decoration:none;
	font-weight:600;
	font-size:2.4rem;
}
section.wrapper.posts-section article.post div.content &gt; a {
	text-transform: uppercase;
	color:var(--medium-gray);
	text-decoration: none;
}
section.wrapper.posts-section article.post div.content &gt; p {
	font-size:1.4rem;
	line-height:180%;
	color: var(--dark-gray);
	margin-bottom:calc(var(--gap) * 2);
}
section.wrapper.posts-section article.post div.content &gt; time {
	color: var(--medium-gray);
	font-size:1.4rem;
}

/*post page*/
section.wrapper.post-page {
		/*	padding-top:calc(var(--gap) * 2);*/
	display:flex;
	flex-direction:row;
	gap:calc(var(--gap) * 2);
	max-width:var(--mainwidthsmaller);
}

section.wrapper.post-page &gt; .page-content {
	width:100%;
}

/*brandlist*/
ul.brandlist {
	width:100%;
	margin:0;
	padding:0;
	gap:40px;
	display:flex;
	flex-wrap:wrap;
}
ul.brandlist li {
	list-style:none;
	width:calc(25% - 30px);
	display:flex;
	flex-direction:column;
	 
	
	display:flex;
	align-items:center;
	justify-content:center;
}
ul.brandlist li div,
ul.brandlist li span {
	display:flex;
	align-items:center;
	justify-content:center;
	
}
ul.brandlist li div.img {
	position:relative;
	padding:1rem 0;
	width:100%;
}

ul.brandlist li div.img &gt; img {
	max-width:100%;
	max-height:130px;
	
}

ul.brandlist li a {
	border-radius:var(--medium-br);
	border:1px solid var(--gray-border);
	padding:1rem;
	width:100%;
	height:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	font-size:1.2rem;
	color:var(--black);
	text-decoration:none;
	gap:1rem;
}
ul.brandlist li a:hover {
	border:1px solid var(--black);
}

/*gallery*/

 
section.productcontainer div.photos {
	position:relative;
	 
}
.flex-control-nav.flex-control-thumbs {
	display:flex;
	flex-wrap:wrap;
	   /*  position: absolute; */
    left: 0;
    bottom: 0;
	padding:0;
	margin:0;
	gap:5px;
	margin-left:0; 
	margin-right:10px;
}
.flex-control-nav.flex-control-thumbs li {
display:flex;
max-width:50px;
}
.flex-control-nav.flex-control-thumbs img.flex-active {
	border: 1px solid var(--purple);
	position:relative;
}
 
.woocommerce-product-gallery__trigger {
	position:absolute;
	z-index:10;
	top:10px;
	right:10px;
	background:url(../images/icon-zoom-gray.svg) 50% 50% no-repeat;
	width:30px;
	height:30px;
	
}
.woocommerce-product-gallery__trigger img {
	display:none !important; 
}
 

.flex-control-nav.flex-control-paging {
	position:absolute;
	z-index:10;
	bottom:20px;
	display:flex;
	
	margin:0;
	padding:0;
}
.flex-control-nav.flex-control-paging li {
	list-style:none;
	
}
.flex-control-nav.flex-control-paging li a {
	content:" ";
	font-size:0;
	display: flex;
	width:30px;
    height: 30px;
    align-items: center;
    justify-content: center;
	transition:var(--transition-all);
}
.flex-control-nav.flex-control-paging li a:before {
	content:" ";
	width:6px;
	height:6px;
	border-radius:50%;
	background:var(--gray);
	display:block;
	  border:2px solid var(--white);  
	transition:var(--transition-all);
}
.flex-control-nav.flex-control-paging li a.flex-active:before {
	width:20px;
	border-radius:6px;
	transition:var(--transition-all);
}
 

 

.woocommerce-product-gallery__image &gt; a &gt; img {
	width:auto !Important;
	max-height:865px !Important;
}

.flex-direction-nav {
	position:absolute;
	top:50%;
		z-index:10;
}

.woocommerce-product-gallery {
	position:relative;
	width:100%;
	     flex-direction: column;
	    display: flex;
   /*  min-height: 100%; */
    align-items: flex-start;
	justify-content: center;
	
}
.woocommerce-product-gallery__wrapper {
	  /*   display: flex;
    align-items: center; */
	/* min-height: 100%; */
	min-width:100%;
}
.woocommerce-product-gallery__wrapper &gt; div {
    display: flex !important;
    align-items: center;
    justify-content: center;
	
	/* width:863px !important; */
	
}
/* .woocommerce-product-gallery__wrapper &gt; div a {
	width:100%;
} */

.woocommerce-product-gallery .flex-viewport {
	width:100%;
}


.flex-direction-nav {
	width:100%;
 
}
.flex-direction-nav  li.flex-nav-prev, 
.flex-direction-nav  li.flex-nav-next {
	width:40px;
	height:40px;
	position:absolute;
	list-style:none;
	left:0;
	
	margin-top:-20px;
	display:block;
}
.flex-direction-nav  li &gt; a {
	font-size:0;
	 width:40px;
	height:40px;
	display:block;
	background:red;
}

.flex-direction-nav  li.flex-nav-next {
	right:0;
	left:auto;
	margin-right:10px;
}
.flex-direction-nav  li.flex-nav-prev {
	margin-left:10px;
}
.flex-direction-nav  li.flex-nav-prev a {
	background:url(../images/btn-arr-left.svg) 50% 50% no-repeat;
}
.flex-direction-nav  li.flex-nav-next a {
	background:url(../images/btn-arr-right.svg) 50% 50% no-repeat;
}



/*inner*/
.woocommerce-form-login {
	max-width:500px;
}
.woocommerce-MyAccount-navigation {
	
}
.woocommerce-MyAccount-navigation ul {
	display:flex;
	flex-direction:column;
	margin:0;
	padding:0;
	
}
.woocommerce-MyAccount-navigation ul li {
	list-style:none;
	font-size:1.4rem;
	
}
.woocommerce-MyAccount-navigation ul li a {
	text-decoration:none;
	padding:15px 15px;
	display:flex;
	border:1px solid var(--gray-border);
	font-weight:500;
	margin-bottom:-1px;	
	color:var(--dark-gray);
	transition:var(--transition-all);
}
.woocommerce-MyAccount-navigation ul li a:hover {
	background:var(--light-gray-bg);
	transition:var(--transition-all);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background:var(--vampire-black);
	color:var(--ivory);
}

.woocommerce-MyAccount-content {
	color:var(--dark-gray);
	font-size:1.4rem;
}

.woocommerce-Input {
	border-radius:var(--medium-br);
	border:1px solid var(--dark-gray-border);
	font-size:1.4rem;
	padding:9px;
	font-weight:400;
}

body .woocommerce .woocommerce-Button,
body .woocommerce-button.button  {
	    width: auto;
    float: left;
    padding: 15px 45px;
    outline: none;
    border: 0;
    border-radius: var(--medium-br);
    background: var(--vampire-black);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .woocommerce .woocommerce-Button:hover {
	
}
body .woocommerce-button.button {
	padding: 8px 15px;
	font-size: 1.0rem;
}


body .woocommerce fieldset {
	border-radius:var(--medium-br);
	border:1px solid var(--dark-gray-border);
	margin-bottom:2rem;
}

.woocommerce-form-row &gt; label {
	font-size:1.4rem;
	color:var(--black);
	font-weight:600;
}
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
	background:var(--black);
	border-radius:var(--medium-br);
	color:var(--white);
	text-decoration:none;
	font-size:1.2rem;
	font-family:var(--mainfont) !important;
}

.wc-block-cart .wc-block-cart-items th,
body .is-large.wc-block-cart .wc-block-cart__totals-title {
	font-size:1.1rem;
}
body .is-large.wc-block-cart .wc-block-cart__totals-title {
	padding-left:16px;
}

.wc-block-components-radio-control {
	display:flex;
	
	flex-direction:column;
}

.wc-block-components-radio-control .wc-block-components-radio-control__option {
	display:flex;
	
}
body .is-large.wc-block-cart .wc-block-components-radio-control__option-layout {
	 padding-left:0.5rem;
}

.wc-block-components-radio-control__label,
.wc-block-components-totals-shipping .wc-block-components-totals-item__description {
	font-size:1.2rem;
}
.wc-block-components-totals-shipping .wc-block-components-radio-control__description, 
.wc-block-components-totals-shipping .wc-block-components-radio-control__secondary-description {
	font-size:1rem;
}
/* .wp-block-woocommerce-cart-order-summary-block {
	border: 1px solid var(--gray-border);
    border-radius: var(--medium-br);
	margin-bottom:2rem;
} */
body .wc-block-components-sidebar-layout .wc-block-components-main {
	padding-right: 2rem;
}
body .wc-block-components-product-name {
	font-size:1.2rem;
}


footer {
	width:100%;
	height:auto;
	display:flex;
	flex-direction:column;
	background:var(--black);
	color:var(--white);
}
footer div.footer-inner {
	width:100%;
	padding:5rem;
	padding-bottom:0;
 
}

footer div.footer-top {
	background:url(../images/mantionable-logo-icon.svg) 50% 0% no-repeat;
	padding-bottom:5rem;
}
footer div.footer-top h4 {
	margin:0;
	padding:0;
	font-weight:400;
	color:var(--gray);
	letter-spacing:1.6pt;
	font-size:var(--default-p);
}
footer .footer-content {
	display:flex;
	width:100%;
	gap:2rem;
}
footer div.footer-content div.column {
	width:33.33%;
}
footer div.footer-content div.column.left {
	display:flex;
	flex-wrap:wrap;
	
}
footer div.footer-content div.column.right {
	display:flex;
	justify-content:flex-end;
}

footer div.footer-content div.column h2 {
	margin:0;
	padding:0;
	color:var(--white);
	font-size:1.7rem;
	margin-bottom:1.5rem;
}
footer div.footer-content div.column form {
	display:flex;
	width:100%;
	max-width:400px;
}
footer div.footer-content div.column input[type='text'],
footer div.footer-content div.column button {
	background:var(--black);
	color:var(--white);
	font-size:1.3rem;
	border:1px solid var(--gray);
	height:40px;
	outline:none;
	margin:0;
	width:100%;
}
footer div.footer-content div.column button:hover {
	background:var(--white);
	color:var(--black);
}
footer div.footer-content div.column input[type='text'] {
	padding:0.7rem;
}
footer div.footer-content div.column button {
	color:var(--gray);
	width:auto;
	padding-left:2rem;
	padding-right:2rem;
	margin-left:-1px;
}

footer div.footer-content div.column p {
	margin:0;
	padding:0;
	margin-bottom:1.5rem;
}

footer div.footer-content div.column ul.links {
	margin:0;
	padding:0;
	display:flex;
	flex-direction:column;
	width:50%;
	margin-bottom:5rem;
}
footer div.footer-content div.column ul.links li {
	list-style:none;
	line-height:2.5rem;
}

footer div.footer-content div.column div.extra {
	width:100%;
	
}
footer div.footer-content div.column div.extra .payment-images img {
	height:20px;
}

footer div.footer-content div.column ul.contact {
	margin:0;
	padding:0;
	display:flex;
	flex-direction:column;
}
footer div.footer-content div.column ul.contact li {
	list-style:none;
	line-height:2.5rem;
	padding-left:2.5rem;
	margin-bottom:0.5rem;
}
footer div.footer-content div.column ul.contact li.location {
	background:url(../images/icon-location.svg) 0% 50% no-repeat;
}
footer div.footer-content div.column ul.contact li.phone {
	background:url(../images/icon-phone.svg) 0% 50% no-repeat;
}
footer div.footer-content div.column ul.contact li.email {
	background:url(../images/icon-email.svg) 0% 50% no-repeat;
}



footer .footer-content,
footer .footer-content a {
	color:var(--gray);
	font-size:1.3rem;
}
footer .footer-content a:hover {
	color:var(--white);
}

footer .footer-copy {
	height:140px;
	width:calc(100% + 10rem); 
	margin-left:-5rem;
	margin-right:-5rem;
	display:flex;
	background:url(../images/footer-shape-bg.svg) 50% 100% / 3599px 136px no-repeat;
	padding-top:3rem;
	align-items:center;
	margin-top:2rem
}
footer .footer-copy div {
	width:50%;
	padding-left:5rem;
	padding-right:5rem;
	display:flex;
	color:var(--gray);
	font-size:1.3rem;
}

footer .footer-copy div:last-child {
	justify-content:flex-end !important;
}

/*buttons*/
.btnBigp {
	display:flex;
}
.btnBig,
.btnBigp a {
	padding:15px 42px;
	outline:none;
	border:0;
	border-radius:var(--medium-br);
	background:var(--black);
	text-decoration:none;
	font-size:1.2rem;
	font-weight:600;
	letter-spacing:1pt;
	transition:var(--transition-all);
	
}
.btnBig:hover,
.btnBigp a:hover {
	background:var(--vampire-black);
	color:var(--white);
	transition:var(--transition-all);
	
	 
}

.btnWhite,
 .btnWhitep a {
	background:var(--white);
	transition:var(--transition-all);
	border:1px solid var(--white);
}
 .btnWhitep a:hover {
	background:transparent;
	border:1px solid var(--white);
 }

.btnBlack,
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
	width:auto;
	float:left;
	padding:15px 45px;
	outline:none;
	border:0;
	border-radius:var(--medium-br);
	background:var(--vampire-black);
	color:var(--white);
	text-decoration:none;
	font-size:1.2rem;
	font-weight:600;
	letter-spacing:0;
	text-transform:uppercase;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:var(--transition-all);
	font-family:var(--mainfont) !important;
}
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
	width:100%;
}
.btnBlack:hover,
.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover {
	background:var(--medium-gray) !important;
	color:var(--ivory);
	cursor:pointer;
	transition:var(--transition-all);
}


.btnOutlined {
	width:auto;
	float:left;
	padding:15px 33px;
	outline:none;
	border:0;
	border-radius:var(--medium-br);
	border:1px solid var(--gray);
	color:var(--dark-gray);
	text-decoration:none;
	font-family: var(--mainfont);
	font-size:1.2rem;
	font-weight:500;
	text-transform:uppercase;
	display:block;
	transition:var(--transition-all);
}
.btnOutlined:hover {
	background:var(--gray) !important;
	color:var(--white);
	transition:var(--transition-all);
}

.btnSmall {
	padding:8px 15px;
	font-size:1rem;
	font-weight:500;
	box-sizing:border-box;
	transition:var(--transition-all);
}



.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
	font-size: 1.1rem;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 600;
    border-radius: var(--medium-br);
    left: auto;
    color: var(--black);
    background:transparent;
	border: 1px solid var(--black);
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
	transition:var(--transition-all);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
    background-color:var(--black);
    text-decoration: none;
    background-image: none;
    color:var(--white);
	transition:var(--transition-all);
}








/*checkbox-radio*/
/*defualt form controls*/

/* Basic styles  

*/
.mt-input input[type="checkbox"],
.mt-input input[type="radio"],
.wpc-term-item-content-wrapper input[type="checkbox"],
.wpc-term-item-content-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.mt-input label,
.wpc-term-item-content-wrapper label {
  position: relative;
  display: flex;
  align-items:center;
  padding: 0 0 0 calc(var(--checkbox-size) + 10px);
  height: var(--checkbox-size);
  /* line-height: 150%; */
  cursor: pointer;
  font-size:1.2rem;
  font-weight:500;
  color:var(--vampire-black);
 
}
.mt-input label::before,
.mt-input label::after,
.wpc-term-item-content-wrapper label::before,
.wpc-term-item-content-wrapper label::after  {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
}
.mt-input label::before,
.wpc-term-item-content-wrapper label::before {
  content: " ";
  border: 2px solid var(--medium-gray);
  border-radius: 20%;
   box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


/* Checkbox */

.mt-input input[type="checkbox"] + label::after,
.wpc-term-item-content-wrapper input[type="checkbox"] + label::after {
  content: " ";
  background:url(../images/icon-checkmark-white.svg) 50% 50% no-repeat;
  color: var(--white);
  line-height: var(--checkbox-size);
  text-align: center;
  
}
/* Radio */
.mt-input input[type="radio"] + label::before,
.wpc-term-item-content-wrapper input[type="radio"] + label::before {
  border-radius: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.mt-input input[type=radio] + label::after,
.wpc-term-item-content-wrapper input[type=radio] + label::after {
  content: " ";
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: var(--medium-gray);
  border: 0;
  border-radius: 50%;
}
/* :checked */
.mt-input input[type="checkbox"]:checked + label::before,
.mt-input input[type="radio"]:checked + label::before,
.wpc-term-item-content-wrapper input[type="checkbox"]:checked + label::before,
.wpc-term-item-content-wrapper input[type="radio"]:checked + label::before  {
  background: var(--medium-gray);
  border-color: var(--medium-gray);
}
.mt-input input[type="radio"]:checked + label::before,
.wpc-term-item-content-wrapper input[type="radio"]:checked + label::before {
	background:transparent;
}

.mt-input input[type="checkbox"] + label::after,
.mt-input input[type=radio] + label::after,
.wpc-term-item-content-wrapper input[type="checkbox"] + label::after,
.wpc-term-item-content-wrapper input[type=radio] + label::after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.mt-input input[type="checkbox"]:checked + label::after,
.mt-input input[type=radio]:checked + label::after,
.wpc-term-item-content-wrapper input[type="checkbox"]:checked + label::after,
.wpc-term-item-content-wrapper input[type=radio]:checked + label::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* Transition */
.mt-input label::before,
.mt-input label::after,
.wpc-term-item-content-wrapper label::before,
.wpc-term-item-content-wrapper label::after  {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}


.mt-input input[type="checkbox"]:checked + label,
.mt-input input[type="radio"]:checked + label,
.wpc-term-item-content-wrapper input[type="checkbox"]:checked + label,
.wpc-term-item-content-wrapper input[type="radio"]:checked + label{
 font-weight:600;  
 /* text-shadow:0px 0px 1px black; */
}
/*disabled*/
.mt-input.disabled label::before,
.wpc-term-item-content-wrapper.disabled label::before {
	border-color: var(--light-gray);
}

.mt-input.disabled input[type="checkbox"]:checked + label::before,
.mt-input.disabled input[type="radio"]:checked + label::before,
.wpc-term-item-content-wrapper.disabled.disabled input[type="checkbox"]:checked + label::before,
.wpc-term-item-content-wrapper.disabled.disabled input[type="radio"]:checked + label::before {
  background: var(--light-gray);
  border-color: var(--light-gray);
}
/*wpc override*/
.wpc-filters-main-wrap li.wpc-term-item label {
	padding: 0 0 0 calc(var(--checkbox-size) + 10px) !important;
}
body .wpc-filters-main-wrap li.wpc-term-item {
	margin-bottom:0;
}
.wpc-term-count {
	margin:0;
}
.wpc-filters-main-wrap li.wpc-term-item label {
	line-height:1;
}

.wpc-filters-main-wrap li.wpc-term-item a {
	font-weight:500;
	color:var(--vampire-black);
}
.wpc-filters-date-range-column {

}
.wpc-filters-range-column.wpc-filters-range-min-column {
	margin-right:0;
	display:flex;
	flex-grow:5;
	 max-width:53%;
}
 
.wpc-filters-range-column.wpc-filters-range-min-column:after {
	content:"-";
	width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpc-search-field {
	width: 100%;
    max-width: 250px;
    height: 44px;
    border: 1px solid var(--medium-gray) !important;
    border-radius: var(--medium-br);
    outline: none;
    padding-left: 70px;
    background: transparent;
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.wpc-filters-widget-content input[type=email], .wpc-filters-widget-content input[type=number], .wpc-filters-widget-content input[type=password], .wpc-filters-widget-content input[type=search], .wpc-filters-widget-content input[type=tel], .wpc-filters-widget-content input[type=text], .wpc-filters-widget-content input[type=url], .wpc-filters-widget-content select {
	border: 1px solid var(--medium-gray) !important;
}



body .wpc-filters-main-wrap .wpc-filters-widget-controls-container a.wpc-filters-apply-button, 
body .wpc-filters-main-wrap a.wpc-filters-submit-button {
	width: auto;
    float: left;
    
    outline: none;
    border: 0;
    border-radius: var(--medium-br);
    background: var(--vampire-black);
    color: var(--white);
    text-decoration: none;
     
       padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 500;
    box-sizing: border-box;
    letter-spacing: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpc-filters-main-wrap a.wpc-filters-reset-button {
	    width: auto;
    float: left;
     
    outline: none;
    border: 0;
    border-radius: var(--medium-br);
    border: 1px solid var(--gray);
    color: var(--dark-gray);
    text-decoration: none;
    font-family: var(--mainfont);
     
     
    text-transform: uppercase;
    display: block;
	    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 500;
    box-sizing: border-box;
}
.wpc-filter-layout-submit-button {
	gap:5px;
}
.wpc-search-field-wrapper .wpc-search-clear-icon-wrapper {
	right:10px;
}
.wpc-filters-section {
	border-bottom:1px solid var(--gray-border);
	padding-bottom:2rem;
}


/*search*/
.dgwt-wcas-ico-magnifier, .dgwt-wcas-ico-magnifier-handler, html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon {
	max-width:40px;
}
header nav.top ul.corner-buttons a.dgwt-wcas-search-icon {
	background: url(../images/icon-search.svg) 50% 50% no-repeat;	
}
header nav.top ul.corner-buttons a.dgwt-wcas-search-icon:hover {
	background: url(../images/icon-search-purple.svg) 50% 50% no-repeat;	
}
header nav.top ul.corner-buttons a.dgwt-wcas-search-icon &gt; svg {
	display:none;
}
.dgwt-wcas-overlay-mobile,
.dgwt-wcas-suggestions-wrapp,
.dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp, 
.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return {
	background:var(--vampire-black);
	border:0;
}
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline-v2 {
	color:var(--gray);
	font-size:1.2rem;
}

.dgwt-wcas-suggestion .dgwt-wcas-st,
.dgwt-wcas-suggestion-nores {
	color:var(--gray);
	font-size:1.2rem;
}

.dgwt-wcas-suggestion .dgwt-wcas-si {
	    background: url(../images/icon-search.svg) 50% 50% no-repeat;
		min-height:40px;
}
.dgwt-wcas-suggestion .dgwt-wcas-si &gt; svg {
	display:none;
}
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-history-search.dgwt-wcas-suggestion-selected,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-product.dgwt-wcas-suggestion-selected {
	background:var(--purple);
	color:var(--white);
	text-decoration:none;
}


.dgwt-wcas-suggestion.dgwt-wcas-suggestion-product.dgwt-wcas-suggestion-selected {
	
}


.dgwt-wcas-suggestion .dgwt-wcas-st-title &gt; strong {
	color:var(--white);
}


.dgwt-wcas-sp {
    color: var(--gray);
    font-size: 1rem;
    line-height: 100%;
    text-align: right;
    padding-left: 10px;
	display:flex;
	align-items:center;
}




li.slider-range {
	display:flex;
}
li.slider-range &gt; input,
.wpc-filters-range-inputs input {
	width:105px;
	height:44px;
	border: 1px solid var(--medium-gray);
	border-radius:var(--medium-br);
	font-size: 1.2rem;
    color: var(--medium-gray);
	padding-left:10px;
}
li.slider-range div.spacer {
	width:20px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.ui-slider.ui-slider-horizontal {
	height:0;
	border:0 !important;
	background:transparent;
	max-width:100%;
	margin-top:1rem;
	margin-bottom:1rem;
}
.ui-slider.ui-slider-horizontal::after {
	width:100%;
	height:1px;
	content:" ";
	background: var(--light-gray) !important;
	
	display:block;
	position: relative;
    z-index: -10;
    top: 1px;
}
.wpc-filters-range-slider-wrapper {
	margin:0;
	margin-top:2rem;
}
.wpc-filters-range-slider-control span.ui-slider-handle:nth-child(3) {
	 
	margin-left:-22px !important;
}



.ui-slider.ui-slider-horizontal &gt; .ui-slider-range.ui-widget-header {
	height:1px;
	/* margin-top:7px; */
	z-index:2;
	background:var(--black) !important;
}

.ui-slider .ui-slider-handle {
	box-sizing: border-box;
z-index:3;
border-radius:50%;
width: 22px !important;
height: 22px !important;
margin-left:0 !important; 

background: #EDEDED;
border: 1px solid #CACACA;
box-shadow: 2px 4px 7.7px rgba(0, 0, 0, 0.15);

}

.page-content p {
	font-size:1.2rem;
	color:var(--black);
}


/*wc*/
.woocommerce-error, .woocommerce-info, .woocommerce-message {
	    padding: 1.3rem 4rem;
    font-size: 1.4rem;
    margin: 0 0 2em;
    position: relative;
    background-color: var(--light-gray-bg);
    color: var(--black);
    border-top: 0;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
}</pre></body></html>