.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.flex-wrap {
	flex-wrap: nowrap;
}

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

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

.gap1 {
	gap: 0.25rem;
}

.uppercase {
	text-transform: uppercase;
}