@charset "utf-8";
#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	background: #00000f;
	opacity: 1;
	transition: opacity .3s ease-out;
	z-index: 10000;
}
#loading .loader {
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	width: 100px;
	height: 100px;
}

#loading .loader div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: .8;
}

#loading .loader .one {
	border-top: 1px solid #7CDE78;
	animation: rotate-left 1s linear infinite;
}

#loading .loader .two {
	border-right: 1px solid #19763B;
	animation: rotate-right 1s linear infinite;
}

#loading .loader .three {
	border-bottom: 1px solid #0DDE65;
	animation: rotate-right 1s linear infinite;
}

#loading .loader .four {
	border-left: 1px solid #39A357;
	animation: rotate-right 1s linear infinite;
}

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

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