.horizontal-category .filter-options-content {
  padding: 0;
}
.horizontal-category .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}
.horizontal-category .filter-content .item {
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  text-align: center;
  justify-content: space-evenly;
  flex-direction: column;
  border-radius: 5px;
  flex-basis: calc(100% / 6 - 5px);
  max-width: calc(100% / 6 - 5px);
  box-sizing: border-box;
}
.horizontal-category .filter-content .item:hover a,
.horizontal-category .filter-content .item.active a {
  color: #fff;
  border: 1px solid #1e1e1e;
  background-color: #1e1e1e;
}
.horizontal-category a {
  margin: 0px;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 15px;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border: 1px solid #eee;
}
/** DESKTOP */
/** IPAD */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .horizontal-category .filter-content .item {
    flex-basis: calc(100% / 3 - 5px);
    max-width: calc(100% / 3 - 5px);
  }
  .horizontal-category a {
    width: auto;
  }
}
/** MOBILE */
@media only screen and (max-width: 767px) {
  .horizontal-category .filter-options {
    display: block;
  }
  .horizontal-category .items {
    padding-left: 0px;
  }
  .horizontal-category .filter-content .item {
    flex-basis: calc(100% / 2 - 3px);
    max-width: calc(100% / 2 - 3px);
  }
  .horizontal-category a {
    width: auto;
  }
}
