/*
|--------------------------------------------------------------------------
| Utilities
|--------------------------------------------------------------------------
*/

.hidden{

    display:none;

}

.w-100{

    width:100%;

}

.round{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow);

}

.border{

    border:1px solid var(--border);

}

.bg-white{

    background:#fff;

}

.bg-primary{

    background:var(--primary);

    color:#fff;

}

.text-primary{

    color:var(--primary);

}

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}