form {
	text-align: center;
	font-size: 150%;
	padding: 20px;
}

.ligne_formulaire {
	padding: 15px 8px;
	display: flow-root;
}

.ligne_formulaire:hover {
	background-color: rgba(215, 221, 242, 0.1);
}

.ligne_formulaire label {
	font-weight: bold;
	margin: 10px 10px 10px 0;
	float: left;
	width: 45%;
	text-align: right;
}

@media only screen and (max-width: 680px), only screen and (max-device-width: 680px) {
	.ligne_formulaire label {
		width: 100%;
		display: flex;
		text-align: left;
	}
}

.ligne_formulaire label {
	color: #6A95C7;
}

input,
select {
	background-color: #e3edf2;
	border: 1px solid #38687e;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
	padding: 10px;
	width: 45%;
	border-radius: 8px;
	margin-top: 3px;
	float: left;
}

@media only screen and (max-width: 680px), only screen and (max-device-width: 680px) {
	input,
	select {
		width: 90%;
	}
}

input[type=number] {
	width: 30px;
}

input[type=radio], input[type=checkbox] {
	width: auto;
	margin: 6px 10px 0 0;
}

.recherche_series {
	margin: 20px auto;
	text-align: center;
}

.recherche_series input {
	height: 30px;
	min-width: 50%;
	text-align: center;
	float: none;
}

.recherche_series iconify-icon {
	font-size: 300%;
	margin: 10px 0 0 4px;
	margin-right: 5px;
	color: #F26522;
	position: absolute;
}

.bouton_envoi {
	background-color: #E3EDF2;
	border: 2px solid;
	color: #38687E;
	font-weight: bold;
	height: 40px;
	margin-top: 10px;
	width: 250px;
	border-radius: 10px;
	float: none;
	padding: 2px 5px 0;
}

.bouton_envoi:hover {
	border: 2px solid;
	color: #024F23;
	cursor: pointer;
	background-color: #B0CDDB; 
}

@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) {
	.bouton_envoi {
		width: 200px;
	}
}

.champ_obligatoire label {
	color: #FF0000;
}

.champ_obligatoire input,
.champ_obligatoire select {
	border: 2px solid #FF0000;
}