.posts_filter_cat {
	width: fit-content;
	padding: 10px;
	text-align: right;
	font-size: 14px;
	position: relative;
	cursor: pointer;
	border-radius: var(--br);
	min-width: 160px;
	font-weight: 700;
	color: var(--tc);
	background: #F5F5F5;
}
.posts_filter_cat::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath d='M9 1L5 5L1 1' stroke-linecap='round' stroke-linejoin='round' stroke='%23000'/%3E%3C/svg%3E");
	width: 12px;
	height: 8px;
	display: block;
	position: absolute;
	opacity: .5;
	top: 13px;
	left: 13px;
	transition: 0.3s all linear;
}
.posts_filter_items {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: flex-start;
	list-style: none;
	font-size: 14px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px !important;
	width: 100%;
}
.posts_filter_items a {
	padding: 5px 10px;
	border-radius: 8px;
	color: var(--tc);
	position: relative;
}
.posts_filter_items a.active {
	color: var(--mc);
}
.posts_filter_items a.active::before {
	content: '';
	position: absolute;
	bottom: -5px;
	right: 0;
	height: 2px;
	width: 100%;
	background: var(--mc);
}
.posts_filter_cats_list a {
	color: #000;
	padding: 5px 0;
}
.archive_filter_wrap {
	position: relative;
}
.posts_filter_cats_list {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	gap: 5px;
	max-height: 200px;
	overflow-y: auto;
}
.posts_filter_cats_box {
	display: none;
}
.found_posts {
	position: absolute;
	left: 10px;
	top: 5px;
	font-size: 14px;
}

.post_cat_wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-top: 1px solid #ddd;
	padding-top: 10px;
	margin-top: 20px;
	gap: 12px;
}
.post_cat_wrap .post_cat_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	width: 100%;
	font-size: 14px;
	color: var(--tc);
	padding-right: 14px;
	position: relative;
}
.post_cat_item::before {
	content: '';
	position: absolute;
	right: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border: 2px solid var(--mc);
	border-radius: 50px;
}
.post_cat_item:hover::before {background: var(--mc);}
.post_cat_item_count {
	background: var(--mc);
	color: var(--tc);
	width: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 700;
}