@CHARSET "ISO-8859-1";

/* ======================================================== */
.variantes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  
  /* center (flex-)end (space-between)justify (flex-)start ; selon la direction*/
  -webkit-box-pack: justify; 
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  
  /* baseline  center  (flex-)end  (flex-)start  stretch; selon la direction orthogonale */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  
  -webkit-box-lines: multiple /*  single */;
  -webkit-flex-wrap: wrap/* nowrap wrap-reverse*/; 
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
  flex-direction: column; /* row 	row-reverse 	column 	column-reverse */
   -webkit-box-orient: horizontal /* vertical */;
   -webkit-box-direction: normal  /* reverse */;
  
  /* -webkit-box-flex-group: 	<group_number>; meme grp meme taille */
}
/* ======================================================== */
.VGroup, .V.Group, .HGroup, .H.Group { 
	margin:0;padding:0; 
	/* border: 1px solid rgba(196,196,196,1); */ 
}
/* ======================================================== */
.VGroup, .V.Group, .HGroup, .H.Group  {

	display: flex;           
	display: -webkit-flex;
	display: -webkit-box; 
	
	flex-wrap: wrap;         
	-webkit-flex-wrap: wrap;         
	-webkit-box-lines: multilple; /* ou single */         		

	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
		
	align-items: stretch;
	-webkit-align-items: stretch;
	-webkit-box-align: stretch;

	margin:0;
	padding: 0;		
}

.VGroup, .V.Group {
	flex-direction: column;  
	-webkit-flex-direction: column;  
	-webkit-box-orient: vertical;
}
.HGroup, .H.Group {
	flex-direction: row;  
	-webkit-flex-direction: row;  
	-webkit-box-orient: horizontal;
}
/* ======================================================== */
.bxPart {
	flex: 1; 
	-webkit-flex:1;
	-webkit-box-flex:1;
}

.bx2Parts {
	flex:2;
	-webkit-flex:2;
	-webkit-box-flex:2;
}
.bx3Parts {
	flex:3;
	-webkit-flex:3;
	-webkit-box-flex:3;
}

.bxRien {
	flex: 0; 
	-webkit-flex:0;
	-webkit-box-flex:0;
}

/* ======================================================== */
.bxStretch {
	-webkit-box-align: stretch;
	align-content: stretch;
}

.bxCenter {
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
	
	align-items: center;
	-webkit-align-items: flex-start;
	-webkit-box-align: center;
}

.bxStart {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	-webkit-box-pack: start;
	
	align-items: flex-start;
	-webkit-align-items: flex-start;
	-webkit-box-align: start;
}

.bxEnd {	
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-pack: end;
	
	align-items: flex-end;
	-webkit-align-items: flex-end;
	-webkit-box-align: end;
}

/* ======================================================== */

/* .VGroup > div:last-child:not(.bxEnd), .HGroup > div:last-child:not(.bxEnd),
.V.Group > div:last-child:not(.bxEnd), .H.Group > div:last-child:not(.bxEnd)
{
	-webkit-box-flex:1;
	flex: 1; 
} */

/* ======================================================== */
