div.quantity {
	display: inline-flex;
	vertical-align: top;
	white-space: nowrap;
}

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

div.quantity input[type="number"],
div.quantity input[type="text"],
div.quantity input[type="button"] {
	display: inline-block;
	color: #333;
	min-height: 42px;
	height: unset;
	border: 1px solid #ccc;
	background: #f8f8f8;
}

div.quantity input[type="number"] {
	width: 30px;
	border-radius: 0;
	border-right: none;
	border-left: none;
	text-align: center;
}

div.quantity input[type="text"] {
	width: 80px;
	text-align: center;
}

div.quantity input[type="button"] {
	padding: 0 10px;
	min-width: 30px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}

div.quantity input[type="button"]:hover {
	color: #fff;
	background-color: #996508;
	border-color: #996508;
}

div.quantity .minus {
	border-radius: 5px 0 0 5px;
}

div.quantity .plus {
	border-radius: 0 5px 5px 0;
}

div.quantity.hidden {
	display: none !important;
}
