@charset "UTF-8";
/* CSS Document */

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 10;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 10;
}


.fadeout2 {
  animation : fadeOut 0.5s;
  animation-fill-mode: both;
}
.fadeout1 {
  animation : fadeOut 1s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  0% { opacity: 1;}
  100% { opacity: 0;}
}