.pie{
	margin: 0 auto 24px;
}
.pie svg{
	border-radius: 50%;
	transform-origin: center;
	transform: rotate(-90deg);
}
.pie circle{
	transition: stroke-dasharray 1.2s ease-out;
	fill: none;
	stroke-width: 32;
	cursor: pointer;
}
.pie circle:nth-last-child(1){ stroke: #d8232a }
.pie circle:nth-last-child(2){ stroke: #707070 }
.pie circle:nth-last-child(3){ stroke: #f39068 }
.pie circle:nth-last-child(4){ stroke: #740509 }
.pie circle:nth-last-child(5){ stroke: #3B3B3B }
.pie circle:nth-last-child(6){ stroke: #ECEDEE }

.pie-legend{
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: -10px;
	font-size: 14px;
	line-height: 1.71;
	color: #000;
}
.pie-legend > div{
	position: relative;
	margin: 10px 12px 0;
	padding-left: 15px;
}
.pie-legend > div:before{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
}
.pie-legend > div:nth-child(1):before{background:#d8232a}
.pie-legend > div:nth-child(2):before{background:#707070}
.pie-legend > div:nth-child(3):before{background:#f39068}
.pie-legend > div:nth-child(4):before{background:#740509}
.pie-legend > div:nth-child(5):before{background:#3B3B3B}
.pie-legend > div:nth-child(6):before{background:#ECEDEE}