.loader-wrapper{
	background: #fff;
	position: fixed;
    width: 100vw;
	height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000000;
}
.wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.wrap .loading {
	background: url("../images/loader.gif") no-repeat scroll center center #fff;
	background-size: 100% auto;
	position: relative;
	display: inline-block;
	height: 55px;
	width: 55px;
  /*-webkit-animation-duration: 1s;
  -webkit-animation-name: heartBeat;
  -webkit-animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-name: heartBeat;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;*/
}
.lb .wrap .loading {
    background: url("../images/loader-parazed.png") no-repeat scroll center center, url("../images/ripple.gif") no-repeat scroll center center;
    background-size: 30% auto, 100% auto;
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    /*-webkit-animation-duration: 1s;
    -webkit-animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-name: heartBeat;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;*/
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  80% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  100% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  80% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  100% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}