
/*******************************************
********************************************
******** form - section#formulaire *********
****************************************** */

section#formulaire {
	border-radius: 1em;
}
section#formulaire > p {
	padding: 1em;
	text-indent: 1em;
}

section#formulaire > form {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

form > .field, form > .half {
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	text-align: center;
	margin: 1em auto .5em auto;
}

form > .field {
	width: calc(100% - 2em);
	text-align: center;
}

form > .half {
	width: calc(50% - 2em);
}


/** composants **/

label {
	color: #000;
	display: block;
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 0.2rem;
	line-height: 1.5;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	color: #000;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.65;
}

input[type="text"],
input[type="email"],
input[type="submit"],
input[type="reset"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	background-color: transparent;
	border-radius: .5em;
	border: solid 1px #000;
	color: #000;
	display: block;
	outline: 0;
	text-decoration: none;
	text-indent: 1em;
	width: 100%;
}

fieldset {
	border-radius: .5em;
}

fieldset > img, section#news-erreur > article > img {
	border-radius: .5em;
	width:100%;
}

textarea {
	width: 98%;
	margin: 0 auto;
}

input[type="submit"],
input[type="reset"] {
	text-transform: uppercase;
	font-weight: 500;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
	cursor: pointer;
	font-weight: 600;
	background-color: #fff;
}

input[type="text"]:invalid,
input[type="email"]:invalid,
input[type="submit"]:invalid,
input[type="reset"]:invalid,
select:invalid,
textarea:invalid {
	box-shadow: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
select:focus,
textarea:focus {
	background: rgba(255, 255, 255, 0.75);
	border-color: #6BAFF7;
	box-shadow: 0 0 0 1px #fff;
}

select {
	height: 2.75rem;
	padding-right: 2.75rem;
	text-overflow: ellipsis;
}

select option {
	color: #000;
	background: #1b1f22;
}

select:focus::-ms-value {
	background-color: transparent;
}

select::-ms-expand {
	display: none;
}

input[type="text"],
input[type="email"],
input[type="submit"],
input[type="reset"] {
	height: 2.75rem;
}

textarea {
	padding: 0.75em;
}

select {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23ffffff' /%3E%3C/svg%3E");
		background-size: 1.25rem;
		background-repeat: no-repeat;
		background-position: calc(100% - 1rem) center;
		height: 2.75rem;
		text-indent: .5em;
		padding-right: 2.75rem;
		text-overflow: ellipsis;
	}

input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: block;
	float: left;
	margin-right: -2rem;
	opacity: 0;
	width: 1rem;
	z-index: -1;
}

input[type="checkbox"] + label {
	text-decoration: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 300;
	margin: 0 0 0.5rem 0;
	padding-left: 2.65rem;
	padding-right: 0.75rem;
	position: relative;
}

input[type="checkbox"] + label:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

input[type="checkbox"] + label:before {
	-moz-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
	border-radius: 4px;
	border: solid 1px #fff;
	content: '';
	display: inline-block;
	height: 1.65rem;
	left: 0;
	line-height: 1.65rem;
	position: absolute;
	text-align: center;
	top: -0.15rem;
	width: 1.65rem;
}

input[type="checkbox"]:checked + label:before {
	background: #fff !important;
	border-color: #fff !important;
	color: #1b1f22;
	content: '\f00c';
}

input[type="checkbox"]:focus + label:before {
	background: rgba(0, 0, 0, 0.75);
	border-color: #fff;
	box-shadow: 0 0 0 1px #fff;
}

input[type="checkbox"] + label:before {
	border-radius: .5em;
}

::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.5) !important;
	opacity: 1.0;
}

:-moz-placeholder {
	color: rgba(0, 0, 0, 0.5) !important;
	opacity: 1.0;
}

::-moz-placeholder {
	color: rgba(0, 0, 0, 0.5) !important;
	opacity: 1.0;
}

:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.5) !important;
	opacity: 1.0;
}


/* autre */

#mention {
	display: block;
	line-height	: 2em;
	text-indent: 2em;
	margin-bottom:0;
}
