/* TMWB - Quantity Plus/Minus */
.quantity {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
}

.quantity .qty {
  width: 64px;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tmwb-qty-btn {
  border: 0px;
  background: #FFF;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.quantity .qty {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  height: 40px;
}

.tmwb-qty-btn.tmwb-minus { border-right: none; border-radius: 6px 0 0 6px; }
.tmwb-qty-btn.tmwb-plus  { border-left: none;  border-radius: 0 6px 6px 0; }

.tmwb-qty-btn:active { transform: translateY(1px); }
