/*
 * animate-mini.css
 * Ban rut gon cua animate.min.css (71KB -> ~0.6KB).
 * Chi giu lai cac hieu ung thuc su duoc dung trong templates:
 *   .animated .infinite .zoomIn .pulse  (nut goi dien o footer.php va phone.php)
 * Neu can them hieu ung khac cua animate.css, copy keyframes tuong ung vao day.
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
