| 1 |
@keyframes elementor-animation-wobble-vertical { |
| 2 |
16.65% { |
| 3 |
transform: translateY(8px); |
| 4 |
} |
| 5 |
33.3% { |
| 6 |
transform: translateY(-6px); |
| 7 |
} |
| 8 |
49.95% { |
| 9 |
transform: translateY(4px); |
| 10 |
} |
| 11 |
66.6% { |
| 12 |
transform: translateY(-2px); |
| 13 |
} |
| 14 |
83.25% { |
| 15 |
transform: translateY(1px); |
| 16 |
} |
| 17 |
100% { |
| 18 |
transform: translateY(0); |
| 19 |
} |
| 20 |
} |
| 21 |
.elementor-animation-wobble-vertical:active, |
| 22 |
.elementor-animation-wobble-vertical:focus, |
| 23 |
.elementor-animation-wobble-vertical:hover { |
| 24 |
animation-name: elementor-animation-wobble-vertical; |
| 25 |
animation-duration: 1s; |
| 26 |
animation-timing-function: ease-in-out; |
| 27 |
animation-iteration-count: 1; |
| 28 |
} |
| 29 |
|