

/*  WEBSITE PRELOADER  */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color:#333
}
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  
}
.loading li {
  position: absolute;
  top: 0;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
}
.loading li.pink {
  background: #F03;
  animation: loading-animated 3s ease-in-out infinite;
}
.loading li.yellow {
  background: #FF0;
  animation: loading-animated 3s ease-in-out 0.3s infinite;
}
.loading li.green {
  background: #0F0;
  animation: loading-animated 3s ease-in-out 0.5s infinite;
}
.loading li.blue {
  background: #0FF;
  animation: loading-animated 3s ease-in-out 0.7s infinite;
}
@-webkit-keyframes loading-animated {
  0% {
    -webkit-transform: translateX(-200px) scale(0);
  }
  50% {
   -webkit-transform: translateX(0px) scale(1.5);
  }
  100% {
    -webkit-transform: translateX(200px) scale(0);
  }
}
@keyframes loading-animated {
  0% {
    transform: translateX(-200px) scale(0);
  }
  50% {
    transform: translateX(0px) scale(1.5);
  }
  100% {
    transform: translateX(200px) scale(0);
  }
}
#progress-message{
	position:absolute; top:60%; width:100%;
	
	text-transform:uppercase;
	letter-spacing:2.5px;
	font-size:12px; 
  	color:#fff;
	text-align:center;
  	animation: blink 2s infinite;
}
@-moz-keyframes blink {  
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@-webkit-keyframes blink {  
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@-ms-keyframes blink {  
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes blink {  
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
