| 1 |
@keyframes elementor-animation-buzz-out { |
| 2 |
10% { |
| 3 |
transform: translateX(3px) rotate(2deg); |
| 4 |
} |
| 5 |
20% { |
| 6 |
transform: translateX(-3px) rotate(-2deg); |
| 7 |
} |
| 8 |
30% { |
| 9 |
transform: translateX(3px) rotate(2deg); |
| 10 |
} |
| 11 |
40% { |
| 12 |
transform: translateX(-3px) rotate(-2deg); |
| 13 |
} |
| 14 |
50% { |
| 15 |
transform: translateX(2px) rotate(1deg); |
| 16 |
} |
| 17 |
60% { |
| 18 |
transform: translateX(-2px) rotate(-1deg); |
| 19 |
} |
| 20 |
70% { |
| 21 |
transform: translateX(2px) rotate(1deg); |
| 22 |
} |
| 23 |
80% { |
| 24 |
transform: translateX(-2px) rotate(-1deg); |
| 25 |
} |
| 26 |
90% { |
| 27 |
transform: translateX(1px) rotate(0); |
| 28 |
} |
| 29 |
100% { |
| 30 |
transform: translateX(-1px) rotate(0); |
| 31 |
} |
| 32 |
} |
| 33 |
.elementor-animation-buzz-out:active, |
| 34 |
.elementor-animation-buzz-out:focus, |
| 35 |
.elementor-animation-buzz-out:hover { |
| 36 |
animation-name: elementor-animation-buzz-out; |
| 37 |
animation-duration: 0.75s; |
| 38 |
animation-timing-function: linear; |
| 39 |
animation-iteration-count: 1; |
| 40 |
} |
| 41 |
|