.fizz-quantity-selector {
  background-color: $color-background-body;
  padding: $spacing-8;
  display: flex;
  align-items: center;
  width: 100%;
  border: $border-width-thin solid $color-border-default;
}

.fizz-quantity-selector .fizz-input-text {
  width: $spacing-32;
  height: $spacing-32;
  padding: 0;
  text-align: center;
  margin-right: $spacing-8;
}

.fizz-quantity-selector .fizz-label {
  font-size: $text-small-font-size;
  line-height: $text-small-line-height;
  flex: 1;
  margin-right: $spacing-16;
}

.fizz-quantity-selector .fizz-button {
  width: $spacing-32;
  height: $spacing-32;
  min-height: $spacing-32;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fizz-quantity-selector .fizz-button:first-of-type {
  margin-right: $spacing-4;
}

@media (min-width: $breakpoint-m) {
  .fizz-quantity-selector {
    max-width: 250px;
  }
}