@charset "utf-8";
/*loding*/
#loading_motion{
	background:rgba(0,0,0,.8);
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:1001;
}
#loading_motion > .circle{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	height:40px;
	width:40px;
	border-radius:100%;
}
#loading_motion > .circle:after{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border-radius:100%;
	border:4px solid #1aa9c3;
	box-sizing:border-box;
	z-index:5;
}

#loading_motion > .circle > span{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	height:40px;
	width:40px;
	border-radius:100%;
	z-index:6;
	overflow:hidden;
	
}
#loading_motion > .circle > span:after{
	content:"";
	position:absolute;
	left:50%;
	transform:translatex(-50%);
	top:0;
	width:5px;
	height:5px;
	background:#fff;
	border-radius:100%;
}
#loading_motion > .circle > span:last-child{
	opacity:.7
}


#loading_motion > .circle > span:nth-child(1){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.17s;
	 animation-delay: -0.17s;
}
#loading_motion > .circle > span:nth-child(2){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.15s;
	 animation-delay: -0.15s;
}
#loading_motion > .circle > span:nth-child(3){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.13s;
	 animation-delay: -0.13s;
}
#loading_motion > .circle > span:nth-child(4){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.11s;
	 animation-delay: -0.11s;
}
#loading_motion > .circle > span:nth-child(5){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.09s;
	 animation-delay: -0.09s;
}
#loading_motion > .circle > span:nth-child(6){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.08s;
	 animation-delay: -0.08s;
}
#loading_motion > .circle > span:nth-child(7){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.07s;
	 animation-delay: -0.07s;
}
#loading_motion > .circle > span:nth-child(8){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.06s;
	 animation-delay: -0.06s;
}
#loading_motion > .circle > span:nth-child(9){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
	-webkit-animation-delay: -0.05s;
	 animation-delay: -0.05s;
}
#loading_motion > .circle > span:nth-child(10){
	animation: circle-1 1s ease-out infinite;
	-o-animation: circle-1 1s ease-out infinite;
	-ms-animation: circle-1 1s ease-out infinite;
	-webkit-animation: circle-1 1s ease-out infinite;
	-moz-animation: circle-1 1s ease-out infinite;
}

@keyframes circle-1 {
	 from {
		-moz-transform:translate(-50%, -50%) rotate(0deg);
		-o-transform:translate(-50%, -50%) rotate(0deg);
		-webkit-transform:translate(-50%, -50%) rotate(0deg);
		-ms-transform:translate(-50%, -50%) rotate(0deg);
		transform:translate(-50%, -50%) rotate(0deg);
	  }
	  to {
		-moz-transform:translate(-50%, -50%) rotate(360deg);
		-o-transform:translate(-50%, -50%) rotate(360deg);
		-webkit-transform:translate(-50%, -50%) rotate(360deg);
		-ms-transform:translate(-50%, -50%) rotate(0deg);
		transform:translate(-50%, -50%) rotate(360deg);
	  }
}