:root{ --qty-accent:#e8c28d; }

.quantity{
  display:inline-flex; align-items:stretch;
  border:1px solid black; border-radius:4px;
  overflow:hidden; height:38px; background:#fff;
}
.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.quantity input.qty{ -moz-appearance:textfield; }

.quantity input.qty{
  width:56px; min-width:56px; border:0; outline:0; padding:0;
  text-align:center; line-height:34px; font-size:15px; background:transparent;
}
.qty-btn{
  width:38px; min-width:38px; border:0; outline:0; background:#fff;
  cursor:pointer; font-size:18px; line-height:34px;
  display:inline-flex; align-items:center; justify-content:center; user-select:none;
}
.qty-btn--minus{ border-right:1px solid black;color:black!important }
.qty-btn--plus{ border-left:1px solid black; }

.qty-btn--minus:hover {
  background-color: var(--qty-accent);
}

.qty-btn--plus:hover {
  background-color: var(--qty-accent);
}



.shop_table .quantity{ height:32px; }
.shop_table .quantity input.qty{ line-height:32px; }
.shop_table .qty-btn{ line-height:32px; }

