#listedProducts {
  max-width: 60rem;
  width: 95%;
  margin: 0rem auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
  grid-auto-flow: dense;
  background-color: #ffffff;
}
#listedProducts > .item, #listedProducts > .spacer {
  display: block;
}
#listedProducts > .item.pickup, #listedProducts > .spacer.pickup {
  grid-area: span 2 / span 2;
}
#listedProducts > .item img, #listedProducts > .spacer img {
  display: block;
  width: 100%;
  height: auto;
}
#listedProducts > .cover {
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
}
#listedProducts > .cover > .picture > .img {
  display: block;
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=./style.css.map */