[data-quantity] {
  position: relative;
  width: 100%;
  max-width: 130px;
  min-width: 95px;
  padding: 0;
  margin: 0;
  border: 0;
  touch-action: manipulation;
}

[data-quantity] legend {
  display: none;
}
[data-quantity] input:focus {
  outline: none;
  box-shadow: none; /* Allows border radius on focus */
}

[data-quantity] input {
  font-size: 14px;
  height: 40px;
  border: 0 !important;
  background: #fff;
  text-align: center;
  width: 100%;
}

[data-quantity] input[type=number]::-webkit-inner-spin-button,
[data-quantity] input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[data-quantity] input[type=number] {
  -moz-appearance: textfield;
}

[data-quantity] button {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 3px;
  display: block;
  margin:0;
  border: 0;
  background-color: #c8b095;
  color: #fff;
  white-space: nowrap;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.15s;
}


[data-quantity] button:focus {
  outline: none;
}

[data-quantity] button:hover {
  opacity: 1;
}

[data-quantity] button.sub {
  left: 5px;
}

[data-quantity] button.add {
  right: 5px;
}
