.results-main-title{
	color: #21313A;
	font-size: 34px;
	font-weight: 400;
	position: relative;
	&:before{
		content: "";
		display: inline-block;
		position: absolute;
		bottom: -10px;
		width: 50px;
		border: 2px solid #4B77BE;
	}
}

.results-empty h2{
	color: #4B77BE;
	text-align: center;
	font-size: 34px;
	font-weight: 700;
}

.results-empty p{
	color: #000;
	font-size: 18px;
	font-weight: 700;
}

.results{
	position: relative;
	min-height: 700px;
}

.results-sidebar{
	height: calc(100vh - 142px);
	width: 400px;
	max-width: 100%;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	background: #4B77BE;
	position: absolute;
	top: -45px;
	left: -400px;
	transform: translateX(-400px);
	padding: 0 30px 30px 30px;
	overflow-y:auto;
	transition: transform 1s ease;
	.results-sidebar-sticky{
		position: sticky;
		top: 0;
		background: #4B77BE;
		z-index: 1;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.results-sidebar-header{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	h4{
		color: #FFF;
		text-transform: uppercase;
		font-size: 15px;
		font-weight: 700;
	}
	.results-sidebar-close{
		cursor: pointer;
		width: 20px;
		height: 20px;
		background-color: white;
		border-radius: 2px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.results-sidebar-actions{
		display: flex;
		gap: 15px;
		.custom-btn{
			flex: 1;
		}
	}
	.results-filter-base,.results-filter-advanced-container{
		margin-top: 15px;
		> div{
			margin-bottom: 15px;
		}
	}
	label{
		color: #FFF;
		font-size: 14px;
		font-weight: 700;
		line-height: 1;
	}
	.ss-main{
		--ss-border-radius: 2px;
		--ss-main-height: 40px;
		--ss-border-color: #DFEAF2;
		--ss-font-color: #5A6C76;
	}
	.ss-arrow{
		--ss-font-color: #4B77BE;
	}
}
.results-sidebar.open{
	left: 0;
	transform: translateX(0px);
}
/* Firefox */
.results-sidebar {
	scrollbar-width: auto;
	scrollbar-color: #a5bbdf #ffffff;
}

/* Chrome, Edge, and Safari */
.results-sidebar::-webkit-scrollbar {
	width: 16px;
}

.results-sidebar::-webkit-scrollbar-track {
	background: #ffffff;
}

.results-sidebar::-webkit-scrollbar-thumb {
	background-color: #a5bbdf;
	border-radius: 10px;
	border: 3px solid #ffffff;
}

.results-filter-advanced{
	margin-top: 30px;
}

.results-filter-advanced-container{
	display: none;
}
.results-filter-advanced-container.open{
	display: block;
}

.results-filter-advanced-title{
	cursor: pointer;
	color: #FFF;
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	.open{
		transform: rotate(-180deg);
	}
}

.form-custom{
	height: 40px;
	border-radius: 2px;
	border: 1px solid #DFEAF2;
	color: #5A6C76;
	display: flex;
	width: 100%;
	outline: 0;
	padding: 3px;
}

.custom-btn{
	display: inline-flex;
	padding: 8px;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
	border: 0;
	color: #21313A;
	background: #D4D4D4;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	height: 44px;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.custom-btn:hover{
	opacity: 0.9;
	color: #21313A;
}

.custom-btn-large{
	padding: 8px 50px
}

.custom-btn-blue{
	background: #21313A;
	color: #FFF;
}

.custom-btn-blue:hover{
	opacity: 0.9;
	color: #FFF;
}

.flex-ligue{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pre-label{
	margin-right: 15px;
}

.switch {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 20px;
	margin-right: 15px;
	&:before{
		content:"";
		border: 4px solid #DFEAF2;
		width: calc(100% + 4px);
		height: calc(100% + 4px);
		position: absolute;
		border-radius: 34px;
		top: -2px;
		left: -2px;
	}
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #D8D8D8;
	transition: .4s;
	border-radius: 34px;
	&:before {
		border-radius: 50%;
	}
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #21313A;
}

input:focus + .slider {
	box-shadow: 0 0 1px #21313A;
}

input:checked + .slider:before {
	transform: translateX(16px);
}

.range_container {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.sliders_control {
	position: relative;
	min-height: 20px;
}

.form_control {
	position: relative;
	display: flex;
	justify-content: space-between;
	font-size: 24px;
	color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: all;
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #C6C6C6;
	cursor: pointer;
}

input[type=range]::-moz-range-thumb {
	-webkit-appearance: none;
	pointer-events: all;
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #C6C6C6;
	cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
	background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
	box-shadow: inset 0 0 3px #21313A, 0 0 9px #21313A;
	-webkit-box-shadow: inset 0 0 3px #21313A, 0 0 9px #21313A;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	height: 4px;
	width: 100%;
	position: absolute;
	background-color: #F2F2F2;
	pointer-events: none;
}

#fromSlider {
	height: 0;
	z-index: 1;
}

#fromSlider::-webkit-slider-thumb{
	margin-top: 5px;
}
#fromSlider::-moz-range-thumb{
	margin-top: 5px;
}

.form_control_container{
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
}

.table-results{
	border-radius: 9px;
	box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.3);
	thead{
		th{
			border-bottom: 0 !important;
			border-left: 1px solid #D8D8D8 !important;
			vertical-align: middle !important;
			a{
				display: flex;
				align-items: center;
				gap: 5px;
			}
		}
		tr th:first-child{
			border-left: 0 !important;
		}
	}
	tbody{
		tr{
			height: 45px;
			td {
				border-top: 0 !important;
				border-left: 1px solid #D8D8D8 !important;
				vertical-align: middle;
			}
			td:first-child{
				border-left: 0 !important;
			}
		}
	}
}

.nb-results{
	margin-top: 15px;
	margin-bottom: 15px;
}

.results-documents{
	width: 300px;
	height: 130px;
	overflow-y: auto;
	border-radius: 10px;
	border: 1px solid #36CCFC;
	background: #F3F3F3;
	padding: 10px 20px;
	h3{
		display: flex;
		align-items: center;
		margin-top: 0;
		gap: 10px;
		color: #21313A;
		font-size: 15px;
		font-weight: 700;
	}
	ul{
		list-style: none;
		padding: 0;
		a{
			color: #21313A;
			font-size: 13px;
			font-weight: 400;
			text-decoration-line: underline;
			margin-bottom: 10px;
		}
		a:last-child{
			margin-bottom: 0;
		}
	}
}

/* Firefox */
.results-documents {
	scrollbar-width: auto;
	scrollbar-color: #a5bbdf #ffffff;
}

/* Chrome, Edge, and Safari */
.results-documents::-webkit-scrollbar {
	width: 16px;
}

.results-documents::-webkit-scrollbar-track {
	background: #ffffff;
}

.results-documents::-webkit-scrollbar-thumb {
	background-color: #a5bbdf;
	border-radius: 10px;
	border: 3px solid #ffffff;
}

@media (max-width: 767px) {
	.results-sidebar {
		height: 100vh;
		position: fixed;
		top: 0;
		z-index: 9000;
		width: 100%;
	}
}
