

/*		_.-oO°(			  )°Oo-._		*/
/*										*/
/*		|		 MESSAGES		|		*/
/*										*/
/*		¨°Oo-._	 _____	  _.-oO°¨		*/



/*			LISTE		*/

.list_mes {
	
	margin: calc(1.5vh + 1.5vw);
	
	display: flex;
	flex-flow: column nowrap;
	justify-content: stretch;
}

.list_mes article {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	gap: 2vw;
	
	transition: 0.5s;
	border-radius: 10px;
	border: 1px solid #ecf3fc;
	margin: calc(0vh + 0vw);
	padding: calc(1vh + 1vw);
	box-shadow: 0px 0px 20px 5px rgba(0,50,100,0.1);
	
	font-size: calc(10px + 0.2vw);
	
}
.list_mes article:hover {
	transition: 0.5s;
	box-shadow: none;
	border: 1px solid #e0e3e6;
	border: 1px solid #fff;
	background: rgba(100,150,200,0.1);
	background: rgba(150,200,100,0.1);
	margin: calc(0.5vh + 0.5vw);
	padding: calc(0.5vh + 0.5vw);
}

.rap_mes_date {
	flex: 0 0 auto;
}
.rap_mes_blob {
	flex: 1 1 auto;
}
.rap_mes_titre {
	font-weight: bold;
}
.rap_mes_descr {
	font-weight: light;
}

/* ouverture des block qui vont avec */

.unMes_titre_ferme {
	overflow: hidden; height: 1.2em;
}
.unMes_titre_ouvre {
	overflow: visible;
	height: auto;
}

