/* Row */

.ras {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

.rac {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.rae {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
}

.rbs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.rbc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.rbe {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.rse {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

.rsc {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.rss {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.res {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}

.rec {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.ree {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

/* Column */

.cas {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
}

.cac {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.cae {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
}

.cbs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.cbc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cbe {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}