 
.flowChart { 
	display: flex;
}
.flowChart-left {
	width: 50px;
	flex-shrink: 0;
}
.flowChart .dashed {
	width: 0px;
	height: 100%;
	margin-left: 50%;
	border-left-style: dashed;
	border-left-color: darkgray;
	border-left-width: 2px;
}
.flowChart-right {
	flex-grow: 1;
}
.flowChart .oneNode {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 14px;
}
.flowChart .check {
	width: 40px;
	height: 40px;
	border-radius: 50px;
	line-height: 40px;
	color: white;
	font-size: 38px;
	text-align: center;
	position: relative;
	left: -44px;
	flex-shrink: 0;
	background-color: #fff; 
	color:#064280;
}
 
.flowChart .NodeDetail {
	background-color: white;
	margin-left: -40px;
	flex-grow: 1;
	border: 1px solid #E6E6E6;
	border-radius: 3px;
	padding:20px 14px;
	display: flex;
	flex-direction: column;
	box-shadow: 1px 1px 10px #E6E6E6;
}
.flowChart img {
	width: 40px;
	height: 40px;
	border-radius: 20px;
}
.NodeDetail .details {
	flex-grow: 1;
	padding-left: 8px;
	margin-left: 8px; 
}
.details p {
	color: rgb(154, 154, 154);
	font-size: 14px;
	font-weight: 100;
}
.NodeDetail-title {
	display: flex;
	margin-bottom: 10px;
}
.NodeDetail-content {
	flex-grow: 1;
	padding-left: 15px;
}
.NodeDetail-content p {
	text-indent: 2em;
	text-align: justify;
	font-size: 14px;
}
.NodeDetail-footer {
	margin-top: 10px;
}
.NodeDetail-footer span {
	font-size: 12px;
	font-weight: 100;
	color: rgb(104, 104, 104);
	float: right;
}
.badge {
	padding: 2px 5px;
	font-size: 12px;
	background-color: rgb(72, 108, 160);
	border-radius: 10px;
	font-weight: 100;
	color: white;
	letter-spacing: 2px;
	box-shadow: 1px 1px 1px gainsboro;
}
.BadgeGray {
	background-color: rgb(104, 108, 104);
}
.tag {
	width: 0;
	height: 0;
	border: 14px solid;
	border-style: dashed;
	border-color: transparent white transparent transparent;
	position: absolute;
	left: -13px;
	top: -14px;
}
.tag-boder {
	width: 0;
	height: 0;
	border: 12px solid;
	border-style: dashed;
	border-color: transparent gainsboro transparent transparent;
	position: relative;
	left: -39px;
}
.NodeDetail-content p{
	margin-top: 7px;
}
