/* ===================================
	Pie Chart
====================================== */
.pie-charts {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.pie-charts .chart-canvas-inner {
	display: inline-block;
}
.chart {
	text-align: center;
	position: relative;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.chart .percent {
	letter-spacing: -1px;
	line-height: 32px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.pie-charts .chart-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.chart .percent.inner-circle {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	height: 75px;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
}
.chart-text .chart-title {
	display: block;
}
.chart-text .chart-content p {
	margin-bottom: 0;
}
.pie-charts canvas {
	rotate: -90deg;
}