.search-results-header {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-family: 'Open Sans', sans-serif;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--Neutral-4, #e2e9f0);
  margin-top: 0.5rem;
  margin-left: 25px;
  padding-bottom: 8px;
  gap: 10px;
}
@media (max-width: 768px) {
  .search-results-header {
    gap: 0.5rem;
  }
}
.search-results-header__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: inherit;
  flex: 1 1 auto;
  min-width: 100px;
}
.search-results-header__count {
  font-size: 14px;
  font-weight: 400;
  color: #182029;
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.search-results-header__count b {
  font-weight: 600;
}
.search-results-header__count .search-results-header__term {
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.search-results-header__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: inherit;
}
.search-results-header__facet-label {
  font-size: 14px;
  font-weight: 400;
  color: #182029;
}
.search-results-header__chip {
  font-size: 13px;
  cursor: pointer;
  color: #1c355e;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 16px;
  gap: 8px;
  background: #DFEBFF;
  border: 1.5px solid #DFEBFF;
  border-radius: 1000px;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-family: inherit;
}
.search-results-header__chip-close {
  font-size: 14px;
  cursor: pointer;
}
.search-results-header__sort {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #157EAC;
  flex: none;
  order: 0;
  flex-grow: 0;
  border-left: 1px solid #D1DBE6;
  padding: 0 0 0 8px;
  align-self: flex-start;
}
.search-results-header__chip-label {
  display: flex;
  column-gap: 5px;
}
.search-results-header__chip-label-category,
.search-results-header__chip-label-subcategory {
  max-width: 10rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
