
/* Hide by name attribute */
select[name="quantity"] {
    display: none !important;
}

/* Hide the parent container too */
select[name="quantity"]:parent,
.quantity:has(select[name="quantity"]) {
    display: none !important;
}