<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Open Sans', sans-serif;
}
.NAvs {
    width: 500px;

}
#Cate &gt; a {
    width: 300px;
    align-items: center;
    border-radius: 6px;
}
.ventana {
    background: #000000;
    width: 300px;
    padding: 33px;
    min-height: 200px;
    border-radius: 22px;
    position: absolute;
    display: none;
    z-index: 100;
    right: 10%;
}


#h21 {
    font-size: 26px;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    text-align:center;
}
#P1 {
    font-size: 18px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;

}
#h22 {
    font-size: 26px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

#P2 {
    font-size: 18px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
#h23 {
    font-size: 26px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

#P3 {
    font-size: 18px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
#h24 {
    font-size: 26px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

#P4 {
    font-size: 18px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
#cerrar{
    position:absolute;
    right:3px;
    top:1px;
}
.NuevosProductos {
    display: none;
    margin:50PX;
}
.wrap-auto {
    display: none;
    max-width: 1100px;
    width: 90%;
    margin: auto;
}
.wrap-carga {
    display: none;
    max-width: 1100px;
    width: 90%;
    margin: auto;
}
.wrap-marino {
    display: none;
    max-width: 1100px;
    width: 90%;
    margin: auto;
}
.wrap-moto {
    display: none;
    max-width: 1100px;
    width: 90%;
    margin: auto;
}
.wrap &gt; h1{
	color: #494B4D;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 15px 0px;
}

.wrap &gt; 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: 18%;
}

.categorias .as {
    display: block;
    padding: 15px 0;
    margin-bottom: 20px;
    background: #000;
    text-align: center;
    align-items:center;
    text-decoration: none;
    color: #fff;
    font-size:20px;
}
    .categorias .as:hover {
        background: #808080;
        transition: .4s;
    }
    .categorias .as:focus {
        background: #808080;
        transition: .4s;
    }

.category_list .category_item {
    display: block;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 20px;
    background: #000000;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius:6px;
}

.category_list .ct_item-active {
    background: #808080;
}
.category_list .category_item:hover {
    background: #808080;
}
/* PRODUCTOS ============*/
.products-list {
    width: 82%;
    display: flex;
    flex-wrap: wrap;
}


.products-list .product-item{
    width:101px;
    height:250px;
	margin-left: 6%;
	margin-bottom: 120px;
	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 a {
        display: block;
        width: 150px;
        height: 100px;
        padding: 8px 0;
        background: #000000;
        color: #fff;
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
    }

        .products-list .product-item a:hover {
            background: #808080;
        }

/* 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;
	}
}</pre></body></html>