@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; 
}
/* ======================================================== */
/* .VGroup, .V.Group { 
	border: 1px solid rgba(196,0,196,1); 
}
.HGroup, .H.Group { 
	border: 1px solid rgba(0,196,196,1); 
} */
/* ======================================================== */
.VGroup, .V.Group, .HGroup, .H.Group {	
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;           
}	
/* ======================================================== */
.VGroup, .V.Group, .HGroup, .H.Group  {
	-webkit-flex-wrap: nowrap;         
	-webkit-box-lines: single; /* ou multiple */         		
	flex-wrap: nowrap;         
 
	-webkit-justify-content: space-between;
	-webkit-box-pack: justify;
	justify-content: space-between; /* flex-start *//* space-between */
		
	-webkit-align-items: stretch;
	-webkit-box-align: stretch;
	align-items: stretch;

	margin:0;
	padding: 0;		
}

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

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

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

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

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

.bxEnd {	
	-webkit-justify-content: flex-end;
	-webkit-box-pack: end;
	justify-content: flex-end;
	
	-webkit-align-items: flex-end;
	-webkit-box-align: end;
	align-items: flex-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; 
} */

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