.spinner {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 30px;
}
#product_qty {
    width: 70px;
    height: 30px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 30px;
    background: #8B5B5B;
    cursor: not-allowed;
}
.select_number span.spinner>.sub,
.select_number span.spinner>.add {
	float: left;
	display: block;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	color: #fff;
	background: #6B4F4E;
	cursor: pointer;
	transition: all linear .3s;
	border-radius: 50%;
	border: 1px solid #8B5B5B;
	font-size: 20px;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s;
}

.select_number span.spinner>.sub:hover,
.select_number span.spinner>.add:hover {
	background: #8B5B5B;
	border-color: #8B5B5B;
}

.select_number .number_area::-webkit-inner-spin-button,
.select_number .number_area::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
/* Remove arrows for Chrome, Safari, and Edge */
#product_qty::-webkit-outer-spin-button,
#product_qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


