@charset "UTF-8";
.circle-blue{
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: MediumBlue	;
	text-align: center;
	line-height: 48px;
	font-size: 20px;
	font-weight:bold; 
	color: White;
	margin-left: 50px;
}
.circle-gray{
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: Gray;
	text-align: center;
	line-height: 48px;
	font-size: 20px;
	font-weight:bold; 
	color: White;
	margin-left: 50px;
}
.arrow{
	position: relative;
	top: 0px;
	font-size: 20px;
	font-weight:bold; 
	color: Gray;
	margin-left: 50px;
}

.Arrow {
	position: relative;
	top: 18px;
	margin-left: 50px;
	margin-right: 25px;
}

.Arrow::before {
	content: ''; 
	position: absolute;
	width: 19px;
	height: 8px;
	background: Gray;
	border-radius: 3px 0 0 3px;
	z-index: 2;
	transform: rotate(-180deg);
}

.Arrow::after {
	content: ''; 
	position: absolute;
	left: 12px;
	top: -21px;
	border: 10px solid transparent;
	border-left: 10px solid Gray;
	width: 0;
	height: 0;
	z-index: 1;
}
