
#fuse-splash-screen {
	font-family: Roboto, "Helvetica Neue", sans-serif;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: white /*#f5f5f5*/;
	z-index: 9999999;
	/*background: linear-gradient(to bottom right, #38777c 0%, #5db1b7 50%);*/
}

#fuse-splash-screen a {
	color: #0064ae;
	text-decoration: none;
}

#fuse-splash-screen a:hover {
	text-decoration: underline;
}

#fuse-splash-screen .loading_issue {
	position: absolute;
	top: 15px;
	width: 100%;
	text-align: center;
	font-weight: normal;
	font-size: 16px;
	animation: loading-issue 15s;
	animation-fill-mode: forwards;
	visibility: hidden;
}

#fuse-splash-screen .loading_bar {
	height: 8px;
	background: #0e6da9 linear-gradient(302deg, #0e6da9, #4b9fa5);
	/*border-top: 8px solid #0064ae;*/
	/*animation: loading 8s infinite cubic-bezier(0.5, 1, 0.25, 0);*/
	animation: loading 8s infinite ease-in-out;
	width: 0;
}

@keyframes loading {
	from {
		width: 0;
	}
	50% {
		width: 100%;
	}
	to {
		width: 0;
	}
}

@keyframes loading-issue {
	from {
		visibility: hidden;
	}
	99% {
		visibility: hidden;
	}
	to {
		visibility: visible;
	}
}


#fuse-splash-screen .loading_icon {
	display: block;
	width: 175px;
	margin: 12% auto 4% auto;
	transform: translateX(-24px) rotate(-31deg);
}

#fuse-splash-screen .loading_icon img {
	animation: wing 4s infinite;
	width: 175px;
	height: 100px;
}

@keyframes wing {
	from {
		transform: scalex(1);
	}
	10% {
		transform: scalex(1);
	}

	14% {
		transform: scalex(0.2);
	}

	18% {
		transform: scalex(1);
	}

	26% {
		transform: scalex(1);
	}

	30% {
		transform: scalex(0.2);
	}

	34% {
		transform: scalex(1);
	}

	to {
		transform: scalex(1);
	}
}

#fuse-splash-screen .center {
	display: block;
	width: 100%;
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
}

.logo {
	width: 350px;
	margin: 0 auto;
}

.loading_text {
	text-align: center;
	color: #333;
	font-weight: normal;
	font-size: 16px;

	position: relative;
}
