html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/*Globales*/
img {
  width: 100%;
  margin: 0 auto;
}
a {
  display: block;
  text-decoration: none;
}
p {
  margin: 0;
}

/*Utilidades*/
.banner-desk {
  display: none;
}
@media (min-width: 768px) {
  .banner-desk {
    display: block;
  }
  .banner-mob {
    display: none;
  }
}

/*Titulo Productos*/
.titulo-productos-tendencia {
  width: 100%;
  margin: 15px auto;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
}
@media (min-width: 330px) {
  .titulo-productos-tendencia {
    font-size: 1.1em;
  }
}
@media (min-width: 448px) {
  .titulo-productos-tendencia {
    font-size: 1.2em;
  }
}
@media (min-width: 900px) {
  .titulo-productos-tendencia {
    margin: 20px auto;
    font-size: 1.5em;
  }
}
@media (min-width: 1200px) {
  .titulo-productos-tendencia {
    font-size: 1.8em;
  }
}

/*Descuento en producto*/
.contenedor-productos-google-sheet {
  margin-top: 5px;
  border: 0px;
  box-sizing: content-box !important;
}
.tarjeta-producto-pagos .discount {
  background-image: none !important;
  border-radius: 50%;
  font-weight: bold;
  padding: 17px 5px 17px;
}
.tarjeta-producto-pagos .discount:nth-of-type(even) {
  background: #009d76;
}
.tarjeta-producto-pagos .discount:nth-of-type(odd) {
  background: #eb1d2a;
}
@media (max-width: 1240px) {
  .tarjeta-producto-pagos .discount {
    padding: 15px 2px 15px 3px;
  }
}
@media (max-width: 600px) {
  .tarjeta-producto-pagos .discount {
    padding: 12px 3px 12px;
  }
}
@media (max-width: 400px) {
  .tarjeta-producto-pagos .discount {
    padding: 12px 1px 12px;
  }
}
@media (max-width: 330px) {
  .tarjeta-producto-pagos .discount {
    padding: 11px 1px 11px;
  }
}
