body {
	background: #f7f8f5;
	color: #1f2a24;
}

.mc-brand-mark {
	width: 44px;
	height: 44px;
	object-fit: contain;
	background: #fff;
}

.mc-page-header {
	background: #fff;
	border-bottom: 1px solid rgba(31, 42, 36, 0.12);
}

.mc-logo-panel {
	width: 76px;
	height: 76px;
	object-fit: contain;
	background: #fff;
	border: 1px solid rgba(31, 42, 36, 0.14);
}

.mc-phase-strip {
	background: #fff;
	border-bottom: 1px solid rgba(31, 42, 36, 0.12);
}

.mc-phase-strip .mc-stepper {
	width: 100%;
}

.mc-stepper {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mc-step {
	position: relative;
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	padding: 1rem;
	color: #526056;
	text-decoration: none;
	background: #fff;
	border-right: 1px solid rgba(31, 42, 36, 0.12);
}

.mc-step > span:last-child {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	height: 100%;
}

.mc-step:last-child {
	border-right: 0;
}

.mc-step::after {
	position: absolute;
	right: -0.58rem;
	top: 50%;
	z-index: 1;
	width: 1.15rem;
	height: 1.15rem;
	content: "";
	background: inherit;
	border-top: 1px solid rgba(31, 42, 36, 0.12);
	border-right: 1px solid rgba(31, 42, 36, 0.12);
	transform: translateY(-50%) rotate(45deg);
}

.mc-step:last-child::after {
	display: none;
}

.mc-step-number {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	color: #fff;
	font-weight: 700;
	background: #6c757d;
	border-radius: 50%;
}

.mc-step-title {
	display: block;
	color: #243127;
	font-weight: 700;
	line-height: 1.2;
}

.mc-step-meta {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.875rem;
	line-height: 1.25;
}

.mc-step-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: auto;
	padding: 0.4rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #198754;
	background: #fff;
	border: 1px solid #198754;
	border-radius: 0.375rem;
}

.mc-step-action.is-disabled {
	color: #6c757d;
	background: #f8f9fa;
	border-color: #adb5bd;
}

.mc-step.is-disabled {
	background: #f1f3f1;
	color: #6f7871;
}

.mc-step.is-disabled .mc-step-number {
	background: #adb5bd;
}

.mc-step.is-open {
	background: #eef8f0;
}

.mc-step.is-open .mc-step-number {
	background: #198754;
}

.mc-step.is-current {
	box-shadow: inset 0 -4px 0 #198754;
}

a.mc-step:hover {
	color: #1f2a24;
	background: #e4f3e8;
}

a.mc-step:hover .mc-step-action {
	color: #fff;
	background: #198754;
}

.mc-landing {
	min-height: calc(100vh - 72px);
}

.mc-hero {
	padding: 2rem 0 1.25rem;
	background: #fff;
	border-bottom: 1px solid rgba(31, 42, 36, 0.12);
}

.mc-process-board {
	background: #fff;
	border: 1px solid rgba(31, 42, 36, 0.12);
	border-radius: 0.5rem;
	overflow: hidden;
}

.mc-process-board .mc-step {
	min-height: 10.5rem;
}

.mc-support-action {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	height: 100%;
	padding: 1rem;
	color: #243127;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(31, 42, 36, 0.12);
	border-radius: 0.5rem;
}

.mc-support-action:hover {
	color: #243127;
	background: #f1f8f2;
}

.mc-support-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: #198754;
	background: #eef8f0;
	border-radius: 50%;
}

.mc-phase-notice {
	border-left: 0.35rem solid #198754;
}

.mc-disabled-panel {
	background: #f8f9fa;
	border: 1px solid rgba(31, 42, 36, 0.12);
	border-radius: 0.5rem;
}

.mc-action-row {
	display: grid;
	gap: 0.5rem;
}

.mc-action-row > .btn {
	width: 100%;
}

.mc-dashboard-action-row {
	width: 100%;
}

.mc-clickable-summary-card {
	cursor: pointer;
}

.mc-clickable-summary-card:focus {
	box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.2);
	outline: 0;
}

@media (min-width: 768px) {
	.mc-action-row {
		display: flex;
	}

	.mc-action-row > .btn {
		flex: 1 1 0;
	}
}

@media (min-width: 992px) {
	.mc-dashboard-action-row {
		max-width: 34rem;
	}
}

@media (max-width: 991.98px) {
	.mc-stepper {
		grid-template-columns: 1fr;
	}

	.mc-step,
	.mc-step:last-child {
		border-right: 0;
		border-bottom: 1px solid rgba(31, 42, 36, 0.12);
	}

	.mc-step:last-child {
		border-bottom: 0;
	}

	.mc-step::after {
		display: none;
	}

	.mc-process-board .mc-step {
		min-height: auto;
	}
}
