.flexcontainer {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: top;
	align-items: top;
	-webkit-justify-content: left;
	justify-content: left;
	/* You can set flex-wrap and flex-direction individually */
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/* Or do it all in one line with flex flow */
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	/* tweak the where items line up on the row */
	/* valid values are: flex-start, flex-end, space-between, space-around, stretch */
	-webkit-align-content: flex-end;
	align-content: flex-end;
}

.widget-heading a {
color: #000000
}