﻿.flex-container {
    flex: 0 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
}

.flex-row {
    flex-direction: row;
    justify-content: flex-start;
}

.flex-block {
    flex-basis: auto;
    flex-grow: 1;

    /*background-color: #7cfc00;*/
}

.full-row {
    width: 100%;
}

.half-row {
    flex-basis: 50%;
}
.flex-space-around {
    display: flex;
    justify-content: space-around;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}
