.category-list-page .check-box {
  margin: 5px 0;
  justify-content: flex-end;
}

.category-list-toolbar {
  width: 100%;
}

.filter-options {
  width: 50%;
  float: left;
  display: inline-block;
}

.soldout-option {
  display: flex;
  justify-content: flex-start;
}

.sort-option {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.category-sidebar {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-sidebar .category-nav {
  margin: 0;
  padding-top: 20px;
}

.category-sidebar .category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-sidebar .category-list::-webkit-scrollbar {
  display: none;
}

.category-sidebar .category-list li {
  flex: 0 0 auto;
}

.category-sidebar .category-list a {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 9999px;
  font-size: 14px;
  text-decoration: none;
  background: #fff;
  white-space: nowrap;
}

.category-sidebar .category-list a .count {
  color: #959595;
  display: inline-block;
  margin-left: 8px;
}

.category-sidebar .category-list a.is-active {
  background-color: rgba(255, 128, 0, 0.1);
  border: 1px solid transparent;
  color: #ff8000;
  font-weight: 600;
}

.category-sidebar .category-list a.is-active .count {
  color: #ff8000;
  font-weight: 600;
}