/* WooCommerce Shop Quantity Buttons */

.wcsqb-form {
	display: block;
	margin: 0 0 .75em;
}

.wcsqb-wrap {
	display: inline-flex;
	align-items: stretch;
	margin: 0 auto .6em;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	line-height: 1;
	vertical-align: middle;
}

.woocommerce ul.products li.product .wcsqb-wrap,
.wc-block-components-product-button .wcsqb-wrap {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.wcsqb-btn {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background: #f4f4f4;
	color: #222;
	width: 36px;
	min-width: 36px;
	height: 38px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	margin: 0;
	border-radius: 0;
	transition: background .15s ease;
}

.wcsqb-btn:hover,
.wcsqb-btn:focus {
	background: #e6e6e6;
	outline: none;
}

.wcsqb-btn[disabled] {
	opacity: .4;
	cursor: not-allowed;
}

.wcsqb-input {
	width: 48px;
	min-width: 48px;
	height: 38px;
	text-align: center;
	border: 0;
	border-left: 1px solid rgba(0, 0, 0, .12);
	border-right: 1px solid rgba(0, 0, 0, .12);
	background: #fff;
	color: #222;
	font-size: 15px;
	padding: 0;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
	-moz-appearance: textfield;
	appearance: textfield;
}

.wcsqb-input:focus {
	outline: none;
	box-shadow: none;
}

.wcsqb-input::-webkit-outer-spin-button,
.wcsqb-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Keep the layout centred inside product cards. */
.wcsqb-form,
.wc-block-components-product-button .wcsqb-wrap {
	text-align: center;
}

@media (max-width: 480px) {
	.wcsqb-btn {
		width: 32px;
		min-width: 32px;
		height: 34px;
	}

	.wcsqb-input {
		width: 42px;
		min-width: 42px;
		height: 34px;
	}
}
