.flex-row,
.flex-column {
	display: flex;
}

.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.align-items-flex-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-space-between { justify-content: space-between; }
.justify-items-center { justify-items: center; }
.gap-8 { gap: 0.5rem; }
.gap-12 { gap: 0.75rem; }
.gap-16 { gap: 1rem; }
.gap-24 { gap: 1.5rem; }
.gap-32 { gap: 2rem; }

@media (max-width: 48rem) {
	.mobile-flex-direction-column { flex-direction: column; }
	.mobile-flex-direction-row { flex-direction: row; }
}

