
.number-picker {
  display: grid;
  grid-template-columns: 44px auto 44px;
}

.number-picker .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #34495e;
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  font-size: 30.8px;
  font-family: bonds, sans-serif;
  margin: 0;
}
.number-picker .button.disabled-pick {
  background: #999;
  color: #ccc;
  cursor: default;
}
.number-picker .button-minus {
  border-radius: 5px 0 0 5px;
}

.number-picker .button-plus {
  border-radius: 0 5px 5px 0;
}

.number-picker .picker input {
  text-align: center;
  margin: 0;
}
.number-picker .errorTxt {
  grid-column: 1 / -1;
}
