/* -----------------------------------------------
Utils: Flex
----------------------------------------------- */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}
