
.flex-container {   
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;

}

.flex-start {   
  			 -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start; 
  					-ms-flex-pack: flex-start;
  				justify-content: flex-start;  								
}

.flex-end {   
				 -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end; 
  					-ms-flex-pack: flex-end;
  				justify-content: flex-end;  				
}  

.center {  
			 -webkit-box-pack: center; 
          -moz-box-pack: center; 
          -ms-flex-pack: center;  
 -webkit-justify-content: center;
 				 justify-content: center; 


}  

.space-between { 
				 -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  					-ms-flex-pack: justify;
  				justify-content: space-between;

}  

.space-around {  
          -webkit-box-pack: justify;
   -webkit-justify-content: space-around;
             -ms-flex-pack: justify;
           justify-content: space-around;  
}

.space-evenly {  
          -webkit-box-pack: justify;
   -webkit-justify-content: space-evenly;
             -ms-flex-pack: justify;
           justify-content: space-evenly;  
}

.flex-row{
	  -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
-webkit-flex-direction: row;
    -ms-flex-direction: row;
        flex-direction: row 
}

.flex-row-reverse{
	  -webkit-box-orient: horizontal;
 -webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse		
}

.flex-column{
	  -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
-webkit-flex-direction: column;
    -ms-flex-direction: column;
        flex-direction: column
}

.flex-column-reverse{
	   -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
 -webkit-flex-direction: column-reverse;
     -ms-flex-direction: column-reverse;
         flex-direction: column-reverse;
}

.v-start {
-webkit-align-items: flex-start;   
  -webkit-box-align: start;
     -ms-flex-align: start;
        align-items: flex-start;	
        
}

.v-end {   
-webkit-align-items: flex-end;
  -webkit-box-align: end;
     -ms-flex-align: end;
        align-items: flex-end;
}  

.v-center {
    -webkit-flex-align: center;
        -ms-flex-align: center;
   -webkit-align-items: center;
           align-items: center;
   
}   
  
    
.v-baseline {
-webkit-align-items: flex-baseline; 
	-webkit-box-align: baseline;
     -ms-flex-align: baseline;
        align-items: baseline;	
}  

.v-stretch { 
-webkit-align-items: flex-stretch;
  -webkit-box-align: stretch;
     -ms-flex-align: stretch;
        align-items: stretch;		
}

.flex-nowrap  { 
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.flex-wrap    {   
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;

}  
