.g-flex-row {
    display: flex !important;
    flex-direction: row !important
}

.g-flex-column {
    display: flex !important;
    flex-direction: column;
}

.g-hidden {
    display: none !important;
}

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

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

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

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

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

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

.g-width-100 {
    width: 100%
}

.g-font-bold {
    font-weight: bold;
}

.g-line-height-small {
    height: 30px;
}

.g-line-height-inherit {
    height: inherit;
}

.g-position-absolute {
    position: absolute;
}

.g-text-align-center {
    text-align: center;
}