prompt.les 1.0 KB
@import "../../../less/variables";


.loading{
	position:relative;
	width:130px;
	height:130px;
	margin:0 auto;
	margin-top:30px;
	text-align:center;
	border-radius:10px;
	box-shadow: 0px 0px 10px #888888;
	@-webkit-keyframes rotation {
		from {
			-webkit-transform: rotate(0deg);
		}
		to {
			-webkit-transform: rotate(360deg);
		}
	}
	@-webkit-keyframes rotation1 {
		from {
			-webkit-transform: rotate(360deg);
		}
		to {
			-webkit-transform: rotate(0deg);
		}
	}

	.Rotation {
		-webkit-transform: rotate(360deg);
		animation: rotation 2s linear infinite;
		-moz-animation: rotation 2s linear infinite;
		-webkit-animation: rotation 2s linear infinite;
		-o-animation: rotation 2s linear infinite;
		margin-top:30px !important;
	}
	.Rotation1 {
		position:absolute;
		left:51px;
		top:50px;
		-webkit-transform: rotate(360deg);
		animation: rotation1 1s linear infinite;
		-moz-animation: rotation1 1s linear infinite;
		-webkit-animation: rotation1 1s linear infinite;
		-o-animation: rotation1 10s linear infinite;
	}
}