.ldt-wrap {
	clear: both;
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 14px 0 0;
}

.ldt-wrap *,
.ldt-wrap *::before,
.ldt-wrap *::after {
	box-sizing: border-box;
}

.ldt-timeline {
	--ldt-ink: #1d1d1f;
	--ldt-muted: #6f7275;
	--ldt-line: #d4d6d8;
	--ldt-panel: #f7f7f7;
	--ldt-icon-bg: #ffffff;
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	width: 100%;
	min-width: 0;
	padding: 15px 8px 12px;
	border-radius: 8px;
	background: var(--ldt-panel);
	color: var(--ldt-ink);
	font-size: 14px;
	line-height: 1.25;
	overflow: hidden;
}

.ldt-timeline.ldt-no-phone {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ldt-line {
	position: absolute;
	top: 37px;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: var(--ldt-line);
	z-index: 0;
}

.ldt-no-phone .ldt-line {
	left: 16.666%;
	right: 16.666%;
}

.ldt-stage {
	position: relative;
	z-index: 1;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ldt-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	margin: 0 auto 8px;
	border: 1px solid #d8dadd;
	border-radius: 50%;
	background: var(--ldt-icon-bg);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
	color: var(--ldt-ink);
}

.ldt-icon svg {
	display: block;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ldt-stage-phone .ldt-icon {
	width: 28px;
	height: 28px;
	margin-top: 9px;
	margin-bottom: 16px;
	border: 0;
	border-radius: 0;
	box-shadow: 0 0 0 5px var(--ldt-panel);
	background: var(--ldt-panel);
	color: var(--ldt-muted);
}

.ldt-stage-phone .ldt-icon svg {
	width: 21px;
	height: 21px;
	stroke-width: 1.9;
}

.ldt-label {
	display: block;
	max-width: 100%;
	padding: 0 3px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.ldt-stage-phone .ldt-label {
	color: var(--ldt-muted);
	font-size: 12px;
	font-weight: 600;
}

.ldt-date {
	display: block;
	margin-top: 3px;
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.2;
	white-space: nowrap;
}

@media (max-width: 420px) {
	.ldt-timeline {
		padding-right: 4px;
		padding-left: 4px;
	}

	.ldt-icon {
		width: 41px;
		height: 41px;
	}

	.ldt-line {
		top: 35px;
	}

	.ldt-label {
		padding: 0 2px;
		font-size: 11.5px;
	}

	.ldt-stage-phone .ldt-label,
	.ldt-date {
		font-size: 11px;
	}
}
