.tps_filterSidebar_content {
	overflow-y: auto;
	padding-right: 10px;
	display: flex;
	flex-direction: column;
	flex-grow: 0;
}

.tps_filterSidebar_header {
	font-weight: bold;
	padding-top: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
	margin-bottom: 10px;
}

.tps_filterSidebar_section {
	width: 100%;
	padding: 0;
}

.tps_filterSidebar_reset {
	display: block;
	font-size: 14px;
	margin: 0;
	color: #000;
	text-decoration: underline;
}

.tps_filterSidebar_reset:hover {
	text-decoration: underline;
}

.tps_filterSidebar_collapsable {
	cursor: pointer;
	display: flex;
	border-bottom: 1px solid #f1f1f1;
	justify-content: space-between;
	height: 45px;
	align-items: center;
}

.tps_filterSidebar.tps__active {
	transform: translateX(0%);
}

.tps_filterSidebar_prices {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 20px;
}

.tps_filterSidebar_prices .shell span {
	display: none;
}

.tps_filterSidebar_priceDivider {
	padding: 0 10px;
}

.tps_filterSidebar_price {
	text-align: center;
	color: #000;
	width: 100px;
	font-size: 16px;
	padding: 8px 4px;
	box-sizing: border-box;
	border: 1px solid #62564a;
}

.tps_filterSidebar_price:hover {
	border-color: #ba9b86;
}

.tps_filterSidebar_price::placeholder {
	color: #000;
}

.tps_filterSidebar_price:focus::placeholder {
	color: #fff;
}

.tps_filterSidebar_title {
	font-size: 14px;
	cursor: pointer;
	font-weight: bold;
}

.tps_filterSidebar_extra {
	display: none;
}

.tps_filterSidebar_collapse {
	display: flex;
	align-items: center;
	position: relative;
	width: 16px;
	height: 16px;
	z-index: 2;
	cursor: pointer;
}

.tps_filterSidebar_collapse::before, .tps_filterSidebar_collapse::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 12px;
	background: rgb(0, 0, 0);
	transition: transform 150ms ease 0s;
}

.tps_filterSidebar_collapse::before {
	transform: none;
}

.tps_filterSidebar_collapse::after {
	transform-origin: center center;
	transform: none;
}

.tps_filterSidebar_section.tps__collapsed .tps_filterSidebar_collapse {
	transform: rotate(360deg);
}

.tps_filterSidebar_section.tps__collapsed .tps_filterSidebar_collapse::after {
	transform: rotate(90deg);
}

.tps_filterSidebar_section.tps__collapsed .tps_filterSidebar_options {
	height: 0px;
}

.tps_filterSidebar_section.tps__collapsed .tps_filterSidebar_prices {
	display: none;
}

.tps_filterSidebar_more {
	display: block;
	grid-column: 1 / 3;
	width: max-content;
	margin: auto;
}

.tps_filterSidebar_button {
	border: none;
	background: no-repeat;
	text-transform: uppercase;
	padding: 0;
	line-height: 25px;
	border-bottom: 1px solid;
	cursor: pointer;
}

.tps_filterSidebar_button:hover {
	color: #ba9b86;
	border-color: #ba9b86;
}

.tps_filterSidebar_submit {
	text-transform: uppercase;
	background: #000;
	color: #fff;
	cursor: pointer;
	border: none;
	font-size: 14px;
	min-width: 200px;
	padding: 0 30px;
	height: 45px;
}

.tps_filterSidebar_options {
	display: block;
	margin-top: 0;
	margin-left: 20px;
	transition: height 0.5s;
	overflow: hidden;
}

.tps_filterSidebar_options label {
	font-size: 13px;
	align-items: center;
	position: relative;
}

.tps_filterSidebar_options label span {
	color: #000;
	display: flex;
	align-items: center;
	text-align: center;
	border: none;
	height: 45px;
	justify-content: space-between;
	padding: 0;
	padding-left: 29px;
	background-size: initial;
}

.tps_filterSidebar_options label span:hover {
	color: #ba9b86;
}

.tps_filterSidebar_options input[type="checkbox"] {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.tps_filterSidebar_options input[type="checkbox"]:checked + span,
.tps_filterSidebar_options input[type="checkbox"]:checked:hover + span {
	background-color: #fff !important;
	border: none;
}

.tps_filterSidebar_close {
	cursor: pointer;
	background-image: url('/tps/templates/filter-sidebar/close.svg');
	background-size: contain;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 23px;
	top: 14px;
}

.tps_filterSidebar_footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
}

.tps_filterSidebar_options input[type="checkbox"]:checked + span,
.tps_filterSidebar_options input[type="checkbox"]:checked:hover + span {
	background-color: inherit;
	color: inherit;
}

.tps_filterSidebar_options span::before,
.tps_filterSidebar_options span::after {
	position: absolute;
	content: "";
	display: inline-block;
}

.tps_filterSidebar_options span::before {
	height: 16px;
	width: 16px;
	border: 1px solid;
	left: 0px;
	top: 13px;
}

.tps_filterSidebar_options span::after {
	height: 5px;
	width: 9px;
	border-left: 2px solid;
	border-bottom: 2px solid;
	transform: rotate(-45deg);
	left: 4px;
	top: 16px;
}

.tps_filterSidebar_options input[type="checkbox"] + span::after {
	content: none;
}

.tps_filterSidebar_options input[type="checkbox"]:checked + span::after {
	content: "";
}

.tps_filterSidebar_info {
	display: none;
}

.tps_filterSidebar_info:hover {
	opacity: 0.8;
}

.tps_filterSidebar_color {
	width: 30px;
	height: 30px;
	background-position: center;
	background-size: contain;
}

.tps_filterSidebar_more {
	margin-top: 10px;
	margin-left: 4px;
}

.tps_filterSidebar_infoMobile {
	display: block;
	padding: 10px 0;
	text-decoration: underline;
}

.tps_filterSidebar_content {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
}

.tps_filterSidebar_content::-webkit-scrollbar-track,
.tps_filterSidebar_content::-webkit-scrollbar {
	border-radius: 3px;
	width: 6px;
	background-color: #fff;
}

.tps_filterSidebar_content::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: #6D6866;
}

@media (min-width: 1140px) {
	.tps_filterSidebar_infoMobile {
		display: none;
	}

	.tps_filterSidebar_info {
		width: 15px;
		height: 15px;
		display: block;
		right: 0;
		z-index: 10;
		background-image: url(/tps/templates/filter-sidebar/question.svg?v5);
		background-size: contain;
		background-repeat: no-repeat;
		transition: 0.3s;
		margin-left: 5px;
	}

	.tps_filterSidebar_close {
		display: none;
	}

	.tps_filterSidebar_title {
		font-size: 12px;
		font-weight: normal;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.tps_filterSidebar_content {
		overflow-y: auto;
		padding-right: 0;
		flex-grow: 0;
	}

	.tps_filterSidebar_collapsable {
		margin-top: 5px;
		justify-content: space-between;
		border: none;
	}

	.tps_filterSidebar_section {
		border-bottom: 1px solid #000;
		padding-bottom: 5px;
	}

	.tps_filterSidebar_collapse {
		display: block;
		width: 18px;
		height: 18px;
		background: url('/resources/svg/collapse.svg') no-repeat;
		background-position: center;
		background-size: contain;
		transform: rotate(180deg);
		transition: transform 0.5s;
	}

	.tps_filterSidebar_collapse::before, .tps_filterSidebar_collapse::after {
		display: none;
	}

	.tps_filterSidebar_section.tps__collapsed nav {
		display: none;
	}

	.tps_filterSidebar_options {
		display: block;
		margin-left: 0;
		margin-bottom: 15px;
	}

	.tps_filterSidebar_options label {
		font-size: 12px;
	}

	.tps_filterSidebar_options label span {
		border: none;
		justify-content: space-between;
		padding-left: 25px;
		cursor: pointer;
		height: 27px;
	}

	.tps_filterSidebar_colorOptions label span {
		height: 35px;
	}

	.tps_filterSidebar_options span::after {
		top: 7px;
	}

	.tps_filterSidebar_colorOptions span::after {
		top: 13px;
	}

	.tps_filterSidebar_options span::before {
		top: 4px;
	}

	.tps_filterSidebar_colorOptions span::before {
		top: 10px;
	}

	.tps_filterSidebar_prices {
		padding-left: 0;
		padding-bottom: 20px;
	}


	.tps_filterSidebar_price {
		font-size: 14px;
	}

	.tps_filterSidebar_reset {
		margin: 20px 0;
	}

	.tps_filterSidebar_footer {
		margin-top: 0;
	}
}

@media (min-width: 1300px) {
	.tps_filterSidebar_title {
		font-size: 14px;
	}

	.tps_filterSidebar_options label {
		font-size: 13px;
	}
}
