
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

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

body{
    font-family: 'Roboto', sans-serif;
    
}


.enterocentrado
{
	width: 100%;
	text-align:center;
}
.labelAlaizq
{
	width: 100%;
	text-align:left;
    color:#A0A0A0;
}
hr{
	width:90%;
	
    
}
.labelregistrar{
 	display: block;
    
    
    
}
.labelregistrarform{
 	display: block;
 	width: 100%;
}
.imagenregistrar{
	width: 100%;
	text-align:center;
    margin-bottom: 200px;
    padding: 10px;
    
}





.formularioRegistrar{
	width: 50%;
	text-align:center;
	margin-left:25%;
   
}


header{
    
    width: 100%;
    height: 50px;
    background:white;
    color:#fff;
    position: fixed;
    top:0;
    left:0;
    z-index: 999;
border-bottom: 1px solid blue;
      }

.contenedor11{
    
   width: 98%;
   margin: auto;
    }
h1{
    float:left;
   }

#menu-aparece{
    display: none;
}

header label{
    float:right;
    font-size: 28px;
    margin: 6px 0;
    
}

.menu{
    
    position: absolute;
    top:50px;
    left:0;
    width: 50%;
    height: 100vh;
    background: #f3f4f5;
    transition: all 0.5s;
    transform: translateX(-100%);
    
}

header .contenerdor11{
   display: table;
}

.menu a{
    display: block;
    color: #5078b4;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    margin-left: 15px;
    border-bottom: 1px solid #5078b4;
}

.menu a:hover{
    
    background:#dde6f4;
    color:#f3f4f5;
}

#menu-aparece:checked ~.menu{
    transform: translateX(0%);
}

.icon-menu{
color:red;
 
}

#bienvenidos{
    margin-top: 100px;
    text-align: center;
    
}
#bienvenidos p{

    font-size: 11px;
    color:#aeaba4;
    
}
#bienvenidos h2{
   padding: 5px;
  margin-top: 0px;
    font-size: 16px;
    color:#878788;
}

#botones .contenedor{
    
display: flex;
justify-content: center;
flex-grow: wrap;
padding: 10px;
border-bottom: 2px solid #f3f4f5; 
    margin-top: 60px;    
}

#botones article{
    margin: 15px;
    
}

#botones img{
    width: 100%;
    max-width:300px;
    
}

#botones h3{
    text-align: center;
}





/* galeria de imagenes */

.galeria { 
    background:#F4F4F4;
    padding-bottom: 2em;
    max-width: 75em;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 90px;
    

}

.galeria h3 {
    
    width: 100%;
    padding: 1em;
    color:#8E8E8E;
    margin-bottom: 50px;
    padding: 10px;
    font-size:14px;
    font-weight: 300;
    margin-left: 55px;
    margin-top: 30px;
    border-bottom: 1px solid #f3f4f5 ;
}

.galeria figure {
    width: 30vmin;
    margin: .700em;
    
    /* para que cada "figure" sea origen de coordenadas de sus elementos contenidos */
    position: relative;
    /* para ocultar lo que "excede" sus límites */
    overflow: hidden;
        
     
}

.galeria img {
    width: 100%;
    /* para que "desaparezca" el espacio que queda debajo de la imagen */
    display: block;
}

.galeria figcaption {
    background-color: gainsboro;
    color: white;
    padding: .10em;
    line-height: 1em;
  

    /* para superponer el epígrafe sobre la foto */
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc( 100% - 1.5em );
    
    transition: all 1s ease;
}

/* propiedades de figcaption SÓLO cuando
   el cursor se coloca encima de "figure" */
.galeria figure:hover figcaption {
    background-color: #E30613;
    top: 0;
    transition: all .2s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
      opacity: 60%;
}

.galeria figcaption span {
    display: block;
    font-size: .75em;
    color: lavender;
    margin-top: .5em;
}


.card{
    background:#8E8E8E;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.25);
    box-shadow: 0 5px 15px rgba(0,0,0,.25);
    overflow: hidden;
    padding: 116px;
    
}


.todo{
     width:700px;
    height:405px;
}
.product{
    
    top:50%;
    left:50%;
   
    width:260px;
    height;340px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.25);
    border-radius: 5px;
    overflow: hidden;
    margin: 10px;
}


.product .imgBox{
    height: 50%;
    box-sizing: border-box;
    padding: 5px;
    
}


.product .imgBox img{
    display: block;
    width: 100%;
    margin:0px auto 0;
}


.details{
    
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0,0,0 rgba(0,0,0,0);
    transition: .5s;
}

.product:hover .details{
    bottom: 0;
    box-shadow: 0, -5px 15px rgba(0,0,0,.25);
    
    
}
.detail h2{
    margin: 0;
    padding: 0;
    font-size: 16px;
    width:100%;
}


.details h2 span{
    font-size: 12px;
    color:#ccc;
    font-weight: normal;
    margin-left: auto;
}

.details .price{
    position: absolute;
    top:10px;
    right:20px;
    font-weight: bold;
    color:red;
    font-size: 20px;
}




label{
    
    display: block;
    margin-top: 5px;
    font-weight: bold;
    font-size: 14px;
    margin:10px;
}


ul{
    display:flex;
    margin:0;
    padding: 10px;
}



ul li{
    
    
   list-style: none;
    margin:5px 5px 0;
    font-size: 12px;
    font-weight: normal;
    color:#ccc;
    
    
}

ul li:first-child{
    margin-left: 0;
}





.product a:hover{
    background:#5078b4;
    color:aliceblue;
}

.product a{
    display:block;
    padding: 5px;
    margin: 15px 0 0;
    color:#fff;
    background: #5078b4;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    
}

.todo{
   
    display: flex;
justify-content: center;
flex-grow: wrap;
padding: 1px;
border-bottom: 2px solid #f3f4f5;  
    margin: auto;
    margin-top: 50px;
}




#todo .product{
    
display: flex;
justify-content: center;
flex-grow: wrap;
padding: 60px;
border-bottom: 2px solid #f3f4f5;  
}



















  .menufooter ul
   {
    margin: 0;
    list-style:none;
    padding: 0;
    display: flex;
    
       
   }
.footer{z-index: 999;

   
}
.menufooter i{
    margin-bottom: px;
    
}


.menufooter li{
    flex-grow: 1;
    text-align: center;
    
}
.menufooter li a{
    display: block;
    padding: 15px 20px;
    color:#fff;
    text-decoration: none;
    
}
.footer{
   
    background:white;
    width:100%;
    height: 50px;
    bottom:
        0;
    position: fixed;
    text-align: center;
    color:antiquewhite;
    padding: 0px;
    margin-bottom:0px;
    box-shadow: 0 10px 12px 10px rgba(0,0,0,0.2);
    
}
.material-icons {
        
        
        color:#949392;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 30px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

    
    }
    
     
 .footer i:hover{
    
    
    color:#5078b4;
}
 hr{
	width:100%;
	border:1px solid #F0F2F2;
    
}
.labelsubir
{display: block;
    text-align:center;
color:#A0A0A0;
}







.hr2{
    text-align:center;
	width:70%;
	border:1px solid  #e2dfdf;
}
.divmitad{
	width: 100%;
	margin-top:2%;

}
.divmitadcentrado{
	width: 60%;
	margin-left: 30%;
	margin-top:5%;
}
.enterocentrado
{
	width: 100%;
	text-align:center;
}
.labelAlaizq
{
	width: 100%;
	text-align:left;
	float: left;
    color:#A0A0A0;
}
.labelAlaizq75
{
	width: 75%;
	float:left;
	text-align:left;
	margin-top: 3%;
    color:#A0A0A0;
}
.labelAladerecha75
{
	width: 25%;
	float: right;
	text-align:left;
	margin-top: 3%;
    color:#A0A0A0;
}
input[type="text"]{
	background-color: #e2dfdf;
	width: 100%;
	height: 50px;
	
	margin-top:1%;
	margin-bottom: 1%;
	border: none;
	text-align: center;
}
.ui-widget-header {
  height: 4px !important;
  background: blue;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #c3c3c3;
  border-radius: 13px;
  background: #fff;
}
.ui-widget-content {
    height: 2px !important;
    border: 0;
    background: #e0e0da;
}
.ui-slider-horizontal .ui-slider-range {
  top: -2px;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -10px;
  cursor: pointer;
}
.ui-slider-handle {
  outline: none;
}
.ui-slider-handle .amount {
  position: absolute;
  left: 0;
  top: 35px;
  display: none;
  width: 130px;
  padding: 10px 0;
  text-align: center;
  margin-left: -55px;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  border: 1px solid #BFDEE0;
  background: blue;
}
.ui-slider-handle .amount:after {
  content: '';
  display: block;
  position: absolute;
  top: -11px;
  left: 50%;
  right: 0;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-bottom: 5px solid #blue;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  background-color: #fff;
}
.precio{
	border:0; 
	background: white!important;
	font-weight:bold;
    color:dimgrey;

}
button{background-color: #BFDEE0;
	border-radius: 10px 10px;
    
	width: 50%;
	height: 30px;
	margin-top:10px;
    margin-bottom: 15px;
	border: none;
    box-shadow: 0 12px 16px rgba(0,0,0,0.2);
    color:papayawhip;
}

.izq{float: left;}
.der{float: right;}

background:#4E94AB;
	color:white;
	text-align: center;
	text-decoration: none;
	padding:10px;
        
   transition: all 0.4s linear;
    border-radius: 5px;
 box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	/* Flexbox */
	flex-grow:1;


/*trjetita*/
.container222{
  width: 280px;
  height: 500px;
  margin: 30px auto;
  margin-bottom: 150px;
}

.card222 {
  border-radius: 25px;
  
}

.card-head222 {
  position: relative;
  height: 130px;
  background: #395680;
  
  
}

.card-logo {
  width: 90px;
  margin: 20px;
}


.product-detail {
  padding: 0 20px;
  color: #fff;
  font-size: 15px;
}



.back-text {
  display: inline-block;
  font-size: 125px;
  font-weight: 900;
  margin-left: -7px;
  margin-top: -86px;
  opacity: 0.1;
}



.product-title {
  padding: 20px 20px 5px 20px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-desc a{
    color:white;
}

.badge {
  position: relative;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
  background: red;
  padding: 2px 5px;
  border-radius: 4px;
  top: -2px;
  margin-left: 5px;
}

.product-caption {
  display: block;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: red;
    text-align: center;
    

}

.product-rating {
  padding: 0 20px;
  font-size: 11px;
}

.product-rating i.grey {
  color: #acacab;
}

.product-size h4 {
  font-size: 11px;
  padding: 0 21px;
  margin-top: 15px;
  padding-bottom: 10px;
  text-transform: uppercase;
}



.product-color h4 {
  font-size: 11px;
  padding: 0 21px;
  margin-top: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
}


.product-price {
 
  background: #5178B9;
  padding: 7px 20px;
  text-align: center;
  display: inline-block;
  font-size: 24px;
  font-weight: 200;
  color: #fff;
  border-radius: 7px;
  margin-top: -13px;
  margin-left: -5px;
  box-shadow: 0px 5px 11px  rgba(17, 233, 91, 0.3);
  margin-bottom: 10px;
}

.product-price b {
  margin-left: 2px;
 font-size: 18px;
    
}


#bievenidos .container222{
    margin-bottom: 220px;
}

/*legales*/

.enterocentrado
{
	width: 100%;
	text-align:center;
}

}
h3{
	width:30%;
    font-size: 10px;
	border:1px solid #C1BDBD;
    border-bottom-style: solid;
    
    
}


.footerlegales {
    background-color: white; 
    font-size: 12px;
    width: 100%;
    margin: 1em;
    padding: 10px;
    
}


/*fin de legales*/




/*ACA COMIENZA QUIERO..FAV.*/

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');




a
{
    text-decoration: none;
}
.product-card {
    width: 310px;
  
    position: relative;
    box-shadow: 0 2px 7px #dfdfdf;
    margin: 50px auto;
    background: #fafafa;
    margin-bottom: 150px;
}

.pongofavoritos{
    margin: auto;
    margin-top: 10px;
    width: 100%;
    height:800px;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content:center;
     position: relative;
    
}
.product-card-grey img{
    width: 365px;
    height: 260px;
 
   object-fit:cover; 
    
}
.product-card-grey i{
    color:red;
    
}
.product-card-grey {
    width: 350px;
    height: 420px;
    position: relative;
    box-shadow: 0 2px 7px #dfdfdf;
    margin: 10px;
    background: #f0f0f0;
    margin-bottom: 50px;
    float: left;
    box-sizing: border-box;
}

.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 10px;
    background: #f0f0f0;
}
.product-tumb-sincolor {
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 10px;
    
}

.product-tumb-sincolor img {
    max-width: 100%;
    max-height: 100%;
}
.product-tumb img {
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    padding: 30px;
    margin: 12px;
}

.product-catagory {
    display: block;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 18px;
}

.product-details h4 a {
    font-weight: 200;
    display: block;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #363636;
    text-decoration: none;
    transition: 0.3s;
}



.product-details p {
    font-size: 19px;
    line-height: 22px;
    margin-bottom: 30px;
    color: #999;
    border-top: 1px solid #eee;
}

.product-bottom-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-bottom-details div {
    float: center;
    width: 50%;
}

.product-price {
    font-size: 18px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.product-price small {
    font-size: 80%;
    font-weight: 400;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 50px;
}

.product-links {
    text-align: right;
}

.product-price {
 
  background: #eaeaea;
  padding: 7px 20px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 200;
  color: black;
  border-radius: 7px;

}
/*ACA TERMINA QUIERO*/
border-bottom: 1px solid grean; 

/*buscar*/
#bienvenidos h2{
    margin-bottom: 90px;
    
 border-bottom: 1px solid grey; 
}
   
.scroll-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.scroll-item {
  scroll-snap-align: center;
}
/* make 3rd item bigger to show that items don't need to have the same width */
.scroll-item:nth-child(3) {
  width: 15em;
}
/* make 5th item bigger to show that items don't need to have the same width */
.scroll-item:nth-child(5) {
  height: 15em;
}

/* FLEXBOX LAYOUT */
.scroll-container[data-layoutmethod="flexbox"] {
  display: flex;
  flex-wrap: nowrap;
  align-items: center; /* vertically align children */
}
.scroll-container[data-layoutmethod="flexbox"] .scroll-item {
  margin-right: 1em; /* fake gap */
  flex: 0 0 auto;
}

/* GRID LAYOUT */
.scroll-container[data-layoutmethod="grid"] {
  display: grid;
  grid: auto / auto-flow max-content;
  grid-gap: 1em;
  align-items: center; /* vertically align children */
}

/** OTHER STYLES **/
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

/* center main element */
main {
  margin: 0 auto;
  padding: 0 1em;
  border: 1px solid rgba(0,0,0,0.1);
}

/* remove list styles */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.scroll-container{
    margin-bottom: 80px;
}
.scroll-item {
  /* make it square */
  width: 30em;
  height: 20em;
  border: 1px solid rgba(0,0,0, 0.1);

  /* some basic styling */
  background: #ccc;
  border-radius: 0.2em;

  /* center contents */
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-container h2{
    
    border-bottom: 1px solid grey;}
.scroll-container img{
    width:300px;
}

/*buscarfin*/

/* ACA EMPIEZAN LOS LEGALES */

.titulo_legales {
    text-align: left;
    border-bottom: 1px solid grey; 
}

.legales_22 {
    padding: 0;
    margin-top: 10px;
    font-family: roboto;
    font-size: 16px;
    color:dimgray;
    padding: 18px;
    text-align: left
 
}
.texto_legales {
    
    text-align: left;
    margin-left: 20px; 
    font-size: 16px;
}


footer {
    background-color: white; 
    font-size: 10px;
    width: 100%;
    margin: 1em;
    padding: 10px;
    
}

/* terminaron los legales*/

/* ACA EMPIEZA COMO COMPRAR */

.titulo_comprar_ayuda {
    text-align: left;
    border-bottom: 1px solid grey; 

}

.caja_contenedora_ayuda_comprar {
    
    margin-top: 50px;
    border: 1px solid white;
}
.caja_padre_comprar_ayuda {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
    color: darkgrey;
}

.boton_ayuda_comprar {
    
    padding-top: 30px;
    display:flex;
    flex-direction: column;
    align-items: center;
    margin:auto;
    
}

.bot_confirmar_comprar{
    background-color: lightgrey;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;   
    
}

/* ACA TERMINA COMO COMPRAR*/

/* ACA EMPIEZA COMO VENDER */

.titulo_vender_ayuda {
    text-align: left;
    border-bottom: 1px solid grey; 
}

.caja_contenedora_ayuda_vender {
    
    margin-top: 50px;
    border: 1px solid white;
}

.caja_padre_vender_ayuda {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
    color: darkgrey;
}

.boton_ayuda_vender {
    
    padding-top: 30px;
    display:flex;
    flex-direction: column;
    align-items: center;
    margin:auto;
    
}

.bot_confirmar_vender {
    background-color: lightgrey;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;  }

/*ACA TERMINA COMO VENDER*/
/*logininicio*/
.enterocentradologin input[type="text"]{
	background-color: #e2dfdf;
	width: 100%;
	height: 50px;
	
    
	margin-top:1%;
	margin-bottom: 1%;
	border: none;
	 text-align: center;
}

.enterocentradologin
{
	width: 100%;
	text-align:center;
    margin-bottom: 50px;
    
}
.labelAlaizq
{
	width: 100%;
	text-align:left;
    color:#A0A0A0;
}
hr{
	width:100%;
	border:1px solid #C1BDBD;
    align-content: center;
}
.labelregistrar{
 	display: block;
    color:black;
}
.labelregistrarform{
 	display: block;
 	width: 100%;
}
.imagenregistrar{
	width: 100%;
	text-align:center;
    margin:2px;
    margin-bottom:5px;
    margin-top:0;
}
.formularioRegistrar{
	width: 50%;
	text-align:center;
	margin-left:25%;
   
}


.formularioRegistrar a{
    padding-top: 30px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:auto;
    text-decoration: none;
    background: #C1BDBD;
    padding: 10px;
    color:black
}




/*loginfinal*/
/* Aca comienza AYUDA */

.titulo_ayuda {
    text-align: left;
    border-bottom: 1px solid grey; 
}

.imagen_ayuda_22 {
    
  margin-top: 50px;    
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 80px;
    
}

.parrafo_ayuda {
    
    font-size: 12px;
    text-align: center;
    padding: 5px; 
    padding-bottom: 20px;
    
    
}

.imagen_div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}



/*ACA TERMINA AYUDA*/ 




.finalhome{
    
    width: 100%;
    height: 900px;
    
    
}
.finalhome h4{
    color:#8E8E8E;
    border-bottom: 1px solid;
    font-size: 14px;
    
}



/*inicio css filtros de busqueda agus*/
.mainfiltrodebusqueda33{
    width: 100%;
    /*background-color: bisque;*/
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    position: relative;
    top: 4em;
    margin-bottom: 4em;
    
}


.divformulariosfiltrodebusqueda33{
    width: 100%;
    max-width: 650px;
    height: 60%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-bottom: 1px solid black;
    flex-wrap: wrap;
    
}
.divformulariosfiltrodebusqueda33 i{
    font-size: 1.3em;
    color: black;
    
}


.divcategoriafiltrados33 {
    width: 100%;
    height: 7em;
    display: flex;
    flex-direction: row;
    /*background-color: #00ff89;*/
    padding: 0.5em 1em 1em 1em;
        
}

.divcategoriafiltrados33 ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items:flex-start;
    /*background-color: aqua;*/
    
    
    
}

.divcategoriafiltrados33 ul li{
    background-color: #edeef0;
    width: 8em;
    height: 3em;
    color: #87868a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 1em;
    list-style: none;
    margin-bottom: 0.5em;
         
}

.primeraetiqueta33{
        padding-left: 1em;
}

.divcategoriafiltrados33 ul li i{
    font-size: 1.5em;
     
}
.productosfiltrados33{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    
    margin-top: 1em;
    /*background-color:aquamarine;*/
    width: 100%;
    max-width: 650px;
    height: 100%;
    align-content: flex-start;
    justify-content: center;
}
.producto33{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 1em;
    background-color: #edeef0;
    width: 10em;
    height: 14.5em;
    padding: 0;
}
.tarjetaproducto33 {
    width: 10em;
    height: 10em;
    /*background-color: red; */
}

/*imagen de la tarjeta enrealidad ndea*/
.imagenraqueta33{
    object-fit:contain;
    width: 100%;
    
    
}

.textodelatarjeta33 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin:0.3em;
    
    
}

.textodelatarjeta33 h2{
    font-size: 0.7em;
    align-self: center;
    
}

.iconofav33 i{
    
    align-self: center;
    
}
.precioytalletarjeta33{
    display: flex;
    justify-content: space-between;
    margin:0.3em;
    
    
}

.precioytalletarjeta33 h2{
    font-size: 1em;
    align-self: center;
    font-weight: 100;
}

.precioytalletarjeta33 h3{
    font-size: 0.7em;
    align-self: center;
    font-weight: 100;
}



/*FIN REGLAS FILTRO DE BUSQUEDA*/



/* REGLAS CSS BUSCAR AGUS/VICKY*/

/* REGLAS CSS BUSCAR AGUS/VICKY*/

.main33{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
/*background-color: #ced1c6;*/
    position: relative;
    top: 5em;
    padding: 1em;
    padding-bottom: 4em;
}


.textobusqueda33{
    width: 90%;
    height: 20%;
    position: relative;
    bottom: 0.5em;
    

  
}

.labelbuscar33{
    width: 2em;
    position: relative;
    top: 3.7em;
 

}

#producto33 {
    width: 100%;
    height: 3.5em;
    background-color: #edeef0;
    
}

.divformularios33{
    margin: auto;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.filtrar33{
    align-self: center;
    margin-top: 1em;
    margin-bottom: 0.6em;
    display: block;
    width: 95%;    
    font-size: 0.9em;
    border-bottom: 1px solid black;
    text-align: left;
}
    

.formularioRegistrar{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
}


.divcategoriafiltrado33 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    
    
    
}

.divcategoriafiltrado33 input {
    display: none;
}

.divcategoriafiltrado33 label{
    border: 1px solid #5674ab;
    display: inline-block;
    padding: 0.3em 1em;
    font-weight: 100
}

.divcategoriafiltrado33 label:hover {
    background-color: #5674ab;
    color: white;
}

.divcategoriafiltrado33 input:checked + label{
    background-color: #5674ab;
    color: white;
}
/*ETIQUETAS DE TALLE Y PRECIO*/

.talleyprecio33{
    align-self: center;
    width: 90%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    margin: 7% 0 7%; 0;
        
}
/*ETIQUETA TALLE*/
.divtalle33{
    width: 40%;
    height: 35%;
    /*2.5em*/
    
}

#talle33 {
   border: 1px solid #5674ab;
    width: 100%;
    height: 80%;
    background-color: #edeef0;
    
}
.etiquetatalle33 {
    margin: 0;
    text-align: start;
    font-weight: 100;
    margin-bottom: 0.4em;
}
/*ETIQUETAS DE PRECIO*/
.etiquetaprecio33 {
    margin: 0;
    text-align: start;
    font-weight: 100;
    margin-bottom: 0.4em;
}
.divprecio33{
    width: 40%;
    height: 35%;
}

#precio33{
    border: 1px solid #5674ab;
    width: 100%;
    height: 80%;
    background-color: #edeef0;
    
}

/*ETIQUETA DE ESTADO DEL PRODUCTO*/
.estados33 {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-bottom: 1em;
    margin-top: 1em;
    
}
.estados33 h2{
    font-size: 1em;
    text-align: start;
    margin-bottom: 1em;
        
    
}

.rangodeestados33{
 
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    
}

.aplicarbusqueda33{
    align-self: center;
    background-color: #edeef0;
	border-radius: 0px 0px;
    color: black;
    
	width: 50%;
	height: 3.5em;
	margin-top:2em;
    margin-bottom: 2em;
	border: none;
    box-shadow: 0 0px 0px;
    color:black;
    font-weight: 600;
        
    }

.hrdelboton33{
    border: .8px solid black;
    border-color: black;
    width: 80%;
        
}

.busquedasrecientes33 {
    margin-top: 1em;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    list-style: none;
    position:relative;
    left: 3.3em;

        
}
.busquedasrecientes33 h2{
    font-size: 1em;

        
}

.busquedasrecientes33 ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0 0 0 0;
    margin-top: 1em;
    
        
}

.busquedasrecientes33 ul li a:hover{
    text-decoration: none;
    color: blue;
    
        
}
.busquedasrecientes33 ul li {
    text-decoration: none;
    color: #1c0d4a;
    margin-bottom: 0.7em;
            
}

.busquedasrecientes33 ul li a{
    text-decoration: none;
    color: #1c0d4a;
            
}

/*fin buscar agus/vicky*/


/*INICIO REGLAS PERFIL VENDEDOR*/
.mainvendedor33 {
    padding: 0 1em 0 1em;
    position: relative;
    top: 3em;
    /*background-color: bisque;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4em;
}

.divperfilvendedor33 {
    width: 100%;
    margin-bottom: 3em;
    max-width: 520px;
    
}

.divperfilvendedor33 i{
   position: relative;
    top: 5px;
}

.datadelvendedor33{
    width: 100%;
    display: flex;
    flex-direction: column;
     justify-content: center;
    align-items: center;
    align-content: center;
    
}
.fotovendedor33{
    width: 60%;
    max-width: 260px;
    
}

.nombrevendedor33{
    font-size: 1.3em; 
    color:#5a7bb7;
    /*nicolas lopez noltingblue*/
    align-self: center;
    margin: 1em 1em 1em 1em;
}

.contactovendedor33{
    /*background-color: aqua;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
   
}
.displaynone33{
    display: none;
}
.contactovendedor33 li{
    width: 200px;
    height: 2em;
    color: #87868a;
    /*gris de la tipografia*/
    margin-bottom: 1em;
    background: #edeef0;
    /*gris fondo nolting*/
    text-align: center;
    align-self: center;
    
        
}
.productospublicados33{
    max-width: 540px;
    align-self: center;
    margin-top: 1em;
    margin-bottom: 0.6em;
    display: block;
    width: 95%;    
    font-size: 0.9em;
    border-bottom: 1px solid black;
    text-align: left;

}


/*FINREGLAS PERFIL VENDEDOR*/



/*LOGIN INICIO fin*/


/*aca pantalla subirproducto*/

button{background-color: #aeaba4;
	
    
	width: 50%;
	height: 30px;
	margin-top:10px;
    margin-bottom: 15px;
	border: none;
   
    color:black;
}
.divmitad77{
  width: 60%;
  margin-top:2%;

}

.enterocentrado77
{
  width: 100%;
  text-align:center;
  padding: 2%;
}
.titulo77
{
  float: left;
  font-size: 1.2em;
}
.select77{
  background-color: #e2dfdf;
  width: 100%;
  height: 50px;
  padding-left: 2%;
  border-radius:0px 0px;
  margin-top:1%;
  margin-bottom: 1%;
  border: none;
  text-align: center;
}
.area77{
  background-color: #e2dfdf;
  width: 100%;
  height: 100px;
  padding-left: 2%;
  border-radius:0px 0px;
  margin-top:1%;
  margin-bottom: 1%;
  border: none;
  text-align: center;
}
.left77{
  float: left;
  width: 60%;
  text-align: left;
  padding: 2%;
}
.left10077{
  float: left;
  width: 100%;
  text-align: left;
  padding: 2%;
}
.left3radio77{
  float: left;
  text-align: center;
  padding: 2%;
  width: 33%;
}
.right77{
  float: right;
  width: 40%;
  text-align: left;
  padding: 2%;
}
.centrarprincipal77{
  width: 68%;
  display: inline-block;

}

.cajacheck77{
  
  display: inline-block;
    width: 100%;
}
    display: inline-block;
    width: 100%;
.cuadrado77
{

  width:150px;
  margin-top: 3%;
  margin-right: 5%;
  display: inline;
  min-height: 150px;
 
}
/*fin subir*/

/*gif.inicio*/

.centralprincipal77 img{
    margin-top:115px;
    width:99%;
    text-justify: center;
}

@media (min-width: 600px){
   .centralprincipal77 img{
    margin-top:100px;
    width:40%;
    text-justify: center;
} 
}


/*gif.inicio*/




/*sliderinicioseba*/
.slideshow{
	width: 100%;
	position: relative;
    text-align: center;
}

.slider li, ul{
	width: 100%;
}

.slider li{
	overflow: hidden;
}

.slider li img{
   margin-top: 60px;
	width: 100%;
      opacity: 0.;
}

.slider .caption{
    
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 15px 50px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	text-align: center;
	color: royalblue;
	z-index: 1;
  
}



.slider .caption p{
	margin-top: 460px;
	font-size: 13px;
    color:#aeaba4;
   
   
        
}
.ingresar{
    text-decoration: none;
    color: white;
    background:#aeaba4;
    padding: 10px;
}
.pagination{
	position: absolute;
	top: 122%;
	width: 100%;

	display: flex;
	justify-content: center;
    
}

.pagination li{
	font-size: 20px;
	margin: 8px 20px;
	color: #aeaba4;
	cursor: pointer;
}


.left, .right{
	position: absolute;
	top: 0;
	height: 100%;

	display: flex;
	align-items: center;

	color: #fff;
	font-size: 35px;
	cursor: pointer;
	z-index: 2;
}

.left{
	left: 10px;
}

.right{
	right: 10px;
}







@media (min-width: 600px) {
.slideshow{
	width: 100%;
	position: relative;
    text-align: center;
    
}

.slider li, ul{
	width: 100%;
}

.slider li{
	overflow: hidden;
}

.slider li img{
   
	width:20%;
      opacity: 0.;
  
    margin-top: 20px;
}

.slider .caption{
    
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 15px 50px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	text-align: center;
	color: royalblue;
	z-index: 1;
  
}



.slider .caption p{
	margin-top:430px;
	font-size: 15px;
    color:#aeaba4;
   
   
        
}
.ingresar{
    text-decoration: none;
    color: white;
    background:#aeaba4;
    padding: 10px;
    
}
 
.pagination{
	position: absolute;
	top: 159%;
	width: 100%;

	display: flex;
	justify-content: center;
    
}




}


/*fin sliderincio*/




















@media screen and(max-width:600px)
{
    .product-card-grey{
        width: 100%;}
    
     .caja_contenedora_ayuda_comprar {
       
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .caja_contenedora_ayuda_vender {
       
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
   
    
    
}
/*reglas historial*/
.divhistorial33{
    max-width: 500px;
    
}

.mainhistorial33 {
    padding: 0 1em 0 1em;
    position: relative;
    top: 4em;
    /*background-color: bisque;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3em;
}

.divhistorial33 {
    max-width: 600px;
    width: 100%;
    margin-bottom: 2em;
    
}
.datadelhistorial33{
    width: 100%;
    height: 2em;
    display: flex;
    flex-direction: column;
     justify-content: center;
    align-items: center;
    align-content: center;
    margin-bottom: 2em;
    
      
}
.datadelhistorial33 h1{
    font-size: 1.3em; 
    color:#5a7bb7;
        
}

.mispublicaciones33{
    width: 100%;
    max-width: 600px;
    
}

.titulomispublicaciones33{
    font-size: 1.2em;
    font-weight: 150;
    border-bottom: 1px solid black;
    
}


.titulomiscompras33{
    font-size: 1.2em;
    font-weight: 150;
    border-bottom: 1px solid black;
    
}
        
}
.historialpublicaciones33{
    max-width: 600px;
    align-self: center;
    margin-top: 1em;
    margin-bottom: 0.6em;
    display: block;
    width: 95%;    
    font-size: 0.9em;
    border-bottom: 1px solid black;
    text-align: left;


}


.miscompras33{
    width: 100%;
    max-width: 600px;
    
}

/*fin reglas historial*/



/* ACA EMPIEZA USUARIO*/
.miperfil44{
    max-width: 600px;
}

.miperfil44{
    width: 100%;
	text-align:left;
    color:#A0A0A0;
    font-size: 16;
}

.datosusuario44 {
     text-align: center;
    font-size: 18;
    padding:20px;
}
    
.fotodeperfil44 {
    margin: 2em;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
 
.nombre44{
    color: #5a7bb7;
    text-align: center;
    align-self: center;
    float: none;
    margin: 2px;
font-size: 18px;    
}

#titulosizq44 

{   display: inline-table;
    margin: 0em;
    font-weight: lighter;
    font-weight: lighter;
    float: none;
    font: 'Roboto';

}

.labels44 {
    text-align: left;
    font-size: 16px;
    font: 'Roboto'
}


.datos44 {
    background-color: #e2dfdf;
    width:100%;
    height: 25px;
    border-radius: 0px 0px;
    margin-top: 2%;
    margin-bottom: 5%;
    border: none;
    text-align: left;
}

.mispublicaciones44 
{
    font-size: 18;
    padding:20px;
}

.guardarcambios44 {
    font-size: 16px;
    font: 'Roboto';
  background-color: #e2dfdf;
    width: 100%;
    height: 30px;
    border-radius: 0px 0px;
    margin-top: 3%;
    margin-bottom: 5%;
    border: none;
    text-align: center;
 
}

/*fin USUARIO*/

/* ACA EMPIEZA NOVEDADES RENOVADO*/

.titulo_novedades{
    text-align: left;
    border-bottom: 0.1em solid grey; 
}
.contenedornoticias44 {
    width: 90%;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}
    
.contenedornoticias44{
    padding: 0.2em;
    padding-bottom: 2em;

     
}

.contenedornoticias44{
    display: flex;
    list-style: none;
    margin: 5px 5px;
    font-size: 14px;
    font-weight: normal;
    content: center;
}

#listadonoticias44{
   display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 80%;
    margin: auto;
    margin-bottom: 1em;
}

.noticia1, .noticia2, .noticia3{
    width: 100%;
    display: flex;
    flex-direction:row;
    overflow: hidden;
    margin: 0;
    padding: 1em 0;
    align-items: flex-start;
    margin-bottom: .8em;
}


.contenedorimg44 { 
    width: 70%;
    
}


#cuadrado44 {
       display:block;
    max-width: 100%;
    margin-left: .5em;
    margin-top: 1em;
}

.cuerpo44 {
    display: block;
    padding-bottom: 1em;
    padding: 0;
    width: 70%;
    margin: auto;
    font-size: .9em;
    padding-left: 1em;
}



.contenedorvideo44 {  
    width: 100%;
    display: flex;
    margin-bottom: 2em;

}

.video{
    object-fit: none;
    width: 100%;
  height: 0px;
margin-bottom: auto;

        
}



@media (max-width:56em){
.titulo_novedades {
        font-size: 2em;
    }

    
    .cuerpo44 {
        font-size:  
    }
    
 #cuadrado44 {
        margin: auto;
        max-width: 100%;
}

.cuerpo44 {
    margin: auto;
    }

}


@media (min-width:45em){
    
    .titulo_novedades {
        font-size: 1.2em;
    }

    .cuerpo44 {
        font-size: 1.2em
        
    }  
    
    .video{
        height: 50%;
    }
    


}



