@-webkit-keyframes rotateDonut {0% {transform: rotate(0deg);}}
@-moz-keyframes rotateDonut {0% {transform: rotate(0deg);}}
@keyframes rotateDonut {0% {transform: rotate(0deg);}}

.chart.donut {
	height: 175px;
	margin: 25px auto;
	max-width: 175px;
	width: 100%;
}
.chart {
	display: block;
	position: relative;
	width: auto;
}
.chart *, .chart {
	box-sizing: border-box;
	padding: 0;
}
.donut-chart {
	border-radius: 50%;
	height: 100%;
	position: relative;
	width: 100%;
}
.donut-chart::after {
	background: #fff none repeat scroll 0 0;
	border-radius: 100%;
	content: "";
	height: 86%;
	left: 50%;
	margin: 0 auto;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 86%;
	z-index: 400;
}
.donut-chart.fill {
	background: #eaeef3 none repeat scroll 0 0;
}

.donut-chart .spinner {
	animation: 0.3s ease-in-out 0s normal none 1 running rotateDonut;
	border-radius: 100% 0 0 100% / 50% 0 0 50%;
	border-right: medium none;
	transform: rotate(0deg);
	transition: all 160ms ease-in-out 0s;
	z-index: 200;
}
.donut-chart .pie {
	background: #a3d53a none repeat scroll 0 0;
	height: 100%;
	position: absolute;
	transform-origin: 100% 50% 0;
	width: 50%;
}
.donut-chart .mask {
	background: #eaeef3 none repeat scroll 0 0;
	margin-left: -1px;
	z-index: 400;
}
.spinner ~ .pie {
	pointer-events: none;
}
.donut-chart.chart.fill p {
	color: #444;
	font-size: 54px;
	font-weight: 300;
	line-height: 100%;
	margin-top: -30px;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
	z-index: 500;
}
.donut-chart.chart.fill span {
	color: rgb(142, 143, 143);
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 60%;
	width: 100%;
	z-index: 500;
}
