@charset "UTF-8";
header,
#main_slideshow {
	opacity: 1;
}
#loader-bg {
    position: fixed;
    width: 100%;
    /*height: 100vh;*/
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 102;
}
#loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
#loader.logo.anim {
    width: 200px;
    height: 200px;
	display: block;
}
/*#loader.logo.fade {
	display: none;
}*/
/*#loader.simple {
	width: 38px;
	height: 38px;
}*/
#loader.simple {
	width:180px;
	max-width:40%;
	height:fit-content;
}
#loader.simple img {
	width:100%;
}
/*
#loader.simple img {
	transform: rotate(0deg);
	animation: spin 0.9s linear 0s infinite normal;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
*/
.gauge {
	width: 300px;
	height: 8px;
	box-sizing: border-box;
	border: 1px solid #000000;
}
.gauge span {
	width: 0%;
	height: 6px;
	background: #000000;
	display: block;
	animation: timer 3.0s linear 0s 1 normal;
}
@keyframes timer {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@media screen and (max-width:599px) {
	#loader.logo.anim {
		width: 135px;
		height: 135px;
	}
}
