*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #fff;
	font-family: 'Open Sans', sans-serif;
}



.category_list{
	display: flex;
	flex-direction: row;
	max-width: 800px;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	margin: auto;
	text-align: center;
	margin-top: 50px;
}

.category_list .category_item{
	
	width: 90%;
	padding: 15px 0;
	margin-bottom: 20px;
	background: rgba(255,151,54,0.9);

	text-align: center;
	text-decoration: none;
	color: #fff;
}

.category_list .ct_item-active{
	background: #2D3E50;
}

/* PRODUCTOS ============*/

.products-list{
	width: 82%;
	display: flex;
	flex-wrap: wrap;
}


.products-list .product-item{
	width: 22%;
	margin-left: 3%;
	margin-bottom: 25px;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.22);

	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;

	transition: all .4s;
}

.products-list .product-item img{
	width: 100%;
}

.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #2D3E50;

	color: #fff;
	text-align: center;
	text-decoration: none;
}

/* RESPONSIVE */



