/* -----------------------------------------------
--------------------- Recette -------------------- 
-------------------------------------------------- */
/*.card-body{
	position: absolute;
	width: 100%;
	bottom: 0px;
	min-height: 105px;
	background-color: rgba(30,30,30,0.7);
	color: white;
}*/

#allergie{
	max-width:85%;
	margin-top: -20px;
	margin-bottom: 25px;
	display: flex;
	justify-content: space-between;
	font-size: 0.7em;
}

/* Affichage de la recette */
/* Temps prep */
#containerTemps{
	margin-bottom: 25px;
}
table.list{
	position: relative;
	margin-top: 30px;
	margin-right: 40px; 
	border-collapse: collapse;
	width: 30%;
}
td.tableQuantity, td.tableStep{padding: 5px; font-weight: bold;}
td.tableQuantity{width: 25%;}
td.tableStep{width: 5%;}

td.tableIngredient, td.tableInstruction{padding: 5px; padding-right: 15px;}
td.tableIngredient{
	width:70%;
	border-top: none;
	border-bottom: none;
	border-left: none;
}
td.tableInstruction{width: 95%;}
.list th{padding: 10px;}

.description{
	margin-top: 60px;
	width:55%;
}

#noteAuteur{
	margin-top: 40px;
}

/* nb Personne */
#nbPers{
	position: relative;
	margin-top: 20px;
	margin-left: 15%;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	box-shadow: 0px 0px 5px rgba(30,30,30,0.5);
}
#nbPersText{
	position: absolute;
	min-width: 100px;
	top: 17px;
	left: -19%;
	text-align: center;
	font-size: 1.4em;
}
#moins{
	position: absolute;
	top: 10px;
	right: 100px;
	font-size: 2em;
	cursor: pointer;
}
#plus{
	position: absolute;
	top: 10px;
	right: -50px;
	font-size: 2em;
	cursor: pointer;
}

/* ------------------------------------------
------------- SMALL DEVICE ------------------
--------------------------------------------- */
@media all and (max-width: 800px){
	#allergie{max-width: 95%;}
	/* table */
	table.list{width: 100%;}
	.description{width: 100%;}
	td.tableIngredient{border: none;}
	
	#nbPers{margin-left: 40%;}
}