html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.loading_popup {
	margin: 0px auto 0;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: solid 20px rgba(0, 0, 0, 0.2);
	border-top-color: #2aaff2;
	-webkit-animation: spin 1s infinite linear;
	-moz-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	animation-play-state: paused;
}

.loading_btn {
	margin: 5px;
	position: relative;
	vertical-align: top;
	width: 300px;
	height: 40px;
	padding: 0;
	font-size: 22px;
	color:#ffffff;
	text-align: center;
	background: #4070c4;
	border: 0;
	cursor: pointer;
	border-radius: 5px;
}

@-webkit-keyframes spin { 
	100% { 
		-webkit-transform: rotate(360deg); 
	} 
}

@-moz-keyframes spin { 
	100% { 
		transform: rotate(360deg); 
	} 
}

@keyframes spin { 
	100% { 
		transform: rotate(360deg); 
	} 
}