// ============================================================================
// :: Flex
// ============================================================================

// ============================================================================
// :: Root
// ============================================================================
.flex {
  display: flex;
}

// ============================================================================
// :: Elements
// ============================================================================
.flex-col {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-0-5 {
  gap: 0.5rem;
}
