/* =========================================================
   TICL BOOTSTRAP LITE UTILITIES
========================================================= */

/* FLEX */
.d-flex{
  display:flex;
}

.justify-content-between{
  justify-content:space-between;
}

.align-items-center{
  align-items:center;
}

/* TEXT */
.text-center{
  text-align:center;
}

.text-end{
  text-align:right;
}

/* WIDTH */
.w-100{
  width:100%;
}

/* MARGIN TOP */
.mt-1{margin-top:.25rem;}
.mt-2{margin-top:.5rem;}
.mt-3{margin-top:1rem;}

/* MARGIN BOTTOM */
.mb-1{margin-bottom:.25rem;}
.mb-2{margin-bottom:.5rem;}
.mb-3{margin-bottom:1rem;}

/* PADDING */
.p-1{padding:.25rem;}
.p-2{padding:.5rem;}
.p-3{padding:1rem;}

/* RADIUS */
.rounded{
  border-radius:8px;
}

/* SHADOW */
.shadow-sm{
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.mb-0{
  margin-bottom:0;
}

.mt-4{
  margin-top:1.5rem;
}

.justify-content-end{
  justify-content:flex-end;
}

.d-none{
  display:none;
}

.text-start{
  text-align:left;
}


/* GAP UTILITIES */

.gap-1{
  gap:.25rem;
}

.gap-2{
  gap:.5rem;
}

.gap-3{
  gap:1rem;
}