/* DonasiKu — front-end. Warna One Ummah: primary #308A00, accent #40AF03, dark #1A4D2E. */

.dku-scope,
.dku-app {
	--dku-primary: #308a00;
	--dku-accent: #40af03;
	--dku-dark: #1a4d2e;
	--dku-cream: #f7f3ec;
	--dku-line: #eee7da;
	--dku-text: #26262b;
	--dku-muted: #7c7c85;
	--dku-radius: 16px;
	font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--dku-text);
	box-sizing: border-box;
}

.dku-scope *,
.dku-app * {
	box-sizing: inherit;
}

/* ===== Grid kartu campaign (shortcode) ===== */

.dku-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
}

.dku-card-c {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--dku-radius);
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(26, 77, 46, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dku-card-c:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(26, 77, 46, 0.14);
	color: inherit;
}

.dku-card-cover {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--dku-cream);
}

.dku-card-cover img,
.dku-card-cover-empty {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dku-card-cover-empty {
	background: linear-gradient(135deg, var(--dku-cream), #ece4d3);
}

.dku-card-badge {
	position: absolute;
	left: 10px;
	top: 10px;
	background: var(--dku-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	line-height: 1.4;
}

.dku-card-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.dku-card-title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--dku-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dku-card-meta {
	display: flex;
	align-items: flex-end;
	gap: 12px;
	margin-top: auto;
}

.dku-card-meta .dku-label {
	display: block;
	font-size: 11px;
	color: var(--dku-muted);
}

.dku-card-collected strong {
	color: var(--dku-primary);
	font-size: 14px;
}

.dku-card-donors {
	margin-left: auto;
	text-align: right;
}

.dku-card-donors strong,
.dku-card-pct strong {
	font-size: 14px;
	color: var(--dku-dark);
}

.dku-empty {
	color: var(--dku-muted);
}

/* ===== Progress bar (bersama) ===== */

.dku-bar {
	height: 8px;
	background: var(--dku-line);
	border-radius: 999px;
	overflow: hidden;
}

.dku-bar-fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--dku-primary), var(--dku-accent));
	min-width: 4px;
}

.dku-progress-widget {
	max-width: 420px;
}

.dku-progress-widget .dku-progress-meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 6px;
}

.dku-progress-widget .dku-collected {
	font-weight: 800;
	color: var(--dku-primary);
	font-size: 18px;
}

.dku-progress-widget .dku-percent {
	font-weight: 700;
	color: var(--dku-dark);
	font-size: 13px;
}

.dku-progress-widget .dku-progress-sub {
	margin-top: 6px;
	font-size: 12px;
	color: var(--dku-muted);
}

/* ===== Tombol pill ===== */

.dku-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	padding: 13px 24px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1.2;
	transition: filter 0.15s ease;
}

/* Warna teks tombol dipaksa (semua state link) agar tak ketimpa warna link
   tema saat tombol dirender sebagai <a>. */
.dku-btn-primary,
.dku-btn-primary:link,
.dku-btn-primary:visited,
.dku-btn-primary:hover,
.dku-btn-primary:focus,
.dku-btn-primary:active {
	color: #fff !important;
}

.dku-btn-primary {
	background: var(--dku-primary);
}

.dku-btn-primary:hover {
	filter: brightness(1.08);
}

.dku-btn-outline,
.dku-btn-outline:link,
.dku-btn-outline:visited,
.dku-btn-outline:hover,
.dku-btn-outline:focus,
.dku-btn-outline:active {
	color: var(--dku-primary) !important;
}

.dku-btn-outline {
	background: #fff;
	border-color: var(--dku-primary);
}

.dku-btn-outline:hover {
	background: #f2f9ee;
}

/* ===== Halaman detail campaign (app mandiri) ===== */

.dku-app {
	margin: 0;
	background: var(--dku-cream);
	min-height: 100vh;
}

.dku-app-col {
	max-width: 500px;
	margin: 0 auto;
	background: #fff;
	min-height: 100vh;
	box-shadow: 0 0 30px rgba(26, 77, 46, 0.08);
	padding-bottom: 96px; /* ruang sticky bar */
}

.dku-hero {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--dku-cream);
}

.dku-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	inset: 0;
}

.dku-hero-btn {
	position: absolute;
	top: 14px;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--dku-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 18px;
	border: 0;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dku-hero-back {
	left: 14px;
}

.dku-hero-share {
	right: 14px;
}

.dku-section {
	padding: 16px 20px;
	border-bottom: 8px solid var(--dku-cream);
}

.dku-section:last-of-type {
	border-bottom: 0;
}

.dku-section h1 {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 8px;
	color: var(--dku-text);
}

.dku-section h2 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--dku-text);
}

.dku-short-desc {
	color: var(--dku-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Blok progres */
.dku-progress-block .dku-collected-line {
	font-size: 14px;
	color: var(--dku-muted);
	margin-bottom: 8px;
}

.dku-progress-block .dku-collected-line strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--dku-primary);
}

.dku-progress-stats {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.dku-stat-chip {
	background: var(--dku-cream);
	border-radius: 12px;
	padding: 8px 14px;
	font-size: 12px;
	color: var(--dku-muted);
}

.dku-stat-chip strong {
	display: block;
	font-size: 14px;
	color: var(--dku-dark);
}

/* Rincian alokasi dana */
.dku-alloc-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--dku-line);
	font-size: 14px;
}

.dku-alloc-row:last-child {
	border-bottom: 0;
}

.dku-alloc-row strong {
	color: var(--dku-dark);
	white-space: nowrap;
}

/* Info lembaga */
.dku-org {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dku-org-logo,
.dku-org-logo img {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	object-fit: cover;
	display: block;
	background: var(--dku-cream);
}

.dku-org-name {
	font-weight: 700;
	font-size: 14px;
}

.dku-org-verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--dku-primary);
	font-size: 12px;
	font-weight: 600;
}

.dku-org-desc {
	margin-top: 10px;
	font-size: 13px;
	color: var(--dku-muted);
	line-height: 1.6;
}

/* Cerita (expandable) */
.dku-story {
	font-size: 14px;
	line-height: 1.7;
	overflow: hidden;
	position: relative;
}

.dku-story img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.dku-story.dku-collapsed {
	max-height: 220px;
}

.dku-story.dku-collapsed::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70px;
	background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.dku-expand-btn {
	display: block;
	width: 100%;
	margin-top: 10px;
	background: none;
	border: 0;
	color: var(--dku-primary);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
}

/* Preview paket */
.dku-pkg-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dku-pkg-card {
	display: flex;
	gap: 12px;
	border: 1px solid var(--dku-line);
	border-radius: var(--dku-radius);
	padding: 12px;
	align-items: center;
}

.dku-pkg-img,
.dku-pkg-img img {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	object-fit: cover;
	display: block;
	background: var(--dku-cream);
	flex-shrink: 0;
}

.dku-pkg-info {
	flex: 1;
	min-width: 0;
}

.dku-pkg-title {
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 2px;
}

.dku-pkg-sub {
	font-size: 12px;
	color: var(--dku-muted);
	margin: 0;
}

.dku-pkg-price {
	font-weight: 800;
	color: var(--dku-primary);
	font-size: 14px;
	white-space: nowrap;
}

/* Preset nominal (preview) */
.dku-preset-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.dku-preset-chip {
	border: 1px solid var(--dku-line);
	border-radius: 12px;
	padding: 10px 6px;
	text-align: center;
	font-weight: 700;
	font-size: 13px;
	color: var(--dku-dark);
	background: #fff;
}

/* Sticky bottom bar */
.dku-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	pointer-events: none;
}

.dku-sticky-inner {
	max-width: 500px;
	margin: 0 auto;
	background: #fff;
	border-top: 1px solid var(--dku-line);
	padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
	display: flex;
	gap: 10px;
	pointer-events: auto;
}

.dku-sticky-inner .dku-btn {
	flex: 1;
}

@media (max-width: 540px) {
	.dku-app-col,
	.dku-sticky-inner {
		max-width: 100%;
	}
}

/* ===== Form donasi ===== */

.dku-hidden-el {
	display: none !important;
}

.dku-donate-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--dku-line);
}

.dku-donate-kicker {
	font-size: 12px;
	color: var(--dku-muted);
}

.dku-donate-title {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.35;
}

.dku-notice {
	margin: 14px 20px 0;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 13px;
}

.dku-notice-error {
	background: #fdecec;
	color: #a12626;
	border: 1px solid #f5c6c6;
}

.dku-chip-btn {
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.dku-chip-btn:hover {
	border-color: var(--dku-accent);
}

.dku-chip-active {
	border-color: var(--dku-primary) !important;
	background: #f2f9ee !important;
	color: var(--dku-primary) !important;
}

.dku-custom-amount {
	margin-top: 16px;
}

.dku-amount-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--dku-line);
	border-radius: 12px;
	padding: 4px 14px;
	font-weight: 700;
}

.dku-amount-wrap input {
	border: 0;
	outline: none;
	flex: 1;
	padding: 10px 0;
	font-size: 16px;
	font-weight: 700;
	font-family: inherit;
	background: transparent;
}

.dku-hint {
	font-size: 12px;
	color: var(--dku-muted);
	margin: 6px 0 0;
}

.dku-quote {
	margin: 18px 0 0;
	padding: 14px 16px;
	background: var(--dku-cream);
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--dku-dark);
	font-style: italic;
}

.dku-pkg-select {
	cursor: pointer;
	position: relative;
	transition: border-color 0.15s ease;
}

.dku-pkg-select input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dku-pkg-active {
	border-color: var(--dku-primary) !important;
	background: #f2f9ee;
}

.dku-soldout {
	opacity: 0.5;
	cursor: not-allowed;
}

.dku-qty-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
}

.dku-qty-label {
	font-weight: 600;
	font-size: 14px;
}

.dku-qty-stepper {
	display: flex;
	align-items: center;
	gap: 4px;
}

.dku-qty-btn {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid var(--dku-line);
	background: #fff;
	font-size: 18px;
	cursor: pointer;
	color: var(--dku-primary);
	font-weight: 700;
}

.dku-qty-stepper input {
	width: 56px;
	text-align: center;
	border: 0;
	font-size: 16px;
	font-weight: 700;
	font-family: inherit;
	background: transparent;
}

.dku-step-error {
	color: #a12626;
	font-size: 13px;
	margin: 12px 0 0;
}

.dku-btn-block {
	display: flex;
	width: 100%;
	margin-top: 14px;
}

.dku-field {
	margin-top: 14px;
}

.dku-field label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
}

.dku-field input,
.dku-field textarea {
	width: 100%;
	border: 1px solid var(--dku-line);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
}

.dku-field input:focus,
.dku-field textarea:focus {
	border-color: var(--dku-accent);
}

.dku-check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-top: 14px;
	font-size: 13px;
	line-height: 1.5;
	cursor: pointer;
}

.dku-check input {
	margin-top: 2px;
}

.dku-total-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--dku-cream);
	border-radius: 12px;
	padding: 14px 16px;
	font-size: 14px;
}

.dku-total-bar strong {
	color: var(--dku-primary);
	font-size: 18px;
	font-weight: 800;
}

.dku-pay-card {
	border: 1px solid var(--dku-primary);
	background: #f2f9ee;
	border-radius: 12px;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 13px;
}

.dku-pay-card span {
	color: var(--dku-muted);
	font-size: 12px;
}

/* Multi-gateway selector */
.dku-gw-card {
	display: flex;
	align-items: center;
	gap: 12px;
	border-color: var(--dku-line);
	background: #fff;
	margin-top: 10px;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.dku-gw-card input[type="radio"] {
	flex-shrink: 0;
	accent-color: var(--dku-primary);
}

.dku-gw-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dku-gw-active {
	border-color: var(--dku-primary);
	background: #f2f9ee;
}

.dku-gw-channels {
	margin: 8px 0 0 12px;
	border-left: 3px solid var(--dku-line);
	padding-left: 12px;
}

.dku-channel-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 4px;
	font-size: 13px;
	cursor: pointer;
	border-bottom: 1px dashed var(--dku-line);
}

.dku-channel-row:last-child {
	border-bottom: 0;
}

.dku-channel-row input {
	accent-color: var(--dku-primary);
}

.dku-channel-row em {
	margin-left: auto;
	color: var(--dku-muted);
	font-size: 11px;
	font-style: normal;
}

/* ===== Halaman terima kasih ===== */

.dku-thanks-panel {
	text-align: center;
	padding-top: 32px;
}

.dku-status-icon {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin: 0 auto 14px;
	color: #fff;
}

.dku-status-paid {
	background: var(--dku-primary);
}

.dku-status-pending {
	background: #d99a06;
}

.dku-status-failed {
	background: #c0392b;
}

#dku-thanks-actions .dku-btn-block {
	margin-top: 10px;
}

#dku-thanks-actions .dku-expand-btn {
	display: block;
	text-align: center;
	text-decoration: none;
	margin-top: 14px;
}

/* ===== Instruksi bayar on-page (Sprint 2.5) ===== */

.dku-payinstr-title {
	margin: 0 0 10px;
	font-size: 18px;
	color: var(--dku-dark);
}

.dku-pay-expire {
	margin: 0 0 14px;
	font-size: 13px;
	color: var(--dku-muted);
}

.dku-countdown-left {
	color: #b45309;
	font-weight: 600;
}

.dku-va-card {
	border: 1px solid var(--dku-line);
	border-radius: var(--dku-radius);
	padding: 14px 16px;
	background: #fff;
}

.dku-va-bank {
	font-size: 13px;
	color: var(--dku-muted);
	margin-bottom: 6px;
}

.dku-va-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dku-va-number {
	font-size: 22px;
	letter-spacing: 1px;
	font-variant-numeric: tabular-nums;
	color: var(--dku-dark);
	word-break: break-all;
}

.dku-btn-copy {
	flex: 0 0 auto;
	border: 1px solid var(--dku-primary);
	background: #fff;
	color: var(--dku-primary);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

.dku-btn-copy.dku-copied {
	background: var(--dku-primary);
	color: #fff;
}

.dku-qris-card {
	text-align: center;
}

.dku-qris-img {
	display: inline-block;
	width: 240px;
	max-width: 100%;
	height: auto;
	border: 1px solid var(--dku-line);
	border-radius: 12px;
	padding: 8px;
	background: #fff;
}

.dku-pay-howto {
	margin-top: 14px;
}

.dku-pay-howto h3 {
	font-size: 14px;
	margin: 0 0 8px;
	color: var(--dku-dark);
}

.dku-howto {
	border: 1px solid var(--dku-line);
	border-radius: 10px;
	margin-bottom: 8px;
	background: #fff;
}

.dku-howto summary {
	cursor: pointer;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dku-text);
}

.dku-howto ol {
	margin: 0;
	padding: 0 16px 12px 32px;
	font-size: 13px;
	color: var(--dku-text);
}

.dku-howto li {
	margin-bottom: 4px;
}

.dku-pay-fallback {
	margin: 12px 0 0;
	font-size: 13px;
	text-align: center;
}

.dku-pay-fallback a {
	color: var(--dku-muted);
	text-decoration: underline;
}

.dku-snap-embed {
	min-height: 420px;
	border: 1px solid var(--dku-line);
	border-radius: var(--dku-radius);
	overflow: hidden;
	background: #fff;
}

/* ===== Chip sapaan (checkout, Sprint 3a) ===== */

.dku-sapaan-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dku-sapaan-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dku-sapaan-chip span {
	display: inline-block;
	padding: 7px 16px;
	border: 1px solid var(--dku-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--dku-text);
	background: #fff;
	cursor: pointer;
	user-select: none;
}

.dku-sapaan-chip input:checked + span {
	background: var(--dku-primary);
	border-color: var(--dku-primary);
	color: #fff;
}

/* ===================== Fundraiser — halaman auth (Sprint 5a) ===================== */
.dku-auth {
	padding-top: 32px;
	padding-bottom: 40px;
}
.dku-auth-head {
	margin-bottom: 18px;
}
.dku-auth-sub {
	color: var(--dku-muted);
	margin: 8px 0 0;
	line-height: 1.55;
}
.dku-auth-form .dku-field {
	margin-bottom: 14px;
}
.dku-auth-alt {
	text-align: center;
	color: var(--dku-muted);
	margin-top: 18px;
}
.dku-auth-alt a {
	color: var(--dku-primary);
	font-weight: 600;
	text-decoration: none;
}
.dku-auth-alt a:hover {
	text-decoration: underline;
}
.dku-auth-center {
	text-align: center;
}
.dku-auth-icon {
	font-size: 44px;
	line-height: 1;
	margin-bottom: 8px;
}

/* Fundraiser dashboard (Sprint 5a) */
.dku-fr-code-box {
	background: linear-gradient(135deg, var(--dku-primary), var(--dku-accent));
	color: #fff;
	border-radius: var(--dku-radius);
	padding: 20px;
	text-align: center;
	margin-bottom: 18px;
}
.dku-fr-code-label {
	font-size: 13px;
	opacity: .9;
	margin-bottom: 6px;
}
.dku-fr-code {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 3px;
}
.dku-fr-placeholder {
	background: var(--dku-cream);
	border: 1px dashed var(--dku-line);
	border-radius: var(--dku-radius);
	padding: 20px;
	text-align: center;
	color: var(--dku-muted);
}
.dku-fr-placeholder h2 {
	margin: 0 0 6px;
	color: var(--dku-dark);
	font-size: 17px;
}
.dku-fr-placeholder p {
	margin: 0;
	line-height: 1.55;
}

/* Fundraiser dashboard — link referral + statistik (Sprint 5b) */
.dku-fr-link {
	margin-bottom: 18px;
}
.dku-fr-link > label {
	display: block;
	font-weight: 600;
	color: var(--dku-dark);
	margin-bottom: 6px;
}
.dku-fr-link-row {
	display: flex;
	gap: 8px;
}
.dku-fr-link-row input {
	flex: 1;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid var(--dku-line);
	border-radius: 12px;
	background: var(--dku-cream);
	font-size: 14px;
	color: var(--dku-text);
}
.dku-fr-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 22px;
}
.dku-fr-stat {
	background: var(--dku-cream);
	border: 1px solid var(--dku-line);
	border-radius: var(--dku-radius);
	padding: 16px 12px;
	text-align: center;
}
.dku-fr-stat-num {
	font-size: 20px;
	font-weight: 800;
	color: var(--dku-dark);
	line-height: 1.2;
}
.dku-fr-stat-label {
	font-size: 12px;
	color: var(--dku-muted);
	margin-top: 4px;
}
.dku-fr-sub {
	font-size: 17px;
	color: var(--dku-dark);
	margin: 0 0 10px;
}
.dku-fr-table-wrap {
	overflow-x: auto;
}
.dku-fr-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.dku-fr-table th,
.dku-fr-table td {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1px solid var(--dku-line);
	white-space: nowrap;
}
.dku-fr-table th {
	color: var(--dku-muted);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.dku-fr-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	background: #eee;
	color: #555;
	text-transform: capitalize;
}
.dku-fr-badge-paid {
	background: #e3f4d9;
	color: #1a7a2e;
}
.dku-fr-badge-pending {
	background: #fdf1d6;
	color: #9a6a00;
}
.dku-fr-badge-expired,
.dku-fr-badge-failed {
	background: #f7dcdc;
	color: #b32d2e;
}
@media (max-width: 480px) {
	.dku-fr-stats {
		grid-template-columns: 1fr;
	}
}
