.zndsg-categories-accordion {
	border-top: 1px solid var(--brdcolor-gray-300);
}

.zndsg-category {
	border-bottom: 1px solid var(--brdcolor-gray-300);
}

.zndsg-category-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 10px;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	text-transform: none;
	color: var(--wd-title-color);
}
.zndsg-category-toggle:hover {
  background-color: var(--znd-bg01);
}
.zndsg-category-icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-left: 15px;
}

.zndsg-category-icon::before {
	position: absolute;
	top: 4px;
	left: 3px;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform .2s ease, top .2s ease;
}

.zndsg-category.is-open > .zndsg-category-toggle .zndsg-category-icon::before {
	top: 7px;
	transform: rotate(225deg);
}

.zndsg-category-panel {
	padding: 5px;
}

.zndsg-child-categories-accordion {
	padding: 0 10px 10px;
}

.zndsg-category-child {
	border-bottom: 1px solid var(--brdcolor-gray-200, #eee);
}

.zndsg-category-child .zndsg-category-toggle {
	padding: 12px 10px;
	font-size: 17px;
	font-weight: 500;
}

.zndsg-category-child.is-open {
	margin: 10px 0;
}

.zndsg-category-results table {
	margin-bottom: 15px;
}

.zndsg-category.is-loading .zndsg-category-results:empty::before {
	display: block;
	padding: 15px;
	content: "Загрузка...";
}

.zndsg-category.is-open {
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 20px 0;
  border-radius: 6px;
}
.zndsg-category.is-open .zndsg-category-toggle,
.zndsg-category.is-open .zndsg-category-child.is-open .zndsg-category-toggle,
.zndsg-category.is-open .zndsg-category-child .zndsg-category-toggle:hover {
  background-color: var(--znd-bg01);
}
.zndsg-category.is-open .zndsg-category-child .zndsg-category-toggle {
  background-color: #fff;
}
