* {
	margin: 0;
	padding: 0
}

.flowChart {
	padding: 0px;
	height: 300px;
	width: max-content
}

.flowChart .solid {
	width: 200px;
	border-top-style: solid;
	border-top-color: #dcdcdc;
	border-top-width: 2px;
	position: absolute
}

.flowChart .oneNode {
	display: flex;
	position: relative;
	height: 200px;
	width: 200px;
	float: left
}

.flowChart .check {
	width: 40px;
	height: 40px;
	border-radius: 50px;
	line-height: 40px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	position: absolute;
	left: 75px;
	flex-shrink: 0;
	background-color: #7d7a75;
	border: 4px solid #ada8a3
}

.tag-boder {
	width: 2px;
	height: 30px;
	background: #dcdcdc;
	position: absolute;
	left: 99px
}

.flowChart .NodeDetail {
	background-color: #fff;
	width: 100px;
	height: 100px;
	flex-grow: 1;
	border: 5px solid #dcdcdc;
	border-radius: 164px;
	display: flex;
	position: absolute;
	left: 20px;
	box-shadow: 1px 1px 10px #dcdcdc
}

.NodeDetail-content {
	width: 124px;
	height: 124px;
	font-size: 12px;
	padding: 20px
}

.BadgeGray {
	background-color: #686c68
}

.upNode {
	top: -49px
}

.bottomNode {
	top: 131px
}

.upNode .NodeDetail {
	top: 54px;
	left:50px
}

.upNode .check {
	top: 182px
}

.upNode .tag-boder {
	top: 152px
}

.upNode .solid {
	top: 205px
}

.bottomNode .NodeDetail {
	top: 78px;
	left:44px
}

.bottomNode .check {
	top: 0
}

.bottomNode .tag-boder {
	top: 48px
}

.bottomNode .solid {
	top: 25px
}

.startNode {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	color: #fff;
	font-size: 12px;
	position: relative;
	right: 0;
	float: left;
	top: 224px;
	flex-shrink: 0;
	background-color: #eaeaea;
	border: 2px solid #dcdcdc
}

.endNode {
	width: 0;
	height: 0;
	border: 10px solid;
	border-style: dashed;
	border-color: transparent transparent transparent #dcdcdc;
	position: relative;
	float: left;
	top: 147px
}

.NodeDetail:hover::before {
	content: attr(data-title);
	display: block;
	height: auto;
	width: 250px;
	padding: 10px 14px;
	font-size: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #dedede;
	position: absolute;
	top: -20px;
	left: -50px;
	z-index: 999
}

.flowChart .check-success {
	background-color: #57c240;
	border: 4px solid rgba(198,228,177,.9)
}

.flowChart .check-danger {
	background-color: #e46c23;
	border: 4px solid #faa67a
}

.flowChart .check-prime {
	background-color: #0088a5;
	border: 4px solid #58bff3
}

.flowChart .check-warning {
	background-color: #f89002;
	border: 4px solid #ffd07a
}