.catalog-categories {
  margin-bottom: 60px;
}

.catalog-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.catalog-categories__li {
  height: 48px;
  width: 100%;
}
.catalog-categories__li:not(:last-child) {
  border-bottom: 1px solid var(--bg-highlight);
}

.catalog-categories__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  color: var(--text-primary);
}
.catalog-categories__link span {
  font-size: 16px;
  line-height: 16px;
}
.catalog-categories__link img {
  width: 20px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}