/* woocommerce category tree */
.woocommerce-category-tree {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 0 0 0 25px;
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree {
		gap: 20px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree {
		padding: 0 0 0 30px !important;
	}
}
.woocommerce-category-tree li {
	list-style: none;
	display: block;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	user-select: none;
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li {
		font-size: 20px !important;
	}
}
.woocommerce-category-tree li.current {
	order: -1;
}
.woocommerce-category-tree li a.category-menu-item.current {
	font-weight: 700;
	color: #0069AA;
}
.woocommerce-category-tree li a.category-menu-item.current::after {
	font-family: "Font Awesome 6 Pro" !important;
	content: '\f005';
	font-weight: 900;
}
.woocommerce-category-tree li a.category-menu-item.current.exact::before,
.woocommerce-category-tree li a.category-menu-item.current.exact::after {
	font-weight: 700;
}
.woocommerce-category-tree li a.category-menu-item.current::before {
	margin-right: 5px;
	font-weight: 500;
}
.woocommerce-category-tree li a.category-menu-item.current::after {
	margin-left: 5px;
	font-weight: 500;
}
.woocommerce-category-tree li .expander {
	position: relative;
	bottom: -13px;
	left: -3px;
}
.woocommerce-category-tree li .expander > a {
	position: absolute;
	left: -24px;
	bottom: -10px;
	transition: 0.3s;
	width: 22px;
	height: 22px;
	border-radius: 30px;
	border: solid 2px #7b7e81;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	user-select: none;
	opacity: 0.5;
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li .expander > a {
		left: -35px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li .expander > a {
		bottom: -13px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li .expander > a {
		width: 30px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li .expander > a {
		height: 30px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li .expander > a {
		font-size: 22px !important;
	}
}
.woocommerce-category-tree li .expander > a:hover {
	opacity: 1;
	text-decoration: none;
	border-color: #f39200;
}
.woocommerce-category-tree li .expander > a:hover.contract {
	background-color: #f39200;
}
.woocommerce-category-tree li .expander .expand {
	display: inline-flex;
}
.woocommerce-category-tree li .expander .contract {
	display: none;
	background: #7b7e81;
	color: white;
}
.woocommerce-category-tree li.active > .sub-category {
	display: flex;
	flex-direction: column;
	padding: 0 0 0 15px;
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li.active > .sub-category {
		gap: 20px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li.active > .sub-category {
		padding-top: 20px !important;
	}
}
@media screen and (max-width: 800px) {
	.woocommerce-category-tree li.active > .sub-category {
		padding-bottom: 20px !important;
	}
}
.woocommerce-category-tree li.active > .sub-category > li {
	display: block;
}
.woocommerce-category-tree li.active > .expander .expand {
	display: none;
}
.woocommerce-category-tree li.active > .expander .contract {
	display: inline-flex;
}
.woocommerce-category-tree > li > a.category-menu-item {
	transition: 0.1s;
	color: #646464;
	font-weight: 600;
}
.woocommerce-category-tree > li > a.category-menu-item:hover {
	text-decoration: none;
	color: #f39200;
}
.woocommerce-category-tree > li li {
	display: none;
}
.woocommerce-category-tree > li li a.category-menu-item {
	transition: 0.1s;
	color: #646464;
	font-weight: 500;
	font-size: 0.8em;
}
.woocommerce-category-tree > li li a.category-menu-item:hover {
	text-decoration: none;
	color: #f39200;
}