/*!
  @name imagelinks-effects.css
  @description cross-browser css3 animation library with predefined animation sequences
  @version 1.0.0
  @author Max Lawrence
  @site http://www.avirtum.com
*/
.imgl-fx-bounce {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounce;
          animation-name: imgl-fx-bounce;
  transform-origin: center bottom;
}
@-webkit-keyframes imgl-fx-bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes imgl-fx-bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.imgl-fx-pulse {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-pulse;
          animation-name: imgl-fx-pulse;
}
@-webkit-keyframes imgl-fx-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes imgl-fx-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.imgl-fx-rubberBand {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rubberBand;
          animation-name: imgl-fx-rubberBand;
}
@-webkit-keyframes imgl-fx-rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes imgl-fx-rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.imgl-fx-shake {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fx-shake;
          animation-name: fx-shake;
}
@-webkit-keyframes imgl-fx-shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes imgl-fx-shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.imgl-fx-headShake {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-headShake;
          animation-name: imgl-fx-headShake;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@-webkit-keyframes imgl-fx-headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-20deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(15deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-10deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(5deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes imgl-fx-headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-20deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(15deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-10deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(5deg);
  }
  50% {
    transform: translateX(0);
  }
}
.imgl-fx-swing {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-swing;
          animation-name: imgl-fx-swing;
  transform-origin: top center;
}
@-webkit-keyframes imgl-fx-swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes imgl-fx-swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.imgl-fx-tada {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tada;
          animation-name: imgl-fx-tada;
}
@-webkit-keyframes imgl-fx-tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes imgl-fx-tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.imgl-fx-wobble {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-wobble;
          animation-name: imgl-fx-wobble;
}
@-webkit-keyframes imgl-fx-wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
@keyframes imgl-fx-wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.imgl-fx-jello {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-jello;
          animation-name: imgl-fx-jello;
  transform-origin: center;
}
@-webkit-keyframes imgl-fx-jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes imgl-fx-jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.imgl-fx-hinge {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-hinge;
          animation-name: imgl-fx-hinge;
  transform-origin: top left;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@-webkit-keyframes imgl-fx-hinge {
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 40deg);
  }
  40%,
  80% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 5deg);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 300px, 0);
  }
}
@keyframes imgl-fx-hinge {
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 40deg);
  }
  40%,
  80% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 5deg);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 300px, 0);
  }
}
.imgl-fx-bounceIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceIn;
          animation-name: imgl-fx-bounceIn;
}
@-webkit-keyframes imgl-fx-bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes imgl-fx-bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.imgl-fx-bounceInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceInDown;
          animation-name: imgl-fx-bounceInDown;
}
@-webkit-keyframes imgl-fx-bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes imgl-fx-bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.imgl-fx-bounceInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceInLeft;
          animation-name: imgl-fx-bounceInLeft;
}
@-webkit-keyframes imgl-fx-bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes imgl-fx-bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.imgl-fx-bounceInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceInRight;
          animation-name: imgl-fx-bounceInRight;
}
@-webkit-keyframes imgl-fx-bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes imgl-fx-bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.imgl-fx-bounceInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceInUp;
          animation-name: imgl-fx-bounceInUp;
}
@-webkit-keyframes imgl-fx-bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes imgl-fx-bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.imgl-fx-bounceOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceOut;
          animation-name: imgl-fx-bounceOut;
}
@-webkit-keyframes imgl-fx-bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes imgl-fx-bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.imgl-fx-bounceOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceOutDown;
          animation-name: imgl-fx-bounceOutDown;
}
@-webkit-keyframes imgl-fx-bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes imgl-fx-bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.imgl-fx-bounceOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceOutLeft;
          animation-name: imgl-fx-bounceOutLeft;
}
@-webkit-keyframes imgl-fx-bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes imgl-fx-bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.imgl-fx-bounceOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceOutRight;
          animation-name: imgl-fx-bounceOutRight;
}
@-webkit-keyframes imgl-fx-bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes imgl-fx-bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.imgl-fx-bounceOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bounceOutUp;
          animation-name: imgl-fx-bounceOutUp;
}
@-webkit-keyframes imgl-fx-bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes imgl-fx-bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.imgl-fx-fadeIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeIn;
          animation-name: imgl-fx-fadeIn;
}
@-webkit-keyframes imgl-fx-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes imgl-fx-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.imgl-fx-fadeInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeInDown;
          animation-name: imgl-fx-fadeInDown;
}
@-webkit-keyframes imgl-fx-fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-fadeInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeInLeft;
          animation-name: imgl-fx-fadeInLeft;
}
@-webkit-keyframes imgl-fx-fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-fadeInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeInRight;
          animation-name: imgl-fx-fadeInRight;
}
@-webkit-keyframes imgl-fx-fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-fadeInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeInUp;
          animation-name: imgl-fx-fadeInUp;
}
@-webkit-keyframes imgl-fx-fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-fadeOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeOut;
          animation-name: imgl-fx-fadeOut;
}
@-webkit-keyframes imgl-fx-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes imgl-fx-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.imgl-fx-fadeOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeOutDown;
          animation-name: imgl-fx-fadeOutDown;
}
@-webkit-keyframes imgl-fx-fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes imgl-fx-fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.imgl-fx-fadeOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeOutLeft;
          animation-name: imgl-fx-fadeOutLeft;
}
@-webkit-keyframes imgl-fx-fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes imgl-fx-fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.imgl-fx-fadeOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeOutRight;
          animation-name: imgl-fx-fadeOutRight;
}
@-webkit-keyframes imgl-fx-fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes imgl-fx-fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.imgl-fx-fadeOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-fadeOutUp;
          animation-name: imgl-fx-fadeOutUp;
}
@-webkit-keyframes imgl-fx-fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes imgl-fx-fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.imgl-fx-rotateIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateIn;
          animation-name: imgl-fx-rotateIn;
  transform-origin: center;
}
@-webkit-keyframes imgl-fx-rotateIn {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -200deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-rotateIn {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -200deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-rotateInDownLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateInDownLeft;
          animation-name: imgl-fx-rotateInDownLeft;
  transform-origin: left bottom;
}
@-webkit-keyframes imgl-fx-rotateInDownLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-rotateInDownLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-rotateInDownRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateInDownRight;
          animation-name: imgl-fx-rotateInDownRight;
  transform-origin: right bottom;
}
@-webkit-keyframes imgl-fx-rotateInDownRight {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-rotateInDownRight {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-rotateInUpLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateInUpLeft;
          animation-name: imgl-fx-rotateInUpLeft;
  transform-origin: left bottom;
}
@-webkit-keyframes imgl-fx-rotateInUpLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-rotateInUpLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-rotateInUpRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateInUpRight;
          animation-name: imgl-fx-rotateInUpRight;
  transform-origin: right bottom;
}
@-webkit-keyframes imgl-fx-rotateInUpRight {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -90deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-rotateInUpRight {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -90deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-rotateOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateOut;
          animation-name: imgl-fx-rotateOut;
  transform-origin: center;
}
@-webkit-keyframes imgl-fx-rotateOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 200deg);
  }
}
@keyframes imgl-fx-rotateOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 200deg);
  }
}
.imgl-fx-rotateOutDownLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateOutDownLeft;
          animation-name: imgl-fx-rotateOutDownLeft;
  transform-origin: left bottom;
}
@-webkit-keyframes imgl-fx-rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
}
@keyframes imgl-fx-rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
}
.imgl-fx-rotateOutDownRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateOutDownRight;
          animation-name: imgl-fx-rotateOutDownRight;
  transform-origin: right bottom;
}
@-webkit-keyframes imgl-fx-rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}
@keyframes imgl-fx-rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}
.imgl-fx-rotateOutUpLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateOutUpLeft;
          animation-name: imgl-fx-rotateOutUpLeft;
  transform-origin: left bottom;
}
@-webkit-keyframes imgl-fx-rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}
@keyframes imgl-fx-rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}
.imgl-fx-rotateOutUpRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rotateOutUpRight;
          animation-name: imgl-fx-rotateOutUpRight;
  transform-origin: right bottom;
}
@-webkit-keyframes imgl-fx-rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 90deg);
  }
}
@keyframes imgl-fx-rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 90deg);
  }
}
.imgl-fx-zoomIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomIn;
          animation-name: imgl-fx-zoomIn;
}
@-webkit-keyframes imgl-fx-zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes imgl-fx-zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.imgl-fx-zoomInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomInDown;
          animation-name: imgl-fx-zoomInDown;
  transform-origin: top left;
}
@-webkit-keyframes imgl-fx-zoomInDown {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}
@keyframes imgl-fx-zoomInDown {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}
.imgl-fx-zoomInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomInLeft;
          animation-name: imgl-fx-zoomInLeft;
}
@-webkit-keyframes imgl-fx-zoomInLeft {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}
@keyframes imgl-fx-zoomInLeft {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}
.imgl-fx-zoomInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomInRight;
          animation-name: imgl-fx-zoomInRight;
  transform-origin: top left;
}
@-webkit-keyframes imgl-fx-zoomInRight {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}
@keyframes imgl-fx-zoomInRight {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}
.imgl-fx-zoomInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomInUp;
          animation-name: imgl-fx-zoomInUp;
}
@-webkit-keyframes imgl-fx-zoomInUp {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}
@keyframes imgl-fx-zoomInUp {
  from {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}
.imgl-fx-zoomOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomOut;
          animation-name: imgl-fx-zoomOut;
}
@-webkit-keyframes imgl-fx-zoomOut {
  from {
    opacity: 1;
  }
  50% {
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes imgl-fx-zoomOut {
  from {
    opacity: 1;
  }
  50% {
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.imgl-fx-zoomOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomOutDown;
          animation-name: imgl-fx-zoomOutDown;
}
@-webkit-keyframes imgl-fx-zoomOutDown {
  40% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  to {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform-origin: center bottom;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  }
}
@keyframes imgl-fx-zoomOutDown {
  40% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  to {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform-origin: center bottom;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  }
}
.imgl-fx-zoomOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomOutLeft;
          animation-name: imgl-fx-zoomOutLeft;
}
@-webkit-keyframes imgl-fx-zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform-origin: left center;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes imgl-fx-zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform-origin: left center;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.imgl-fx-zoomOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomOutRight;
          animation-name: imgl-fx-zoomOutRight;
}
@-webkit-keyframes imgl-fx-zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform-origin: right center;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes imgl-fx-zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform-origin: right center;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.imgl-fx-zoomOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-zoomOutUp;
          animation-name: imgl-fx-zoomOutUp;
}
@-webkit-keyframes imgl-fx-zoomOutUp {
  40% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  to {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform-origin: center bottom;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -4000px, 0);
  }
}
@keyframes imgl-fx-zoomOutUp {
  40% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  to {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    transform-origin: center bottom;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -4000px, 0);
  }
}
.imgl-fx-slideInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideInDown;
          animation-name: imgl-fx-slideInDown;
}
@-webkit-keyframes imgl-fx-slideInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes imgl-fx-slideInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.imgl-fx-slideInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideInLeft;
          animation-name: imgl-fx-slideInLeft;
}
@-webkit-keyframes imgl-fx-slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes imgl-fx-slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.imgl-fx-slideInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideInRight;
          animation-name: imgl-fx-slideInRight;
}
@-webkit-keyframes imgl-fx-slideInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes imgl-fx-slideInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.imgl-fx-slideInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideInUp;
          animation-name: imgl-fx-slideInUp;
}
@-webkit-keyframes imgl-fx-slideInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes imgl-fx-slideInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.imgl-fx-slideOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideOutDown;
          animation-name: imgl-fx-slideOutDown;
}
@-webkit-keyframes imgl-fx-slideOutDown {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes imgl-fx-slideOutDown {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.imgl-fx-slideOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideOutLeft;
          animation-name: imgl-fx-slideOutLeft;
}
@-webkit-keyframes imgl-fx-slideOutLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes imgl-fx-slideOutLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.imgl-fx-slideOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideOutRight;
          animation-name: imgl-fx-slideOutRight;
}
@-webkit-keyframes imgl-fx-slideOutRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes imgl-fx-slideOutRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.imgl-fx-slideOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-slideOutUp;
          animation-name: imgl-fx-slideOutUp;
}
@-webkit-keyframes imgl-fx-slideOutUp {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes imgl-fx-slideOutUp {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.imgl-fx-perspectiveInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveInDown;
          animation-name: imgl-fx-perspectiveInDown;
  transform-origin: bottom right);
}
@-webkit-keyframes imgl-fx-perspectiveInDown {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes imgl-fx-perspectiveInDown {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}
.imgl-fx-perspectiveInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveInLeft;
          animation-name: imgl-fx-perspectiveInLeft;
  transform-origin: top left;
}
@-webkit-keyframes imgl-fx-perspectiveInLeft {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(-180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes imgl-fx-perspectiveInLeft {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(-180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
}
.imgl-fx-perspectiveInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveInRight;
          animation-name: imgl-fx-perspectiveInRight;
  transform-origin: top right;
}
@-webkit-keyframes imgl-fx-perspectiveInRight {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes imgl-fx-perspectiveInRight {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
}
.imgl-fx-perspectiveInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveInUp;
          animation-name: imgl-fx-perspectiveInUp;
  transform-origin: top right;
}
@-webkit-keyframes imgl-fx-perspectiveInUp {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes imgl-fx-perspectiveInUp {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(180deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}
.imgl-fx-perspectiveOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveOutDown;
          animation-name: imgl-fx-perspectiveOutDown;
  transform-origin: bottom right;
}
@-webkit-keyframes imgl-fx-perspectiveOutDown {
  from {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateX(-180deg);
  }
}
@keyframes imgl-fx-perspectiveOutDown {
  from {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateX(-180deg);
  }
}
.imgl-fx-perspectiveOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveOutLeft;
          animation-name: imgl-fx-perspectiveOutLeft;
  transform-origin: top left;
}
@-webkit-keyframes imgl-fx-perspectiveOutLeft {
  from {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateY(-180deg);
  }
}
@keyframes imgl-fx-perspectiveOutLeft {
  from {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateY(-180deg);
  }
}
.imgl-fx-perspectiveOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveOutRight;
          animation-name: imgl-fx-perspectiveOutRight;
  transform-origin: top right;
}
@-webkit-keyframes imgl-fx-perspectiveOutRight {
  from {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateY(180deg);
  }
}
@keyframes imgl-fx-perspectiveOutRight {
  from {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateY(180deg);
  }
}
.imgl-fx-perspectiveOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-perspectiveOutUp;
          animation-name: imgl-fx-perspectiveOutUp;
  transform-origin: top right;
}
@-webkit-keyframes imgl-fx-perspectiveOutUp {
  from {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateX(180deg);
  }
}
@keyframes imgl-fx-perspectiveOutUp {
  from {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: perspective(800px) rotateX(180deg);
  }
}
.imgl-fx-tinInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinInDown;
          animation-name: imgl-fx-tinInDown;
}
@-webkit-keyframes imgl-fx-tinInDown {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateY(900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateY(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes imgl-fx-tinInDown {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateY(900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateY(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.imgl-fx-tinInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinInLeft;
          animation-name: imgl-fx-tinInLeft;
}
@-webkit-keyframes imgl-fx-tinInLeft {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes imgl-fx-tinInLeft {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
.imgl-fx-tinInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinInRight;
          animation-name: imgl-fx-tinInRight;
}
@-webkit-keyframes imgl-fx-tinInRight {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes imgl-fx-tinInRight {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
.imgl-fx-tinInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinInUp;
          animation-name: imgl-fx-tinInUp;
}
@-webkit-keyframes imgl-fx-tinInUp {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateY(-900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateY(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes imgl-fx-tinInUp {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateY(-900%);
  }
  50%,
  70%,
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateY(0);
  }
  60%,
  80%,
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.imgl-fx-tinOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinOutDown;
          animation-name: imgl-fx-tinOutDown;
}
@-webkit-keyframes imgl-fx-tinOutDown {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateY(900%);
  }
}
@keyframes imgl-fx-tinOutDown {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateY(900%);
  }
}
.imgl-fx-tinOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinOutLeft;
          animation-name: imgl-fx-tinOutLeft;
}
@-webkit-keyframes imgl-fx-tinOutLeft {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }
}
@keyframes imgl-fx-tinOutLeft {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }
}
.imgl-fx-tinOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinOutRight;
          animation-name: imgl-fx-tinOutRight;
}
@-webkit-keyframes imgl-fx-tinOutRight {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }
}
@keyframes imgl-fx-tinOutRight {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }
}
.imgl-fx-tinOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-tinOutUp;
          animation-name: imgl-fx-tinOutUp;
}
@-webkit-keyframes imgl-fx-tinOutUp {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateY(-900%);
  }
}
@keyframes imgl-fx-tinOutUp {
  0%,
  20%,
  40%,
  50% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
  10%,
  30% {
    transform: scale(1.1, 1.1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1) translateY(-900%);
  }
}
.imgl-fx-spaceInDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceInDown;
          animation-name: imgl-fx-spaceInDown;
  transform-origin: center bottom;
}
@-webkit-keyframes imgl-fx-spaceInDown {
  from {
    opacity: 0;
    transform: scale(0.2) translate(0%, 200%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes imgl-fx-spaceInDown {
  from {
    opacity: 0;
    transform: scale(0.2) translate(0%, 200%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
.imgl-fx-spaceInLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceInLeft;
          animation-name: imgl-fx-spaceInLeft;
  transform-origin: left center;
}
@-webkit-keyframes imgl-fx-spaceInLeft {
  from {
    opacity: 0;
    transform: scale(0.2) translate(-200%, 0%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes imgl-fx-spaceInLeft {
  from {
    opacity: 0;
    transform: scale(0.2) translate(-200%, 0%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
.imgl-fx-spaceInRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceInRight;
          animation-name: imgl-fx-spaceInRight;
  transform-origin: right center);
}
@-webkit-keyframes imgl-fx-spaceInRight {
  from {
    opacity: 0;
    transform: scale(0.2) translate(200%, 0%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes imgl-fx-spaceInRight {
  from {
    opacity: 0;
    transform: scale(0.2) translate(200%, 0%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
.imgl-fx-spaceInUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceInUp;
          animation-name: imgl-fx-spaceInUp;
  transform-origin: center top;
}
@-webkit-keyframes imgl-fx-spaceInUp {
  from {
    opacity: 0;
    transform: scale(0.2) translate(0%, -200%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes imgl-fx-spaceInUp {
  from {
    opacity: 0;
    transform: scale(0.2) translate(0%, -200%);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}
.imgl-fx-spaceOutDown {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceOutDown;
          animation-name: imgl-fx-spaceOutDown;
  transform-origin: center bottom;
}
@-webkit-keyframes imgl-fx-spaceOutDown {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(0%, 200%);
  }
}
@keyframes imgl-fx-spaceOutDown {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(0%, 200%);
  }
}
.imgl-fx-spaceOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceOutLeft;
          animation-name: imgl-fx-spaceOutLeft;
  transform-origin: left center;
}
@-webkit-keyframes imgl-fx-spaceOutLeft {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(-200%, 0%);
  }
}
@keyframes imgl-fx-spaceOutLeft {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(-200%, 0%);
  }
}
.imgl-fx-spaceOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceOutRight;
          animation-name: imgl-fx-spaceOutRight;
  transform-origin: right center;
}
@-webkit-keyframes imgl-fx-spaceOutRight {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(200%, 0%);
  }
}
@keyframes imgl-fx-spaceOutRight {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(200%, 0%);
  }
}
.imgl-fx-spaceOutUp {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-spaceOutUp;
          animation-name: imgl-fx-spaceOutUp;
  transform-origin: center top;
}
@-webkit-keyframes imgl-fx-spaceOutUp {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(0%, -200%);
  }
}
@keyframes imgl-fx-spaceOutUp {
  from {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
  to {
    opacity: 0;
    transform: scale(0.2) translate(0%, -200%);
  }
}
.imgl-fx-flip {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-flip;
          animation-name: imgl-fx-flip;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
@-webkit-keyframes imgl-fx-flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 30px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 30px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes imgl-fx-flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 30px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 30px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
.imgl-fx-flipInX {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-flipInX;
          animation-name: imgl-fx-flipInX;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
@-webkit-keyframes imgl-fx-flipInX {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes imgl-fx-flipInX {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.imgl-fx-flipInY {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-flipInY;
          animation-name: imgl-fx-flipInY;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
@-webkit-keyframes imgl-fx-flipInY {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes imgl-fx-flipInY {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.imgl-fx-flipOutX {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-flipOutX;
          animation-name: imgl-fx-flipOutX;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
@-webkit-keyframes imgl-fx-flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
}
@keyframes imgl-fx-flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
}
.imgl-fx-flipOutY {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-flipOutY;
          animation-name: imgl-fx-flipOutY;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
@-webkit-keyframes imgl-fx-flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
}
@keyframes imgl-fx-flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
}
.imgl-fx-lightSpeedIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-lightSpeedIn;
          animation-name: imgl-fx-lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
@-webkit-keyframes imgl-fx-lightSpeedIn {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(-10deg);
  }
  60% {
    opacity: 1;
    transform: skewX(5deg);
  }
  80% {
    transform: skewX(-2deg);
  }
  to {
    transform: none;
  }
}
@keyframes imgl-fx-lightSpeedIn {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(-10deg);
  }
  60% {
    opacity: 1;
    transform: skewX(5deg);
  }
  80% {
    transform: skewX(-2deg);
  }
  to {
    transform: none;
  }
}
.imgl-fx-lightSpeedOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-lightSpeedOut;
          animation-name: imgl-fx-lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
@-webkit-keyframes imgl-fx-lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(5deg);
  }
}
@keyframes imgl-fx-lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(5deg);
  }
}
.imgl-fx-rollIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rollIn;
          animation-name: imgl-fx-rollIn;
}
@-webkit-keyframes imgl-fx-rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imgl-fx-rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.imgl-fx-rollOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-rollOut;
          animation-name: imgl-fx-rollOut;
}
@-webkit-keyframes imgl-fx-rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes imgl-fx-rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.imgl-fx-vanishIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-vanishIn;
          animation-name: imgl-fx-vanishIn;
  transform-origin: center center;
}
@-webkit-keyframes imgl-fx-vanishIn {
  from {
    opacity: 0;
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
  }
  to {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes imgl-fx-vanishIn {
  from {
    opacity: 0;
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
  }
  to {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
.imgl-fx-vanishOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-vanishOut;
          animation-name: imgl-fx-vanishOut;
}
@-webkit-keyframes imgl-fx-vanishOut {
  from {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
  to {
    opacity: 0;
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
  }
}
@keyframes imgl-fx-vanishOut {
  from {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
  to {
    opacity: 0;
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
  }
}
.imgl-fx-swashIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-swashIn;
          animation-name: imgl-fx-swashIn;
  transform-origin: center center;
}
@-webkit-keyframes imgl-fx-swashIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  90% {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes imgl-fx-swashIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  90% {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
.imgl-fx-swashOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-swashOut;
          animation-name: imgl-fx-swashOut;
  transform-origin: center center;
}
@-webkit-keyframes imgl-fx-swashOut {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  80% {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@keyframes imgl-fx-swashOut {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  80% {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
.imgl-fx-foolishIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-foolishIn;
          animation-name: imgl-fx-foolishIn;
}
@-webkit-keyframes imgl-fx-foolishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%);
    transform: scale(0, 0) rotate(360deg);
  }
  20% {
    opacity: 1;
    transform-origin: 0% 100%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  40% {
    transform-origin: 100% 100%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  60% {
    transform-origin: 0% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  80% {
    transform-origin: 0% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  100% {
    transform-origin: 50% 50%);
    transform: scale(1, 1) rotate(0deg);
  }
}
@keyframes imgl-fx-foolishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%);
    transform: scale(0, 0) rotate(360deg);
  }
  20% {
    opacity: 1;
    transform-origin: 0% 100%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  40% {
    transform-origin: 100% 100%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  60% {
    transform-origin: 0% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  80% {
    transform-origin: 0% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  100% {
    transform-origin: 50% 50%);
    transform: scale(1, 1) rotate(0deg);
  }
}
.imgl-fx-foolishOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-foolishOut;
          animation-name: imgl-fx-foolishOut;
}
@-webkit-keyframes imgl-fx-foolishOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%);
    transform: scale(1, 1) rotate(360deg);
  }
  20% {
    transform-origin: 0% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  40% {
    transform-origin: 100% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  60% {
    transform-origin: 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  80% {
    opacity: 1;
    transform-origin: 0% 100%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%);
    transform: scale(0, 0) rotate(0deg);
  }
}
@keyframes imgl-fx-foolishOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%);
    transform: scale(1, 1) rotate(360deg);
  }
  20% {
    transform-origin: 0% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  40% {
    transform-origin: 100% 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  60% {
    transform-origin: 0%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  80% {
    opacity: 1;
    transform-origin: 0% 100%);
    transform: scale(0.5, 0.5) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%);
    transform: scale(0, 0) rotate(0deg);
  }
}
.imgl-fx-holeIn {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-holeIn;
          animation-name: imgl-fx-holeIn;
  transform-origin: center center;
}
@-webkit-keyframes imgl-fx-holeIn {
  from {
    opacity: 0;
    transform: scale(0, 0) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: scale(1, 1) rotateY(0deg);
  }
}
@keyframes imgl-fx-holeIn {
  from {
    opacity: 0;
    transform: scale(0, 0) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: scale(1, 1) rotateY(0deg);
  }
}
.imgl-fx-holeOut {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-holeOut;
          animation-name: imgl-fx-holeOut;
  transform-origin: center center;
}
@-webkit-keyframes imgl-fx-holeOut {
  from {
    opacity: 1;
    transform: scale(1, 1) rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: scale(0, 0) rotateY(180deg);
  }
}
@keyframes imgl-fx-holeOut {
  from {
    opacity: 1;
    transform: scale(1, 1) rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: scale(0, 0) rotateY(180deg);
  }
}
.imgl-fx-bombOutLeft {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bombOutLeft;
          animation-name: imgl-fx-bombOutLeft;
}
@-webkit-keyframes imgl-fx-bombOutLeft {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: rotate(0deg);
    -webkit-filter: blur(0px);
  }
  50% {
    opacity: 1;
    transform-origin: -30% 50%;
    transform: rotate(-160deg);
    -webkit-filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform-origin: -30% 50%;
    transform: rotate(-160deg);
    -webkit-filter: blur(20px);
  }
}
@keyframes imgl-fx-bombOutLeft {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: rotate(0deg);
    -webkit-filter: blur(0px);
  }
  50% {
    opacity: 1;
    transform-origin: -30% 50%;
    transform: rotate(-160deg);
    -webkit-filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform-origin: -30% 50%;
    transform: rotate(-160deg);
    -webkit-filter: blur(20px);
  }
}
.imgl-fx-bombOutRight {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: imgl-fx-bombOutRight;
          animation-name: imgl-fx-bombOutRight;
}
@-webkit-keyframes imgl-fx-bombOutRight {
  0% {
    opacity: 1;
    transform-origin: 50% 50%);
    transform: rotate(0deg);
    -webkit-filter: blur(0px);
  }
  50% {
    opacity: 1;
    transform-origin: 130% 50%;
    transform: rotate(160deg);
    -webkit-filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform-origin: 130% 50%;
    transform: rotate(160deg);
    -webkit-filter: blur(20px);
  }
}
@keyframes imgl-fx-bombOutRight {
  0% {
    opacity: 1;
    transform-origin: 50% 50%);
    transform: rotate(0deg);
    -webkit-filter: blur(0px);
  }
  50% {
    opacity: 1;
    transform-origin: 130% 50%;
    transform: rotate(160deg);
    -webkit-filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform-origin: 130% 50%;
    transform: rotate(160deg);
    -webkit-filter: blur(20px);
  }
}
