.Form {
	margin: 0 auto;
	padding: 1em 0;
	color: var(--text);
}
.Form div + div, .input div {
	margin-top: 1em;
}
/*affichage ordinateurs*/
@media only screen and (min-width: 1019px) {
	.ContourTexte label 
	{
		display: inline-block;
		min-width: 110px;
		text-align: right;
	}
	.info_image
	 {
		background: var(--barretext);
		cursor: help;
		display: inline-block;
		-webkit-background-size: 25px;
		-moz-background-size: 25px;
		-o-background-size: 25px;
		background-size: 25px;
		height: 25px;
		width: 25px;
		border-radius: 100px;
		vertical-align: middle;
		position: relative;
	}
	.info_image::before
	{
		 Content: "?";
		 font-weight: bold;
		 color: var(--barrenav);
	}
	.info_bulle
	{
		background-color: var(--barretext);
		width: 300px;
		color: var(--barrenav);
		text-align: center;
		border: 1px solid var(--barrenav);
		border-radius: 6px;
		padding: 5px 0;
		position: absolute;
		z-index: 1;
		bottom: 100%;
		left: 50%;
		margin-left: -150px;
		margin-bottom: 5px;
		visibility: hidden;
		transform: scaleY(0);
		transform-origin: bottom;
		transition: transform ease-out .2s;
		font-size: 0.7em;
	}
	.info_bulle::after {
		content: " ";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: var(--barretext) transparent transparent transparent;
	}
	.info_image:hover > .info_bulle
	{
    	visibility: visible;
		transform: scaleY(1);
	}
	textarea {
	margin: 0 35px 0 10px;
	}
	input, select {
	margin: 0 10px;
	}
}
/*affichage smartphone*/
@media only screen and (max-width: 1019px) {
	.info_bulle
	{
		display: none;
	}
	.ContourTexte label
	{
		display:block;
		width: 100%;
	}
}
input{
	height: 2em;
}
input, textarea, select {
	font: 1em sans-serif;
	width: 100%;
	max-width: 600px;
	box-sizing: border-box;
	background-color: var(--contenu);
	border: 1px solid var(--barretext);
	border-radius: 0.5em;
	color: var(--text);
	padding: 5px;
}
input:focus, textarea:focus {
	outline: 0;
}
input:invalid, textarea:invalid {
	box-shadow: 0 0 5px 0px var(--text);
}

input[type=number] {
	max-width: 80px;
}

textarea {
	vertical-align: top;
	height: 20em;
	min-height: 10em;
	min-width: 10em;
}
.button {
	padding-left: 10px;
}
.button-form {
	height: 3em;
	width: 15em;
	background:var(--barretext);
	color:var(--barrenav);
	text-decoration: none;
	font-weight: bold;
	border: 2px solid var(--barretext);
	border-radius: 50px;
	font-size: 1em;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
button:hover 
{
	background:var(--barrenav);
	border: 2px solid var(--barretext);
	color:var(--barretext);
	cursor: pointer;
}


.ContourTexte .checkbox
{
	width:80%;
	text-align: center;
	display: inline-block;
}
.checkbox
{
	position: absolute;
	top:3px;
	opacity: 0;
	cursor: pointer;
	margin: auto;
	height: 15px;
	width: 15px;
	z-index: 2;
}

.item
{
	display: flex;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
}

.item label
{
	margin-left:30px;
}

.checkmark 
{
	position: absolute;
	top:3px;
	margin: auto;
	height: 15px;
	width: 15px;
	background-color: #ffffff;
	border: 1px solid var(--barrenav);
}

.checkbox:hover ~ .checkmark 
{
	background-color: var(--barrenav2);
}

.checkbox:checked ~ .checkmark 
{
	background-color: var(--barrenav);
}

.checkmark:after 
{
	content: "";
	position: absolute;
	display: none;
}

.checkbox:checked ~ .checkmark:after 
{
	display: block;
}

.checkmark:after 
{
	left: 4px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.score_table
{
	display:grid;
}