.discounts {
  font-size: var(--font-size-xs);
}

.discounts__discount {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1-5);
  line-height: var(--line-height-normal);
}

.discounts__discount svg {
  color: var(--color-primary);
}

.discounts__discount--position {
  justify-content: center;
}

@media screen and (min-width: 750px) {
  .discounts__discount--position {
    justify-content: flex-end;
  }
}

.discounts__discount > .icon {
  color: rgb(var(--color-foreground));
  width: var(--space-3);
  height: var(--space-3);
  margin: 0;
  flex-shrink: 0;
}
