/*GENERAL*/
html{
	height:100%;
}
body{
	margin:0;
	padding:0;
	width:100%;
	height: 100%;
	background-color: white;
	font-size:1em;
	color:var(--couleur-texte);
	font-family: 'Raleway',Arial, sans-serif;
	font-weight: normal;
	text-decoration: none;
	cursor: default;
	max-width: 100%;
}
a{
	text-decoration:underline;
	cursor: pointer;
	color:var(--couleur-texte);
}
i{
	color:#fff;
}
section{
	width: 90%;
	z-index:2; 
	position: relative;
	margin:0px;
	padding: 0px;
}
strong{
   font-weight: bold;
}
header{
	width: 100%;
	z-index: 100;
	height: 50px;
	margin: 0px 0px 10px 0px;
}
#main{
	opacity: 0;
	min-height: 100%;
}

#main2{
	max-width: 620px;
	width: 95%;
}

/*MESSAGE*/
#message{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999999;
}
.popup{
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  max-width: 250px;
  position: relative;
  transition: all 5s ease-in-out;
}

/*INPUT*/
.input_large{
	width: 600px;
	max-width: 100%;
	padding:5px;
}
.input_medium{
	width: 290px;
	max-width: 100%;
	padding:5px;
}
.input_small{
	width: 145px;
	max-width: 100%;
	padding:5px;
}
.input_xsmall{
	width: 100px;
	max-width: 100%;
	padding:5px;
}
.input_xmedium{
	width: 180px;
	max-width: 100%;
	padding:5px;
}
input[type='date']{
   font-size: 1em;
   font-family: 'Raleway',Arial, sans-serif;
}