.sidebar-category__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 700;
  color: #828282;
  text-transform: uppercase;
  cursor: pointer;
}
.sidebar-category__title:before {
  content: "";
  margin-top: 6px;
  margin-right: 12px;
  display: inline-block;
  width: 6px;
  height: 10px;
  background-color: #828282;
  clip-path: path("M0 1 Q0 0 1 0 L5 4 Q6 5 5 6 L1 10 Q0 10 0 9 Z");
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.sidebar-category__title.open:before {
  background-color: #c7b7aa;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sidebar-category__title a {
  color: inherit;
  text-decoration: none;
}
.sidebar-category__children {
  padding-top: 28px;
  display: none;
}
.sidebar-category__children-item {
  line-height: 1.21;
}
.sidebar-category__children-item:not(:first-child) {
  margin-top: 18px;
}
.sidebar-category__children-title {
  font-size: 14px;
  color: rgba(130, 130, 130, 0.55);
}
.sidebar-category__children-title a {
  color: inherit;
  text-decoration: none;
}
.sidebar-category__children-title--active {
  color: #828282;
}
@media (max-width: 1300px) {
  .sidebar-category__title:before {
    display: none;
  }
  .sidebar-category__children {
    padding-top: 18px;
  }
}