﻿.flex-container {
    display: flex;
}

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

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

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

/* Justify Content (Horizontal Alignment) Classes */
.justify-start {
    justify-content: flex-start;
}

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

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

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

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

/* Align Items (Vertical Alignment) Classes */
.align-start {
    align-items: flex-start;
}

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

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

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

/* Flex Item Classes */
.flex-item {
    display: flex;
}

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

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


/* Other Utility */
.flex-quarter {
    flex-basis: 25%;
}

.flex-half {
    flex-basis: 50%;
}

.flex-ten {
    flex: 0 0 10%;
}

.flex-sixty {
    flex: 0 0 60%;
}

.flex-forty-eight {
    flex-basis: 48%;
}

