/* Milestones */ 

.milestones_widget .item {
	height: 97px;
}

.milestones_widget .item .date,
.milestones_widget .item .milestone {
	float: left;
	width: 49%;
	height: 97px;
	position: relative;
}

.milestones_widget .item:first-child .date {
	border-right: 3px solid rgba(0,0,0,0);
}

.milestones_widget .item .date {
	text-align: right;
	font-family: 'Fugue Regular';
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	color: #2153CC;
	border-right: 3px solid #F5EEE7;	
}

.milestones_widget .item .date:after {
	content: "";
	display: block;
	background: url('../../images/milestone-circle.svg');
	width: 24px;
	height: 24px;
	position: relative;
	margin-left: calc(100% - 10px);
	top: 83px;
	z-index: 99;
}

.milestones_widget .item .date span {
	padding-right: 70px;
	padding-bottom: 8px;
	border-bottom: 3px solid #F5EEE7;
	position: absolute;
	right: 0;
	bottom: 0;
}

.milestones_widget .item .milestone {
	text-align: left;
	font-size: 16px;
	line-height: 24px;
	color: #243046;
}

.milestones_widget .item .milestone span {
	padding-left: 52px;
	padding-bottom: 4px;
	border-bottom: 3px solid #F5EEE7;
	position: absolute;
	left: 0;
	bottom: 0;
}

@media screen and (max-width: 414px) {

	.milestones_widget .item {
		height: 97px;
	}

	.milestones_widget .item .date,
	.milestones_widget .item .milestone {
		float: left;
		width: 100%;
		height: auto;
		position: initial;
	}

	.milestones_widget .item:first-child .date {
		border-right: none;
	}

	.milestones_widget .item .date {
		text-align: right;
		font-family: 'Fugue Regular';
		font-style: normal;
		font-weight: normal;
		font-size: 24px;
		color: #2153CC;
		border-right: none;	
		margin-top: 24px;
	}

	.milestones_widget .item .date:after {
		content: none;
	}

	.milestones_widget .item .date:before {
		content: "";
		display: block;
		background: url('../../images/milestone-circle.svg');
		width: 24px;
		height: 24px;
		position: initial;
		margin-left: calc(50% - 10px);
		z-index: 99;
	}

	.milestones_widget .item .date span {
		padding-right: 0px;
		padding-bottom: 0px;
		border-bottom: none;
		position: initial;
		display: inline-block;
		width: 100%;
		text-align: center;
		margin-top: 8px;
	}

	.milestones_widget .item .milestone {
		text-align: left;
		font-size: 16px;
		line-height: 24px;
		color: #243046;
	}

	.milestones_widget .item .milestone span {
		padding-left: 0px;
		padding-bottom: 0px;
		border-bottom: none;
		position: initial;
		display: inline-block;
		width: 100%;
		text-align: center;
		margin-top: 4px;
	}

}