/*==================================================
=                  Utilities
==================================================*/
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.flex{
    display:flex;
}

.flex-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.flex-column{
    flex-direction:column;
}

.flex-row{
    flex-direction:row;
}

.flex-wrap{
    flex-wrap:wrap;
}

.flex-nowrap{
    flex-wrap:nowrap;
}

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

.items-start{
    align-items:flex-start;
}

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

.items-stretch{
    align-items:stretch;
}

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

.justify-start{
    justify-content:flex-start;
}

.justify-end{
    justify-content:flex-end;
}

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

.justify-evenly{
    justify-content:space-evenly;
}

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

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

.hidden{
    display:none;
}

.w-100{
    width: 100%;
}

.w-auto{
    width:auto;
}

.w-fit{
    width:fit-content;
}

.h-100{
    height: 100%;
}

.h-auto{
    height:auto;
}

.pointer{
    cursor:pointer;
}

.no-select{
    user-select:none;
}

.block{
    display:block;
}

.inline-block{
    display:inline-block;
}

.inline-flex{
    display:inline-flex;
}

.grid{
    display:grid;
}

.relative{
    position:relative;
}

.absolute{
    position:absolute;
}

.fixed{
    position:fixed;
}

.overflow-hidden{
    overflow:hidden;
}

.overflow-auto{
    overflow:auto;
}