*{
	margin: 0;
	padding: 0;	
}

body{
	font-family: 'Open Sans', sans-serif;
}

.mnt-wrap{ 
	width: 96%;
	margin: auto;
    display: flex;
    top:25px;        
}

.mnt-list{
   	width: 32%;
	margin: auto;
    overflow-y: scroll;
    top:3px;
    height: 40%;
    background-color: yellow;
}  


.wrap{
	max-width: 1100px;
	width: 95%;
	margin: auto;
    position: relative;
    top:25px;
}

.wrap > h1{
	color: #494B4D;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 12px 0px;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #C7C7C7;
	margin: 20px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category-list{
 	width: 100%;
	display: flex;
	flex-wrap: wrap;   
}

.category-list .category-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;
}

.category-list .ct_item-active{
	background: #2D3E50;
}

/*container*/



/* PRODUCTOS ============*/

.products-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
    z-index: 0;
}

.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:hover{
	background-color: lightblue;
    cursor: pointer;
}

.products-list .product-item img{
	width: 100%;
}

.category-list .category-item img{
	width: 100%;
    cursor: pointer;
}

.category-list .category-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #2D3E50;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #2D3E50;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1200px){
	.products-list .product-item{
		width: 30.3%;
	}
    
    .category-list .category-item{
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category-list,
	.products-list{
		width: 100%;
	}

	.category-list .category-item{
	   margin-left: 4.5%;
	}

    .category-list .category-item:nth-child(3n+1){
		margin-left: 0px;
	}

    
	.products-list .product-item{
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
}

@media screen and (max-width: 600px){    
    .category-list .category-item{
		width: 47.5%;
	}

	.category-list .category-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.category-list .category-item:nth-child(2n+1){
		margin-left: 0px;
	}

	.products-list .product-item{
		width: 47.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: 0px;
	}

}

@media screen and (max-width: 350px){
    .category-list .category_item{
		width: 100%;
		margin-left: 0px;
	}
    
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}