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

body{
	background: #ffffff;
	font-family: 'Open Sans', sans-serif;
}
.container-shop {
	width: 90%;
	margin: auto;
    padding-top: 15rem;
	min-height: 100vh;
}
.container-shop2 {
	width: 90%;
	margin: auto;
}

.container-shop > h1, .container-shop2 > h1 {
	color: #494B4D;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	margin: 15px 0px;
	font-size: 15px;
}

.container-shop > h1:after, .container-shop2 > h1:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #C7C7C7;
	margin: 20px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
	padding-top: 3rem;
}

.category_list{
	display: flex;
	flex-direction: column;
	width: 18%;
}

.category_list .category_item{
	display: block;
	width: 90%;
	text-decoration: none;
	padding-bottom: 5px;
}

.category_list .ct_item-active{
	background: black;
}

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

.products-list{
	width: 82%;
	display: flex;
	flex-wrap: wrap;
	background-color: #ffffff;
	margin: auto;
}
.products-list2{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background-color: #feebeb;
	margin: auto;
}


.products-list .product-item{
	width: 22%;
	margin-left: 3%;
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;

	transition: all .4s;
}
.products-list2 .product-item2{
	width: 13%;
	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, .products-list2 .product-item2 img{
	width: 100%;
}

.products-list .product-item .cont_item_desc, .products-list2 .product-item2 .cont_item_desc{
	display: grid;
	width: 100%;
	padding: 10px 12px;
	/* background: #2D3E50; */
	color: black;
	text-align: center;
}
.cont_item_desc a {
	text-decoration: none;
	color: black;
}
.cont_filter_tip {
    padding: 20px 0;
}
.filter_tip {
    font-family: 'Montserrat-Bold';
    background: #ffffff;
    border-radius: 5px;
    font-size: 1rem;
    padding: 0.6rem;
    width: 80%;
    border: 1px solid #a6a1a3;
}
.list_filter {
    font-size: 12px;
    cursor: pointer;

}
.facetwp-checkbox.checked {
    background-image: url(../images/iconos/check-on-asp2.png) ;
}
.facetwp-checkbox {
    background: url(../images/iconos/check-asp.png) 0 50% no-repeat;
    background-size: 14px 14px;
    margin-bottom: 4px;
    padding-left: 20px;
    cursor: pointer;
}
.card_product {
	border-radius: 5px;
    padding: 3%;
    background: #fefefe;
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 22%);
	height: 100%;
	position: relative;
}
.card_product2 {
	border-radius: 5px;
    padding: 3%;
    background: #fefefe;
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 22%);
	height: 16rem;
}
.card_product:hover .cont_button_add {
    transform: translate(0px, -150px);
    transition: 400ms;
    z-index: 1;

  }
  .cont_button_add {
    position: relative;
    margin: auto;
    z-index: -1;
	text-align: center;

  }
  .button_add {
    background: #ffffff;
    width: 55%;
    color: #000000;
    padding: 0.8rem;
    border: 1px solid #e7e7e7;
    margin: auto;
    cursor: pointer;
	text-decoration: none;
	border-radius: 3px;
  }
  .button_add:hover {
	text-decoration: none;
	color: #000000;
	font-weight: bold;
  }
  .product_sku {
	font-size: 1em;
	color: gray;
	padding-bottom: 5px;
  }
  .pad_bt_3r {
	padding-bottom: 3rem;
  }
  .cont_nom {
	width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
	/* padding-top: 0rem; */
	padding-bottom: 2rem;
  }
  .cont_nom_2 {
	width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
	padding-top: 1rem;
  }
  .cont_desc_detail_produc {
	padding-right: 5rem;
  }
/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.products-list .product-item, .products-list2 .product-item2 {
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.products-list{
		width: 100%;
	}
	.cont_filter_tip {
		display: none;
	}
	.cont_nom {
		width: 100%;
		padding-left: 0rem;
		padding-right: 0rem;
		/* padding-top: 0rem; */
		padding-bottom: 0rem;
	}
	.cont_nom_2 {
		padding-left: 0rem;
		padding-right: 0rem;
	  }

	/* .category_list{
		flex-direction: row;
		justify-content: space-between;
	} */

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
	}

	.products-list .product-item, .products-list2 .product-item2 {
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
	.products-list2 .product-item2: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, .products-list2 .product-item2 {
		
		width: 100%;
	}

	.products-list .product-item {
		margin-left: 0;
	}
	/* .products-list .product-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: 0px;
	}
	.products-list2 .product-item2:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list2 .product-item2:nth-child(2n+1){
		margin-left: 0px;
	} */

}

@media screen and (max-width: 350px){
	.products-list .product_item, .products-list .product_item2 {
		width: 100%;
		margin-left: 0px;
	}
}
