How can I make the navigation for plus and minus invisible in a number input field?

input[type=number] {
  -moz-appearance: textfield;
}
::-webkit-inner-spin-button { 
	opacity: 0 !important;
	display: none !important;
}