/*==================================================
UTILIDADES
==================================================*/

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}

.text-primary{

    color:var(--primary);

}

.text-danger{

    color:var(--danger);

}

.bg-white{

    background:#fff;

}

.shadow{

    box-shadow:var(--shadow-md);

}

.radius{

    border-radius:var(--radius-md);

}

.flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-between{

    justify-content:space-between;

}

.justify-center{

    justify-content:center;

}

.w-100{

    width:100%;

}

.mt-1{

    margin-top:8px;

}

.mt-2{

    margin-top:16px;

}

.mt-3{

    margin-top:24px;

}

.mt-4{

    margin-top:32px;

}

.mb-1{

    margin-bottom:8px;

}

.mb-2{

    margin-bottom:16px;

}

.mb-3{

    margin-bottom:24px;

}

.mb-4{

    margin-bottom:32px;

}