.productos-grid {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(50%, max(15rem, 20%)), 1fr));
}
.productos-grid .producto {
  height: 30rem;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  border: solid 5px black;
  display: flex;
  flex-flow: column;
}
.productos-grid .producto h3 {
  background-color: black;
  color: white;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  padding: 0.5rem 0;
  height: 3rem;
}
.productos-grid .producto > .carousel-container {
  min-width: 100%;
  max-width: 100%;
  min-height: 15rem;
  max-height: 15rem;
  border-bottom: solid 1px gray;
}
.productos-grid .producto > .carousel-container > button {
  color: black;
  font-size: 3rem;
}
.productos-grid .producto > .carousel-container .carousel-item {
  padding: 0 0.5rem;
}
.productos-grid .producto p.nombre {
  width: 100%;
  height: 100%;
  font-size: 1.75rem;
  max-height: 100%;
  overflow: hidden;
  border-bottom: solid 1px gray;
  padding: 0.5rem;
}
.productos-grid .producto p.precio {
  height: 3rem;
  width: 100%;
  text-align: right;
  font-size: 2rem;
  padding: 0.5rem 0;
  padding-right: 0.5rem;
}/*# sourceMappingURL=productos.css.map */