.dst-reward-simulator {
	--dst-reward-bg: #f8f4f0;
	--dst-reward-text: #1a1112;
	--dst-reward-muted: rgba(26, 17, 18, 0.64);
	--dst-reward-accent: #8f0f1d;
	--dst-reward-border: rgba(26, 17, 18, 0.12);
	--dst-reward-track: rgba(26, 17, 18, 0.16);
	--dst-reward-track-active: #8f0f1d;
	--dst-reward-thumb: #8f0f1d;
	--dst-reward-thumb-size: 28px;
	--dst-reward-padding: 32px 34px 30px;
	--dst-reward-radius: 8px;
	--dst-reward-progress: 0%;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	padding: var(--dst-reward-padding);
	border: 1px solid var(--dst-reward-border);
	border-radius: var(--dst-reward-radius);
	background: var(--dst-reward-bg);
	color: var(--dst-reward-text);
	box-sizing: border-box;
	letter-spacing: 0;
}

.dst-reward-simulator,
.dst-reward-simulator * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.dst-reward-simulator__header {
	display: grid;
	gap: 8px;
	margin: 0 0 24px;
}

.dst-reward-simulator__eyebrow,
.dst-reward-simulator__title {
	margin: 0;
}

.dst-reward-simulator__eyebrow {
	color: var(--dst-reward-accent);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.dst-reward-simulator__title {
	color: var(--dst-reward-text);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

.dst-reward-simulator__reward {
	display: grid;
	gap: 8px;
	margin-bottom: 30px;
}

.dst-reward-simulator__reward-label,
.dst-reward-simulator__tier-caption {
	color: var(--dst-reward-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.dst-reward-simulator__reward-line {
	display: grid;
	width: 100%;
	min-width: 0;
}

.dst-reward-simulator__reward-state {
	grid-area: 1 / 1;
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 0.28em;
	min-width: 0;
	visibility: hidden;
}

.dst-reward-simulator__reward-state.is-active {
	visibility: visible;
}

.dst-reward-simulator__amount {
	flex: 0 0 auto;
	color: var(--dst-reward-accent);
	font-size: 72px;
	font-weight: 900;
	line-height: 0.95;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.dst-reward-simulator__reward-suffix {
	display: inline-flex;
	flex: 0 1 auto;
	align-items: baseline;
	gap: 0.3em;
	min-width: 0;
	white-space: nowrap;
}

.dst-reward-simulator__reward-slash {
	flex: 0 0 auto;
	color: var(--dst-reward-muted);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.dst-reward-simulator__reward-detail {
	min-width: 0;
	color: var(--dst-reward-text);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.dst-reward-simulator__included {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	min-height: 30px;
	padding: 7px 10px;
	border: 1px solid rgba(143, 15, 29, 0.2);
	border-radius: 8px;
	background: rgba(143, 15, 29, 0.08);
	color: var(--dst-reward-accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.dst-reward-simulator__tier-caption {
	margin: 0 0 12px;
	color: var(--dst-reward-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.dst-reward-simulator__control {
	position: relative;
	padding: 0 0 8px;
}

.dst-reward-simulator__range {
	display: block;
	width: 100%;
	height: var(--dst-reward-thumb-size);
	margin: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.dst-reward-simulator__range:disabled {
	cursor: default;
	opacity: 0.75;
}

.dst-reward-simulator__range:focus {
	outline: none;
}

.dst-reward-simulator__range:focus-visible {
	outline: 2px solid var(--dst-reward-accent);
	outline-offset: 8px;
}

.dst-reward-simulator__range::-webkit-slider-runnable-track {
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		var(--dst-reward-track-active) 0%,
		var(--dst-reward-track-active) var(--dst-reward-progress),
		var(--dst-reward-track) var(--dst-reward-progress),
		var(--dst-reward-track) 100%
	);
}

.dst-reward-simulator__range::-moz-range-track {
	height: 8px;
	border-radius: 999px;
	background: var(--dst-reward-track);
}

.dst-reward-simulator__range::-moz-range-progress {
	height: 8px;
	border-radius: 999px;
	background: var(--dst-reward-track-active);
}

.dst-reward-simulator__range::-webkit-slider-thumb {
	width: var(--dst-reward-thumb-size);
	height: var(--dst-reward-thumb-size);
	margin-top: calc((8px - var(--dst-reward-thumb-size)) / 2);
	border: 3px solid var(--dst-reward-bg);
	border-radius: 50%;
	background: var(--dst-reward-thumb);
	box-shadow: 0 4px 14px rgba(26, 17, 18, 0.22);
	-webkit-appearance: none;
	appearance: none;
}

.dst-reward-simulator__range::-moz-range-thumb {
	width: var(--dst-reward-thumb-size);
	height: var(--dst-reward-thumb-size);
	border: 3px solid var(--dst-reward-bg);
	border-radius: 50%;
	background: var(--dst-reward-thumb);
	box-shadow: 0 4px 14px rgba(26, 17, 18, 0.22);
}

.dst-reward-simulator__tier-track {
	display: grid;
	width: 100%;
	min-width: 0;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--dst-reward-border);
}

.dst-reward-simulator__tier-value {
	grid-area: 1 / 1;
	justify-self: start;
	align-self: start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	color: var(--dst-reward-text);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.15;
	text-align: left;
	white-space: normal;
	overflow-wrap: anywhere;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	visibility: hidden;
}

.dst-reward-simulator__tier-value.is-active {
	visibility: visible;
}

@media (max-width: 767px) {
	.dst-reward-simulator {
		--dst-reward-padding: 26px 20px 24px;
	}

	.dst-reward-simulator__title {
		font-size: 28px;
	}

	.dst-reward-simulator__amount {
		font-size: 54px;
	}

	.dst-reward-simulator__reward-slash {
		font-size: 18px;
	}

	.dst-reward-simulator__reward-detail {
		font-size: 12px;
	}

	.dst-reward-simulator__control {
		padding-bottom: 4px;
	}

	.dst-reward-simulator__tier-value {
		font-size: 18px;
	}
}
