.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.flex-col-reverse {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.flex-5 {
    flex: 5;
}

.flex-6 {
    flex: 6;
}

.flex-7 {
    flex: 7;
}

.flex-8 {
    flex: 8;
}

.flex-9 {
    flex: 9;
}

.flex-10 {
    flex: 10;
}

.wid-100 {
    width: 100%;
}

.wid-90 {
    width: 90%;
}

.wid-80 {
    width: 80%;
}

.wid-70 {
    width: 70%;
}

.wid-60 {
    width: 60%;
}

.wid-50 {
    width: 50%;
}

.wid-40 {
    width: 40%;
}

.wid-30 {
    width: 30%;
}

.wid-20 {
    width: 20%;
}

.wid-10 {
    width: 10%;
}

.wid-5 {
    width: 5%;
}

.wid-2 {
    width: 2%;
}

.wid-1 {
    width: 1%;
}

.hei-100 {
    height: 100%;
}

.hei-90 {
    height: 90%;
}

.hei-80 {
    height: 80%;
}

.hei-70 {
    height: 70%;
}

.hei-60 {
    height: 60%;
}

.hei-50 {
    height: 50%;
}

.hei-40 {
    height: 40%;
}

.hei-30 {
    height: 30%;
}

.hei-20 {
    height: 20%;
}

.hei-10 {
    height: 10%;
}

.hei-5 {
    height: 5%;
}

.hei-2 {
    height: 2%;
}

.hei-1 {
    height: 1%;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-baseline {
    align-items: baseline;
}

.align-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}


