.product-register-amount {
	display: flex;
	font-size: 16px;
	font-family: "Roboto", Sans-serif;
}

.product-register-amount button {
	line-height: 1;
	display: inline-block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	color: black;
	background: #294E79;
	border-color: #294E79;
	border-style: solid;
	border-width: 1px;
	border-radius: 0;
	transition: none;
	color: #fff;
}

.product-register-amount button.disabled {
	background-color: #b5b5b5;
	border-color: #b5b5b5;
}

.product-register-amount button.disabled:hover,
.product-register-amount button.disabled:focus {
	background: #b5b5b5;
	border-color: #b5b5b5;
}

.product-register-amount button:hover,
.product-register-amount button:focus {
	opacity: 0.8;
	background: #294E79;
	border-color: #294E79;
	outline: none;
}

.product-register-amount .minus {
	border-radius: 4px 0px 0px 4px;
}

.product-register-amount .plus {
	border-radius: 0px 4px 4px 0px;
}

.product-register-amount input {
	height: 32px !important;
	width: 45px;
	border-color: #294E79;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	border-radius: 0;
	border-left: none;
	border-right: none;
	font-size: 20px;
}

.product-register-amount input:focus {
	border-color: #294E79;
}

.product-register-amount input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

