@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');



*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Poppins', sans-serif;
	background: #fcfcfc;
}
header {
	width: 100%;
	position: relative;
	text-align: center;
}


h1{
	width: 100%;
	text-align: center;
	background: #eeeeee;
}


.wrap{

	max-width: 1100px;
	width: 90%;
	margin: auto;
}


h2{
	color: black;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 15px 0px;
}



.pel-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}




.pel-list .pel-item{
	width: 18%;
	margin-left: 20px;
	margin-bottom: 50px;
	border:1px solid  #e0e0e0;
	align-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;
	background: white ; 
	transition: all .4s;
	border-radius: 10px;

}


div .pel-list{
	display: flex;
}


hr{
	position: relative;
	width: 50%;
	left: 25%;
}





.pel-item select::-ms-expand{
	display: none;

}


.pel-item select{
	cursor: pointer;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: white;
	color: #7b7b7b;
	font-size: 1em;
	color: black;
	font-family: 'Poppins', sans-serif;
	border:2px solid #e1bee7;
	border-radius: 6px;
	transition: all 0.25s ease;

}



.pel-item input{
	outline: 0;
	border: 0;
	border-radius: 0;
	background: white;
	color: #7b7b7b;
	font-size: 1em;
	color: black;
	font-family: 'Poppins', sans-serif;
	border:2px solid #e1bee7;
	border-radius: 7px;
	transition: all 0.25s ease;

}

.retro input{
	left: 100px;

}

.boton input {
	
	width: 100px;
	height: 40px;
	overflow: hidden;
	border: none;
	border-radius: 35px;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1.5px;
	outline: none;
	cursor: pointer;
	background: #e1bee7;
}

.boton input:hover{
	box-shadow: 0px 0px 20px -5px purple;
}



button {
	
	width: 100px;
	height: 40px;
	overflow: hidden;
	border: none;
	border-radius: 10px;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1.5px;
	outline: none;
	cursor: pointer;
	background: #e1bee7;
}

button:hover{
	box-shadow: 0px 0px 20px -5px purple;
}







/*jj*/
.hor-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}





@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;
	}
}