
/* Homepage Step List - Start */

.stepList__step {
	margin-bottom: 25px;
}

.stepList__stepLink {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;

	font-weight: 900;
	line-height: 1.2;

	margin-bottom: 4px;
}

.stepList__stepNumber {
	font-size: 27px;
	padding: 0.2em 0.55em .25em;
	color: #003e7e;
	background-color: white;
	border: 3px solid #134FC9;
	margin-right: 25px;
	transition: color .3s, background-color .3s, border .3s;
}

.stepList__stepTitle {
	font-size: 27px;
	text-transform: uppercase;
	color: #003e7e;
	margin-top: 9px;
}

.stepList__stepDescription {
	margin-left: 78px;
}	

.stepList__stepLink:hover {
	text-decoration: none;
}

.stepList__stepLink:hover .stepList__stepTitle {
	text-decoration: underline;
}

.stepList__stepLink:hover .stepList__stepNumber {
	background-color: #FFD200;
	border-color: #FFD200;
}


@media (max-width: 650px) {
	.stepList__stepNumber {
		margin-right: 15px;
	}
	.stepList__stepDescription {
		margin-left: 66px;
	}
}

/* Homepage Step List - End */


/* Step Tracker - Start */

.stepTracker {
	background-color: #ECECEC;
	padding: 25px 0 0;
	margin-bottom: 20px;
}
.stepTracker__stepContainer {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.stepTracker__step {
	width: 108px;

	display: flex;
	flex-flow: column nowrap;
	align-items: center;

	text-align: center;
	color: #003e7e;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 25px;
}
.stepTracker__stepNumber {
	font-size: 27px;
	padding: 0.2em 0.55em .25em;
	background-color: white;
	border: 3px solid #134FC9;
	margin-bottom: 15px;
}
.stepTracker__step:hover {
	text-decoration: none;
}
.stepTracker__step:hover .stepTracker__stepTitle {
	text-decoration: underline;
}

.stepTracker__step.-current .stepTracker__stepNumber {
	background-color: #FFD200;
	border-color: #FFD200;
}

.stepTracker__step.-visited .stepTracker__stepNumber {
	background-color: transparent;
}

@media (max-width: 900px) and (min-width: 650px) {
	.stepTracker__stepContainer {
		justify-content: flex-start;
	}

	.stepTracker__step {
		width: 25%;
	}

	.stepTracker__stepTitle {
		max-width: 108px;
	}
}

@media (max-width: 650px) {

	.stepTracker { 
		padding-bottom: 10px;
	}

	.stepTracker__stepContainer {
		flex-flow: row wrap;
		justify-content: flex-start;
	}


	.stepTracker__step{
		width: 50%;
		padding-right: 2%;
		box-sizing: border-box;
		flex-flow: row nowrap;
		margin-bottom: 15px;
		text-align: left;
	}

	.stepTracker__stepNumber {
		font-size: 24px;
		margin-bottom: 0;
		margin-right: 10px;
	}

}

.contentStepNumber {
	display: inline-block;
	padding: 0.5em 0.88em 0.6em;
	background-color: #ffd200;
	margin-right: 10px;
	font-weight: 900;
}

@media (max-width: 550px) {
	.contentStepNumber {
		display: block;
		width: 0.55em;
		margin-bottom: 12px;
	}
}

/* Step Tracker - End */
