
.contem_grafico{
	position: relative;
	width: 45vw;
	height: 45vw;
	//background-color: #8899F5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.circulo{
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2.5vh solid rgba(222,243,254,1);
	box-sizing: border-box;
	border-radius: 50%;
}

.progress{
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2.5vh solid #5dc7fc;
	box-sizing: border-box;	
	border-radius: 50%;
	transform: rotate(-180deg);
	animation: progress linear 100s infinite paused;
}

.contem_bolinha{
	position: absolute;
	top: 0px;
	width: 2.5vh;
	height: 100%;
	//background-color: #8800F5;
	//transform: rotate(1deg);
}

.legenda{
	position: absolute;
	height: 100%;
	font-size: 4.5vh;
	display: flex;
	align-items: center;
	//justify-content: center;
}

.tam_porc{
	padding-top: 1.7vh;
	font-size: 1.4vh;
}

.bolinha{
	width: 2.5vh;
	height: 2.5vh;
	background-color: #5dc7fc;
	border-radius: 50%;
}

@keyframes progress {
	  0% { clip-path: polygon(50% 50%, 50% 150%, 50% 150%, 50% 150%, 50% 150%, 50% 150% ) }
	 25% { clip-path: polygon(50% 50%, -50% 50%, 50% 150%, 50% 150%, 50% 150%, 50% 150% ) }
	 50% { clip-path: polygon(50% 50%, 50% -50%, -50% 50%, 50% 150%, 50% 150%, 50% 150% ) }
	 75% { clip-path: polygon(50% 50%, 150% 50%, 50% -50%, -50% 50%, 50% 150%, 50% 150% ) }
	100% { clip-path: polygon(50% 50%, 50% 150%, 150% 50%, 50% -50%, -50% 50%, 50% 150% ) }
}
