/* ----------------------------------------------------------
 file: stream.css

 Styles of posts stream.

 last update: 23.04.15 by Patricia Engelskirchen
 ---------------------------------------------------------- */


div.multicol {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	box-sizing: border-box;
}

div.multicol div.col {
	min-width: 200px;
	max-width: 500px;
	width: 45%;
	overflow: visible;
}
		
div.multicol div.colspacer {
	min-width: 20px;
	max-width: 40px;
	width: 10%;
	max-height: 0px;
	border: none;
}

div.twocol div.col {
	/* max-width: 40%; */
}

div.multicol div h3 {
	margin-top: 10px;
}

@media screen and (max-width: 700px) {
	div.multicol div.col {
		width: 99%;
		max-width: 99%;
	}
		
	div.multicol div.colspacer {
		display: none;
	}
}
