
#visibli-list {
	list-style-type: none;
}

.visibli-vehicle {
	width: 33%;
	float: left;
	min-height: 450px;
	text-align: center;
	margin: 10px 0;
	font-family: "Roboto", Sans-serif;
	padding: 10px;
}

#visibli-list .visibli-vehicle-content {
	display: block;
	color: #222;
	background-color: #0F0F0F;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
	padding-top: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	padding-right: 0px;
	min-height: 480px;
}

.visibli-vehicle-content:hover {
	color: #222;
}

.visibli-vehicle-content img {
	border-radius: 10px 10px 0px 0px !important;
}

.visibli-vehicle-content p {
	font-size: 16px;
	color: #FFF;
}

.visibli-vehicle-content h3 {
	color: #DC0009;
	font-family: "Gruppo", Sans-serif;
	font-size: 25px;
	font-weight: 700;
	margin: 15px 0;
}

.visibli-vehicle-content h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}


.filter-form-wrapper {
	display: flex;
	flex-direction: column;
	margin: 50px 0px 50px 0px;
	border-bottom: 1px solid rgba(127, 127, 127, 0.476);
	padding-bottom: 30px;
	margin-left: 25px;
	margin-right: 25px;
}

.filter-form-wrapper h3 {
	margin-bottom: 20px;
}

.filter-form {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 35px;
	color: #FFF;
}

.result-title, .filter-reset-btn {
	color: #FFFFFF !important;
}

.filter-form select {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	border: none;
	border-radius: 5px;
	width: 200px;
	cursor: pointer;
	background-color: #f3f4f6;
	border: 1px solid #d1d5db;
	color: #1f2937;
	font-size: 0.875rem;
	border-radius: 0.375rem;
	display: block;
	padding: 0.625rem;
	padding-right: 2rem;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%231e293b" viewBox="0 0 20 20" width="12" height="12"><path d="M9.293 11.293l4-4a1 1 0 0 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414L10 10.586l3.293-3.293a1 1 0 0 1 1.414 1.414z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
	appearance: none;
	font-family: var(--text-font-family);
	letter-spacing: 1px;
	outline: none;
}

.filter-form select:focus {
	outline: none;
}

.filter-form-wrapper div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.filter-form-wrapper div div {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	max-width: 80%;
	font-family: var(--text-font-family);
	letter-spacing: 1px;
}

.filter-card-link {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: fit-content;
	cursor: pointer;
	gap: 5px;
	font-size: 14px;
	background-color: #f3f4f6;
	padding: 5px 20px 5px 20px;
	border-radius: 20px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1));
	text-decoration: none; /* Pour supprimer le soulignement du lien */
	color: inherit; /* Pour hériter de la couleur du texte */
}

.filter-card-link svg {
	width: 17.5px;
	height: 17.5px;
	color: var(--text-color);
}

.filter-reset-btn {
	display: flex;
	justify-content: end;
	align-items: center;
	color: var(--text-color);
	gap: 5px;
	font-family: var(--text-font-family);
	letter-spacing: 1px;
	font-weight: bold;
	width: fit-content;
}

.filter-reset-btn:hover {
	opacity: 0.8;
	transition-duration: 500ms;
}

.result-title {
	color: var(--text-color);
	font-family: var(--title-font-family);
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.2em;
	letter-spacing: -0.5px;
	margin-left: 25px;
	margin-right: 25px;
	width: 100%;
}


/* Breakpoint pour les appareils mobiles */
@media only screen and (max-width: 767px) {
  
	#visibli-list {
		padding: 0;	
	}
	.visibli-vehicle {
		width: 100%;
	}	
	
	.filter-form-wrapper div {
		flex-direction: column;
		justify-content: center;
	}
	
	.filter-form-wrapper div div {
		justify-content: center;
		max-width: 100%;
	}
	
	.filter-reset-btn {
		margin-top: 30px;
	}
	
	.filter-form-wrapper {
		width: 100%;
		margin-top: 25px;
		margin-bottom: 25px;
		margin-left: 0px;
		margin-right: 0px;
	}
	
	.filter-form select {
		width: 100%;
	}
	
	.result-title {
		margin-left: 15px;
		margin-right: 0px;
	}
	
}

/* Breakpoint pour les tablettes */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  
	#visibli-list {
		padding: 0;	
	}
	.visibli-vehicle {
		width: 50%;
	}
	
}