.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: radial-gradient(#222 0%, #000 100%);
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	pointer-events: none;
	user-select: none;
	transition: opacity .5s ease;
}
.preloader .loading_title {
	color: white;
	font: bold 24px/24px "Baloo 2", Tahoma, Verdana, sans-serif;
	letter-spacing: 1px;
	margin: 150px 0 0 0;
}
.preloader .progress_bar {
	width: 90%;
	max-width: 400px;
	height: 20px;
	background-color: #0e0e0e;
	border-radius: 15px;
	overflow: hidden;
	margin: 20px 0 0 0
}
.preloader .progress_bar .progress {
	height: 100%;
	width: 0%;
	background-color: #4caf50;
	transition: width 0.3s;
}
.firefly, .firefly div {
	position: relative;
}
.firefly {
	width: 20px;
	height: 20px;
	border-radius: 70px 70px 0 0;
	z-index: 1;
	animation: move 5s ease infinite;
}
.firefly .head{
	background:#1A1515;
	height:10px;
	width:20px;
	border-radius: 90px 90px 0 0;
	-moz-border-radius: 90px 90px 0 0;
	-webkit-border-radius: 90px 90px 0 0;
	top:35px;
	z-index:4;
}
.firefly .wing {
	background: #FFFFF9;
	width: 20px;
	height: 20px;
	border-radius: 40px;
	transform: rotate(80deg) skew(40deg);
	z-index: 3;
}
.firefly .wing.left{
	top:30px;
	left:-5px;
}
.firefly .wing.right{
	top:10px;
	left:5px;
	transform: rotate(30deg) skew(40deg);
}
.firefly .glow {
	border-radius: 0 0 70px 70px;
	width: 60%;
	height: 70%;
	background: #FBFF7A;
	margin: 0 auto;
	z-index: 2;
	animation: glowing 1s linear infinite alternate;
	-webkit-animation: glowing 1s linear infinite alternate;
	transition: 1s all;
}
.firefly .shadow {
	background: #1A1515;
	width: 100%;
	height: 25%;
	border-radius: 200%;
	margin-top: -10%;
}

@keyframes glowing {
	from {
		box-shadow: inset 0 0 20px 20px #E8D500, 0 0 50px 10px #E8D500, inset 0 0 80px 80px #FFED24;
	}
	to {
		box-shadow: inset 0 0 20px 20px #E8D500, 0 0 100px 10px #E8D500, inset 0 0 50px 50px #FFED24;
	}
}

@keyframes move
{
	0% {transform: rotate(45deg)}
	50% {transform: rotate(-45deg)}
	100% {transform: rotate(45deg)}
}
