
.wc-block-product-filter-price-slider__content {
	column-gap: 12px;
	display: grid;
	grid-template-areas: "price-slider price-slider price-slider" "left-input   middle-input right-input";
	grid-template-columns: auto 1fr auto;
}

.wc-block-product-filter-price-slider__content--inline {
	grid-template-areas: "left-input price-slider right-input";
	grid-template-columns: auto 1fr auto;
}

.wc-block-product-filter-price-slider__left {
	grid-area: left-input;
	-ms-grid-column: 1;
	-ms-grid-row: 2;
}

.wc-block-product-filter-price-slider__content--inline>.wc-block-product-filter-price-slider__left {
	-ms-grid-column: 1;
	-ms-grid-row: 1;
}

.wc-block-product-filter-price-slider__right {
	grid-area: right-input;
	-ms-grid-column: 5;
	-ms-grid-row: 2;
}

.wc-block-product-filter-price-slider__content--inline>.wc-block-product-filter-price-slider__right {
	-ms-grid-column: 3;
	-ms-grid-row: 1;
}

.wc-block-product-filter-price-slider__range {
	-ms-grid-column-span: 5;
	--low: 0%;
	--high: 100%;
	--range-color: var(--wc-product-filter-price-slider, currentColor);
	--track-background: linear-gradient(to right, transparent var(--low), var(--range-color) 0, var(--range-color) var(--high), transparent 0) no-repeat 0 100%/100% 100%;
	appearance: none;
	background: transparent;
	border: 0 !important;
	border-radius: 4px;
	clear: both;
	flex-grow: 1;
	grid-area: price-slider;
	-ms-grid-column: 1;
	-ms-grid-row: 1;
	height: 4px;
	margin: 15px 0;
	outline: none;
	padding: 0 !important;
	position: relative;
}

.wc-block-product-filter-price-slider__content--inline>.wc-block-product-filter-price-slider__range {
	-ms-grid-column-span: 1;
	-ms-grid-column: 2;
	-ms-grid-row: 1;
}

.rtl .wc-block-product-filter-price-slider__range {
	--track-background: linear-gradient(to left, transparent var(--low), var(--range-color) 0, var(--range-color) var(--high), transparent 0) no-repeat 0 100%/100% 100%;
}

.wc-block-product-filter-price-slider__range:before {
	background: var(--range-color);
	content: "";
	height: 100%;
	left: 0;
	opacity: .3;
	position: absolute;
	top: 0;
	width: 100%;
}

.wc-block-product-filter-price-slider__range .range-bar {
	background: var(--track-background);
	height: 4px;
	position: relative;
}

.wc-block-product-filter-price-slider__range input[type=range] {
	appearance: none;
	background: transparent;
	border: 0 !important;
	display: block;
	height: 0;
	left: 0;
	margin: 0;
	outline: none;
	outline: none !important;
	padding: 0 !important;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.wc-block-product-filter-price-slider__range input[type=range]::-webkit-slider-thumb {
	appearance: none;
	background: var(--wc-product-filter-price-slider-handle, #fff);
	background-position: 0 0;
	border: 2px solid var(--wc-product-filter-price-slider-handle-border, #1e1e1e);
	border-radius: 100%;
	box-sizing: content-box;
	cursor: pointer;
	height: 12px;
	margin: -5px 0 0;
	padding: 0;
	pointer-events: auto;
	-webkit-transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
	vertical-align: top;
	width: 12px;
	z-index: 20;
}

.wc-block-product-filter-price-slider__range input[type=range]::-webkit-slider-thumb:hover {
	background: #1e1e1e;
	border-color: #fff;
}

.wc-block-product-filter-price-slider__range input[type=range]::-moz-range-thumb {
	appearance: none;
	background: var(--wc-product-filter-price-slider-handle, #fff);
	background-position: 0 0;
	border: 2px solid var(--wc-product-filter-price-slider-handle-border, #1e1e1e);
	border-radius: 100%;
	box-sizing: content-box;
	cursor: pointer;
	height: 12px;
	margin: 0;
	padding: 0;
	pointer-events: auto;
	-moz-transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
	vertical-align: top;
	width: 12px;
	z-index: 20;
}

.wc-block-product-filter-price-slider__range input[type=range]::-moz-range-thumb:hover {
	background: #1e1e1e;
	border-color: #fff;
}

.wc-block-product-filter-price-slider__range input[type=range]::-ms-thumb {
	appearance: none;
	background: var(--wc-product-filter-price-slider-handle, #fff);
	background-position: 0 0;
	border: 2px solid var(--wc-product-filter-price-slider-handle-border, #1e1e1e);
	border-radius: 100%;
	box-sizing: content-box;
	cursor: pointer;
	height: 12px;
	margin: 0;
	padding: 0;
	pointer-events: auto;
	-ms-transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
	vertical-align: top;
	width: 12px;
	z-index: 20;
}

.wc-block-product-filter-price-slider__range input[type=range]::-ms-thumb:hover {
	background: #1e1e1e;
	border-color: #fff;
}

.wc-block-product-filter-price-slider__range input[type=range]:focus::-webkit-slider-thumb {
	background: #1e1e1e;
	border-color: #fff;
}

.wc-block-product-filter-price-slider__range input[type=range]:focus::-moz-range-thumb {
	background: #1e1e1e;
	border-color: #fff;
}

.wc-block-product-filter-price-slider__range input[type=range]:focus::-ms-thumb {
	background: #1e1e1e;
	border-color: #fff;
}

.wc-block-product-filter-price-slider__range input[type=range]::-webkit-slider-runnable-track {
	appearance: none;
	cursor: default;
	height: 1px;
	outline: 0;
}

.wc-block-product-filter-price-slider__range input[type=range]::-moz-range-track {
	appearance: none;
	cursor: default;
	height: 1px;
	outline: 0;
}

.wc-block-product-filter-price-slider__range input[type=range]::-webkit-slider-progress {
	appearance: none;
	background: transparent;
	border: 0 !important;
	margin: 0;
	outline: none;
	padding: 0 !important;
}

.wc-block-product-filter-price-slider__range input[type=range]::-moz-range-progress {
	appearance: none;
	background: transparent;
	border: 0 !important;
	margin: 0;
	outline: none;
	padding: 0 !important;
}

.wc-block-product-filter-price-slider__range input[type=range]::-moz-focus-outer {
	border: 0;
}

.wc-block-product-filter-price-slider__range input[type=range].min::-webkit-slider-thumb {
	background-position-x: left;
	margin-left: -2px;
}

.wc-block-product-filter-price-slider__range input[type=range].min::-moz-range-thumb {
	background-position-x: left;
	transform: translate(-2px, 2px);
}

.wc-block-product-filter-price-slider__range input[type=range].min::-ms-thumb {
	background-position-x: left;
}

.wc-block-product-filter-price-slider__range input[type=range].max::-webkit-slider-thumb {
	background-position-x: right;
	margin-left: 2px;
}

.wc-block-product-filter-price-slider__range input[type=range].max::-moz-range-thumb {
	background-position-x: right;
	transform: translate(2px, 2px);
}

.wc-block-product-filter-price-slider__range input[type=range].max::-ms-thumb {
	background-position-x: right;
}

.wc-block-product-filter-price-slider__range input[type=range i] {
	color: -internal-light-dark(#101010, #fff);
	padding: initial;
}

.wc-block-product-filter-price-slider .text input[type=text] {
	border: 1px solid;
	border-radius: 4px;
	font-size: .875em;
	margin: 0;
	max-width: 60px;
	min-width: 0;
	padding: 8px;
	width: auto;
}
