:root {
	--display-status: none;
	--filter-status: none;
	--opacity-status: 1;
}

#primary.content-area {
	padding: 0;
	max-width: none;
}

.shop-body .ew-cont {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 5rem
}

section .bg-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.aside-filter {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	scrollbar-width: thin;
	scrollbar-color: var(--thd-btn-bg) transparent;
}

.aside-filter .search-form {
	height: 4rem;
}

.aside-filter .search-form label {
	width: 100%;
	border-right: none;
}

.aside-filter .search-field {
	height: 4rem;
	width: 100%;
	max-width: 100%;
	border: 0.1rem solid #888888;
	border-right: none;
	padding: .5rem 1rem;
	font-size: inherit;
}

.aside-filter .search-submit {
	width: 6rem;
	height: 4rem;
}

.aside-filter::-webkit-scrollbar {
	width: 10px;
}

.woocommerce-breadcrumb {
	font-size: 85%;
}

.aside-filter::-webkit-scrollbar-track {
	background: transparent;
}

.aside-filter::-webkit-scrollbar-thumb {
	background-color: var(--thd-btn-bg);
	border-radius: 20px;
	border: 3px solid transparent;
}

.products-cont {
	overflow: hidden;
}

.woocommerce-products-header {
	text-align: center;
	background: #fff;
	position: relative;
}

.woocommerce-products-header h1 {
	color: var(--pri-head-clr);
}

.attribute-name {
	font-weight: bold;
	position: relative;
	margin-bottom: 2rem;
	font-size: 130%;
}

.attribute-name::after {
	position: absolute;
	content: "";
	width: 10%;
	height: .5rem;
	background: var(--thd-btn-bg);
	bottom: -.2rem;
	left: 0;
}

.filter-item[data-level="1"]{
	padding-left: 1.5rem;
}
.filter-item[data-level="2"]{
	padding-left: 3rem;
}

.filter-item label {
	cursor: pointer;
	position: relative;
}

.filter-item span {
	font-size: 60%;
}

.filter-item input[type="checkbox"] {
	margin-right: .5rem;
	cursor: pointer;
}

.woocommerce-products-header .ew-cont {
	color: var(--pri-head-clr);
	position: relative;
	z-index: 1;
}

.woocommerce-products-header .ew-cont .term-description {
	margin: 3rem auto 0 auto;
	padding: 0 1rem;
	max-width: 60rem;
}

.woocommerce-products-header .ew-cont a {
	color: var(--pri-head-clr);
}

.woocommerce-products-header img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: unset;
}

.product-loop-top {
	display: flex;
	justify-content: space-between;
	padding-bottom: 3rem;
}

.product a {
	width: 100%;
}

.product img {
	object-fit: contain;
}

.product h3,
.woocommerce-Price-amount {
	font-size: 95%;
}

.product .price {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 0.5rem 0 2rem;
	font-size: 90%;
}

.product .price del {
	margin-right: 1rem;
}

.woocommerce-notices-wrapper {
	max-width: 144rem;
	display: flex;
	justify-content: center;
}

.woocommerce-notices-wrapper .woocommerce-message {
	display: flex;
	align-items: center;
	padding: 3rem 0;
	font-size: 1.8rem;
}

.woocommerce-notices-wrapper .woocommerce-message a {
	margin-right: 2rem;
}

.woocommerce-pagination {
	display: flex;
	margin-top: 5rem;
}

.page-numbers {
	display: flex;
	margin: auto;
	list-style: none;
}

.pagination-cont {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding-top: 5rem;
}

.pagination-cont:empty {
	display: none;
}

.inactive-pagin {
	pointer-events: none;
	opacity: .2;
}

.pagin-nav {
	background: var(--thd-btn-bg);
	color: var(--thd-btn-txt);
}

.page-numbers li,
.pagination-cont .pagin-nav {
	margin: .3rem;
}

.page-numbers li a,
.page-numbers li span,
.pagination-cont .pagin-nav {
	line-height: 1;
	padding: 1rem 1.4rem;
	border: none;
	font-size: 1.8rem;
}

.page-numbers li .current,
.pagination-cont .pagin-nav.active-button {
	pointer-events: none;
	opacity: .7;
}

.pagination-cont .pagin-nav {
	cursor: pointer;
	transition: color .3s;
}

.pagination-cont .pagin-nav:hover {
	color: var(--thd-btn-hov-txt);
}

.products-loop-cont {
	width: 100%;
}

.count-order-cont {
	display: flex;
	justify-content: space-between;
	font-size: 90%;
	color: var(--color-delta);
	margin-bottom: 0.5rem;
}

.active-filters {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	width: fit-content;
	min-height: 4rem; 	
	margin-bottom:2rem;
}

.active-filters.loader::after {
	border: 0.4rem solid #f3f3f3;
	border-top: 0.4rem solid var(--thd-btn-bg);
	border-radius: 50%;
	width: 2.6rem;
	height: 2.6rem;
	animation: spin 1s linear infinite;
	position: absolute;
	content: '';
	right: -4rem;
	top: 0;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.selected-filt-btn {
	position: relative;
}

.selected-filt-btn span {
	display: block;
	position: absolute;
	left: .3rem;
	top: 52%;
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
	color: var(--thd-btn-txt);
}

.selected-filt-btn button {
	cursor: pointer;
	padding: .5rem 1rem .5rem 2rem;
	width: fit-content;
	width: -webkit-fit-content;
	border: none;
	font-weight: normal;
	background: var(--thd-btn-bg);
	color: var(--thd-btn-txt);
	transition: .3s;
}

.selected-filt-btn button:hover {
	background: var(--thd-btn-hov-bg);
	color: var(--thd-btn-hov-txt);
}

.attribute-name span {
	display: none;
	cursor: pointer;
	width: 2rem;
	height: 2rem;
}

[data-visible="0"] {
	opacity: .4;
	pointer-events: none;
}

.atr-values-cont {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

@keyframes pop {
	0% {
		opacity: 0;
	}

	75% {
		opacity: 1;
	}

	100% {
		transform: scale(1.2);
	}
}

.filter-item input[type="checkbox"],
.filter-item input[type="radio"] {
	display: none;
}

.filter-item.type-checkbox label,
.filter-item.type-radio label {
	padding-left: 2.2rem;
	position: relative;
	color: var(--headings-color);
}

.filter-item.type-checkbox label::before {
	content: '';
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 1;
	width: 1.2rem;
	height: 1.2rem;
	background: transparent;
	border: 0.2rem solid var(--thd-btn-bg);
}

.filter-item.type-checkbox input[type="checkbox"]:checked+label::before {
	background: var(--thd-btn-bg);
	transform: rotateY(180deg) translateY(-50%);
}

.filter-item.type-radio label::before,
.filter-item.type-radio label::after {
	content: '';
	position: absolute;
	border-radius: 50%;
}

.filter-item.type-radio label::after {
	width: 1.2rem;
	height: 1.2rem;
	border: 0.2rem solid var(--thd-btn-bg);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.filter-item.type-radio label::before {
	background: var(--thd-btn-bg);
	height: 1.5rem;
	width: 1.5rem;
	left: 0;
	top: 0;
	transform: scale(2);
	opacity: 0;
	visibility: hidden;
	transition: 0.25s ease-in-out 0s;
}

.filter-item.type-radio input[type="radio"]:checked+label {
	border-color: var(--thd-btn-bg);
}

.filter-item.type-radio input[type="radio"]:checked~label::before {
	opacity: 1;
	visibility: visible;
	top: 50%;
	transform: scale(1) translateY(-50%);
}

.select select {
	appearance: none;
	background-color: transparent;
	border: none;
	padding: 0.8rem 3rem 0.8rem 0.8rem;
	margin: 0;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	cursor: inherit;
	line-height: inherit;
	outline: none;
}

.select {
	width: 100%;
	border: 0.1rem solid #888888;
	border-radius: 0.3rem;
	padding: 0;
	cursor: pointer;
	line-height: 1.1;
	background-color: #fff;
	background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
	position: relative;
}

.select::after {
	content: "";
	width: 1rem;
	height: 0.6rem;
	background-color: #6e6e6e;
	clip-path: polygon(100% 0%, 0 0%, 50% 100%);
	position: absolute;
	top: 50%;
	right: 0.8rem;
	transform: translateY(-50%);
}

.select select:focus+.select-focus {
	position: absolute;
	top: -0.1rem;
	left: -0.1rem;
	right: -0.1rem;
	bottom: -0.1rem;
	border: 0.2rem solid #575757;
	border-radius: inherit;
}

/* aside filter mobile */
.loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(225, 225, 255, 0.15);
}

.mob-filter-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.69);
	cursor: pointer;
}

.mob-filter-x {
	pointer-events: none;
	color: #fff !important;
	transform: translatex(50%) rotate(45deg);
	position: fixed;
	bottom: 2rem;
	right: 4rem;
	line-height: 1;
	font-size: 5rem;
	z-index: 10000;
	font-weight: 700;
}

.mob-filter-count {
	pointer-events: none;
	position: absolute;
	top: 9rem;
	right: 14%;
	color: #fff;
	transform: translatex(50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mob-res-number {
	font-size: 120%;
	font-weight: bold;
}

.filter-mobile-btn {
	display: none;
	cursor:pointer;
}

.mob-res {
	border-radius: 50vw;
	background: #fff;
	padding: .5rem .8rem;
	color: #000;
	font-size: 16px;
}

.dot-windmill {
	position: relative;
	top: -10px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
	color: #fff;
	transform-origin: 5px 15px;
	animation: dotWindmill 2s infinite linear;
}

.dot-windmill::before,
.dot-windmill::after {
	content: '';
	display: inline-block;
	position: absolute;
}

.dot-windmill::before {
	left: -8.66px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
	color: #fff;
}

.dot-windmill::after {
	left: 8.66px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
	color: #fff;
}

@keyframes dotWindmill {
	0% {
		transform: rotateZ(0deg) translate3d(0, 0, 0);
	}

	100% {
		transform: rotateZ(720deg) translate3d(0, 0, 0);
	}
}

.mob-filter-count {
	pointer-events: none;
	position: absolute;
	top: 90px;
	right: 14%;
	color: #fff;
	transform: translatex(50%);
}

li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: var(--opacity-status);
	filter: var(--filter-status);
	transition: all .25s;
	height: 100%;
}

li.product::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: var(--thd-btn-bg);
	width: 4rem;
	height: 4rem;
	box-sizing: border-box;
	animation: flipX 1s linear infinite;
	display: var(--display-status);
}

@keyframes flipX {
	0% {
		transform: perspective(200px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
	}
}

@-webkit-keyframes slide-in {
	0% {
		opacity: .2;
		transform: translateY(-10px)
	}

	50% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: .2;
		transform: translateY(-10px)
	}
}

@keyframes slide-in {
	0% {
		opacity: .2;
		transform: translateY(-10px)
	}

	50% {
		opacity: 1;
		transform: translateY(0)
	}

	100% {
		opacity: .2;
		transform: translateY(-10px)
	}
}

@media only screen and (max-width: 991px) {
	.shop-body .ew-cont {
		grid-template-columns: minmax(0, 1fr);
	}

	.columns-2 .product img {
		height: 30rem;
	}

	.filter-mobile-btn {
		display: block;
		margin: 0 auto 3rem auto;
		background: var(--thd-btn-bg);
		color: var(--thd-btn-txt);
		padding: 1.5rem 4rem;
		border: none;
		border-radius: 0.3rem;
		font-family: inherit;
		font-weight: bold;
	}

	.aside-filter {
		display: none;
		padding-top: 6rem;
		padding-bottom: 6rem;
		padding-left: 2rem;
		padding-right: 2rem;
		position: fixed;
		top: 0;
		left: 0;
		background: #fff;
		width: 35% !important;
		height: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
		z-index: 99999;
		-webkit-animation: mob-filter-appear .15s .15s both ease-out;
		animation: mob-filter-appear .15s .15s both ease-out;
	}

	.aside-mob-visible {
		display: flex;
	}

	@-webkit-keyframes mob-filter-appear {
		0% {
			transform: translateX(-100%);
		}

		100% {
			transform: translateX(0);
		}
	}

	@keyframes mob-filter-appear {
		0% {
			transform: translateX(-100%);
		}

		100% {
			transform: translateX(0);
		}
	}

	.atr-values-cont {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 767px) {
	.aside-filter {
		width: 70% !important
	}

	.count-order-cont {
		margin-bottom: 2.5rem;
	}
}

@media only screen and (max-width: 480px) {
	.product img,
	.columns-2 .product img,
	.columns-3 .product img,
	.columns-4 .product img,
	.columns-5 .product img {
		height: 25rem;
	}
}