.SA_CategoryListToggle .SA_CategoryItem {
  list-style: none;
  padding: 10px 0 0 20px;
}
.SA_CategoryListToggle > .SA_CategoryItem {
  padding: 10px 0 0 0;
}
.SA_CategoryListToggle .SA_CategoryItem div {
  display: flex;
}
.SA_CategoryListToggle .SA_CategoryItem a {
  margin-left: 5px;
}
.SA_CategoryListToggle .SA_NoChild,
.SA_CategoryListToggle .SA_HasChild {
  position: relative;
  min-width: 1rem;
  height: 1rem;
  margin-top: 4px;
}
.SA_CategoryListToggle .SA_NoChild::before {
  position: absolute;
  content: "";
  top: 0.3rem;
  left: 0.25rem;
  width: 0.3rem;
  height: 0.3rem;
  border-top: 1px solid #3f3f3f;
  border-right: 1px solid #3f3f3f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.SA_CategoryListToggle .SA_HasChild {
  cursor: pointer;
  border: 1px solid #3f3f3f;
}
.SA_CategoryListToggle .SA_HasChild::after,
.SA_CategoryListToggle .SA_HasChild::before {
  position: absolute;
  content: "";
  top: 0.2rem;
  left: -1px;
  height: 0.5rem;
  margin: 0 50%;
  border-right: 1px solid #3f3f3f;
  transition: all 0.5s ease-out;
}
.SA_CategoryListToggle .SA_HasChild::before,
.SA_CategoryListToggle .SA_HasChild.open::after {
  transform: rotate(90deg);
}
.SA_CategoryListToggle .SA_ChildCategory {
  display: none;
}
.SA_CategoryListToggle .SA_ChildCategory.open {
  display: block;
}
