/*-----------------------MISE EN PAGE ELEMENTS-----------------------*/

*{
    margin: 0px;
    padding: 0px;
}


html, body{
    margin: 0;
    min-height: 100%;
	font-family: Calibri;
}


html{
	position: relative;
	scroll-behavior: smooth;
}


/*-----------------------MENU DE LOGIN-----------------------*/

#login{
	float: left;
	margin-left: 20px;
	margin-top: -20px;
	transition-duration: 0.5s;
	text-align: center;
	animation: fadeIn ease 4s;
	-webkit-animation: fadeIn ease 4s;
	-moz-animation: fadeIn ease 4s;
	-o-animation: fadeIn ease 4s;
	-ms-animation: fadeIn ease 4s;
}


#login h1{
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
	color: orange;
	text-align: center;
}


#login p{
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
	color: white;
	text-align: center;
}


#login .box{
	height: 30px;
	width: 250px;
	font-size: 16px;
	border-radius: 20px;
	padding-left: 10px;
	margin-top: 5px;
}


#login input{
	margin-bottom: 2px;
}


#login .boutons{
	display: flex;
	justify-content: center;
	margin-top: 8px;
}


/*-----------------------MENU DE NAVIGATION-----------------------*/

#menu{
    background: linear-gradient(#5a8659, 60%, #258300);
	border-bottom: solid 2px;
	height: 105px;
	position: fixed;
	width: 100%;
	top: 0px;
}


#menu .onglets {
    display: flex;
	padding-top: 12px; 	
    justify-content: left;
}


#menu ul{
	list-style-type: none;
}


#menu .separation{
	background-color: white;
	margin-top: auto;
	margin-bottom: auto;
	height: 60px;
	width: 3px;
}


#menu a{
	transition-duration: 0.2s;
}


#menu a:hover{
	opacity: 0.4;
}


#menu .accueil {
	width: 140px;
	text-align:center;
}


#menu .mon-profil{
	width: 140px;
	text-align:center;
}


#menu .parametres{
	width: 140px;
	text-align:center;
	transition-duration: 0.5s;
}


#menu .parametres:hover{
	transform: rotate(45deg);
}


#menu .recherche{
    position: fixed;
    right: 20px;
    top: 10px;
}


#menu .box{
	background-color: rgb(187, 187, 187);
	font-weight: bold;
	height: 40px;
	width: 450px;
	font-size: 16px;
	border-radius: 20px;
	padding-left: 10px;
	margin-top: 12px;
}


/*-----------------------PIED DE PAGE-----------------------*/

#footer{
	margin-top: auto;
	width: 100%;
	height: 100px;
    background: rgba(146, 66, 0, 0.4);
	border-top: solid 2px;
	bottom: 0;
	position: absolute;
}


#footer .conteneur{
	margin-top: 25px;
}


#footer p{
	font-size: 32px;
	color: white;
	font-weight: bold;
	text-align: center;
}


#footer .mentions{
	font-size: 16px;
	color: white;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}


/*-----------------------KEYFRAMES TRANSITIONS-----------------------*/

@keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-moz-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-webkit-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-o-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-ms-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}