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