/* Distributor Claims Process Block */
.dcp-block {
	box-sizing: border-box;
	font-family: 'Graphik';
	background: var(--dcp-page-bg, #f5f4f0);
	padding: 40px 24px;
	border-radius: 15px;
	margin-top: 30px;
}

.dcp-block *,
.dcp-block *::before,
.dcp-block *::after {
	box-sizing: border-box;
}

.dcp-page-title {
	text-align: center;
	font-size: var(--dcp-font-title, 22px);
	font-weight: 600;
	color: var(--dcp-text, #1a1a18);
	margin: 0 0 6px;
	font-family: 'Graphik-Semibold';
}

.dcp-page-sub {
	text-align: center;
	font-size: var(--dcp-font-subtitle, 13px);
	color: var(--dcp-subtext, #6b6b66);
	margin: 0 0 36px;
}

.dcp-flows {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.dcp-flow-panel {
	background: var(--dcp-panel-bg, #ffffff);
	border-radius: var(--dcp-radius-panel, 16px);
	border: 1px solid var(--dcp-border, #E2E8F0) !important;
	padding: 20px;
}

.dcp-flow-header {
	display: flex;
	align-items: center;
	border-radius: 10px;
	padding: 12px 14px;
	margin-bottom: 16px;
	background: var(--dcp-header-bg, #f5f4f0);
}

.dcp-flow-header-inner {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 8px;
}

.dcp-flow-header i,
.dcp-flow-header .dcp-icon--header {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dcp-flow-header .dcp-icon--header .dcp-icon__svg {
	width: 20px;
	height: 20px;
}

.dcp-flow-header-title {
	font-size: var(--dcp-font-panel-title, 15px);
	font-weight: 600;
	color: var(--dcp-accent, #1a1a18);
	font-family: 'Graphik-Medium';
	line-height: initial;
}

.dcp-speed-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	margin-left: auto;
	font-family: 'Graphik-Medium';
	line-height: initial;
}

.dcp-speed-badge .dcp-icon--badge {
	display: inline-flex;
}

.dcp-speed-badge .dcp-icon--badge .dcp-icon__svg {
	width: 12px;
	height: 12px;
}

.dcp-speed-badge--slow {
	background: transparent;
	color: #c0402a;
}

.dcp-speed-badge--fast {
	background: #eaf7f1;
	color: #0f7a52;
}

.dcp-step {
	background: var(--dcp-step-bg, #fafaf8);
	border: 1px solid #E2E8F0 !important;
	border-radius: var(--dcp-radius-step, 12px);
	padding: 12px 14px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.10), 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.dcp-step.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.dcp-step.is-active {
	border-left: 3px solid var(--dcp-accent, #888);
}

.dcp-step-icon-wrap {
	position: relative;
	flex-shrink: 0;
}

.dcp-pulse-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	animation: dcp-pulse-ring 1.2s ease-out infinite;
	opacity: 0;
	pointer-events: none;
}

.dcp-step.is-active .dcp-pulse-ring {
	background: color-mix(in srgb, var(--dcp-accent, #888) 25%, transparent);
	opacity: 1;
}

@keyframes dcp-pulse-ring {
	0% { transform: scale(1); opacity: 0.6; }
	100% { transform: scale(1.6); opacity: 0; }
}

.dcp-step-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.dcp-step-icon .dcp-icon--step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dcp-step-icon .dcp-icon--step .dcp-icon__svg {
	width: 17px;
	height: 17px;
}

.dcp-step.is-active .dcp-step-icon {
	transform: scale(1.12);
}

.dcp-step-icon--neutral { background: #f0efe8; color: #5a5a55; }
.dcp-step-icon--warn { background: #fef4e0; color: #a06010; }
.dcp-step-icon--danger { background: #fdecea; color: #c0402a; }
.dcp-step-icon--info { background: #e8f0fd; color: #1d55b0; }
.dcp-step-icon--success { background: #eaf7f1; color: #0f7a52; }

.dcp-step-body {
	flex: 1;
	min-width: 0;
}

.dcp-step-title {
	font-size: var(--dcp-font-step-title, 13px);
	font-weight: 600;
	color: #1a1a18;
	margin: 0 0 2px;
	font-family: 'Graphik-Medium';
}

.dcp-step-desc {
	font-size: var(--dcp-font-step-desc, 12px);
	color: #6b6b66;
	line-height: 1.5;
	margin: 0 0 15px;
}

.dcp-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: var(--dcp-font-tag, 11px);
	border-radius: 5px;
	padding: 5px 8px;
	font-weight: 500;
	opacity: 0;
	transition: opacity 0.3s ease 0.2s;
	line-height: initial;
}

.dcp-step.is-active .dcp-tag,
.dcp-step.is-visible .dcp-tag {
	opacity: 1;
}

.dcp-tag--pain { background: #FEE2E2;; color: #DC2626; }
.dcp-tag--win { background: #ECFDF5; color: #16A34A; }

.dcp-tag .dcp-icon--tag {
	display: inline-flex;
}

.dcp-tag .dcp-icon--tag .dcp-icon__svg {
	width: 11px;
	height: 11px;
}

.dcp-connector {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 28px;
	position: relative;
}

.dcp-connector-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dcp-connector, #94a3b8);
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top center;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.dcp-connector-arrow.is-active {
	opacity: 1;
	transform: scaleY(1);
}

.dcp-connector-arrow .dcp-icon--connector,
.dcp-connector-arrow .dcp-icon {
	display: inline-flex;
	line-height: 0;
}

.dcp-connector-arrow .dcp-icon__svg {
	width: 20px;
	height: 20px;
	display: block;
}

.dcp-progress-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
}

.dcp-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--dcp-connector, #d0cec6);
	transition: background 0.3s ease, transform 0.2s ease;
}

.dcp-dot.is-done {
	background: #a0a09a;
}

.dcp-dot.is-active {
	background: var(--dcp-accent, #1a1a18);
	transform: scale(1.3);
}

.dcp-done-banner {
	margin-top: 14px;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	background: color-mix(in srgb, var(--dcp-accent, #1a1a18) 12%, #ffffff);
	color: var(--dcp-accent, #1a1a18);
	font-family: 'Graphik-Medium';
    line-height: initial;
}

.dcp-done-banner.is-show {
	opacity: 1;
	transform: translateY(0);
}

.dcp-done-banner .dcp-icon--banner {
	display: inline-flex;
	flex-shrink: 0;
}

.dcp-done-banner .dcp-icon--banner .dcp-icon__svg {
	width: 18px;
	height: 18px;
}

.dcp-controls {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.dcp-btn {
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	padding: 9px 20px;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid var(--dcp-btn-border, #d0cec6);
	background: var(--dcp-btn-bg, #ffffff);
	color: var(--dcp-btn-text, #1a1a18);
	transition: background 0.15s, border-color 0.15s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
#top .dcp-btn {
    font-family: 'Graphik-Medium' !important;
}
.dcp-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.dcp-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.dcp-btn-primary {
	background: var(--dcp-primary-btn-bg, #1a1a18);
	color: var(--dcp-primary-btn-text, #ffffff);
	border-color: var(--dcp-primary-btn-bg, #1a1a18);
}

.dcp-btn-primary:hover {
	background: #333330;
}

.dcp-btn .dcp-icon--btn {
	display: inline-flex;
}

.dcp-btn .dcp-icon--btn .dcp-icon__svg {
	width: 14px;
	height: 14px;
}

.dcp-icon {
	line-height: 0;
	color: inherit;
}

.dcp-flow-header .dcp-icon {
	color: var(--dcp-accent, #1a1a18);
}

@media (prefers-reduced-motion: reduce) {
	.dcp-step,
	.dcp-tag,
	.dcp-connector-arrow,
	.dcp-done-banner {
		transition: none;
	}

	.dcp-pulse-ring {
		animation: none;
	}
}
@media only screen and (max-width: 767px){
	.dcp-flows {
		grid-template-columns: repeat(1, 1fr);
	}
	.dcp-page-titl,
	.dcp-page-sub {
		text-align: left;
	}
}
@media only screen and (max-width: 479px){
	.dcp-flow-header-inner {
		display: block;
	}
	.dcp-speed-badge {
		padding: 0;
		display: flex;
	}
	.dcp-flow-header-title {
		position: relative;
		top: -4px;
		left: 4px;
	}
}