.equippay-panel {
	margin: 1.5em 0;
	padding: 1.25em 1.5em;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #fafafa;
}

.equippay-panel__title {
	margin: 0 0 0.25em;
	font-size: 1.15em;
}

.equippay-panel__ref {
	margin: 0 0 1em;
	color: #555;
	font-size: 0.9em;
}

.equippay-tracker {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em 0;
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
}

.equippay-tracker__step {
	display: flex;
	flex: 1 1 0;
	min-width: 90px;
	flex-direction: column;
	align-items: center;
	position: relative;
	text-align: center;
}

.equippay-tracker__step:not(:first-child)::before {
	content: '';
	position: absolute;
	top: 8px;
	right: 50%;
	width: 100%;
	height: 2px;
	background: #d7d7d7;
	z-index: 0;
}

.equippay-tracker__step.is-done:not(:first-child)::before {
	background: #1a7f37;
}

.equippay-tracker__dot {
	position: relative;
	z-index: 1;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #d7d7d7;
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px #d7d7d7;
}

.equippay-tracker__step.is-done .equippay-tracker__dot {
	background: #1a7f37;
	box-shadow: 0 0 0 1px #1a7f37;
}

.equippay-tracker__step.is-current .equippay-tracker__dot {
	background: #fff;
	box-shadow: 0 0 0 2px #1a7f37;
}

.equippay-tracker__label {
	margin-top: 0.5em;
	font-size: 0.72em;
	line-height: 1.3;
	color: #888;
}

.equippay-tracker__step.is-done .equippay-tracker__label,
.equippay-tracker__step.is-current .equippay-tracker__label {
	color: #1a1a1a;
	font-weight: 600;
}

@media ( max-width: 560px ) {
	.equippay-tracker {
		flex-direction: column;
		align-items: flex-start;
	}
	.equippay-tracker__step {
		flex-direction: row;
		gap: 0.6em;
		min-width: 0;
	}
	.equippay-tracker__step::before {
		display: none;
	}
	.equippay-tracker__label {
		margin-top: 0;
	}
}
