.flex{
    display: flex;
}

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


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

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

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

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

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

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

.flex-1{
    flex: 1 !important;
}