/* Loading　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background:#fff;
  text-align:center;
  color:#fff;
  transition: all 1s;
  opacity: 1;
  visibility: visible;
}

#splash.is-active{
  opacity: 0;
  visibility: hidden;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s;
  opacity: 0;
  visibility: hidden;
}

#splash_logo.is-active{
  opacity: 1;
  visibility: visible;
}

#splash_logo img {
  width:200px;
}

#progress-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;   
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

#progress-wrapper.is-active{
  opacity: 1;
  visibility: visible;
}

#progress_bar{
    position: relative;
    z-index: 999;
    margin: 250px auto 0;
	width:200px;
	height:5px;
	border-radius:5px;
	overflow: hidden;
	background:#eee;

}

#progress_bar .bar{
	height:100%;
	position:absolute;
	animation: progress 1.0s normal;
	animation-fill-mode: forwards;
	background:#5B7CB0;
}

@keyframes progress {
	0% {width: 0}
	100% {width: 100%}
}
.slideIn{
    animation-name: slideIn;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity: 0; 
}
@keyframes slideIn{
from {
    opacity: 0;
    transform: translateX(-50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.fadeIn{
    animation-name: fadeIn;
    animation-duration:2.0s;
    animation-fill-mode:forwards;
    opacity: 0; 
}
@keyframes fadeIn{
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}