.box {
    width: 100%;
}

.box-flex-row {
    display: flex;
    flex-direction: row;
}

.box-flex-column {
    display: flex;
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

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

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

.justify-content-around {
    justify-content: space-around;
}

.justify-content-center {
    justify-content: center;
}

.align-items-stretch {
    align-items: stretch;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-flex-end {
    align-items: flex-end;
}

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

.align-content-center {
    align-content: center
}

.align-content-start {
    align-content: flex-start;
}


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

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