.gd-quantity-teaser {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 6px;
  width: fit-content;
  max-width: 100%;
  margin: 6px auto 0;
  padding: 4px 8px;
  color: var(--gd-qdt-text, #333333);
  background: var(--gd-qdt-background, #f0fbfd);
  border: 1px solid var(--gd-qdt-border, #82c8cc);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.15;
  white-space: normal;
}

.gd-quantity-teaser__label {
  color: var(--gd-qdt-text, #333333);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.gd-quantity-teaser__price {
  color: var(--gd-qdt-price, #009db8);
  font-size: 13px;
  font-weight: 700;
}

.gd-quantity-teaser__quantity {
  color: var(--gd-qdt-text, #333333);
  font-size: 10px;
  font-weight: 600;
}

.product-list .gd-quantity-teaser {
  justify-content: flex-start;
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 767px) {
  .gd-quantity-teaser {
    gap: 2px 4px;
    margin-top: 4px;
    padding: 3px 6px;
    border-radius: 4px;
    line-height: 1.1;
  }

  .gd-quantity-teaser__label {
    display: none;
  }

  .gd-quantity-teaser__price {
    font-size: 12px;
  }

  .gd-quantity-teaser__quantity {
    font-size: 9.5px;
  }
}

.gd-quantity-teaser__label:empty {
  display: none;
}
