@charset "utf-8";

@font-face {
    font-family: 'futura';
    src: url('fonts/Futura-Std-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/*Document CSS*/

*,
*::before,
*::after {
  box-sizing: border-box;
}


:root {
	--select-border: #777;
	--select-focus: blue;
	--select-arrow: var(--select-border);
  }

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #FFFFFF;
	
}

/*CHAPEAU*/


.chapeau {
	margin-top: 50px;
	display:flex;
	flex-direction:column;
	align-items:center;
}



h1{
	font-family: 'Alegreya Sans SC', sans-serif;
	font-size: 30;
	text-align: center;
	color: rgb(61, 61, 61);
	margin-bottom: 40px;
}

.intro{
    font-size: 14;
	font-family: 'futura';
	color: rgb(125, 125, 125);
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	width:95%;
	max-width: 550px;
	margin-bottom: 10px;
	
}


/*CARTE*/
.carte {
	margin:auto;
	display:flex;
	flex-direction:column;
	align-items: center;
	padding: 5px;
}

.categorie_produit {
	width:100%;
	max-width:740px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-items:center;
	border:1px solid rgba(200,200,200,1.00);
	padding: 10px 0px;
	margin: 20px 0px;
	border-radius: 10px;
}

h2{
	font-family: 'futura';
	font-size: 30;
	width:100%;
	max-width:300px;
	text-align: center; 
	color: rgb(92, 92, 92);
	margin-bottom: 30px;
}

.fiche_allergenes {
	
	background: rgba(256,256,256,1.00);
	font-family: 'futura';
	color: rgb(62, 68, 64);
	display:flex;
	flex-direction:row;
	justify-content:space-evenly;
    text-align: center; 
	align-items:center;
	height: auto;
	max-width:700px; 
	padding:5px;
    margin-bottom:20px;
}


.informations_allergenes {	
    
	width:60%;
	font-size: 15;
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding: 0px 5px 0px 10px;	
}

h3{	
	
	font-family: 'futura';
	font-size: 15;
}

#descriptif_allergenes{
	color: rgb(125, 125, 125);
	font-size: 12;
	height:auto;
	overflow: hidden;
  	text-overflow: ellipsis;
}

.fermer {
    margin:30px 0px;
	color:rgb(147,141,73);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	font-family: 'futura';
	font-size: 17;
	border: none;
	background-color: rgb(255, 255, 255);
	cursor: pointer;
}




