#page-loading {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .3);
	width: 100%;
	height: 100%;
	z-index: 999999;
}

#page-loading {
	display: none;
}

#page-loading::before {
	content: "";
	display: block;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	margin-top: -35px;
	margin-left: -35px;
	background: white;
}

#page-loading::after {
	content: "";
	display: block;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 35px;
	height: 35px;
	border-radius: 30px;
	margin-top: -17px;
	margin-left: -17px;
	border: 5px solid #142245;
	border-right: 4px solid white;
	animation: loading-rotate 1s infinite linear;
}

#page-loading .icon {
	display: block;
	position: fixed;
	/*left: 50%;*/
	top: 50%;
	color: #65a6cf;
	font-size: 9px;
	opacity: 1;
	width: 100%;
}

@keyframes loading-rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#page-loading .icon .msg {
	/*position: fixed;*/
	/*top: 56%;*/
	color: #fff;
	font-size: 11px;
	opacity: 1;
	width: 100%;
	margin: 50px 0 0 0;
	text-align: center;
	-webkit-animation:blink 2s ease-in-out infinite alternate;
	-moz-animation:blink 2s ease-in-out infinite alternate;
	animation:blink 2s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
	70% {opacity:0.7;}
	100% {opacity:1;}
}
@-moz-keyframes blink{
	70% {opacity:0.7;}
	100% {opacity:1;}
}
@keyframes blink{
	70% {opacity:0.7;}
	100% {opacity:1;}
}