﻿.honi-flex-grid {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-content: flex-start;
}

.honi-flex-grid-nowrap {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
}

.honi-flex-item {
    flex-grow: 1;
    /*width: auto;*/
    margin: 0px 5px 5px 5px;
}

.honi-flex-item-static {
    flex-grow: 0;
    margin: 0px 5px 0px 5px;
}

.honi-flex-item-top {
    flex-grow: 1;
    width: auto;
    margin: 0px 5px 5px 5px;
    align-self: flex-start;
}

.honi-flex-item-bottom {
    flex-grow: 1;
    width: auto;
    margin: 0px 5px 5px 5px;
    align-self: flex-end;
}

.honi-flex-grid-column {
    flex-direction: column;
    align-items: stretch;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    height: 100vh;
}
.honi-flex-item-center {
    flex-grow: 1;
    width: auto;
    margin: 0px 5px 5px 5px;
    align-self: center;
}

.honi-flex-content-left {
    justify-content: flex-start;
}

.honi-flex-content-right {
    justify-content: flex-end;
}

.honi-flex-content-center {
    justify-content: center;
}

.honi-flex-item-static-center {
    flex-grow: 0;
    width: auto;
    margin: 0px 5px 5px 5px;
    align-self: center;
}