.position {
	float: left;
	margin: 100px 20px;
}

.progress-bar {
	position: relative;
	height: 140px;
	width: 140px;
	margin-left: calc(50% - 70px);
}

.progress-bar div {
	position: absolute;
	height: 140px;
	width: 140px;
	border-radius: 50%;
}

.progress-bar div span {
	position: absolute;
	font-family: Arial;
	font-size: 25px;
	line-height: 115px;
	height: 115px;
	width: 115px;
	left: 12.5px;
	top: 12.5px;
	text-align: center;
	border-radius: 50%;
	background-color: white;
}

.progress-bar span {
	color: #666;
	font-size: 26px;
	font-weight: bold;
	line-height: 30px;
}

.progress-bar { 
	background-color: #fff;   
	 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0);
	float: unset;
}

.progress-bar .rotate {
	clip: rect(0 70px 140px 0);
	background-color: #4b86db;
}

.progress-bar .left {
	clip: rect(0 70px 140px 0);
	opacity: 1;
	background-color: #b3cef6;
}

.progress-bar .right {
	clip: rect(0 70px 140px 0);
	transform: rotate(180deg);
	opacity: 0;
	background-color: #4b86db;
}
@keyframes 
	toggle { 
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
