/**
 * Delivered price block.
 *
 * Three rows, aligned on the figures, with the delivered price given the
 * weight - it is the number the buyer came for.
 */

.spartan-dp {
	margin: 14px 0 18px;
	padding: 14px 16px;
	border: 1px solid var(--global-gray-400, #dfe3e8);
	border-radius: 6px;
	background: var(--global-palette9, #fff);
	max-width: 420px;
}

.spartan-dp__rows {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.spartan-dp__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
}

.spartan-dp__row dt {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--global-palette5, #55606b);
}

.spartan-dp__row dd {
	margin: 0;
	font-size: 14px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.spartan-dp__qty {
	color: var(--global-palette6, #7b858f);
}

.spartan-dp__row--total {
	margin-top: 4px;
	padding-top: 8px;
	border-top: 1px solid var(--global-gray-400, #dfe3e8);
}

.spartan-dp__row--total dt {
	font-weight: 700;
	font-size: 15px;
	color: var(--global-palette3, #1e2a35);
}

.spartan-dp__row--total dd {
	font-weight: 700;
	font-size: 19px;
	color: var(--global-palette1, #0e2a47);
}

.spartan-dp__ship.is-free {
	font-weight: 700;
	letter-spacing: .03em;
	color: #1f6b45;
}

.spartan-dp__note {
	margin: 10px 0 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--global-palette6, #7b858f);
}

.spartan-dp__prompt {
	margin: 0;
	font-size: 14px;
	color: var(--global-palette5, #55606b);
}

@media (max-width: 480px) {
	.spartan-dp {
		max-width: none;
	}
}
