@mixin flex-row($justify: space-between, $items: center) {
	display: flex;
	flex-direction: row;
	justify-content: $justify;
	align-items: $items;
}

@mixin flex-col() {
	display: flex;
	flex-direction: column;
}

@mixin transition-cubic() {
	transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@mixin transition-cubic-rotate() {
	transform: rotate(90deg);
}
