/*loadingDiv*/
#loadingDiv{position:fixed;left:0;width:100%;height:100%;top:0;background: #08306e;z-index:999999;}
.loadlayer{position:absolute;text-align:center;top:40%;width:100%;}
.showhide{ 
font-size:14px;color:#fff;line-height:36px;text-align:center;position: relative;width:100%;
-webkit-animation: showhide 3s linear; 
-webkit-animation-iteration-count: infinite; 
-moz-animation: showhide 3s linear; 
-moz-animation-iteration-count: infinite; 
animation: showhide 3s linear; 
animation-iteration-count: infinite; 
} 
@-moz-keyframes showhide {0% { opacity: 0; } 50% { opacity: 1;} 100% { opacity: 0; }}
@-webkit-keyframes showhide {0% {  opacity: 0; } 50%  {opacity: 1;} 100% { opacity: 0; } }
@keyframes showhide {0% {  opacity: 0; } 50%  {opacity: 1;} 100% { opacity: 0; } }
@media screen and (min-width:480px) {
.showhide{font-size:21px;line-height:54px; }
}

.spinner {
  margin: 0 auto;
  width: 150px;
  text-align: center;
}
 
.spinner > div {
  width: 30px;
  height: 30px;
  background-color: #fff;
 
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
 
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
 
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
 
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
 
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

#mainbg{width:100%;height:100%;top:0;left:0;position:fixed;z-index:999990;overflow:hidden;background-color:transparent;}
.arrow{ position:fixed;bottom:20px;left:50%;margin-left:-5%;-moz-animation-name: hd-slide;
  -moz-animation-duration: 0.5s;
  -moz-animation-iteration-function: ease;
  -webkit-animation-iteration-count:infinite;
  
  -webkit-animation-name: hd-slide;
  -webkit-animation-duration: 0.5s; 
  -webkit-animation-iteration-function: ease;
  -webkit-animation-iteration-count:infinite;
  
  animation-name: hd-slide;
  animation-duration: 0.5s;
   animation-iteration-function: ease;
  animation-iteration-count:infinite;}
@-moz-keyframes hd-slide {

  0% {
    position:fixed;bottom:20px;
  }

  50% {
     position:fixed;bottom:35px;
  }
    100% {
     position:fixed;bottom:20px;
  }

}
@-webkit-keyframes hd-slide {

   0% {
    position:fixed;bottom:20px;
  }

  50% {
     position:fixed;bottom:35px;
  }
    100% {
     position:fixed;bottom:20px;
  }



}
@keyframes hd-slide {

     0% {
    position:fixed;bottom:20px;
  }

  50% {
     position:fixed;bottom:35px;
  }
    100% {
     position:fixed;bottom:20px;
  }



}