.pos-relative,
.relative{
    position: relative;
}
.pos-absolute,
.absolute{
    position: absolute;
}
.pos-fixed,
.fixed{
    position: fixed;
}
.flex,
.flex-center-x,
.flex-center-y,
.flex-center{
    display: flex;
}
.display-none,
.display-0{
    display: none;
}
.block{
    display: block;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-center-x
,.flex-center{
    justify-content: center;
}
.flex-center-y,
.flex-center{
    align-items: center;
}
.flex-column{
    flex-direction: column;
}
.flex-column-reverse{
    flex-direction: column-reverse;
}
.flex-row{
    flex-direction: row;
}
.flex-row-reverse{
    flex-direction: row-reverse;
}
.grid-center{
    display: grid;
    place-content: center;
}
.border-none,
.border-0{
    border: none;
}
.background-none,
.background-0{
    background: none;
}
.cursor-default{
    cursor: default;
}
.cursor-pointer{
    cursor: pointer;
}
.float-left{
    float: left;
}
.float-right{
    float: right;
}
.float-none,
.float-0{
    float: right;
}
.list-style-none,
.list-style-0{
    list-style: none;
}
.line-height-1{
    line-height: 1;
}
.line-height-none,
.line-height-0{
    line-height: 0;
}
.margin-auto{
    margin: auto;
}
.overflow,
.overflow-auto{
    overflow: auto;
}
.overflow-hidden,
.overflow-0{
    overflow: hidden;
}
.overflow-x{
    overflow-x: auto;
    overflow-y: hidden;
}
.overflow-y{
    overflow-y: auto;
    overflow-x: hidden;
}
.margin-none,
.margin-0{
    margin: 0;
}
.margin-left-none,
.margin-left-0{
    margin-left: 0;
}
.margin-top-none,
.margin-top-0{
    margin-top: 0;
}
.margin-right-none,
.margin-right-0{
    margin-right: 0;
}
.margin-bottom-none,
.margin-bottom-0{
    margin-bottom: 0;
}
.padding-none,
.padding-0{
    padding: 0;
}
.padding-left-none,
.padding-left-0{
    padding-left: 0;
}
.padding-top-none,
.padding-top-0{
    padding-top: 0 !important;
}
.padding-right-none,
.padding-right-0{
    padding-right: 0;
}
.padding-bottom-none,
.padding-bottom-0{
    padding-bottom: 0 !important;
}
.margin-unset{
    margin: unset;
}
.padding-unset{
    padding: unset;
}
.width-none,
.width-0{
    width: 0;
}
.width-full,
.width-100{
    width: 100%;
}
.width-100vw{
    width: 100vw;
}
.width-unset{
    width: unset;
}
.height-none,
.height-0{
    height: 0;
}
.height-full,
.height-100{
    height: 100%;
}
.height-unset{
    height: unset;
}
.min-width-unset{
    min-width: unset;
}
.max-width-unset{
    max-width: unset;
}
.min-height-unset{
    min-height: unset;
}
.max-height-unset{
    max-height: unset;
}
.right-none,
.right-0{
    right: 0;
}
.right-unset{
    right: unset;
}
.left-none,
.left-0{
    left: 0;
}
.left-unset{
    left: unset;
}
.top-none,
.top-0{
    top: 0;
}
.top-unset{
    top: unset;
}
.bottom-none,
.bottom-0{
    bottom: 0;
}
.bottom-unset{
    bottom: unset;
}
.text-align-center,
.text-center{
    text-align: center;
}
.text-align-left{
    text-align: left;
}
.text-align-right{
    text-align: right;
}
.text-align-justify{
    text-align: justify;
}
.text-capital{
    text-transform: capitalize;
}
.text-lower{
    text-transform: lowercase;
}
.underline{
    text-decoration: underline;
}
.opacity-none,
.opacity-0{
    opacity: 0;
}
.opacity-1{
    opacity: 1;
}
.visible{
    visibility: visible;
}
.visibility-hidden{
    visibility: hidden;
}
.z-index-1{
    z-index: 1;
}
.width-50{
    width: 50%;
}
.border-radius-50,
.border-50,
.circle-border,
.circle{
    border-radius: 50%;
}