.golazy-animated {
  animation-fill-mode: forwards;
}

.hidden-element.golazy-animated {
  visibility: visible;
}

.golazy-animated-infinite {
  animation-iteration-count: infinite;
}

.golazy-animated-sbounce {
  animation-name: golazy-sbounce;
}
@keyframes golazy-sbounce {
  0%,20%,53%,to {
      animation-timing-function: cubic-bezier(.215,.61,.355,1);
      transform: translateZ(0)
  }

  40%,43% {
      animation-timing-function: cubic-bezier(.755,.05,.855,.06);
      transform: translate3d(0,-30px,0) scaleY(1.1)
  }

  70% {
      animation-timing-function: cubic-bezier(.755,.05,.855,.06);
      transform: translate3d(0,-15px,0) scaleY(1.05)
  }

  80% {
      transform: translateZ(0) scaleY(.95);
      transition-timing-function: cubic-bezier(.215,.61,.355,1)
  }

  90% {
      transform: translate3d(0,-4px,0) scaleY(1.02)
  }
}

.golazy-animated-flash {
  animation-name: golazy-flash;
}
@keyframes golazy-flash {
  0%,50%,to {
      opacity: 1
  }

  25%,75% {
      opacity: 0
  }
}

.golazy-animated-pulse {
  animation-name: golazy-pulse;
}
@keyframes golazy-pulse {
  0% {
      transform: scaleX(1)
  }

  50% {
      transform: scale3d(1.05,1.05,1.05)
  }

  to {
      transform: scaleX(1)
  }
}

.golazy-animated-rubberBand {
  animation-name: golazy-rubberBand;
}
@keyframes golazy-rubberBand {
  0% {
      transform: scaleX(1)
  }

  30% {
      transform: scale3d(1.25,.75,1)
  }

  40% {
      transform: scale3d(.75,1.25,1)
  }

  50% {
      transform: scale3d(1.15,.85,1)
  }

  65% {
      transform: scale3d(.95,1.05,1)
  }

  75% {
      transform: scale3d(1.05,.95,1)
  }

  to {
      transform: scaleX(1)
  }
}

.golazy-animated-shakeX {
  animation-name: golazy-shakeX;
}
@keyframes golazy-shakeX {
  0%,to {
      transform: translateZ(0)
  }

  10%,30%,50%,70%,90% {
      transform: translate3d(-10px,0,0)
  }

  20%,40%,60%,80% {
      transform: translate3d(10px,0,0)
  }
}

.golazy-animated-shakeY {
  animation-name: golazy-shakeY;
}
@keyframes golazy-shakeY {
  0%,to {
      transform: translateZ(0)
  }

  10%,30%,50%,70%,90% {
      transform: translate3d(0,-10px,0)
  }

  20%,40%,60%,80% {
      transform: translate3d(0,10px,0)
  }
}

.golazy-animated-swing {
  animation-name: golazy-swing;
}
@keyframes golazy-swing {
  20% {
      transform: rotate(15deg)
  }

  40% {
      transform: rotate(-10deg)
  }

  60% {
      transform: rotate(5deg)
  }

  80% {
      transform: rotate(-5deg)
  }

  to {
      transform: rotate(0)
  }
}

.golazy-animated-jello {
  animation-name: golazy-jello;
}
@keyframes golazy-jello {
  0%,11.1%,to {
      transform: translateZ(0)
  }

  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(-.78125deg) skewY(-.78125deg)
  }

  77.7% {
      transform: skewX(.390625deg) skewY(.390625deg)
  }

  88.8% {
      transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}

.golazy-animated-heartbeat {
  animation-name: golazy-heartbeat;
}
@keyframes golazy-heartbeat {
  0% {
      transform: scale(1)
  }

  14% {
      transform: scale(1.3)
  }

  28% {
      transform: scale(1)
  }

  42% {
      transform: scale(1.3)
  }

  70% {
      transform: scale(1)
  }
}






.golazy-animated-backInDown {
  animation-name: golazy-backInDown;
}
@keyframes golazy-backInDown {
  0% {
      opacity: .7;
      transform: translateY(-1200px) scale(.7)
  }

  80% {
      opacity: .7;
      transform: translateY(0) scale(.7)
  }

  to {
      opacity: 1;
      transform: scale(1)
  }
}

.golazy-animated-backInLeft {
  animation-name: golazy-backInLeft;
}
@keyframes golazy-backInLeft {
  0% {
      opacity: .7;
      transform: translateX(-2000px) scale(.7)
  }

  80% {
      opacity: .7;
      transform: translateX(0) scale(.7)
  }

  to {
      opacity: 1;
      transform: scale(1)
  }
}

.golazy-animated-backInRight {
  animation-name: golazy-backInRight;
}
@keyframes golazy-backInRight {
  0% {
      opacity: .7;
      transform: translateX(2000px) scale(.7)
  }

  80% {
      opacity: .7;
      transform: translateX(0) scale(.7)
  }

  to {
      opacity: 1;
      transform: scale(1)
  }
}

.golazy-animated-backInUp {
  animation-name: golazy-backInUp;
}
@keyframes golazy-backInUp {
  0% {
      opacity: .7;
      transform: translateY(1200px) scale(.7)
  }

  80% {
      opacity: .7;
      transform: translateY(0) scale(.7)
  }

  to {
      opacity: 1;
      transform: scale(1)
  }
}

.golazy-animated-backOutDown {
  animation-name: golazy-backOutDown;
}
@keyframes golazy-backOutDown {
  0% {
      opacity: 1;
      transform: scale(1)
  }

  20% {
      opacity: .7;
      transform: translateY(0) scale(.7)
  }

  50% {
      opacity: .7;
      transform: translateY(700px) scale(.7)
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.golazy-animated-backOutLeft {
  animation-name: golazy-backOutLeft;
}
@keyframes golazy-backOutLeft {
  0% {
      opacity: 1;
      transform: scale(1)
  }

  20% {
      opacity: .7;
      transform: translateX(0) scale(.7)
  }

  50% {
      opacity: .7;
      transform: translateX(-2000px) scale(.7)
  }
  100% {
      opacity: 1;
      transform: scale(1)
  }
}

.golazy-animated-backOutRight {
  animation-name: golazy-backOutRight;
}
@keyframes golazy-backOutRight {
  0% {
      opacity: 1;
      transform: scale(1)
  }

  20% {
      opacity: .7;
      transform: translateX(0) scale(.7)
  }

  50% {
      opacity: .7;
      transform: translateX(2000px) scale(.7)
  }
  100% {
      opacity: 1;
      transform: scale(1)
  }
}

.golazy-animated-backOutUp {
  animation-name: golazy-backOutUp;
}
@keyframes golazy-backOutUp {
  0% {
      opacity: 1;
      transform: scale(1)
  }

  20% {
      opacity: .7;
      transform: translateY(0) scale(.7)
  }

  50% {
      opacity: .7;
      transform: translateY(-700px) scale(.7)
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}








.golazy-animated-bounceIn {
  animation-name: golazy-bounceIn;
}
@keyframes golazy-bounceIn {
  0%,20%,40%,60%,80%,to {
      animation-timing-function: cubic-bezier(.215,.61,.355,1)
  }

  0% {
      opacity: 0;
      transform: scale3d(.3,.3,.3)
  }

  20% {
      transform: scale3d(1.1,1.1,1.1)
  }

  40% {
      transform: scale3d(.9,.9,.9)
  }

  60% {
      opacity: 1;
      transform: scale3d(1.03,1.03,1.03)
  }

  80% {
      transform: scale3d(.97,.97,.97)
  }

  to {
      opacity: 1;
      transform: scaleX(1)
  }
}

.golazy-animated-bounceInDown {
  animation-name: golazy-bounceInDown;
}
@keyframes golazy-bounceInDown {
  0%,60%,75%,90%,to {
      animation-timing-function: cubic-bezier(.215,.61,.355,1)
  }

  0% {
      opacity: 0;
      transform: translate3d(0,-3000px,0) scaleY(3)
  }

  60% {
      opacity: 1;
      transform: translate3d(0,25px,0) scaleY(.9)
  }

  75% {
      transform: translate3d(0,-10px,0) scaleY(.95)
  }

  90% {
      transform: translate3d(0,5px,0) scaleY(.985)
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-bounceInLeft {
  animation-name: golazy-bounceInLeft;
}
@keyframes golazy-bounceInLeft {
  0%,60%,75%,90%,to {
      animation-timing-function: cubic-bezier(.215,.61,.355,1)
  }

  0% {
      opacity: 0;
      transform: translate3d(-3000px,0,0) scaleX(3)
  }

  60% {
      opacity: 1;
      transform: translate3d(25px,0,0) scaleX(1)
  }

  75% {
      transform: translate3d(-10px,0,0) scaleX(.98)
  }

  90% {
      transform: translate3d(5px,0,0) scaleX(.995)
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-bounceInRight {
  animation-name: golazy-bounceInRight;
}
@keyframes golazy-bounceInRight {
  0%,60%,75%,90%,to {
      animation-timing-function: cubic-bezier(.215,.61,.355,1)
  }

  0% {
      opacity: 0;
      transform: translate3d(3000px,0,0) scaleX(3)
  }

  60% {
      opacity: 1;
      transform: translate3d(-25px,0,0) scaleX(1)
  }

  75% {
      transform: translate3d(10px,0,0) scaleX(.98)
  }

  90% {
      transform: translate3d(-5px,0,0) scaleX(.995)
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-bounceInUp {
  animation-name: golazy-bounceInUp;
}
@keyframes golazy-bounceInUp {
  0%,60%,75%,90%,to {
      animation-timing-function: cubic-bezier(.215,.61,.355,1)
  }

  0% {
      opacity: 0;
      transform: translate3d(0,3000px,0) scaleY(5)
  }

  60% {
      opacity: 1;
      transform: translate3d(0,-20px,0) scaleY(.9)
  }

  75% {
      transform: translate3d(0,10px,0) scaleY(.95)
  }

  90% {
      transform: translate3d(0,-5px,0) scaleY(.985)
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-bounceOut {
  animation-name: golazy-bounceOut;
}
@keyframes golazy-bounceOut {
  20% {
      transform: scale3d(.9,.9,.9)
  }

  50%,55% {
      opacity: 1;
      transform: scale3d(1.1,1.1,1.1)
  }

  75% {
      opacity: 0;
      transform: scale3d(.3,.3,.3)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}

.golazy-animated-bounceOutDown {
  animation-name: golazy-bounceOutDown;
}
@keyframes golazy-bounceOutDown {
  20% {
      transform: translate3d(0,10px,0) scaleY(.985)
  }

  40%,45% {
      opacity: 1;
      transform: translate3d(0,-20px,0) scaleY(.9)
  }

  75% {
      opacity: 0;
      transform: translate3d(0,2000px,0) scaleY(3)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}

.golazy-animated-bounceOutLeft {
  animation-name: golazy-bounceOutLeft;
}
@keyframes golazy-bounceOutLeft {
  20% {
      opacity: 1;
      transform: translate3d(20px,0,0) scaleX(.9)
  }

  50% {
      opacity: 0;
      transform: translate3d(-2000px,0,0) scaleX(2)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}

.golazy-animated-bounceOutRight {
  animation-name: golazy-bounceOutRight;
}
@keyframes golazy-bounceOutRight {
  20% {
      opacity: 1;
      transform: translate3d(-20px,0,0) scaleX(.9)
  }

  50% {
      opacity: 0;
      transform: translate3d(2000px,0,0) scaleX(2)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}

.golazy-animated-bounceOutUp {
  animation-name: golazy-bounceOutUp;
}
@keyframes golazy-bounceOutUp {
  20% {
      transform: translate3d(0,-10px,0) scaleY(.985)
  }

  40%,45% {
      opacity: 1;
      transform: translate3d(0,20px,0) scaleY(.9)
  }

  75% {
      opacity: 0;
      transform: translate3d(0,-2000px,0) scaleY(3)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}








.golazy-animated-fadeIn {
  animation-name: golazy-fadeIn;
}
@keyframes golazy-fadeIn {
  0% {
      opacity: 0
  }

  to {
      opacity: 1
  }
}

.golazy-animated-fadeInDown {
  animation-name: golazy-fadeInDown;
}
@keyframes golazy-fadeInDown {
  0% {
      opacity: 0;
      transform: translate3d(0,-100%,0)
  }

  to {
      opacity: 1;
      transform: translateZ(0)
  }
}

.golazy-animated-fadeInLeft {
  animation-name: golazy-fadeInLeft;
}
@keyframes golazy-fadeInLeft {
  0% {
      opacity: 0;
      transform: translate3d(-100%,0,0)
  }

  to {
      opacity: 1;
      transform: translateZ(0)
  }
}

.golazy-animated-fadeInRight {
  animation-name: golazy-fadeInRight;
}
@keyframes golazy-fadeInRight {
  0% {
      opacity: 0;
      transform: translate3d(100%,0,0)
  }

  to {
      opacity: 1;
      transform: translateZ(0)
  }
}

.golazy-animated-fadeInUp {
  animation-name: golazy-fadeInUp;
}
@keyframes golazy-fadeInUp {
  0% {
      opacity: 0;
      transform: translate3d(0,100%,0)
  }

  to {
      opacity: 1;
/*       transform: translateZ(0) */
  }
}

.golazy-animated-fadeOut {
  animation-name: golazy-fadeOut;
}
@keyframes golazy-fadeOut {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0
  }

  100% {
      opacity: 1;
  }
}

.golazy-animated-fadeOutDown {
  animation-name: golazy-fadeOutDown;
}
@keyframes golazy-fadeOutDown {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: translate3d(0,100%,0)
  }
  100% {
      opacity: 1;
  }
}

.golazy-animated-fadeOutLeft {
  animation-name: golazy-fadeOutLeft;
}
@keyframes golazy-fadeOutLeft {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: translate3d(-100%,0,0)
  }
  100% {
      opacity: 1;
  }
}

.golazy-animated-fadeOutRight {
  animation-name: golazy-fadeOutRight;
}
@keyframes golazy-fadeOutRight {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: translate3d(100%,0,0)
  }
  100% {
      opacity: 1;
  }
}

.golazy-animated-fadeOutUp {
  animation-name: golazy-fadeOutUp;
}
@keyframes golazy-fadeOutUp {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: translate3d(0,-100%,0)
  }
  100% {
      opacity: 1;
  }
}







.golazy-animated-flip {
  animation-name: golazy-flip;
}
@keyframes golazy-flip {
  0% {
      animation-timing-function: ease-out;
      transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
  }

  40% {
      animation-timing-function: ease-out;
      transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
  }

  50% {
      animation-timing-function: ease-in;
      transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
  }

  80% {
      animation-timing-function: ease-in;
      transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0)
  }

  to {
      animation-timing-function: ease-in;
      transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
  }
}

.golazy-animated-flipInX {
  animation-name: golazy-flipInX;
}
@keyframes golazy-flipInX {
  0% {
      animation-timing-function: ease-in;
      opacity: 0;
      transform: perspective(400px) rotateX(90deg)
  }

  40% {
      animation-timing-function: ease-in;
      transform: perspective(400px) rotateX(-20deg)
  }

  60% {
      opacity: 1;
      transform: perspective(400px) rotateX(10deg)
  }

  80% {
      transform: perspective(400px) rotateX(-5deg)
  }

  to {
      transform: perspective(400px)
  }
}

.golazy-animated-flipInY {
  animation-name: golazy-flipInY;
}
@keyframes golazy-flipInY {
  0% {
      animation-timing-function: ease-in;
      opacity: 0;
      transform: perspective(400px) rotateY(90deg)
  }

  40% {
      animation-timing-function: ease-in;
      transform: perspective(400px) rotateY(-20deg)
  }

  60% {
      opacity: 1;
      transform: perspective(400px) rotateY(10deg)
  }

  80% {
      transform: perspective(400px) rotateY(-5deg)
  }

  to {
      transform: perspective(400px)
  }
}

.golazy-animated-flipOutX {
  animation-name: golazy-flipOutX;
}
@keyframes golazy-flipOutX {
  0% {
      transform: perspective(400px)
  }

  30% {
      opacity: 1;
      transform: perspective(400px) rotateX(-20deg)
  }

  60% {
      opacity: 0;
      transform: perspective(400px) rotateX(90deg)
  }
  100% {
      opacity: 1;
      transform: perspective(400px);
  }
}

.golazy-animated-flipOutY {
  animation-name: golazy-flipOutY;
}
@keyframes golazy-flipOutY {
  0% {
      transform: perspective(400px)
  }

  30% {
      opacity: 1;
      transform: perspective(400px) rotateY(-15deg)
  }

  60% {
      opacity: 0;
      transform: perspective(400px) rotateY(90deg)
  }
  100% {
      opacity: 1;
      transform: perspective(400px)
  }
}







.golazy-animated-jackInTheBox {
  animation-name: golazy-jackInTheBox;
}
@keyframes golazy-jackInTheBox {
  0% {
      opacity: 0;
      transform: scale(.1) rotate(30deg);
      transform-origin: center bottom
  }

  50% {
      transform: rotate(-10deg)
  }

  70% {
      transform: rotate(3deg)
  }

  to {
      opacity: 1;
      transform: scale(1)
  }
}






.golazy-animated-zoomIn {
  animation-name: golazy-zoomIn;
}
@keyframes golazy-zoomIn {
  0% {
      opacity: 0;
      transform: scale3d(.3,.3,.3)
  }

  50% {
      opacity: 1
  }
}

.golazy-animated-zoomInDown {
  animation-name: golazy-zoomInDown;
}
@keyframes golazy-zoomInDown {
  0% {
      animation-timing-function: cubic-bezier(.55,.055,.675,.19);
      opacity: 0;
      transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0)
  }

  60% {
      animation-timing-function: cubic-bezier(.175,.885,.32,1);
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(0,60px,0)
  }
}

.golazy-animated-zoomInLeft {
  animation-name: golazy-zoomInLeft;
}
@keyframes golazy-zoomInLeft {
  0% {
      animation-timing-function: cubic-bezier(.55,.055,.675,.19);
      opacity: 0;
      transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0)
  }

  60% {
      animation-timing-function: cubic-bezier(.175,.885,.32,1);
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(10px,0,0)
  }
}

.golazy-animated-zoomInRight {
  animation-name: golazy-zoomInRight;
}
@keyframes golazy-zoomInRight {
  0% {
      animation-timing-function: cubic-bezier(.55,.055,.675,.19);
      opacity: 0;
      transform: scale3d(.1,.1,.1) translate3d(1000px,0,0)
  }

  60% {
      animation-timing-function: cubic-bezier(.175,.885,.32,1);
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(-10px,0,0)
  }
}

.golazy-animated-zoomInUp {
  animation-name: golazy-zoomInUp;
}
@keyframes golazy-zoomInUp {
  0% {
      animation-timing-function: cubic-bezier(.55,.055,.675,.19);
      opacity: 0;
      transform: scale3d(.1,.1,.1) translate3d(0,1000px,0)
  }

  60% {
      animation-timing-function: cubic-bezier(.175,.885,.32,1);
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(0,-60px,0)
  }
}

.golazy-animated-zoomOut {
  animation-name: golazy-zoomOut;
}
@keyframes golazy-zoomOut {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: scale3d(.3,.3,.3)
  }

  75% {
      opacity: 0;
      transform: scale3d(.6,.6,.6)
  }
  100% {
      opacity: 1;
  }
}

.golazy-animated-zoomOutDown {
  animation-name: golazy-zoomOutDown;
}
@keyframes golazy-zoomOutDown {
  40% {
      animation-timing-function: cubic-bezier(.55,.055,.675,.19);
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(0,-60px,0)
  }

  75% {
      animation-timing-function: cubic-bezier(.175,.885,.32,1);
      opacity: 0;
      transform: scale3d(.1,.1,.1) translate3d(0,2000px,0)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}

.golazy-animated-zoomOutLeft {
  animation-name: golazy-zoomOutLeft;
}
@keyframes golazy-zoomOutLeft {
  40% {
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
  }
  75% {
      opacity: 0;
      transform: scale(.1) translate3d(-2000px,0,0)
  }
  100% {
      opacity: 1;
  }
}

.golazy-animated-zoomOutRight {
  animation-name: golazy-zoomOutRight;
}
@keyframes golazy-zoomOutRight {
  40% {
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
  }

  75% {
      opacity: 0;
      transform: scale(.1) translate3d(2000px,0,0)
  }
  100% {
      opacity: 1;
  }
}

.golazy-animated-zoomOutUp {
  animation-name: golazy-zoomOutUp;
}
@keyframes golazy-zoomOutUp {
  40% {
      animation-timing-function: cubic-bezier(.55,.055,.675,.19);
      opacity: 1;
      transform: scale3d(.475,.475,.475) translate3d(0,60px,0)
  }

  75% {
      animation-timing-function: cubic-bezier(.175,.885,.32,1);
      opacity: 0;
      transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0)
  }
  100% {
      opacity: 1;
      transform: scale3d(1,1,1)
  }
}







.golazy-animated-slideInDown {
  animation-name: golazy-slideInDown;
}
@keyframes golazy-slideInDown {
  0% {
      transform: translate3d(0,-100%,0);
      visibility: visible
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-slideInLeft {
  animation-name: golazy-slideInLeft;
}
@keyframes golazy-slideInLeft {
  0% {
      transform: translate3d(-100%,0,0);
      visibility: visible
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-slideInRight {
  animation-name: golazy-slideInRight;
}
@keyframes golazy-slideInRight {
  0% {
      transform: translate3d(100%,0,0);
      visibility: visible
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-slideInUp {
  animation-name: golazy-slideInUp;
}
@keyframes golazy-slideInUp {
  0% {
      transform: translate3d(0,100%,0);
      visibility: visible
  }

  to {
      transform: translateZ(0)
  }
}

.golazy-animated-slideOutDown {
  animation-name: golazy-slideOutDown;
}
@keyframes golazy-slideOutDown {
  0% {
      transform: translateZ(0)
  }

  50% {
      transform: translate3d(0,100%,0);
      visibility: hidden
  }
  100% {
      transform: translateZ(0);
  }
}

.golazy-animated-slideOutLeft {
  animation-name: golazy-slideOutLeft;
}
@keyframes golazy-slideOutLeft {
  0% {
      transform: translateZ(0)
  }

  50% {
      transform: translate3d(-100%,0,0);
      visibility: hidden
  }
  100% {
      transform: translateZ(0);
  }
}

.golazy-animated-slideOutRight {
  animation-name: golazy-slideOutRight;
}
@keyframes golazy-slideOutRight {
  0% {
      transform: translateZ(0)
  }

  50% {
      transform: translate3d(100%,0,0);
      visibility: hidden
  }
  100% {
      transform: translateZ(0);
  }
}

.golazy-animated-slideOutUp {
  animation-name: golazy-slideOutUp;
}
@keyframes golazy-slideOutUp {
  0% {
      transform: translateZ(0)
  }

  50% {
      transform: translate3d(0,-100%,0);
      visibility: hidden
  }
  100% {
      transform: translateZ(0);
  }
}
