.timeline {
	list-style-type: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.li {
	transition: all 200ms ease-in;
}

.timestamp {
	margin-bottom: 20px;
	padding: 0px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 100;
}

.status {
	padding: 0px 0px;
	/* display: flex; */
	/* justify-content: center; */
	border-top: 2px solid #D6DCE0;
	position: relative;
    transition: all 200ms ease-in;
    margin-top: 10px;
}

.status h4 {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    height: 100px;
    text-align: center;
}

.status:before {
	content: '';
	width: 16px;
	height: 16px;
	background-color: white;
	border-radius: 25px;
	border: 1px solid #ddd;
	position: absolute;
	top: -8px;
	left: 42%;
	transition: all 200ms ease-in;
}

.li.complete .status {
	border-top: 2px solid #30664a;
}

.li.complete .status:before {
	background-color: #30664a;
	border: none;
	transition: all 200ms ease-in;
}

.li.complete .status h4 {
	color: #30664a;
}

@media (min-device-width: 320px) and (max-device-width: 640px) {
	.status h4 {
		font-size: 12px;
	}

	.status {
		padding: 0px 2px;
	}
}

@media (min-width: 640px){
	.status {
		padding: 0px 16px;
	}
}
