.woocommerce .quantity {
	display: flex;
    background: var(--gray)
}

.woocommerce .quantity button,
.woocommerce .quantity input {
    background: none;
	border: none;
	outline: none;
	cursor: pointer;
}

.woocommerce .quantity .qty {
	height: 100%;
	text-align: center;
	width: 3em
}

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

.woocommerce .quantity button {
	position: relative;
}

.woocommerce .quantity button:disabled {
	opacity: .25;
	cursor: not-allowed;
}

.woocommerce .quantity button::before,
.woocommerce .quantity button::after {
	content: '';
	position: absolute;
	left: .5em;
    right: .5em;
    border-top: .08em solid;
	top: 50%
}

.woocommerce .quantity button[data-adjust="plus"]::after {
	transform: rotate(90deg);
}


@media (min-width: 767px) {
	.woocommerce .col2-set {
		display: flex;
	}

	.woocommerce .col2-set .col-1,
	.woocommerce .col2-set .col-2 {
		width: 50%
	}

	.woocommerce .col2-set .col-1 {
		padding-right: 2em;
	}

	.woocommerce .col2-set .col-2 {
		padding-left: 2em;
	}
}