/*!
 * Hover.css — Ibn-Thani localized subset
 * Only the effects actually used in the project (3 effects)
 */

.hvr-grow,
.hvr-bounce-in,
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: .3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.07);
}

.hvr-bounce-in:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
  transform: scale(1.1);
  transition-timing-function: cubic-bezier(.47, 2.02, .31, -.36);
}

@keyframes hvr-wobble-horizontal {
  16.65% { transform: translateX(8px); }
  33.3%  { transform: translateX(-6px); }
  49.95% { transform: translateX(4px); }
  66.6%  { transform: translateX(-2px); }
  83.25% { transform: translateX(1px); }
  100%   { transform: translateX(0); }
}
.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  animation: hvr-wobble-horizontal 1s ease-in-out 1;
}
