.rcw-price-table {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	border-radius: var(--rcpt-radius, 0);
	overflow: hidden;
	font-family: var(--rcw-font-body, inherit);
}

.rcw-price-table *,
.rcw-price-table *::before,
.rcw-price-table *::after {
	box-sizing: inherit;
}

.rcw-price-table__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--rcpt-pad-v, 14px) var(--rcpt-pad-h, 20px);
}

/* Odd rows default to the site background; even rows to a subtle tint.
   Both override-able via the colour pickers (--rcpt-odd / --rcpt-even). */
.rcw-price-table__row--odd {
	background: var(--rcpt-odd, var(--rcw-bg, #ffffff));
}

.rcw-price-table__row--even {
	background: var(--rcpt-even, rgba(0, 0, 0, 0.045));
}

.rcw-price-table__label {
	color: var(--rcpt-label, var(--rcw-text, #1a1a1a));
	font-size: var(--rcpt-fs, inherit);
	font-weight: var(--rcpt-fw, inherit);
}

.rcw-price-table__price {
	color: var(--rcpt-price, var(--rcw-text, #1a1a1a));
	font-size: var(--rcpt-fs, inherit);
	font-weight: var(--rcpt-price-fw, var(--rcpt-fw, 600));
	white-space: nowrap;
	margin-left: 24px;
}

@media (max-width: 690px) {
	.rcw-price-table__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.rcw-price-table__price {
		margin-left: 0;
	}
}
