


@keyframes flip-horizontal-twice {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(-1);
  }
  100% {
    transform: scaleX(1);
  }
}

.animate-flip-horizontal-twice:hover {
    animation: flip-horizontal-twice 0.7s ease-in-out forwards;
}

