/**
 * Quantity selection
 */
.numbler {
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media only screen and (min-width : 601px) {
  .numbler {
    display: flex;
  }
}
@media only screen and (min-width : 601px) {
  .numbler[data-label] .title {
    flex-grow: 1;
  }
}
.numbler .title {
  display: flex;
  flex-direction: column;
}
.numbler .title .label {
  font-size: 1.2em;
  font-weight: bold;
}
.numbler [data-label] .controls {
  width: auto;
}
.numbler .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 1em;
}
.numbler .controls button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbler .controls button:disabled {
  cursor: no-drop;
}
.numbler .controls .number {
  font-weight: 900;
  font-size: larger;
}/*# sourceMappingURL=numbler.css.map */