/* catalog */


div.catalog {
    display: flex;
    
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
	flex-wrap: wrap;
    
}

.catalog>div.catalogitem, .catalog>a>div.catalogitem {
    
    margin:15px;
    width:180px;
	height:180px;
    text-align:center;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    -moz-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    vertical-align: top;
	position: relative;
	
	background-color: white;
	
	}
	
.catalog>a {
border-bottom: none;
}


div.catalog:after {
width: 100%;
display: inline-block;
content: ".";
visibility: hidden;

}

.catalog img {
	width:180px;
	height:auto;
    border-radius:3px;
	
	margin:0 !important;
	
	/*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);*/
	}
	
.catalog a {
	border-bottom: unset;
}
	


.content_3_catalog {
	background: url('../../content/images/pattern2.jpg');
	/*background: rgb(197,238,238);
	background: linear-gradient(150deg, rgba(197,238,238,1) 0%, rgba(255,254,160,1) 100%);*/
}