﻿
.flex{
    display:flex;
}
.inline-flex{
    display:inline-flex;
}
.reverse{
       flex-direction:row-reverse;
}
.start{
    justify-content:flex-start;
}
.end{
    justify-content:flex-end;
}
.center-center{
    align-items:center; 
    justify-content:center
}
.center-align{
    align-items:center;
}
.row-wrap{
    flex-flow:row wrap!important;
}
.center-between{
    align-items:center;
    justify-content:space-between;
}
.end-between{
    align-items:flex-end;
    justify-content:space-between;
}
.end-center{
    align-items:flex-end;
    justify-content:center;
}
.start-between{
    align-items:flex-start;
    justify-content:space-between;
}
.center-end{
    align-items:center;
    justify-content:flex-end;
}
.end-end{
    align-items:flex-end;
    justify-content:flex-end;
}
.end-start{
    align-items:flex-end;
    justify-content:flex-start;
}
.center-start{
    align-items:center;
    justify-content:flex-start;
}
.start-center{
    align-items:flex-start;
    justify-content:center;
}
.start-end{
      align-items:flex-start;
    justify-content:flex-end;
}
.start-start{
      align-items:flex-start;
    justify-content:flex-start;
}
.justify-start{
    justify-content:flex-start;
}
.align-start{
    align-items:flex-start;
}
.justify-end{
    justify-content:flex-start;
}
.align-end{
    align-items:flex-start;
}
.center-around{
    align-items:center;
    justify-content:space-around;
}
.column{
    flex-direction:column;
}
.flex-1{
    flex:1;
}
.flex-05{
    flex:0.5
}

