/** Général *******************************/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before, *:after {
  	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Font Awesome 5 Free';
}

html {
	height: 100%;
}

body {
	background-color: #ffffff;
	font-family: 'Ubuntu', sans-serif;
	font-size: 13px;
	box-sizing: content-box;
	color: #051b71;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #051b71;
}

a:hover {
	color: #369ad4;
}

h2 {
	color: #051b71;
	font-size: 1.2em;
	display: block;
	padding-bottom: 1em;
	font-weight: 500;
}

/** Formulaire *******************************/

input, select, textarea, label {
	font-family: 'Ubuntu', sans-serif;
	color: #051b71;
	font-size: 1em;
	vertical-align: middle;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], select {
	width: 100%;
	max-width: 300px;
	border: 1px solid #b2b2b2;
	padding: 0.2em;
	border-radius: 2px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type="submit"], button[type="submit"], input[type="button"], button[type="button"] {
    color: #ffffff;
    padding: 0.5em 2em;
	text-align: center;
	font-weight: 500;
	cursor: pointer;
	border-radius: 2px;
	background: #369ad4;
	border: 0;
}

label.required:after {
	content:'*';
	color: #369ad4;
}

/** Main *******************************/

.main {
	max-width: 742px;
	margin: auto;
	position: relative;
}

/** Header *******************************/
.header {
	margin: 2em 0;	
}

/** Contenu *******************************/

.content {
	padding: 1%;
}

.content ul {
	list-style-type: none;
}

.intro {
	margin: 0 0 3em 0;
}

.bloc {
	background-color: #e6f0f7;
	padding: 2em;
}

.champs > li {
	display: block;
	padding: 5px 0;
}

.champs > li > ul {
	display: table;
	width: 100%;
}

.champs > li > ul > li {
	display: table-cell;
	text-align: left;
}

.champs > li > ul > li:first-child {
	text-align: right;
	padding-right: 14px;
	width: 40%;
}

.champs > li > ul > li:first-child:after {
	content: ' :';
}

.champs > li > ul > li.question:first-child:after {
	content: '';	
}

.liste {
	width: 100%;
	max-width: 400px;
	margin: 2em auto;
	padding: 2% 1%;
	text-align: left;
}

.liste > li:first-child {
	text-align:center;
	font-size: 1.1em;	
}

.liste > li:last-child {
	font-size: 0.8em;
	padding: 1em 0;	
}

.liste > li > ul > li {
	border-bottom: 1px dotted #676767;
	text-transform: uppercase;
	padding: 1em 0;
}

.liste > li > ul > li:fitst-child {
	border-top: 1px dotted #676767;
}

.liste input[type="checkbox"] {
	float:right;	
}

.obligatoire {
	display: block;
	padding-top: 1em;
	font-size: 0.9em;
	white-space: nowrap;
}

.obligatoire > span {
	color: #369ad4;
}

.mentions {
	margin-top: 2em;	
}

.mentions > li {
	margin-bottom: 0.5em;
}
	
.alerte {
	display: block;
	background-color: #c9336b;
	color: #ffffff;
	border-radius: 5px;
	padding: 2px;
}

.alerte > p {
	margin: 2px;
}

.erreur h1 {
	color: #c9336b;
}

.erreur h1:before {
	content: '\f071';
	margin-right: 0.5em;
}

.bouton {
	display: table;
	margin: 2em 0;
	width: 100%;
	font-size: 0.9em;
}

.bouton > li {
	display:table-cell;
	vertical-align: middle;
}

.bouton > li:last-child {
	text-align:right;
}