.d-flex {
    display: flex;
}

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

.flex-fill {
    flex: 1 1 auto;
}

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

.flex-1-0 {
    flex: 1 0 auto;
}

.flex-0-1 {
    flex: 0 1 auto;
}

.flex-0-0 {
    flex: 0 0 auto;
}

.flex-1-1-0 {
    flex: 1 1 0%;
}

.flex-1-1-100 {
    flex: 1 1 100%;
}

.flex-1-0-0 {
    flex: 1 0 0%;
}

.flex-1-0-100 {
    flex: 1 0 100%;
}

.flex-0-1-0 {
    flex: 0 1 0%;
}

.flex-0-1-100 {
    flex: 0 1 100%;
}

.flex-0-0-0 {
    flex: 0 0 0%
}

.flex-0-0-100 {
    flex: 0 0 100%;
}

.ga-0 {
    gap: 0;
}

.ga-1 {
    gap: 4px;
}

.ga-2 {
    gap: 8px;
}

.ga-3 {
    gap: 12px;
}

.ga-4 {
    gap: 16px;
}

.ga-5 {
    gap: 20px;
}

.ga-6 {
    gap: 24px;
}

.ga-7 {
    gap: 28px;
}

.ga-8 {
    gap: 32px;
}

.ga-9 {
    gap: 36px;
}

.ga-10 {
    gap: 40px;
}

.ga-11 {
    gap: 44px;
}

.ga-12 {
    gap: 48px;
}

.ga-13 {
    gap: 52px;
}

.ga-14 {
    gap: 56px;
}

.ga-15 {
    gap: 60px;
}

.ga-16 {
    gap: 64px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-self-baseline {
    align-self: baseline;
}

.align-self-auto {
    align-self: auto;
}

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

.order-first {
    order: -1;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.order-last {
    order: 13;
}

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

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

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

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

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

.align-content-space-evenly {
    align-content: space-evenly;
}

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

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

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

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

.flex-grow-0 {
    flex-grow: 0;
}

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

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}