.number {
	display: inline-block;
	position: relative;
	width: 90%;
}
.number input[type="number"] {
	border-radius: 5px;
	border: 2px;
	font-size: 16px;
	display: block;
	height: 100%;
	line-height: 32px;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 10px;
	padding-top: 16px;
	padding-bottom: 16px;
	box-sizing: border-box;
	text-align: center;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
.number input[type="number"]::-webkit-outer-spin-button,
.number input[type="number"]::-webkit-inner-spin-button {
	display: none;
}
.number-minus {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 50px;
	padding: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	display: block;
	text-align: center;
	border: none;
	border-radius: 5px;
	border-right: 1px solid #ddd;
	font-size: 32px;
	font-weight: 600;
}
.number-plus {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 50px;
	padding: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	display: block;
	text-align: center;
	border: none;
	border-radius: 5px;
	border-left: 1px solid #ddd;
	font-size: 32px;
	font-weight: 600;
}
