.new_filter{
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 28px;
}
.new_filter .col{
	position: relative;
	z-index: 2;
}
.new_filter .head .text{
	border-radius: 8px;
	border: 1px solid #E5E7EB;
	padding: 12px 16px;
	cursor: pointer;
}
.new_filter .head{
	display: flex;
	align-items: center;
	line-height: 1em;
	padding-bottom: 2px;
	font-family: "Graphik Medium", Sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #374151;
}
.new_filter .head span:not(.text):not(.val){display: none;}
.new_filter .head .text:after{
	display: inline-flex;
	content: "";
	background: url('../img/arrow-down.svg');
	background-repeat: no-repeat;
	width: 20px;
	height: 8px;
	margin: 0 0 0 7px;
	transition: 0.3s linear all;
	transform: translateY(1px);
}
.new_filter .active .head .text:after{
	transform: rotate(180deg);
	margin-left: 0;
	margin-right: 7px;
}
.new_filter .drop_down{
	opacity: 0;
	transition: 0.3s linear all;
	position: absolute;
	left: 0;
	top: 100%;
	width: 252px;
	background: #fff;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	transform: scaleY(0);
	transform-origin:top center;
	max-height: 400px;
	overflow-y: auto;
	cursor: default;
}
.new_filter .noUi-target{
	background: transparent;
	border-radius: 0;
	border: 0;
	box-shadow: none;
}
.new_filter .noUi-connects{
	position: relative;
	margin-bottom: 10px;
	height: 2px;
	background: #D1D5DB;
}
.new_filter .active .range_wrap{
	overflow: hidden;
	padding: 26px 24px 16px;
}
.new_filter .range_wrap .labels{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: #161E37;
}
.new_filter .col.active .drop_down{
	transform: scaleY(1);
	opacity: 1;
}
.range_wrap  .noUi-handle{
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 50%;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	top: -10px;
	cursor: pointer;
}
.range_wrap  .noUi-handle:before,
.range_wrap  .noUi-handle:after{display: none;}
.range_wrap .noUi-connect{background: #2E66F7;}
.new_filter ul li{
	padding: 16px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
}
.new_filter ul li:hover{
	background: #2E66F7;
	color: #fff;
}
.new_filter ul li:after{
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #D1D5DB;
	background: #fff;
}
.new_filter ul li.active:after{
	border-width: 5px;
	border-color: #2E66F7;
}
.new_filter ul[data-type="sort"] li:after{
	border-radius: 50%;
}
.new_data .last_item img{height: auto;}
.filtered_data{
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 60px;
	padding: 0;
	list-style: none;
	display: none;
}
.filtered_data li{
	padding: 4px 10px 6px;
	background: #F5F8FF;
	border-radius: 12px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}
.filtered_data li.clear{
	background: transparent;
	text-decoration: underline;
	color: #2E66F7;
}
.filtered_data li:not(.clear):after,
.filter_head .close{
	content: "";
	background: url('../img/cross_icon.svg');
	width: 8px;
	height: 8px;
	margin-top: 4px;
}
.new_data.new_deals .deal_item{margin: 0;}
.new_data .type_tag{
	padding: 8px 12px;
	border-radius: 100px;
	background: #F3F4F6;
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	color: #4B5563;
	display: inline-block;
	font-family: "Graphik Medium", Sans-serif;
	margin-bottom: 40px;
	width: auto;
}
.new_data .deal_item .wrap{align-items: flex-start;}
.filter_app .filter_head h2{
	font-size: 28px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: -0.84px;
	font-family: "BR Sonoma Medium", Sans-serif;
	font-weight: 500;
}
.filter_app .filter_head{
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	display: none;
}
.filter-toggle,
.filter_head .close,
.filter_app .buttons{display: none;}
.filter_wrapper > h2{margin-bottom: 24px;}
.load_more{
	text-align: center;
}
.load_more span{
	display: inline-block;
	padding: 12px 24px;
	cursor: pointer;
	border: 2px solid #2E66F7;
	border-radius: 12px;
	color: #2E66F7;
	font-family: "Graphik Medium", Sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.load_more span:after{
	display: inline-block;
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid #2E66F7;
	border-radius: 2px;
	border-top: 0;
	border-right: 0;
	margin-left: 12px;
	transform: rotate(-45deg) translateY(-3px);
}
.deal_item.outside{display: none !important;}
@media(max-width: 768px){
	.filter_app.active .filter_head{display: flex;}
	.filter_app{display: none;}
	.filter_app.active,
	.filter-toggle {display: block;}
	body.oh-hidden{overflow: hidden !important;}
	.filter_app.active{
		position: fixed;
		inset: 0 ;
		background: #fff;
		z-index: 9;
		padding: 24px;
	}
	.filter_app .filter_head,
	.new_filter{flex: 0 0 100%}
	.new_filter{
		display: block;
		max-height: calc(100vh - 200px);
		overflow: auto;
	}
	.new_filter .col{
		padding: 0 0 16px;
		overflow: hidden;
	}
	.new_filter .head .text{
		padding: 0;
		border: 0;
		flex: 0 0 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.new_filter .head{
		padding: 16px 0;
	}
	.new_filter .head .val{display: none;}
	.new_filter .drop_down{
		position: static;
		opacity: 0;
		transform: scale(1);
		width: 100%;
		border: 0;
		max-height: 0;
		overflow: unset;
		cursor: default;
		transform-origin: top left;
		display: none;
	}
	.new_filter .active .drop_down,
	.new_filter .sort .drop_down,
	.new_filter .price_range .drop_down{
		opacity: 1;
		max-height: 600px;
		padding-left: 0;
		padding-right: 0;
		display: block;
	}
	.new_filter .price_range .drop_down{
		padding: 15px 19px 0 5px;
	}
	.sort .head .text:after,
	.price_range .head .text:after{display: none;}
	.new_filter ul li{
		padding:  11px 0;
	}
	.new_filter ul li:hover{
		background: transparent;
		color: #374151;
	}
	.new_filter .head .text:after{
		width: 14px;
		margin: 3px 0 0 auto;
		transform: rotate(-90deg);
	}
	.new_filter .active .head .text:after{
		margin: 0 3px 0 auto;
		transform: rotate(0deg);
	}
	.filter_app .buttons{
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		display: flex;
		gap: 10px;
		margin: 0;
		padding: 24px 24px 34px;
		list-style: none;
		background: #fff;
		z-index: 3;
	}
	.filter_app .buttons li{
		flex: 1;
		padding: 12px;
		text-align: center;
		border-radius: 12px;
		cursor: pointer;
		box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	}
	.filter_app .buttons .clear_values{
		border: 2px solid #D1D5DB;
		color: #9CA3AF;
	}
	.filter_app .buttons .clear_values.has_filter{
		background: #EAF0FE;
		border-color: #EAF0FE;
		color: #2E66F7;
	}
	.filter_app .buttons .show{
		background: #2E66F7;
		color: #fff;
		box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	}
	.filter_app.seperate .col:not(.active){display: none !important;}
	.filter_head{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.filter_head .close{
		width: 16px;
		height: 16px;
		background-repeat: no-repeat;
		background-size: 16px;
		cursor: pointer;
	}
	.filter_app.active .filter_head .close{display: block;}
	.filter_app.seperate .filter_head{display: none;}
	.col .head .back_arrow{
		background: 16px, url('../img/arrow-left.svg') no-repeat center;
		width: 16px;
		height: 12px;
		flex: 0 0 16px;
		transform: scale(1.5);
		text-indent: -1000px;
	}
	.filter_app.seperate .head .num_val{display: none !important;}
	.head .num_val.has_value{
		position: absolute;
		right: 30px;
		top: 16px;
		display: block !important
	}
	.filter_app.seperate .col.active .head{
		justify-content: space-between;
	}
	.filter_app.seperate .col.active .head span{display: block;}
	.filter_app.seperate .head .text{flex: 0 0 auto;}
	.filter_app.seperate .head .close{
		background: 16px, url('../img/cross_icon.svg') no-repeat center;
		width: 16px;
		height: 16px;
		flex: 0 0 16px;
		transform: scale(1.5);
	}
	.filter_app.seperate .head .text:after{display: none;}
	.filtered_data{display: none !important;}
	.filter-toggle{
		border: 1px solid #E5E7EB;
		padding: 12px;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 24px;
		font-family: "Graphik Medium", Sans-serif;
		font-size: 20px;
		font-weight: 500;
		cursor: pointer;
	}
	.filter_wrapper > h2{margin-bottom: 16px;}
}
@media(max-width: 640px){
	.new_data .car_deals .last_item{display: none !important}
	.deal_item.outside{
		display: block !important;
		margin: 60px 0;
	}
	.new_deals .last_item.outside img{border-radius: 20px;}
	.deal_item.outside figure{margin-bottom: 60px !important;}
}
@media(max-width: 540px){
	.filter_wrapper h2{
		font-size: 18px !important;
		font-weight: 500 !important;
	}
	.filter-toggle{font-size: 14px;}
	.filter_app .buttons{font-size: 14px;}
}