@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.flex-row{
	display: flex;
	flex-direction: row;
}
.flex-col{
	display: flex;
	flex-direction: column;
}
.ju-c{
	justify-content: center;
}
.ju-around{
	justify-content: space-around;
}
.ju-between{
	justify-content: space-between;
}
.ju-evenly{
	justify-content: space-evenly;
}
.align-c{
	align-items: center;
}
.flex-1{
	flex: 1;
	overflow: auto;
}