:root{
	/* revoir le nom des variables, fait un truc plus global, mainColor1, mainColor2..., colorTitle.... */
	--blanc: #fafafa;  
	--bleu2: #252746;
	--gris : #252934;
	--gris2: #393F4F;
	--gris3: #4A5266;
	--gris4: #8A8A8A;
	--gris5: #CACACA;
	
    --rose: #FF3F8E; 
    --turquoise: #04C2C9;
	--bleu: #2E55C1;
	--violet: #9350C3;
}

html, body {

	/* couleur codée en dur pour IE qui ne gère pas les vars */
	/* background-color: var(--gris); */
	background-color: #252934;

	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #fafafa;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;  */
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
}

a,
a:hover,
a:visited {
	color: inherit;
	text-decoration: none;
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

input[type="range"] {
	height: 0;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}


/* TXT-NO-SEL -BEG*/
/* Texte non selectionnable par défaut, c'est plus sympa à l'utilisation, on évite de la surbrillance intempestive */
a, span, p, h1, h2, h3, h4, h5, h6 {
	-moz-user-select: none; /* Firefox */
	-webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
	-ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
	user-select: none; /* Propriété standard */
}
.selectable {
	-moz-user-select: text; /* Firefox */
	-webkit-user-select: text; /* Chrome, Safari, Opéra depuis la version 15 */
	-ms-user-select: text; /* Internet explorer depuis la version 10 et Edge */
	user-select: text; /* Propriété standard */	
}
/* TXT-NO-SEL -END*/