.fx {
display: flex;
&-dr,
&-rw,
&-rnw {
flex-direction: row;
}
&-dc,
&-cw,
&-cnw {
flex-direction: column;
}
&-ww,
&-rw,
&-cw {
flex-wrap: wrap;
}
&-wnw,
&-rnw,
&-cnw {
flex-wrap: nowrap;
}
&-jcc,
&-cc {
justify-content: center;
}
&-jcfs {
justify-content: flex-start;
}
&-jcfe {
justify-content: flex-end;
}
&-jcsb {
justify-content: space-between;
}
&-jcsa {
justify-content: space-around;
}
&-aic,
&-cc {
align-items: center;
}
&-aifs {
align-items: flex-start;
}
&-aife {
align-items: flex-end;
}
&-ais {
align-items: stretch;
}
}