.flow {
    display: flex;
    min-width: 0;
}
.flow > * {
    min-width: 0;
    flex-shrink: 0;
}
.flow--column > * {
    width: 100%;
}
.flow--row {
    flex-direction: row;
}
.flow--column {
    flex-direction: column;
}
.flow--wrap {
    flex-wrap: wrap;
}
.flow--nowrap {
    flex-wrap: nowrap;
}
.flow--gap-none {
    gap: 0;
}
.flow--gap-sm {
    gap: 8px;
}
.flow--gap-md {
    gap: 16px;
}
.flow--gap-lg {
    gap: 28px;
}
.flow--align-stretch {
    align-items: stretch;
}
.flow--align-start {
    align-items: flex-start;
}
.flow--align-center {
    align-items: center;
}
.flow--align-end {
    align-items: flex-end;
}
.flow--justify-start {
    justify-content: flex-start;
}
.flow--justify-center {
    justify-content: center;
}
.flow--justify-end {
    justify-content: flex-end;
}
.flow--justify-between {
    justify-content: space-between;
}
.flow-item--basis-auto {
    flex-basis: auto;
}
.flow-item--basis-0 {
    flex-basis: 0;
}
.flow-item--basis-25 {
    flex-basis: 25%;
}
.flow-item--basis-33 {
    flex-basis: 33%;
}
.flow-item--basis-40 {
    flex-basis: 40%;
}
.flow-item--basis-50 {
    flex-basis: 50%;
}
.flow-item--basis-60 {
    flex-basis: 60%;
}
.flow-item--basis-66 {
    flex-basis: 66%;
}
.flow-item--basis-75 {
    flex-basis: 75%;
}
.flow-item--basis-100 {
    flex-basis: 100%;
}
.flow-item--grow {
    flex-grow: 1;
}

@media (max-width: 766.98px) {
    .flow--row {
        flex-direction: column;
    }
    .flow--row > * {
        width: 100%;
    }
    .flow--row > [class*="flow-item--basis-"] {
        flex-basis: auto;
    }
}
