
.ls-flex {
    display: flex;
}

.ls-flex-1 {
    flex: 1;
}
.ls-flex-2 {
    flex: 2;
}
.ls-flex-3 {
    flex: 3;
}

.ls-flex-max-1 {
    flex: 0 1 auto;
}

.ls-flex-direction-column {
    flex-direction: column;
}

.ls-flex-justify-center {
    justify-content: center;
}

.ls-flex-justify-space-between {
    justify-content: space-between;
}

.ls-flex-justify-space-around {
    justify-content: space-around;
}

.ls-flex-justify-end {
    justify-content: flex-end;
}

.ls-flex-justify-space-evenly{
    justify-content: space-evenly;
}

.ls-flex-align-center {
    align-items: center;
}

.ls-flex-align-start {
    align-items: start;
}
.ls-flex-wrap {
    flex-wrap: wrap;
}

.ls-flex-order-1 {
    order: 1;
}

.ls-flex-order-2 {
    order: 2;
}

.ls-flex-order-3 {
    order: 3;
}

.ls-flex-shrink-0 {
    flex-shrink: 0;
}