.justify-content {
	&-end {
		justify-content: flex-end;
	}

	&-start {
		justify-content: flex-start;
	}

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

	&-space-around {
		justify-content: space-around;
	}

	&-space-evently {
		justify-content: space-evenly;
	}

	&-center {
		justify-content: center;
	}

	&-stretch {
		justify-content: stretch;
	}
}

.align-items {
	&-end {
		align-items: flex-end;
	}

	&-start {
		align-items: flex-start;
	}

	&-stretch {
		justify-content: space-evenly;
		align-items: stretch;
	}

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