@charset 'utf-8';


	#consult_step_card {
	background-color: #0f1624 !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
	padding: 3rem 2rem !important;
	}
	#consult_step_card .h2, .step-card .step-label, .step-card .step-title {
	color: #eee !important;
	}
	.step_container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 1rem;
	}

	.step-card {
	background: linear-gradient(
	145deg,
	#1b2433 0%,
	#121a26 100%
	);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	text-align: center;
	height: 100%;
	box-shadow:
	inset 0 1px 0 rgba(255,255,255,0.05),
	0 8px 18px rgba(0,0,0,0.35);
	transition: all 0.5s ease;
	}
	.step-card .step-label {
	color: var(--color-text-main);
	}
	.step-card .step-title {
	color: var(--color-text-main);
	}
	.step-card .step-desc {
	color: #6b7280 !important;
	}

	.step_card_wrap {
	flex-grow: 1;
	min-width: 220px;
	max-width: 100%;
	}

	.step-card.active {
	transform: translateY(-5px);
	border-color: #eee;
	box-shadow:
	inset 0 1px 0 rgba(255,255,255,0.05),
	0 10px 22px rgba(0,0,0,0.42);
	}