.ogs-v2-layout-flex-row {
    display: flex;
    flex-direction: row;
    /* width: 100%; */
    width: auto;
}

.ogs-v2-layout-flex-row.flex-1 {
    flex: 1;
}

.ogs-v2-layout-flex-row.flex-wrap {
    flex-wrap: wrap;
}

.ogs-v2-layout-flex-row>* {
    margin-right: 16px;
}

.ogs-v2-layout-flex-row>*:last-child {
    margin-right: 0px;
}

.ogs-v2-layout-flex-row.flex-middle {
    align-items: center;
}

.ogs-v2-layout-flex-row.flex-left {
    justify-content: flex-start;
}

.ogs-v2-layout-flex-row.flex-right {
    justify-content: flex-end;
}

.ogs-v2-layout-flex-row.flex-center {
    justify-content: center;
}

.ogs-v2-layout-flex-row.flex-between {
    justify-content: space-between;
}

.ogs-v2-layout-width-1-1 {
    width: 100%;
}

.ogs-v2-layout-width-1-2 {
    width: 50%;
}

.ogs-v2-layout-width-1-3 {
    width: 33.3333%;
}

.ogs-v2-layout-panel {
    padding: 20px;
    border: 1px solid;
    border-color: var(--COLOR_HAIRLINE);
    border-radius: 5px;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1);
}

.ogs-v2-layout-fixed.fixed-bottom {
    position: fixed;
    z-index: 1;
}

.ogs-v2-layout-fixed.fixed-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}