/* ==========================================================
   MIDNIGHT STATIC
   UTILITIES
   BUILD 7.4
   ========================================================== */


/* Display */

.u-hidden{
    display:none !important;
}

.u-flex{
    display:flex;
}

.u-grid{
    display:grid;
}


/* Alignment */

.u-center{
    display:flex;
    align-items:center;
    justify-content:center;
}

.u-space-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
}


/* Width */

.u-full-width{
    width:100%;
}


/* Margin */

.u-mt-0{margin-top:0;}
.u-mt-8{margin-top:8px;}
.u-mt-16{margin-top:16px;}
.u-mt-24{margin-top:24px;}

.u-mb-0{margin-bottom:0;}
.u-mb-8{margin-bottom:8px;}
.u-mb-16{margin-bottom:16px;}
.u-mb-24{margin-bottom:24px;}


/* Text */

.u-text-center{
    text-align:center;
}

.u-text-muted{
    color:var(--text-muted);
}