.wrap {
    width: 100%;
    margin: auto;
}

.wrapper_{
	display: inline-flex;
	width: 100%;
}

.category_list{
	display: flex;
	flex-direction: column;
	width: 25%;
}

.category_list .category_item{
    background: #61a1aa;
    color: #fff;
    display: inline-flex;
    align-items: center;
    
	width: 90%;
	padding: 15px 0;
	margin-bottom: 10px;

	text-align: left;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	border-radius: 15px;
}

.category_list .ct_item-active{
	background: #232323;
}

/* PRODUCTOS ============*/

.products-list{
    width: 75%;
    display: inline-block;
    padding: 0;
    /*max-height: 700px;*/
    /*overflow: auto;*/
}

/* RESPONSIVE */

@media screen and (max-width: 900px){

	.category_list{
		flex-direction: row;
		justify-content: space-between;
	}

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
		font-size: 14px;
	}
}

@media screen and (max-width: 700px){
	.category_list{
		flex-direction: column;
	}
	.category_list .category_item{
		width: 100%;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 600px){

}

@media screen and (max-width: 350px){
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}