@charset "UTF-8";

.chart{
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	transition:0.3s;
	margin:auto;
}

.chart span.chartText{
	background: #fff;
	display: block;
	position: absolute;
	top:50%;
	left:50%;
	width:60px;
	height:60px;
	border-radius: 50%;
	text-align: center;
	line-height:60px;
	font-size:20px;
	transform:translate(-50%,-50%);	/*가운데위치*/
	font-weight:800;
}

