/*======================================
EIVOX UTILITIES CSS
Version: 1.0
======================================*/


/*======================================
DISPLAY
======================================*/

.d-none{
    display:none !important;
}

.d-block{
    display:block !important;
}

.d-inline{
    display:inline !important;
}

.d-inline-block{
    display:inline-block !important;
}


/*======================================
FLEX
======================================*/

.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-around{
    display:flex;
    justify-content:space-around;
    align-items:center;
}

.flex-evenly{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
}

.flex-column{
    display:flex;
    flex-direction:column;
}

.flex-wrap{
    flex-wrap:wrap;
}

.align-start{
    align-items:flex-start;
}

.align-center{
    align-items:center;
}

.align-end{
    align-items:flex-end;
}

.justify-start{
    justify-content:flex-start;
}

.justify-center{
    justify-content:center;
}

.justify-end{
    justify-content:flex-end;
}


/*======================================
GRID
======================================*/

.grid{
    display:grid;
    gap:var(--space-4);
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:var(--space-4);
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:var(--space-4);
}

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:var(--space-4);
}


/*======================================
WIDTH
======================================*/

.w-100{
    width:100%;
}

.w-auto{
    width:auto;
}


/*======================================
HEIGHT
======================================*/

.h-100{
    height:100%;
}

.h-auto{
    height:auto;
}


/*======================================
TEXT ALIGN
======================================*/

.text-left{
    text-align:left;
}

.text-center{
    text-align:center;
}

.text-right{
    text-align:right;
}


/*======================================
FONT WEIGHT
======================================*/

.fw-light{
    font-weight:var(--weight-light);
}

.fw-normal{
    font-weight:var(--weight-normal);
}

.fw-medium{
    font-weight:var(--weight-medium);
}

.fw-semibold{
    font-weight:var(--weight-semibold);
}

.fw-bold{
    font-weight:var(--weight-bold);
}


/*======================================
MARGIN
======================================*/

.mt-1{margin-top:var(--space-1);}
.mt-2{margin-top:var(--space-2);}
.mt-3{margin-top:var(--space-3);}
.mt-4{margin-top:var(--space-4);}
.mt-5{margin-top:var(--space-5);}
.mt-6{margin-top:var(--space-6);}

.mb-1{margin-bottom:var(--space-1);}
.mb-2{margin-bottom:var(--space-2);}
.mb-3{margin-bottom:var(--space-3);}
.mb-4{margin-bottom:var(--space-4);}
.mb-5{margin-bottom:var(--space-5);}
.mb-6{margin-bottom:var(--space-6);}

.ml-1{margin-left:var(--space-1);}
.ml-2{margin-left:var(--space-2);}
.ml-3{margin-left:var(--space-3);}
.ml-4{margin-left:var(--space-4);}

.mr-1{margin-right:var(--space-1);}
.mr-2{margin-right:var(--space-2);}
.mr-3{margin-right:var(--space-3);}
.mr-4{margin-right:var(--space-4);}


/*======================================
PADDING
======================================*/

.p-1{padding:var(--space-1);}
.p-2{padding:var(--space-2);}
.p-3{padding:var(--space-3);}
.p-4{padding:var(--space-4);}
.p-5{padding:var(--space-5);}
.p-6{padding:var(--space-6);}

.pt-1{padding-top:var(--space-1);}
.pt-2{padding-top:var(--space-2);}
.pt-3{padding-top:var(--space-3);}
.pt-4{padding-top:var(--space-4);}

.pb-1{padding-bottom:var(--space-1);}
.pb-2{padding-bottom:var(--space-2);}
.pb-3{padding-bottom:var(--space-3);}
.pb-4{padding-bottom:var(--space-4);}


/*======================================
BORDER RADIUS
======================================*/

.rounded-xs{
    border-radius:var(--radius-xs);
}

.rounded-sm{
    border-radius:var(--radius-sm);
}

.rounded{
    border-radius:var(--radius);
}

.rounded-lg{
    border-radius:var(--radius-lg);
}

.rounded-xl{
    border-radius:var(--radius-xl);
}

.rounded-circle{
    border-radius:50%;
}


/*======================================
SHADOWS
======================================*/

.shadow-xs{
    box-shadow:var(--shadow-xs);
}

.shadow-sm{
    box-shadow:var(--shadow-sm);
}

.shadow{
    box-shadow:var(--shadow);
}

.shadow-lg{
    box-shadow:var(--shadow-lg);
}


/*======================================
OVERFLOW
======================================*/

.overflow-hidden{
    overflow:hidden;
}

.overflow-auto{
    overflow:auto;
}


/*======================================
CURSOR
======================================*/

.pointer{
    cursor:pointer;
}


/*======================================
POSITION
======================================*/

.relative{
    position:relative;
}

.absolute{
    position:absolute;
}

.fixed{
    position:fixed;
}

.sticky{
    position:sticky;
}


/*======================================
VISIBILITY
======================================*/

.hidden{
    visibility:hidden;
}

.visible{
    visibility:visible;
}