.woocommerce .quantity .qty {
	padding-left: 5px;
	padding-right: 0;
	@include border-radius(0px);
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px;
	width: 5em;
	line-height: 3.45;
}

.woocommerce div.product form.cart div.quantity,
.product-quantity div.quantity {
	margin: 0;
	.quantity-inner {
		width: 74px;
		margin-left: auto;
		margin-right: 10px;
		padding-right: 25px;
		position: relative;
		.qty {
			width: 100%;
			padding-left: 0;
			padding-right: 0;
			text-align: center;
			margin-bottom: 0;
		}
		.btn-number {
			position: absolute;
			width: 25px;
			border: 1px solid #f2f2f2;
			border-left-width: 0;
			padding: 0;
			right: 0;
			background-color: transparent;
			display: block;
			font-size: 14px;
			color: var(--g5-text-color);
			@include border-radius(0px);
			&:hover {
				background-color: #eee;
				color: var(--g5-text-color-light);
			}
		}
		.btn-number[data-type="minus"] {
			height: 24px;
			line-height: 23px;
			border-top: 0;
			bottom: 0;
			-webkit-border-bottom-right-radius: 4px;
			-moz-border-radius-bottomright: 4px;
			border-bottom-right-radius: 4px;

		}

		.btn-number[data-type="plus"] {
			height: 26px;
			line-height: 24px;
			top: 0;
			-webkit-border-top-right-radius: 4px;
			-moz-border-radius-topright: 4px;
			border-top-right-radius: 4px;
		}
	}
}