.cpcf-filter-panel,
.cpcf-filter {
	--cpcf-font-heading: inherit;
	--cpcf-font-body: inherit;
	font-family: inherit;
}

.cpcf-filter-panel {
	margin: 0 0 28px;
	--cpcf-panel-separator-color: rgba(29, 35, 39, 0.12);
	--cpcf-panel-separator-width: 1px;
	--cpcf-panel-separator-spacing: 18px;
}

.cpcf-filter-panel button,
.cpcf-filter-panel input,
.cpcf-filter-panel select,
.cpcf-filter-panel textarea,
.cpcf-filter button,
.cpcf-filter input,
.cpcf-filter select,
.cpcf-filter textarea {
	font-family: var(--cpcf-font-body);
}

.cpcf-filter-panel__mobile-toggle {
	display: none;
}

.cpcf-filter-panel__toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 6px 0 0;
	padding-top: 10px;
}

.cpcf-filter-panel__item {
	display: block;
}

.cpcf-filter-panel__group-header {
	display: block;
	margin: 0 0 10px;
	color: var(--cpcf-group-header-color, inherit);
}

.cpcf-filter-panel__group-header:not(:first-child) {
	margin-top: var(--cpcf-panel-separator-spacing);
	padding-top: var(--cpcf-panel-separator-spacing);
	border-top: var(--cpcf-panel-separator-width) solid var(--cpcf-panel-separator-color);
}

.cpcf-filter-panel__group-header > span {
	display: block;
	font-size: var(--cpcf-group-header-font-size, 0.75em);
	font-weight: 600;
	letter-spacing: var(--cpcf-group-header-letter-spacing, 0.06em);
	text-transform: uppercase;
	line-height: 1.35;
	color: inherit;
}

.cpcf-filter-panel__group-header + .cpcf-filter-panel__item {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.cpcf-filter-panel__item + .cpcf-filter-panel__item {
	margin-top: var(--cpcf-panel-separator-spacing);
	padding-top: var(--cpcf-panel-separator-spacing);
	border-top: var(--cpcf-panel-separator-width) solid var(--cpcf-panel-separator-color);
}

.cpcf-filter-panel__item.is-filter-collapsed + .cpcf-filter-panel__item {
	margin-top: calc(var(--cpcf-panel-separator-spacing) * 0.45);
	padding-top: calc(var(--cpcf-panel-separator-spacing) * 0.45);
}

.cpcf-filter-panel__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border: 1px solid rgba(29, 35, 39, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	color: #1d2327;
	font-size: 0.88em;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cpcf-filter-panel__clear:hover,
.cpcf-filter-panel__clear:focus-visible {
	border-color: #1d2327;
	background: #ffffff;
	color: #1d2327;
	outline: none;
}

.cpcf-filter-panel__clear.is-disabled,
.cpcf-filter-panel__clear[aria-disabled="true"] {
	opacity: 0.48;
	cursor: default;
	pointer-events: none;
}

.cpcf-filter-panel__clear[hidden] {
	display: none !important;
}

.cpcf-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
	margin: 0;
}

.cpcf-filter__panel-heading {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	font-family: var(--cpcf-font-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	color: inherit;
	text-align: left;
}

.cpcf-filter__panel-heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin: 0 0 10px;
}

.cpcf-filter__panel-heading-row .cpcf-filter__panel-heading {
	flex: 1 1 auto;
	width: auto;
	margin: 0;
	min-width: 0;
}

.cpcf-filter__panel-toggle {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: var(--cpcf-panel-toggle-size, 18px);
	height: var(--cpcf-panel-toggle-size, 18px);
	color: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.cpcf-filter__panel-toggle:hover {
		color: var(--cpcf-panel-toggle-hover-color, currentColor) !important;
		background: var(--cpcf-panel-toggle-hover-background, transparent) !important;
		box-shadow: none !important;
		text-decoration: none !important;
	}
}

@media (hover: none), (pointer: coarse) {
	.cpcf-filter__panel-toggle:hover {
		color: inherit !important;
		background: transparent !important;
		box-shadow: none !important;
		text-decoration: none !important;
	}
}

.cpcf-filter__panel-toggle:active {
	color: var(--cpcf-panel-toggle-active-color, var(--cpcf-panel-toggle-hover-color, currentColor)) !important;
	background: var(--cpcf-panel-toggle-active-background, var(--cpcf-panel-toggle-hover-background, transparent)) !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.cpcf-filter__panel-toggle:active .cpcf-filter__panel-toggle-icon,
.cpcf-filter__panel-toggle:active .cpcf-filter__panel-toggle-icon svg,
.cpcf-filter__panel-toggle:active .cpcf-filter__panel-toggle-icon path {
	color: var(--cpcf-panel-toggle-active-color, var(--cpcf-panel-toggle-hover-color, currentColor)) !important;
	stroke: currentColor !important;
}

.cpcf-filter__panel-toggle:focus {
	color: inherit !important;
	background: transparent !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.cpcf-filter__panel-toggle:focus-visible {
	color: inherit !important;
	background: transparent !important;
	box-shadow: none !important;
	text-decoration: none !important;
	outline: 2px solid currentColor;
	outline-offset: 3px;
	border-radius: 4px;
}

.cpcf-filter__panel-toggle-icon,
.cpcf-filter__panel-toggle-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cpcf-filter__panel-toggle-icon svg {
	transition: transform 0.2s ease;
}

.cpcf-filter.is-panel-collapsed .cpcf-filter__panel-toggle-icon svg {
	transform: rotate(-90deg);
}

.cpcf-filter__panel-body {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: inherit;
	width: 100%;
}

.cpcf-filter__panel-body[hidden] {
	display: none !important;
}

.cpcf-filter + .cpcf-filter {
	margin-top: 24px;
}

.cpcf-filter--vertical {
	flex-direction: column;
	align-items: stretch;
}

.cpcf-filter--vertical .cpcf-filter__panel-body {
	flex-direction: column;
	align-items: stretch;
}

.cpcf-filter__term-search {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	flex: 1 1 100%;
	width: 100%;
	min-width: 0;
	background: transparent;
}

.cpcf-filter__term-search-row {
	position: relative;
	display: block;
	width: 100%;
	background: transparent;
}

.cpcf-filter__term-search-input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 10px 36px 10px 12px;
	border: 1px solid #c7c7c7;
	border-radius: 10px;
	background: #ffffff;
	color: #1d2327;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	appearance: none;
	-webkit-appearance: none;
}

.cpcf-filter__term-search-input::-webkit-search-decoration,
.cpcf-filter__term-search-input::-webkit-search-cancel-button,
.cpcf-filter__term-search-input::-webkit-search-results-button,
.cpcf-filter__term-search-input::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.cpcf-filter__term-search-input::placeholder {
	color: #8a8f94;
	opacity: 1;
}

.cpcf-filter__term-search-input:focus {
	outline: none;
	border-color: #1d2327;
	box-shadow: none;
}

.cpcf-filter__term-search-clear {
	position: absolute;
	top: 50%;
	right: 6px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	min-height: 28px;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #1d2327 !important;
	font-family: inherit !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
	opacity: 0.7;
	cursor: pointer;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.cpcf-filter .cpcf-filter__term-search .cpcf-filter__term-search-clear:hover,
.cpcf-filter .cpcf-filter__term-search .cpcf-filter__term-search-clear:focus,
.cpcf-filter button.cpcf-filter__term-search-clear:hover,
.cpcf-filter button.cpcf-filter__term-search-clear:focus {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	border: 0 !important;
	color: #1d2327 !important;
	opacity: 1;
	outline: none !important;
	text-decoration: none !important;
}

.cpcf-filter__term-search-clear[hidden] {
	display: none !important;
}

.cpcf-filter__term-search-empty {
	margin: 0;
	padding: 0;
	color: #666666;
	font-size: 13px;
	line-height: 1.4;
}

.cpcf-filter__search {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	flex: 1 1 100%;
	width: 100%;
	min-width: 0;
}

.cpcf-filter__search-label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.cpcf-filter__search-row {
	position: relative;
	display: block;
	width: 100%;
}

.cpcf-filter__search-input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 10px 36px 10px 12px;
	border: 1px solid #c7c7c7;
	border-radius: 10px;
	background: #ffffff;
	color: #1d2327;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	appearance: none;
	-webkit-appearance: none;
}

.cpcf-filter__search-input::-webkit-search-decoration,
.cpcf-filter__search-input::-webkit-search-cancel-button,
.cpcf-filter__search-input::-webkit-search-results-button,
.cpcf-filter__search-input::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.cpcf-filter__search-input::placeholder {
	color: #8a8f94;
	opacity: 1;
}

.cpcf-filter__search-input:focus {
	outline: none;
	border-color: #1d2327;
	box-shadow: none;
}

.cpcf-filter__search-clear {
	position: absolute;
	top: 50%;
	right: 6px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	min-height: 28px;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #1d2327 !important;
	font-family: inherit !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
	opacity: 0.7;
	cursor: pointer;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.cpcf-filter .cpcf-filter__search-row .cpcf-filter__search-clear:hover,
.cpcf-filter .cpcf-filter__search-row .cpcf-filter__search-clear:focus,
.cpcf-filter button.cpcf-filter__search-clear:hover,
.cpcf-filter button.cpcf-filter__search-clear:focus {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	border: 0 !important;
	color: #1d2327 !important;
	opacity: 1;
	outline: none !important;
	text-decoration: none !important;
}

.cpcf-filter__search-clear[hidden] {
	display: none !important;
}

.cpcf-ajax-empty-results-message {
	margin: 0;
	padding: 16px 18px;
	border: 1px solid #d0d5dd;
	border-radius: 10px;
	background: #fffaf2;
	color: #1d2327;
}

.cpcf-filter__choice.is-term-search-hidden,
.cpcf-filter__panel-body > .cpcf-filter__button.is-term-search-hidden {
	display: none !important;
}

.cpcf-filter--term-search.cpcf-filter--vertical .cpcf-filter__panel-body {
	max-height: var(--cpcf-term-search-list-max-height, 320px);
	overflow-x: hidden;
	overflow-y: auto;
}

.cpcf-filter--term-search.cpcf-filter--vertical .cpcf-filter__term-search {
	position: sticky;
	top: 0;
	z-index: 2;
	background: transparent;
	padding-bottom: 2px;
}

.cpcf-filter--single.is-dropdown-ready .cpcf-filter__term-search {
	display: none;
}

.cpcf-filter--single.is-dropdown-ready.is-dropdown-open .cpcf-filter__term-search {
	display: flex;
}

.cpcf-filter.is-loading {
	opacity: 0.65;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.cpcf-ajax-target-is-loading {
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.cpcf-ajax-empty-results-item {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
	grid-column: 1 / -1;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cpcf-ajax-empty-results-cell {
	padding: 0;
	text-align: left;
}

.cpcf-ajax-empty-results-message {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 16px 18px;
	border: 1px solid #d7dde3;
	border-radius: 14px;
	background: #f6f4ef;
	color: #1d2327;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
}

.cpcf-filter > .cpcf-filter__button,
.cpcf-filter > .cpcf-filter__panel-body > .cpcf-filter__button,
.cpcf-filter__choice,
.cpcf-filter__mobile-toggle {
	max-width: 100%;
}

.cpcf-filter--vertical > .cpcf-filter__button,
.cpcf-filter--vertical > .cpcf-filter__panel-body > .cpcf-filter__button,
.cpcf-filter--vertical .cpcf-filter__choice,
.cpcf-filter--vertical .cpcf-filter__mobile-toggle {
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.cpcf-filter--show-hierarchy .cpcf-filter__choice,
.cpcf-filter--show-hierarchy .cpcf-filter__panel-body > .cpcf-filter__button {
	margin-inline-start: calc(var(--cpcf-term-depth, 0) * 16px);
}

.cpcf-filter--show-hierarchy.cpcf-filter--vertical .cpcf-filter__choice,
.cpcf-filter--show-hierarchy.cpcf-filter--vertical .cpcf-filter__panel-body > .cpcf-filter__button {
	width: calc(100% - (var(--cpcf-term-depth, 0) * 16px));
	max-width: calc(100% - (var(--cpcf-term-depth, 0) * 16px));
}

.cpcf-filter__choice {
	position: relative;
	display: inline-flex;
	align-items: stretch;
}

.cpcf-filter__checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
}

.cpcf-filter__marker {
	position: relative;
	flex: 0 0 auto;
	width: var(--cpcf-checkbox-size, 18px);
	height: var(--cpcf-checkbox-size, 18px);
	border: var(--cpcf-checkbox-border-width, 1px) solid currentColor;
	border-radius: var(--cpcf-checkbox-radius, 4px);
	background: transparent;
	opacity: 0.78;
}

.cpcf-filter__marker::after {
	content: '';
	position: absolute;
	top: calc(var(--cpcf-checkbox-size, 18px) * 0.11);
	left: calc(var(--cpcf-checkbox-size, 18px) * 0.28);
	width: calc(var(--cpcf-checkbox-size, 18px) * 0.22);
	height: calc(var(--cpcf-checkbox-size, 18px) * 0.44);
	border-right: max(1px, calc(var(--cpcf-checkbox-border-width, 1px) + 1px)) solid transparent;
	border-bottom: max(1px, calc(var(--cpcf-checkbox-border-width, 1px) + 1px)) solid transparent;
	transform: rotate(45deg);
}

.cpcf-filter__button,
.cpcf-filter__mobile-toggle {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #c7c7c7;
	border-radius: 4px;
	background: #ffffff;
	color: #1d2327;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
	font: inherit;
	line-height: 1.2;
	margin: 0;
	min-height: 44px;
	max-width: 100%;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	white-space: normal;
}

.cpcf-filter--multiple .cpcf-filter__button {
	justify-content: flex-start;
	text-align: left;
	min-height: 0;
}

.cpcf-filter__mobile-toggle {
	display: none;
	width: 100%;
	justify-content: space-between;
	gap: 12px;
}

.cpcf-filter__mobile-toggle .cpcf-filter__content {
	flex: 1 1 auto;
	justify-content: space-between;
	width: 100%;
}

.cpcf-filter__mobile-toggle-icon {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	margin-top: 2px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	opacity: 0.72;
}

.cpcf-filter__choice .cpcf-filter__button {
	width: 100%;
}

.cpcf-filter--vertical .cpcf-filter__button,
.cpcf-filter--vertical .cpcf-filter__mobile-toggle {
	width: 100%;
	justify-content: flex-start;
}

.cpcf-filter--vertical .cpcf-filter__content {
	justify-content: space-between;
	width: 100%;
}

.cpcf-filter--swatches {
	--cpcf-swatch-size: 28px;
	--cpcf-swatch-color: #d0d5dd;
	align-items: center;
}

.cpcf-filter--swatches .cpcf-filter__panel-body,
.cpcf-filter--swatches.cpcf-filter--vertical .cpcf-filter__panel-body {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
	background: var(--cpcf-swatch-area-background, transparent);
}

.cpcf-filter--swatches .cpcf-filter__button,
.cpcf-filter--swatches .cpcf-filter__choice,
.cpcf-filter--swatches .cpcf-filter__choice .cpcf-filter__button,
.cpcf-filter--swatches.cpcf-filter--vertical .cpcf-filter__button,
.cpcf-filter--swatches.cpcf-filter--vertical .cpcf-filter__choice,
.cpcf-filter--swatches.cpcf-filter--vertical .cpcf-filter__choice .cpcf-filter__button {
	width: auto;
	max-width: 100%;
	min-height: 0;
	padding: 4px;
	background: transparent;
	border-color: transparent;
	justify-content: flex-start;
}

.cpcf-filter--swatches .cpcf-filter__content,
.cpcf-filter--swatches.cpcf-filter--vertical .cpcf-filter__content,
.cpcf-filter--swatches.cpcf-filter--multiple .cpcf-filter__content,
.cpcf-filter--swatches.cpcf-filter--vertical.cpcf-filter--multiple .cpcf-filter__content {
	width: auto;
	justify-content: flex-start;
}

.cpcf-filter--swatches .cpcf-filter__swatch {
	display: block;
	flex: 0 0 auto;
	width: var(--cpcf-swatch-size);
	height: var(--cpcf-swatch-size);
	border-radius: 4px;
	background-color: var(--cpcf-swatch-color);
	box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.16);
}

.cpcf-filter--swatches-circle .cpcf-filter__swatch {
	border-radius: 50%;
}

.cpcf-filter--swatches-stack {
	align-items: stretch;
}

.cpcf-filter--swatches-stack .cpcf-filter__panel-body,
.cpcf-filter--swatches-stack.cpcf-filter--vertical .cpcf-filter__panel-body {
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
}

.cpcf-filter--swatches-stack .cpcf-filter__button,
.cpcf-filter--swatches-stack .cpcf-filter__choice,
.cpcf-filter--swatches-stack .cpcf-filter__choice .cpcf-filter__button,
.cpcf-filter--swatches-stack.cpcf-filter--vertical .cpcf-filter__button,
.cpcf-filter--swatches-stack.cpcf-filter--vertical .cpcf-filter__choice,
.cpcf-filter--swatches-stack.cpcf-filter--vertical .cpcf-filter__choice .cpcf-filter__button {
	width: 100%;
}

.cpcf-filter--swatches-stack .cpcf-filter__content,
.cpcf-filter--swatches-stack.cpcf-filter--vertical .cpcf-filter__content,
.cpcf-filter--swatches-stack.cpcf-filter--multiple .cpcf-filter__content,
.cpcf-filter--swatches-stack.cpcf-filter--vertical.cpcf-filter--multiple .cpcf-filter__content {
	width: 100%;
}

.cpcf-filter--swatches .cpcf-filter__button:hover,
.cpcf-filter--swatches .cpcf-filter__button:focus-visible,
.cpcf-filter--swatches .cpcf-filter__choice:hover .cpcf-filter__button,
.cpcf-filter--swatches .cpcf-filter__checkbox:focus-visible + .cpcf-filter__button {
	background: transparent;
	border-color: transparent;
	outline: none;
}

.cpcf-filter--swatches .cpcf-filter__button.is-active,
.cpcf-filter--swatches .cpcf-filter__choice.is-active .cpcf-filter__button,
.cpcf-filter--swatches .cpcf-filter__checkbox:checked + .cpcf-filter__button {
	background: transparent;
	border-color: transparent;
	color: inherit;
}

.cpcf-filter--swatches .cpcf-filter__button.is-active .cpcf-filter__label,
.cpcf-filter--swatches .cpcf-filter__button.is-active .cpcf-filter__count,
.cpcf-filter--swatches .cpcf-filter__choice.is-active .cpcf-filter__label,
.cpcf-filter--swatches .cpcf-filter__choice.is-active .cpcf-filter__count,
.cpcf-filter--swatches .cpcf-filter__checkbox:checked + .cpcf-filter__button .cpcf-filter__label,
.cpcf-filter--swatches .cpcf-filter__checkbox:checked + .cpcf-filter__button .cpcf-filter__count {
	color: inherit;
	opacity: 1;
}

.cpcf-filter--swatches .cpcf-filter__button.is-active .cpcf-filter__swatch,
.cpcf-filter--swatches .cpcf-filter__choice.is-active .cpcf-filter__swatch,
.cpcf-filter--swatches .cpcf-filter__checkbox:checked + .cpcf-filter__button .cpcf-filter__swatch {
	box-shadow: 0 0 0 2px var(--cpcf-swatch-area-background, #ffffff), 0 0 0 4px currentColor, inset 0 0 0 1px rgba(16, 24, 40, 0.16);
}

.cpcf-filter--swatches .cpcf-filter__button:focus-visible .cpcf-filter__swatch,
.cpcf-filter--swatches .cpcf-filter__checkbox:focus-visible + .cpcf-filter__button .cpcf-filter__swatch {
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1d2327, inset 0 0 0 1px rgba(16, 24, 40, 0.16);
}

.cpcf-filter__content {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 8px;
	max-width: 100%;
	min-width: 0;
}

.cpcf-filter--multiple .cpcf-filter__content {
	justify-content: flex-start;
}

.cpcf-filter--vertical.cpcf-filter--multiple .cpcf-filter__content {
	width: 100%;
}

.cpcf-filter__label {
	display: inline-block;
	min-width: 0;
	overflow-wrap: anywhere;
}

.cpcf-filter--multiple .cpcf-filter__label {
	flex: 1 1 auto;
}

.cpcf-filter__count {
	display: inline-block;
	align-self: center;
	flex: 0 0 auto;
	font-size: 0.875em;
	line-height: 1;
	opacity: 0.75;
}

.cpcf-filter--multiple .cpcf-filter__count {
	margin-left: auto;
	text-align: right;
}

.cpcf-filter__button:hover,
.cpcf-filter__button:focus-visible,
.cpcf-filter__mobile-toggle:hover,
.cpcf-filter__mobile-toggle:focus-visible,
.cpcf-filter__checkbox:focus-visible + .cpcf-filter__button {
	border-color: #1d2327;
	outline: none;
}

.cpcf-filter__mobile-toggle:focus,
.cpcf-filter__mobile-toggle:active {
	border-color: #1d2327;
	background: #ffffff;
	color: #1d2327;
	box-shadow: none;
	outline: none;
	text-decoration: none;
}

.cpcf-filter__button.is-active,
.cpcf-filter__choice.is-active .cpcf-filter__button,
.cpcf-filter__mobile-toggle.is-selected,
.cpcf-filter__checkbox:checked + .cpcf-filter__button {
	background: #1d2327;
	border-color: #1d2327;
	color: #ffffff;
}

.cpcf-filter__choice.is-active .cpcf-filter__marker,
.cpcf-filter__checkbox:checked + .cpcf-filter__button .cpcf-filter__marker {
	background: #ffffff;
	border-color: #ffffff;
	opacity: 1;
}

.cpcf-filter__choice.is-active .cpcf-filter__marker::after,
.cpcf-filter__checkbox:checked + .cpcf-filter__button .cpcf-filter__marker::after {
	border-color: #1d2327;
}

@media (max-width: 782px) {
	.cpcf-filter-panel__mobile-toggle {
		all: unset;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 48px;
		padding: 14px 16px;
		border: 1px solid var(--cpcf-mobile-toggle-fallback-border-color, #1d2327);
		border-radius: 12px;
		background: var(--cpcf-mobile-toggle-fallback-background-color, #1d2327);
		color: var(--cpcf-mobile-toggle-fallback-text-color, #ffffff);
		font-family: var(--cpcf-font-heading);
		font-size: 1rem;
		font-style: normal;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
		line-height: 1.2;
		cursor: pointer;
		text-align: left;
		text-decoration: none;
	}

	.cpcf-filter-panel__mobile-toggle:hover,
	.cpcf-filter-panel__mobile-toggle:focus,
	.cpcf-filter-panel__mobile-toggle:focus-visible,
	.cpcf-filter-panel__mobile-toggle:active {
		border-color: #0f1417;
		background: #0f1417;
		color: #ffffff;
		box-shadow: none;
		outline: none;
		text-decoration: none;
	}

	.cpcf-filter-panel__mobile-toggle[hidden] {
		display: none !important;
	}

	.cpcf-filter-panel__mobile-toggle-main {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
	}

	.cpcf-filter-panel__mobile-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 18px;
		height: 18px;
		flex: 0 0 auto;
	}

	.cpcf-filter-panel__mobile-icon svg {
		display: block;
		width: 100%;
		height: 100%;
	}

	.cpcf-filter-panel__mobile-label {
		min-width: 0;
	}

	.cpcf-filter-panel__mobile-count {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 24px;
		height: 24px;
		padding: 0 8px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.18);
		color: #ffffff;
		font-size: 0.8rem;
		font-weight: 700;
	}

	.cpcf-filter-panel__mobile-count[hidden] {
		display: none !important;
	}

	.cpcf-filter-panel__mobile-arrow {
		width: 10px;
		height: 10px;
		margin-left: auto;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
		flex: 0 0 auto;
	}

	.cpcf-filter-panel.is-mobile-open .cpcf-filter-panel__mobile-arrow {
		transform: rotate(225deg);
	}

	.cpcf-filter-panel__content {
		margin-top: 12px;
	}

	.cpcf-filter-panel__content[hidden] {
		display: none !important;
	}

	.cpcf-filter {
		gap: 10px;
	}

	.cpcf-filter > .cpcf-filter__button,
	.cpcf-filter > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter__choice {
		flex: 1 1 calc(50% - 5px);
		min-width: min(220px, 100%);
	}

	.cpcf-filter > .cpcf-filter__button,
	.cpcf-filter > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter__choice .cpcf-filter__button {
		width: 100%;
		padding: 12px 14px;
	}

	.cpcf-filter--single.is-dropdown-ready {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.cpcf-filter--vertical {
		gap: 10px;
	}

	.cpcf-filter--vertical > .cpcf-filter__button,
	.cpcf-filter--vertical > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter--vertical .cpcf-filter__choice {
		flex: none;
		min-width: 0;
	}

	.cpcf-filter--single.is-dropdown-ready .cpcf-filter__mobile-toggle {
		display: inline-flex;
	}

	.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__button,
	.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__panel-body > .cpcf-filter__button {
		display: none;
		width: 100%;
		min-width: 0;
		flex: none;
	}

	.cpcf-filter--single.is-dropdown-ready.is-dropdown-open > .cpcf-filter__button,
	.cpcf-filter--single.is-dropdown-ready.is-dropdown-open > .cpcf-filter__panel-body > .cpcf-filter__button {
		display: inline-flex;
	}

	.cpcf-filter--single.is-dropdown-ready.is-dropdown-open > .cpcf-filter__button.is-current,
	.cpcf-filter--single.is-dropdown-ready.is-dropdown-open > .cpcf-filter__panel-body > .cpcf-filter__button.is-current {
		display: none;
	}

	.cpcf-filter--single.is-dropdown-ready .cpcf-filter__term-search {
		display: none;
	}

	.cpcf-filter--single.is-dropdown-ready.is-dropdown-open .cpcf-filter__term-search {
		display: flex;
	}

	.cpcf-filter--single.is-dropdown-open .cpcf-filter__mobile-toggle-icon {
		transform: rotate(225deg);
	}

	.cpcf-filter--single.is-dropdown-ready .cpcf-filter__mobile-toggle,
	.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__button,
	.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__panel-body > .cpcf-filter__button {
		justify-content: flex-start;
	}

	.cpcf-filter--single.is-dropdown-ready .cpcf-filter__mobile-toggle .cpcf-filter__content,
	.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__button .cpcf-filter__content,
	.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__panel-body > .cpcf-filter__button .cpcf-filter__content {
		justify-content: space-between;
		width: 100%;
	}

	.cpcf-filter--swatches.cpcf-filter--single.is-dropdown-ready .cpcf-filter__mobile-toggle .cpcf-filter__content,
	.cpcf-filter--swatches.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__button .cpcf-filter__content,
	.cpcf-filter--swatches.cpcf-filter--single.is-dropdown-ready > .cpcf-filter__panel-body > .cpcf-filter__button .cpcf-filter__content {
		width: auto;
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.cpcf-filter-panel__mobile-toggle {
		padding: 13px 14px;
		border-radius: 10px;
	}

	.cpcf-filter {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.cpcf-filter--vertical {
		display: flex;
		grid-template-columns: none;
	}

	.cpcf-filter > .cpcf-filter__button,
	.cpcf-filter > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter__choice {
		width: 100%;
		min-width: 0;
	}

	.cpcf-filter > .cpcf-filter__button,
	.cpcf-filter > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter__choice .cpcf-filter__button {
		justify-content: flex-start;
	}

	.cpcf-filter__content {
		justify-content: space-between;
		width: 100%;
	}

	.cpcf-filter--swatches,
	.cpcf-filter--swatches .cpcf-filter__panel-body {
		display: flex;
		flex-wrap: wrap;
		grid-template-columns: none;
	}

	.cpcf-filter--swatches > .cpcf-filter__button,
	.cpcf-filter--swatches > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter--swatches .cpcf-filter__choice,
	.cpcf-filter--swatches .cpcf-filter__choice .cpcf-filter__button {
		width: auto;
	}

	.cpcf-filter--swatches-stack,
	.cpcf-filter--swatches-stack .cpcf-filter__panel-body {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.cpcf-filter--swatches-stack > .cpcf-filter__button,
	.cpcf-filter--swatches-stack > .cpcf-filter__panel-body > .cpcf-filter__button,
	.cpcf-filter--swatches-stack .cpcf-filter__choice,
	.cpcf-filter--swatches-stack .cpcf-filter__choice .cpcf-filter__button {
		width: 100%;
	}

	.cpcf-filter--swatches-stack .cpcf-filter__content {
		width: 100%;
	}

	.cpcf-filter__count {
		text-align: right;
	}
}

.cpcf-content-search {
	--cpcf-cs-input-text: #1d2327;
	--cpcf-cs-input-bg: #ffffff;
	--cpcf-cs-input-border: #c7c7c7;
	--cpcf-cs-input-focus-border: var(--cpcf-cs-input-text);
	--cpcf-cs-input-border-width: 1px;
	--cpcf-cs-input-radius: 10px;
	--cpcf-cs-input-font: inherit;
	--cpcf-cs-input-weight: 400;
	--cpcf-cs-input-size: 14px;
	--cpcf-cs-input-tracking: normal;
	--cpcf-cs-input-transform: none;
	--cpcf-cs-input-padding-y: 10px;
	--cpcf-cs-input-padding-x: 12px;
	--cpcf-cs-placeholder: #8a8f94;
	--cpcf-cs-dropdown-bg: #ffffff;
	--cpcf-cs-dropdown-border: #d7dde3;
	--cpcf-cs-dropdown-border-width: 1px;
	--cpcf-cs-dropdown-radius: 12px;
	--cpcf-cs-dropdown-font: inherit;
	--cpcf-cs-dropdown-weight: 400;
	--cpcf-cs-dropdown-tracking: normal;
	--cpcf-cs-dropdown-transform: none;
	--cpcf-cs-title: #1d2327;
	--cpcf-cs-title-hover: var(--cpcf-cs-title);
	--cpcf-cs-title-size: 14px;
	--cpcf-cs-title-weight: 600;
	--cpcf-cs-title-tracking: inherit;
	--cpcf-cs-title-transform: inherit;
	--cpcf-cs-excerpt: #50575e;
	--cpcf-cs-excerpt-hover: var(--cpcf-cs-excerpt);
	--cpcf-cs-excerpt-size: 13px;
	--cpcf-cs-excerpt-weight: 400;
	--cpcf-cs-type: #8a8f94;
	--cpcf-cs-type-hover: var(--cpcf-cs-type);
	--cpcf-cs-type-size: 12px;
	--cpcf-cs-type-weight: 400;
	--cpcf-cs-hover-bg: #f6f7f7;
	--cpcf-cs-image-size: 48px;
	--cpcf-cs-image-radius: 8px;
	--cpcf-cs-view-all: #1d2327;
	--cpcf-cs-view-all-hover: var(--cpcf-cs-view-all);
	--cpcf-cs-view-all-hover-bg: transparent;
	--cpcf-cs-view-all-size: 13px;
	--cpcf-cs-view-all-weight: 600;
	--cpcf-cs-empty: #50575e;
	--cpcf-cs-empty-size: 13px;
	position: relative;
	width: 100%;
	max-width: 100%;
	font-family: inherit;
}

.cpcf-content-search__field {
	position: relative;
	border: 0;
	outline: none;
	box-shadow: none;
	background: transparent;
}

html body .cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input[type="search"],
html body .cpcf-content-search input.cpcf-content-search__input[type="search"],
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input,
.cpcf-content-search input.cpcf-content-search__input[type="search"],
.cpcf-content-search input.cpcf-content-search__input {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: var(--cpcf-cs-input-padding-y) 36px var(--cpcf-cs-input-padding-y) var(--cpcf-cs-input-padding-x);
	border-style: solid;
	border-width: var(--cpcf-cs-input-border-width);
	border-color: var(--cpcf-cs-input-border);
	border-top-color: var(--cpcf-cs-input-border);
	border-right-color: var(--cpcf-cs-input-border);
	border-bottom-color: var(--cpcf-cs-input-border);
	border-left-color: var(--cpcf-cs-input-border);
	border-image: none;
	border-radius: var(--cpcf-cs-input-radius);
	background: var(--cpcf-cs-input-bg);
	background-color: var(--cpcf-cs-input-bg);
	color: var(--cpcf-cs-input-text);
	font-family: var(--cpcf-cs-input-font);
	font-size: var(--cpcf-cs-input-size);
	font-weight: var(--cpcf-cs-input-weight);
	letter-spacing: var(--cpcf-cs-input-tracking);
	text-transform: var(--cpcf-cs-input-transform);
	line-height: 1.4;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	outline: none !important;
	outline-width: 0 !important;
	outline-offset: 0 !important;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

html body .cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input[type="search"]:not(:focus):not(:focus-visible),
html body .cpcf-content-search input.cpcf-content-search__input[type="search"]:not(:focus):not(:focus-visible),
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input:not(:focus):not(:focus-visible),
.cpcf-content-search input.cpcf-content-search__input[type="search"]:not(:focus):not(:focus-visible),
.cpcf-content-search input.cpcf-content-search__input:not(:focus):not(:focus-visible) {
	border-color: var(--cpcf-cs-input-border) !important;
	border-top-color: var(--cpcf-cs-input-border) !important;
	border-right-color: var(--cpcf-cs-input-border) !important;
	border-bottom-color: var(--cpcf-cs-input-border) !important;
	border-left-color: var(--cpcf-cs-input-border) !important;
}

.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::-webkit-search-decoration,
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::-webkit-search-cancel-button,
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::-webkit-search-results-button,
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::-webkit-search-results-decoration,
.cpcf-content-search input.cpcf-content-search__input::-webkit-search-decoration,
.cpcf-content-search input.cpcf-content-search__input::-webkit-search-cancel-button,
.cpcf-content-search input.cpcf-content-search__input::-webkit-search-results-button,
.cpcf-content-search input.cpcf-content-search__input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	display: none;
}

.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::placeholder,
.cpcf-content-search input.cpcf-content-search__input::placeholder {
	color: var(--cpcf-cs-placeholder);
	opacity: 1;
}

.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::-webkit-input-placeholder,
.cpcf-content-search input.cpcf-content-search__input::-webkit-input-placeholder {
	color: var(--cpcf-cs-placeholder);
	opacity: 1;
}

.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input::-moz-placeholder,
.cpcf-content-search input.cpcf-content-search__input::-moz-placeholder {
	color: var(--cpcf-cs-placeholder);
	opacity: 1;
}

html body .cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input[type="search"]:focus,
html body .cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input[type="search"]:focus-visible,
html body .cpcf-content-search input.cpcf-content-search__input[type="search"]:focus,
html body .cpcf-content-search input.cpcf-content-search__input[type="search"]:focus-visible,
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input:focus,
.cpcf-content-search .cpcf-content-search__field input.cpcf-content-search__input:focus-visible,
.cpcf-content-search input.cpcf-content-search__input:focus,
.cpcf-content-search input.cpcf-content-search__input:focus-visible {
	outline: none !important;
	outline-width: 0 !important;
	outline-offset: 0 !important;
	border-style: solid;
	border-width: var(--cpcf-cs-input-border-width);
	border-color: var(--cpcf-cs-input-focus-border) !important;
	border-top-color: var(--cpcf-cs-input-focus-border) !important;
	border-right-color: var(--cpcf-cs-input-focus-border) !important;
	border-bottom-color: var(--cpcf-cs-input-focus-border) !important;
	border-left-color: var(--cpcf-cs-input-focus-border) !important;
	background: var(--cpcf-cs-input-bg);
	background-color: var(--cpcf-cs-input-bg);
	color: var(--cpcf-cs-input-text);
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

.cpcf-content-search .cpcf-content-search__field .cpcf-content-search__clear,
.cpcf-content-search button.cpcf-content-search__clear {
	position: absolute;
	top: 50%;
	right: 6px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	min-height: 28px;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--cpcf-cs-input-text) !important;
	font-family: inherit !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
	opacity: 0.7;
	cursor: pointer;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.cpcf-content-search .cpcf-content-search__field .cpcf-content-search__clear:hover,
.cpcf-content-search .cpcf-content-search__field .cpcf-content-search__clear:focus,
.cpcf-content-search button.cpcf-content-search__clear:hover,
.cpcf-content-search button.cpcf-content-search__clear:focus {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	border: 0 !important;
	color: var(--cpcf-cs-input-text) !important;
	opacity: 1;
	outline: none !important;
	text-decoration: none !important;
}

.cpcf-content-search .cpcf-content-search__field .cpcf-content-search__clear[hidden],
.cpcf-content-search button.cpcf-content-search__clear[hidden] {
	display: none !important;
}

.cpcf-content-search__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 30;
	overflow: hidden;
	border: var(--cpcf-cs-dropdown-border-width) solid var(--cpcf-cs-dropdown-border);
	border-radius: var(--cpcf-cs-dropdown-radius);
	background: var(--cpcf-cs-dropdown-bg);
	box-shadow: 0 12px 30px rgba(17, 24, 32, 0.12);
	font-family: var(--cpcf-cs-dropdown-font);
	font-weight: var(--cpcf-cs-dropdown-weight);
	letter-spacing: var(--cpcf-cs-dropdown-tracking);
	text-transform: var(--cpcf-cs-dropdown-transform);
}

.cpcf-content-search__dropdown[hidden] {
	display: none !important;
}

.cpcf-content-search__results {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	max-height: 360px;
	overflow-y: auto;
}

.cpcf-content-search__results:empty {
	display: none;
}

.cpcf-content-search__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	color: inherit;
	text-decoration: none;
}

.cpcf-content-search__link:hover,
.cpcf-content-search__link:focus,
.cpcf-content-search__result.is-active .cpcf-content-search__link {
	color: inherit;
	text-decoration: none;
	background: var(--cpcf-cs-hover-bg);
}

.cpcf-content-search__result.is-active .cpcf-content-search__title,
.cpcf-content-search__link:hover .cpcf-content-search__title,
.cpcf-content-search__link:focus .cpcf-content-search__title {
	color: var(--cpcf-cs-title-hover);
}

.cpcf-content-search__result.is-active .cpcf-content-search__excerpt,
.cpcf-content-search__link:hover .cpcf-content-search__excerpt,
.cpcf-content-search__link:focus .cpcf-content-search__excerpt {
	color: var(--cpcf-cs-excerpt-hover);
}

.cpcf-content-search__result.is-active .cpcf-content-search__type,
.cpcf-content-search__link:hover .cpcf-content-search__type,
.cpcf-content-search__link:focus .cpcf-content-search__type {
	color: var(--cpcf-cs-type-hover);
}

.cpcf-content-search__image {
	flex: 0 0 var(--cpcf-cs-image-size);
	width: var(--cpcf-cs-image-size);
	height: var(--cpcf-cs-image-size);
	overflow: hidden;
	border-radius: var(--cpcf-cs-image-radius);
	background: #f0f0f1;
}

.cpcf-content-search__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cpcf-content-search__copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 2px;
}

.cpcf-content-search__title {
	color: var(--cpcf-cs-title);
	font-size: var(--cpcf-cs-title-size);
	font-weight: var(--cpcf-cs-title-weight);
	letter-spacing: var(--cpcf-cs-title-tracking);
	text-transform: var(--cpcf-cs-title-transform);
	line-height: 1.35;
}

.cpcf-content-search__excerpt {
	color: var(--cpcf-cs-excerpt);
	font-size: var(--cpcf-cs-excerpt-size);
	font-weight: var(--cpcf-cs-excerpt-weight);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cpcf-content-search__type {
	color: var(--cpcf-cs-type);
	font-size: var(--cpcf-cs-type-size);
	font-weight: var(--cpcf-cs-type-weight);
	line-height: 1.35;
}

.cpcf-content-search__empty {
	margin: 0;
	padding: 14px 14px 10px;
	color: var(--cpcf-cs-empty);
	font-size: var(--cpcf-cs-empty-size);
	line-height: 1.4;
}

.cpcf-content-search__empty[hidden] {
	display: none !important;
}

.cpcf-content-search__view-all {
	display: block;
	padding: 10px 14px 12px;
	border-top: 1px solid var(--cpcf-cs-dropdown-border);
	background: transparent;
	color: var(--cpcf-cs-view-all);
	font-size: var(--cpcf-cs-view-all-size);
	font-weight: var(--cpcf-cs-view-all-weight);
	line-height: 1.4;
	text-decoration: none;
}

.cpcf-content-search__view-all[hidden] {
	display: none !important;
}

.cpcf-content-search__view-all:hover,
.cpcf-content-search__view-all:focus {
	background: var(--cpcf-cs-view-all-hover-bg);
	color: var(--cpcf-cs-view-all-hover);
	text-decoration: none;
}
