/**************************************************************
 SIHP (www.sihp.fr)
 Copyright 2009-2022 Develop'it
 
 Version : 6.1.0
 Date    : 27/04/2022
 Fichier : css/Aimation.css
**************************************************************/

.AnimationCloche:hover svg {
  transform-origin: top right;
  animation: Animation_pour_cloche 0.5s infinite;
}
@keyframes Animation_pour_cloche {
  from {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-30deg);
  }
  80% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.AnimationZoom:hover svg {
  transform-origin: center center;
  animation: Animation_pour_zoom 0.5s infinite;
}
@keyframes Animation_pour_zoom {
  from {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(0);
  }
}

.AnimationRebond:hover svg {
  transform-origin: center center;
  animation: Animation_pour_rebond 0.5s infinite;
}
@keyframes Animation_pour_rebond {
  from {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.AnimationRotation:hover svg {
  transform-origin: center center;
  animation: Animation_pour_rotation 0.5s infinite;
}
@keyframes Animation_pour_rotation {
  from {
    transform: rotate(0);
  }

  40% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0);
  }
}
