no_body
{
	margin:0px; auto;
	padding:0px;
	font-family:helvetica;
}
.progress 
{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;

	background: #262626;
	--opacity: 0.5;
	background-position: 50% 20%;
	background-repeat: no-repeat;
	background-size: cover;	
}
.bar 
{ 
	background-color: #819FF7; 
	width:0%; 
	height:5px; 
	border-radius: 3px; 
}
.percent 
{ 
	position:absolute; 
	display:inline-block; 
	top:3px; 
	left:48%; 
}
#wrapper
{
	width:995px;
	padding:0px;
	margin:0px auto;
	font-family:helvetica;
	text-align:center;
}
.percent h1
{
	text-align:center;
	font-size:35px;
	margin-top:60px;
	color:#A9BCF5;
}
.percent h1 p
{
	text-align:center;
	margin:0px;
	font-size:18px;
	text-decoration:underline;
	color:grey;
}

.ring
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width:	150px;
	height: 150px;
	background: transparent;
	border: 3px solid #3c3c3c;
	border-radius: 50%;
	text-align: center;
	align-items: center;
	line-height: 150px;
	font-family: sans-serif;
	font-size: 20px;
	color: #fff000;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 1px 2px 10px #fff000;
	box-shadow: 0 0 0 20px rgba(0,0,0,.5);
	background: linear-gradient(0deg, #333, #000);
	box-shadow: 0 0 0 4px  #353535, 0 0 0 5px #3e3e3e,inset 0 0 10px rgba(0,0,0,1), 0 5px 20px rgba(0,0,0,5), inset 0 0 15px rgba(0,0,0,.2);
}
.ring:before
{
	content: '';
	position:absolute;
	top: -3px;
	left: -3px;
	height: 100%;
	width: 100%;
	border: 3px solid transparent;
	border-top: 3px solid #fff000;
	border-right: 3px solid #fff000;
	border-radius: 50%;
	animation: animateCircle 2s linear infinite;
}
.ring span
{
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	width: 50%;
	background: transparent;
	height: 4px;
	transform-origin: left;
	animation: animate 2s linear infinite;
}
.ring span:before
{
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff000;
	top: -6px;
	right: -8px;
	box-shadow: 0 0 20px #fff000;
}
@keyframes animateCircle
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}

@keyframes animate
{
	0%
	{
		transform: rotate(45deg);
	}
	100%
	{
		transform: rotate(405deg);
	}
}
</style>



