



.anons-container { /* container */
	display: flex; /* flex или inline-flex */
	flex-direction: row;
	justify-content: space-between; /* around; */
	justify-content: space-around;
	flex-wrap:wrap; /* разрешить переносить элементы на новую строку */
	align-items: stretch;
	width:100%;
	-border: solid 1px green;
	}

/* Мы указываем всем элементам ширину 100% 
.anons-container > * {
  flex: 1 100%;
}
*/

.anons_element {
	-min-width:200px;
	height:auto;
	-border: dotted #F77 1px;
	padding : 10px 10px;
	margin : 0px 0px 0px 0px;
	background-color:rgba(255,255,255,0.5);
	opacity:0.8;
	transition: opacity 0.5s, visibility 0.5s linear 0.5s;
}
.anons_element:hover {
	background-color:rgba(255,255,250,1);
	opacity:1;
	-transition-delay: 1s;
}


@media (min-width: 600px) {
	/* Стили CSS ... */ 
	.anons_element {
		width:50%;
	}
}
@media (max-width: 599px) {
	/* Стили CSS ... */ 
	.anons_element {
		width:100%;
	}
}

.anons_inner {
	border: dotted #DDD 2px;
	padding : 10px 10px;
	margin : 5px 5px 5px 5px;
}



.img-anons{
	width:100%;
}
