
img{
	vertical-align: middle;
}


.precio{
	color: red;
}


.wrap{
	max-width: 1100px;
	width: 90%;
	margin: auto;
}

.wrap > h1{
	text-align: center;
	padding-bottom: 12px;
    border-bottom: 1px #e9e9e9 solid;

	
	font-weight: 400;
	
	flex-direction: column;
    font-size: 18px;
	margin: 15px 0px;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #e2cc89;
	margin: 20px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category_list{
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	width: 13%;
	
	
}



.category_list .category_item{
	
	
    margin: 0 0 25px;
	display: block;
	width: 100%;
    padding: 5px 0;
    font-family: initial;
	text-decoration: none;
	color: rgb(0, 0, 0);
}

.category_list .ct_item-active{
    font-weight: bold;
	color: #494B4D;
	letter-spacing: 1px;
}

/* PRODUCTOS ============*/

.products-list{
	width: 87%;
	display: flex;
	flex-wrap: wrap;
}

.colorpre{
	color: black;
	font-size: 12px;
}
.products-list .product-item:hover{
	box-shadow: -3px 6px 20px 2px rgba(156, 38, 38, 0.12);
    transition: all 0.3s ease 0s;
}

.products-list .product-item{

	box-shadow: -3px 6px 20px 2px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease 0s;
	width: 30.33%;
	margin-left: 3%;
	margin-bottom: 25px;
	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{
    font-size: 14px;
	display: block;
	width: 100%;
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.products-list .product-item{
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.products-list{
		width: 100%;
	}

	.category_list{
		flex-direction: row;
		justify-content: space-between;
	}

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
		font-size: 14px;
	}

	.products-list .product-item{
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
}

@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){

	.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){
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}

.checkbox
		label:before 
			border-radius: 3px
		input[type="checkbox"]
			display: none
			&:checked + label:before 
				display: none
			&:checked + label
				background: $primario
				color: #fff
				padding: 5px 15px		