.category-chips-scroller {
	width: 100%;
	overflow-x: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
	box-sizing: border-box;
	margin-bottom: 12px;
}
@media (min-width: 850px) {
  	.category-chips-scroller {
		justify-content: center;
  	}
}
@media (min-width: 1100px) {
  	.category-chips-scroller {
		gap: 12px;
		padding: 0;
		margin: 64px 0;
  	}
}
.category-chip {
	width: max-content;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	gap: 8px;
	height: 32px;
  	padding: 6px 16px 6px 8px;
	white-space: nowrap;
  	box-sizing: border-box;
  	text-align: center;
	line-height: normal;
  	color: var(--Colors-Semantics-Text-Primary);
	cursor: pointer;
  	border-radius: 4px;
  	border: 1px solid var(--Colors-Semantics-Border-Default);
	background-color: var(--Colors-Semantics-Background-Surface);
}
.category-chip:hover {
	border-color: 1px var(--Colors-Semantics-Text-Secondary, #666666) solid;
	background-color: var(--Colors-Semantics-Background-Surface_Alt, #F8F8F8);
}
.category-chip[state="selected"] {
    background-color: var(--Colors-Semantics-Background-Promo_Light);
    border: 1px solid var(--Colors-Semantics-Action-Primary_Pressed);
    color: var(--Colors-Semantics-Action-Primary_Pressed);
}

.category-chips-container .category-chip[size="small"] {
	gap: 4px;
  	padding: 6px 12px;
	height: 24px;
}
.category-chip .icon {
    font-size: 14px;
    line-height: 14px;
}
.category-chips-container[size="small"] .category-chip .icon {
	font-size: 11px;
	height: 12px;
}
.category-chip .label {
  	text-transform: uppercase;
	height: 14px;
}
.category-chip[size="small"] .label {
	padding-top: 1px;
}

.icon-category-1:before{content:'\0050';}
.icon-category-2:before{content:'\0048';}
.icon-category-3:before{content:'\004e';}
.icon-category-4:before{content:'\0046';}
.icon-category-5:before{content:'\004d';}
.icon-category-6:before{content:'\0061';}