/*
This defines flexbox for and  component sizing 
arraagement 
Each style in this section has a mobile version
that automatically fits to the mobile requirement
*/

/*
SIZES
.fx-1 through ten define percentage sizing for the 
-----------------------------------------------------------------------------------------
*/

.fx{ 
    display:flex;
}

.fx-fullheight {
    height: 100%;
}

.fx1 {
    width: 10%;
}

.fx1-5 {
    width: 15%;
}

.fx2 {
    width: 20%;
}

.fx2-5 {
    width: 25%;
}

.fx3 {
    width: 30%;
}

.fx3-5 {
    width: 35%;
}

.fx4 {
    width: 40%;
}

.fx4-5 {
    width: 50%;
}

.fx5 {
    width: 50%;
}

.fx5-5 {
    width: 55%;
}

.fx6 {
    width: 60%;
}

.fx6-5 {
    width: 65%;
}

.fx7 {
    width: 70%;
}

.fx7-5 {
    width: 75%;
}

.fx8 {
    width: 80%;
}

.fx8-5 {
    width: 85%;
}

.fx9 {
    width: 90%;
}

.fx9-5 {
    width: 95%;
}

.fx10 {
    width: 100%;
}

/**
DIRECTION FLEX
-----------------------------------------------------------------------------------------
**/

.fx {
    display: flex;
}

.fx-horrizontal {
    flex-direction: row;
}

.fx-vertical {
    flex-direction: column;
}

/*
For rows warap at the end 
*/

.fx-row-wrap {
    flex-direction: row;
    flex-wrap: wrap;
}

/*
Align Items with equal spaces accross horrizontally or vertically
*/

.fx-align-horrizontal-equal {
    justify-content: space-around;
}

/*
Align Items spread to fill the screen accross horrizontally or vertically
*/

.fx-align-horrizontal-fill {
    justify-content: space-between;
}

.fx-row{ 
    flex-direction:row;
}
.fx-column{ 
    flex-direction:column;
}
/*
Centralize
*/

.fx-align-center {
    align-items: center;
    justify-content: center;
    align-content: center;
}

/*
Align Items to edge 
*/

.fx-start {
    justify-content: flex-start;
}

/*
Align Items to end 
*/

.fx-start {
    justify-content: flex-end;
}

/*
Align Item to bottom laterally
*/

.push-bottom {
    margin-top: auto;
}

/*
Align Item to top laterally
*/

.push-top {
    margin-bottom: auto;
}

/*
Align Item to right horrizontally in a row
*/

.push-right {
    align-self: flex-end;
}

/*
Align Item to left horrizontally
*/

.push-left {
    align-self: flex-start;
}

