.cqe-order-summary-modify-target {
	border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.checkout-quantity-editor {
	padding: 0;
	background: transparent;
}

.checkout-quantity-editor__toggle-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 16px;
}

.checkout-quantity-editor__toggle {
	appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	color: currentColor;
	font: inherit;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.checkout-quantity-editor__toggle:hover {
	text-decoration-thickness: 2px;
}

.checkout-quantity-editor__toggle:focus-visible,
.checkout-quantity-editor__quantity-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.checkout-quantity-editor__panel {
	padding: 0 16px 12px;
}

.checkout-quantity-editor__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
	padding: 4px 0;
}

.checkout-quantity-editor__name {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.92em;
}

.checkout-quantity-editor__controls {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	flex: 0 0 auto;
}

.checkout-quantity-editor__quantity-button {
	appearance: none;
	box-sizing: border-box;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(18, 18, 18, 0.45);
	border-radius: 3px;
	background: transparent;
	color: currentColor;
	font: inherit;
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
}

.checkout-quantity-editor__quantity-button:hover:not(:disabled) {
	background: rgba(18, 18, 18, 0.05);
}

.checkout-quantity-editor__quantity-button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.checkout-quantity-editor__quantity {
	min-width: 22px;
	text-align: center;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}

@media (max-width: 480px) {
	.checkout-quantity-editor__toggle-row,
	.checkout-quantity-editor__panel {
		padding-left: 12px;
		padding-right: 12px;
	}

	.checkout-quantity-editor__item {
		gap: 10px;
	}
}
