*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #E0E4E5;
	font-family: 'Open Sans', sans-serif;
}

.wrap{
	max-width: 1300px;
	width: 90%;
	margin: auto;
}

.wrap > h1{
	color: #494B4D;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 15px 0px;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #C7C7C7;
	margin: 20px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category_list{
	display: flex;
	/* flex-direction: column; */
	width: 100%;
}

.category_list .category_item{
	display: block;
	width: 90%;
	padding: 15px 0;
	margin-bottom: 20px;
	background: #0470d4;
	border-left: 1px solid white;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	background: #FFFFFF;
	background: #FFFFFF;
	background: -moz-linear-gradient(top, #FFFFFF 0%, #0D65A4 68%, #0A69A6 100%);
	background: -webkit-linear-gradient(top, #FFFFFF 0%, #0D65A4 68%, #0A69A6 100%);
	background: linear-gradient(to bottom, #FFFFFF 0%, #01b0f5 68%, #0492f7 100%)
}





.category_list .ct_item-active{
	background: #FFFFFF;
	color: #000;
	font-weight: bold;
}

/* PRODUCTOS ============*/

.products-list{
	width: 82%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
}


.products-list .product-item{
	width: 22%;
	margin-left: auto;
	margin-right: auto;
	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%;
}
.a{
	background-color: red!important;
	padding: 0!important;
}

.a:hover{
	-webkit-transform: scale(1.03)!important;
	-moz-transform: scale(1.03)!important;
	-ms-transform: scale(1.03)!important;
	transform: scale(1.03)!important;
	-webkit-box-shadow: 0px 0px 12px 5px rgba(72,159,255,0.41); 
box-shadow: 0px 0px 12px 5px rgba(72,159,255,0.41);
}
	


.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #2D3E50;

	color: #fff;
	text-align: center;
	text-decoration: none;
}

.products-list .product-item a:hover{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #ffffff;

	color: rgb(0, 5, 82);
	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;
	}
}

@media screen and (max-width: 480px){
	.category_list{
		width: 50%;
	}
	.category_list .category_item{
		font-size: 11px;
	}

	.category_item{
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: auto;
		margin-right: auto;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: auto;
		margin-right: auto;
	}

	.products-list .product-item:nth-child(1n+1){
		margin-left: auto;
		margin-right: auto;
	}
	.products-list .product-item a{
		font-size: 11px;
	}
}