/*
.step2-flex-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap; 
	align-items: flex-start;
	justify-content: flex-start;
}

#step2-flex-sel {
	flex: 1 1 10%;
}

#step2-flex-desc {
	flex: 1 1 auto;
}

#step2-flex-date {
	flex: 1 1 15%;
}

#step2-flex-author {
	flex: 1 1 25%;
}

*/

.step2-text-small {
	font_size: small;
	text-align: center;
}

.step2-text-indent {
	text-indent: 5%;
}

.step2-flex-container {
	display: grid;
	grid-column-gap: 2%;
	grid-template-columns: 10% auto 20% 20%;
	font-size: small;
}

#step2-flex-sel {
/*	grid-column: 0 / 1; */
	font-size: small;
}

#step2-flex-desc {
/*	grid-column: 1 / 1; */
	font-size: small;
}

#step2-flex-date {
/*	grid-column: 2 / 1; */
	font-size: small;
}

#step2-flex-author {
/*	grid-column: 3 / 1; */
	font-size: small;
}
