.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

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

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

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

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

.flex-auto {
    flex-basis: auto;
    flex-grow: 1;
}

.grid {
    display: grid;
}

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

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

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

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

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

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

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

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

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

.flex-row-space-between {
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

@for $i from 0 through 10 {
    .flex-shrink-#{$i} {
        flex-shrink: #{$i};
    }
}
