@charset "UTF-8";
/* ------------------ */
/* -- loading.css ---- */
/* ------------------ */

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #ac0000;
  z-index: 1000;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 280px;
  margin-top: -160px;
  margin-left: -260px;
  text-align: center;
  color: #fff;
  z-index: 1001;
}

@media only screen and (max-width: 768px) {
	#loader {
	  width: 300px;
	  height: 162px;
	  margin-top: -160px;
	  margin-left: -150px;
	}
}

