.rl-animate-zoom-left {
  animation-name: rl-animate-left;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease;
  animation-fill-mode: both;
  -webkit-animation-name: rl-animate-left;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
}

.rl-animate-zoom-right {
  animation-name: rl-animate-right;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease;
  animation-fill-mode: both;
  -webkit-animation-name: rl-animate-right;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
}

@-webkit-keyframes rl-animate-left {
  0% {
    width: 112%;
    opacity: 0.9;
  }
  100% {
    width: 112%;
    transform: translate(-10%, 10%) scale(1.2, 1.2);
    -webkit-transform: translate(-10%, 10%) scale(1.2, 1.2);
  }
}

@keyframes rl-animate-left {
  0% {
    width: 112%;
    opacity: 0.9;
  }
  100% {
    width: 112%;
    transform: translate(-10%, 10%) scale(1.2, 1.2);
    -webkit-transform: translate(-10%, 10%) scale(1.2, 1.2);
  }
}

@-webkit-keyframes rl-animate-right {
  0% {
    width: 112%;
    opacity: 0.9;
  }
  100% {
    width: 112%;
    transform: translate(10%, 10%) scale(1.2, 1.2);
    -webkit-transform: translate(10%, 10%) scale(1.2, 1.2);
  }
}

@keyframes rl-animate-right {
  0% {
    width: 112%;
    opacity: 0.9;
  }
  100% {
    width: 112%;
    transform: translate(10%, 10%) scale(1.2, 1.2);
    -webkit-transform: translate(10%, 10%) scale(1.2, 1.2);
  }
}