.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.items-center {
    align-items: center;
}
.content-center {
    align-content: center;
}

.row {
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
col, .col-sm, col-sm-4, .col-sm-12, .col-md, .col-md-2, .col-md-4 {
    width: 100%;
    
}
.flex-grow {
    flex-grow: 1;
}
.no-grow {
    flex-grow: 0;
}
