.ProductListTopSeller {
  padding-top: calc(2 * var(--spaceSm));
  margin-bottom: var(--spaceLg);
  border-bottom: 1px solid var(--colorOutlines);
  border-top: 1px solid var(--colorOutlines);
  grid-area: productListTopSeller;
}

.ProductListTopSeller-title {
  font-size: var(--textMd);
  font-weight: 600;
  margin-bottom: var(--spaceMd);
}

.ProductListTopSeller-collapsed {
  overflow: hidden;
  max-height: 5em;
  transition: var(--animationBase);
  position: relative;
}

.ProductListTopSeller-collapsed::before {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 22%, rgba(255, 255, 255, 0.92) 76%, rgba(255, 255, 255, 0) 100%);
  height: 6.25em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
}

.ProductListTopSeller-collapsed.is-opened {
  max-height: 2000px;
}

.ProductListTopSeller-collapsed.is-opened.is-opened::before {
  opacity: 0;
}

.ProductListTopSeller.is-opened {
  max-height: 2000px;
}

.ProductListTopSeller.is-opened .ProductListTopSeller::before {
  display: none;
}

.ProductListTopSeller-more {
  text-align: center;
  margin-top: calc((var(--spaceSm) * -1) - 1px);
  position: relative;
  z-index: 2;
  margin-bottom: var(--spaceSm);
}

/*# sourceMappingURL=product-list-top-seller.min.css.map */
