/*=====loder css======*/
.loader  {
  -webkit-animation: rotate 1s infinite;
  animation: rotate 1s infinite;  
  height: 50px;
  width: 50px;
}

.loader:before,
.loader:after {   
  border-radius: 50%;
  content: '';
  display: block;
  height: 20px;  
  width: 20px;
}
.loader:before {
  -webkit-animation: ball1 1s infinite;
  animation: ball1 1s infinite;  
  background-color: #ff0000;
  -webkit-box-shadow: 30px 0 0 #ffff00;
  box-shadow: 30px 0 0 #ffff00;
  margin-bottom: 10px;
}
.loader:after {
  -webkit-animation: ball2 1s infinite;
  animation: ball2 1s infinite; 
  background-color:#0482D2;
  -webkit-box-shadow: 30px 0 0 #00ebff;
  box-shadow: 30px 0 0 #00ebff;
}

@-webkit-keyframes rotate {
  0% { 
    -webkit-transform: rotate(0deg) scale(0.8); 
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% { 
    -webkit-transform: rotate(360deg) scale(1.2); 
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% { 
    -webkit-transform: rotate(720deg) scale(0.8); 
    -moz-transform: rotate(720deg) scale(0.8);
  }
}

@keyframes rotate {
  0% { 
    -webkit-transform: rotate(0deg) scale(0.8); 
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% { 
    -webkit-transform: rotate(360deg) scale(1.2); 
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% { 
    -webkit-transform: rotate(720deg) scale(0.8); 
    -moz-transform: rotate(720deg) scale(0.8);
  }
}

@-webkit-keyframes ball1 {
  0% {
    -webkit-box-shadow: 30px 0 0 #00ebff;
    box-shadow: 30px 0 0 #00ebff;
  }
  50% {
    -webkit-box-shadow: 0 0 0 #00ebff;
    box-shadow: 0 0 0 #00ebff;
    margin-bottom: 0;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    -webkit-box-shadow: 30px 0 0 #00ebff;
    box-shadow: 30px 0 0 #00ebff;
    margin-bottom: 10px;
  }
}

@keyframes ball1 {
  0% {
    -webkit-box-shadow: 30px 0 0 #00ebff;
    box-shadow: 30px 0 0 #00ebff;
  }
  50% {
    -webkit-box-shadow: 0 0 0 #00ebff;
    box-shadow: 0 0 0 #00ebff;
    margin-bottom: 0;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    -webkit-box-shadow: 30px 0 0 #00ebff;
    box-shadow: 30px 0 0 #00ebff;
    margin-bottom: 10px;
  }
}

@-webkit-keyframes ball2 {
  0% {
    -webkit-box-shadow: 30px 0 0 #ffff00;
    box-shadow: 30px 0 0 #ffff00;
  }
  50% {
    -webkit-box-shadow: 0 0 0 #ffff00;
    box-shadow: 0 0 0 #ffff00;
    margin-top: -20px;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    -webkit-box-shadow: 30px 0 0 #ffff00;
    box-shadow: 30px 0 0 #ffff00;
    margin-top: 0;
  }
}

@keyframes ball2 {
  0% {
    -webkit-box-shadow: 30px 0 0 #c6ff00;
    box-shadow: 30px 0 0 #c6ff00;
  }
  50% {
    -webkit-box-shadow: 0 0 0 #c6ff00;
    box-shadow: 0 0 0 #c6ff00;
    margin-top: -20px;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    -webkit-box-shadow: 30px 0 0 #c6ff00;
    box-shadow: 30px 0 0 #c6ff00;
    margin-top: 0;
  }
}
/*=====loder css======*/


/*=======main preloader css=======*/

.flex-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#F79B28;
	z-index: 999999;
}
/*=======main preloader css=======*/