.text-left {
    text-align: left !important;
}

.flex {
    display: flex;
}

.fl-col {
    flex-direction: column;
}

.fl-row-reverse {
    flex-direction: row-reverse;
}

.fl-j-between {
    justify-content: space-between;
}

.fl-j-center {
    justify-content: center;
}

.fl-a-i-center {
    align-items: center;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.w-auto {
    width: auto;
}

.h-auto {
    height: auto;
}
.pos-abs {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}