body {
	overflow: hidden;
}

.main-loading-line {
	width: 150px;
	height: 3px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: rotate-animation 4s linear 0s infinite;
	-moz-animation: rotate-animation 4s linear 0s infinite;
	-o-animation: rotate-animation 4s linear 0s infinite;
	animation: rotate-animation 4s linear 0s infinite;
	z-index: 11;
}

body.loaded .main-loading-line, body.loaded .main-loading-text {
	-webkit-animation: none;
	-moz-animation: none;
	-o-animation: none;
	animation: none;
}

.main-loading-line:before, .main-loading-line:after {
	content: '';
	display: block;
	position: fixed;
	top: 50%;
	width: 30px;
	height: 30px;
	background-color: rgba(232, 12, 122, 0.6);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	-webkit-animation: width-animation 1s ease-in-out 0s infinite;
	-moz-animation: width-animation 1s ease-in-out 0s infinite;
	-o-animation: width-animation 1s ease-in-out 0s infinite;
	animation: width-animation 1s ease-in-out 0s infinite;
}

.main-loading-line:after {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

@-webkit-keyframes rotate-animation {
	from {
		-webkit-transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
		-moz-transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
		-o-transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
		transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
	}
	50% {
		-webkit-transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
		-moz-transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
		-o-transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
		transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
	}
	to {
		-webkit-transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
		-moz-transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
		-o-transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
		transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
	}
}

@keyframes rotate-animation {
	from {
		-webkit-transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
		-moz-transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
		-o-transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
		transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
	}
	50% {
		-webkit-transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
		-moz-transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
		-o-transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
		transform: translate(-50%, -50%) rotateZ(180deg) scale(0.5);
	}
	to {
		-webkit-transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
		-moz-transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
		-o-transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
		transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
	}
}

@-webkit-keyframes width-animation {
	from {
		opacity: 0;
		left: 0%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
	50% {
		opacity: 1;
		box-shadow: 0px 0px 20px #E80C7A;
	}
	to {
		opacity: 0;
		left: 100%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
}

@-moz-keyframes width-animation {
	from {
		opacity: 0;
		left: 0%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
	50% {
		opacity: 1;
		box-shadow: 0px 0px 20px #E80C7A;
	}
	to {
		opacity: 0;
		left: 100%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
}

@-o-keyframes width-animation {
	from {
		opacity: 0;
		left: 0%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
	50% {
		opacity: 1;
		box-shadow: 0px 0px 20px #E80C7A;
	}
	to {
		opacity: 0;
		left: 100%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
}

@keyframes width-animation {
	from {
		opacity: 0;
		left: 0%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
	50% {
		opacity: 1;
		box-shadow: 0px 0px 20px #E80C7A;
	}
	to {
		opacity: 0;
		left: 100%;
		box-shadow: 0px 0px 5px #E80C7A;
	}
}

.main-loading-text {
	position: fixed;
	top: 80%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #ebebeb;
	-webkit-animation: main-loading-text-animation 3s ease-in-out 0s infinite;
	-moz-animation: main-loading-text-animation 3s ease-in-out 0s infinite;
	-o-animation: main-loading-text-animation 3s ease-in-out 0s infinite;
	animation: main-loading-text-animation 3s ease-in-out 0s infinite;
	z-index: 11;
	font-size: 24px;
}

@-webkit-keyframes main-loading-text-animation {
	0% {
		opacity: 0
	}
	30% {
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@-moz-keyframes main-loading-text-animation {
	0% {
		opacity: 0
	}
	30% {
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@-o-keyframes main-loading-text-animation {
	0% {
		opacity: 0
	}
	30% {
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@keyframes main-loading-text-animation {
	0% {
		opacity: 0
	}
	30% {
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.main-loading-left, .main-loading-right {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	background: black;
	z-index: 10;
}

.main-loading-left {
	left: 0;
}

.main-loading-right {
	right: 0;
}

body.loaded .main-loading-left {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all 0.7s ease 0.3s;
	-moz-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}

body.loaded .main-loading-right {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all 0.7s ease 0.3s;
	-moz-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
