.wc-qcb {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	position: relative;
	user-select: none;
}

.wc-qcb__btn {

       
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 50px;
	padding: 0 10px;
	border: none;
	background: transparent;
	color: inherit;
	line-height: 20px;
        font-size: 20px;
        cursor: pointer;
	transition: opacity 0.15s ease;
}

.wc-qcb__btn:hover {
	/* opacity: 0.8; */
}

.wc-qcb__btn--add {
	min-width: 50px;
	
}

.wc-qcb__input {
	width: 34px;
        height: 48px;
        padding: 0 8px;
	border: none;
	
	background: transparent;
	color: inherit;
	text-align: center;
	font: inherit;
	-moz-appearance: textfield;
}

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

.wc-qcb__spinner {
	position: absolute;
	right: 50px;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.wc-qcb.is-loading {
	pointer-events: none;
	opacity: 1;
}

.wc-qcb.is-loading .wc-qcb__spinner {
	opacity: 1;
	animation: wc-qcb-spin 0.7s linear infinite;
}

.wc-qcb--external .wc-qcb__external-link {
	display: inline-block;
	text-decoration: none;
}

.phw-product-price-group .wc-qcb__unavailable {
        min-width: 30px;
        height: 40px;
	opacity: 0.6;
	font-size: 0.9em;
}
.phw-product-price-group .added_to_cart{
    display: none!important;
}

@keyframes wc-qcb-spin {
	to { transform: rotate(360deg); }
}
