.animation-fade .fy-fade,
.animation-fade .fy-fade-xs,
.animation-fade .fy-fade-sm,
.animation-fade .fy-fade-md,
.animation-fade .fy-fade-lg {
  opacity: 0;
  transform: translateY(30px);
}
.animation-fade .fy-bottom-fade,
.animation-fade .fy-bottom-fade-xs,
.animation-fade .fy-bottom-fade-sm,
.animation-fade .fy-bottom-fade-md,
.animation-fade .fy-bottom-fade-lg {
  opacity: 0;
  transform: translateY(-30px);
}
.animation-fade .fy-scale,
.animation-fade .fy-scale-xs,
.animation-fade .fy-scale-sm,
.animation-fade .fy-scale-md,
.animation-fade .fy-scale-lg {
  transform: scale(1);
}
.animation-fade .fy-slideX,
.animation-fade .fy-slideX10,
.animation-fade .fy-slideX15,
.animation-fade .fy-slideX20,
.animation-fade .fy-slideX25,
.animation-fade .fy-slideX30,
.animation-fade .fy-slideX35,
.animation-fade .fy-slideX40,
.animation-fade .fy-slideX45 {
  transform: translateX(80%);
  opacity: 0;
}
.animation-fade .fy-right-slideX,
.animation-fade .fy-right-slideX10,
.animation-fade .fy-right-slideX15,
.animation-fade .fy-right-slideX20,
.animation-fade .fy-right-slideX25,
.animation-fade .fy-right-slideX30,
.animation-fade .fy-right-slideX35,
.animation-fade .fy-right-slideX40,
.animation-fade .fy-right-slideX45 {
  transform: translateX(-80%);
  opacity: 0;
}
.animationFade .fy-fade {
  animation: animationFade 1s forwards ease-in-out;
}
.animationFade .fy-fade-xs {
  animation: animationFade 1s forwards ease-in-out 0.3s;
}
.animationFade .fy-fade-sm {
  animation: animationFade 1s forwards ease-in-out 0.5s;
}
.animationFade .fy-fade-md {
  animation: animationFade 1s forwards ease-in-out 0.7s;
}
.animationFade .fy-fade-lg {
  animation: animationFade 1s forwards ease-in-out 0.9s;
}
@keyframes animationFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animationFade .fy-bottom-fade {
  animation: animationBottomFade 1s forwards ease-in-out;
}
.animationFade .fy-bottom-fade-xs {
  animation: animationBottomFade 1s forwards ease-in-out 0.3s;
}
.animationFade .fy-bottom-fade-sm {
  animation: animationBottomFade 1s forwards ease-in-out 0.5s;
}
.animationFade .fy-bottom-fade-md {
  animation: animationBottomFade 1s forwards ease-in-out 0.7s;
}
.animationFade .fy-bottom-fade-lg {
  animation: animationBottomFade 1s forwards ease-in-out 0.9s;
}
@keyframes animationBottomFade {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animationFade .fy-scale {
  animation: animationScale 2s forwards ease-in-out;
}
.animationFade .fy-scale-xs {
  animation: animationScale 2s forwards ease-in-out 0.3s;
}
.animationFade .fy-scale-sm {
  animation: animationScale 2s forwards ease-in-out 0.5s;
}
.animationFade .fy-scale-md {
  animation: animationScale 2s forwards ease-in-out 0.7s;
}
.animationFade .fy-scale-lg {
  animation: animationScale 2s forwards ease-in-out 0.9s;
}
@keyframes animationScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.036);
  }
}
.animationFade .fy-slideX {
  animation: animationSideX 0.6s forwards ease-in-out;
}
.animationFade .fy-slideX10 {
  animation: animationSideX 0.6s forwards ease-in-out 0.1s;
}
.animationFade .fy-slideX15 {
  animation: animationSideX 0.6s forwards ease-in-out 0.15s;
}
.animationFade .fy-slideX20 {
  animation: animationSideX 0.6s forwards ease-in-out 0.2s;
}
.animationFade .fy-slideX25 {
  animation: animationSideX 0.6s forwards ease-in-out 0.25s;
}
.animationFade .fy-slideX30 {
  animation: animationSideX 0.6s forwards ease-in-out 0.3s;
}
.animationFade .fy-slideX35 {
  animation: animationSideX 0.6s forwards ease-in-out 0.35s;
}
.animationFade .fy-slideX40 {
  animation: animationSideX 0.6s forwards ease-in-out 0.4s;
}
.animationFade .fy-slideX45 {
  animation: animationSideX 0.6s forwards ease-in-out 0.45s;
}
@keyframes animationSideX {
  0% {
    transform: translateX(80%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animationFade .fy-right-slideX {
  animation: animationSideRightX 0.6s forwards ease-in-out;
}
.animationFade .fy-right-slideX10 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.1s;
}
.animationFade .fy-right-slideX15 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.15s;
}
.animationFade .fy-right-slideX20 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.2s;
}
.animationFade .fy-right-slideX25 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.25s;
}
.animationFade .fy-right-slideX30 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.3s;
}
.animationFade .fy-right-slideX35 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.35s;
}
.animationFade .fy-right-slideX40 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.4s;
}
.animationFade .fy-right-slideX45 {
  animation: animationSideRightX 0.6s forwards ease-in-out 0.45s;
}
@keyframes animationSideRightX {
  0% {
    transform: translateX(-80%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
