
.animate {
    opacity: 0;
}
.animate-sub {
}
.animate-sub > * {
    opacity: 0;
}
.animation-slideDown {
    animation-duration: 1s;
    animation-name: slideDown;
    animation-timing-function: ease;
    visibility: visible !important;
}
@keyframes slideDown {
0% {
    transform: translateY(-100%);
}
50% {
    transform: translateY(8%);
}
65% {
    transform: translateY(-4%);
}
80% {
    transform: translateY(4%);
}
95% {
    transform: translateY(-2%);
}
100% {
    transform: translateY(0%);
}
}
.animation-slideUp {
    animation-duration: 1s;
    animation-name: slideUp;
    animation-timing-function: ease;
    visibility: visible !important;
}
@keyframes slideUp {
0% {
    transform: translateY(100%);
}
50% {
    transform: translateY(-8%);
}
65% {
    transform: translateY(4%);
}
80% {
    transform: translateY(-4%);
}
95% {
    transform: translateY(2%);
}
100% {
    transform: translateY(0%);
}
}
.animation-slideLeft {
    animation-duration: 1s;
    animation-name: slideLeft;
    animation-timing-function: ease-in-out;
    visibility: visible !important;
}
@keyframes slideLeft {
0% {
    transform: translateX(150%);
}
50% {
}
65% {
    transform: translateX(4%);
}
80% {
    transform: translateX(-4%);
}
95% {
    transform: translateX(2%);
}
100% {
    transform: translateX(0%);
}
}
.animation-slideRight {
    animation-duration: 1s;
    animation-name: slideRight;
    animation-timing-function: ease-in-out;
    visibility: visible !important;
}
@keyframes slideRight {
0% {
    transform: translateX(-150%);
}
50% {
    transform: translateX(8%);
}
65% {
    transform: translateX(-4%);
}
80% {
    transform: translateX(4%);
}
95% {
    transform: translateX(-2%);
}
100% {
    transform: translateX(0%);
}
}
.animation-slideExpandUp {
    animation-duration: 1.6s;
    animation-name: slideExpandUp;
    animation-timing-function: ease-out;
    visibility: visible !important;
}
@keyframes slideExpandUp {
0% {
    transform: translateY(100%) scaleX(0.5);
}
30% {
    transform: translateY(-8%) scaleX(0.5);
}
40% {
    transform: translateY(2%) scaleX(0.5);
}
50% {
    transform: translateY(0%) scaleX(1.1);
}
60% {
    transform: translateY(0%) scaleX(0.9);
}
70% {
    transform: translateY(0%) scaleX(1.05);
}
80% {
    transform: translateY(0%) scaleX(0.95);
}
90% {
    transform: translateY(0%) scaleX(1.02);
}
100% {
    transform: translateY(0%) scaleX(1);
}
}
.animation-expandUp {
    animation-duration: 0.7s;
    animation-name: expandUp;
    animation-timing-function: ease;
    visibility: visible !important;
}
@keyframes expandUp {
0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
}
60% {
    transform: translateY(-7%) scaleY(1.12);
}
75% {
    transform: translateY(3%);
}
100% {
    transform: translateY(0%) scale(1) scaleY(1);
}
}
.animation-fadeIn {
    animation-duration: 1s;
    animation-name: fadeIn;
    animation-timing-function: ease-in-out;
    visibility: visible !important;
}
@keyframes fadeIn {
0% {
    opacity: 0;
    transform: scale(0);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
.animation-expandOpen {
    animation-duration: 1.2s;
    animation-name: expandOpen;
    animation-timing-function: ease-out;
    visibility: visible !important;
}
@keyframes expandOpen {
0% {
    transform: scale(1.8);
}
50% {
    transform: scale(0.95);
}
80% {
    transform: scale(1.05);
}
90% {
    transform: scale(0.98);
}
100% {
    transform: scale(1);
}
}
.animation-bigEntrance {
    animation-duration: 1.6s;
    animation-name: bigEntrance;
    animation-timing-function: ease-out;
    visibility: visible !important;
}
@keyframes bigEntrance {
0% {
    opacity: 0.2;
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
}
30% {
    opacity: 1;
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
}
45% {
    opacity: 1;
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
}
60% {
    opacity: 1;
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
}
75% {
    opacity: 1;
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
}
90% {
    opacity: 1;
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
}
100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
}
}
.animation-hatch {
    animation-duration: 2s;
    animation-name: hatch;
    animation-timing-function: ease-in-out;
    transform-origin: 50% 100% 0;
    visibility: visible !important;
}
@keyframes hatch {
0% {
    transform: rotate(0deg) scaleY(0.6);
}
20% {
    transform: rotate(-2deg) scaleY(1.05);
}
35% {
    transform: rotate(2deg) scaleY(1);
}
50% {
    transform: rotate(-2deg);
}
65% {
    transform: rotate(1deg);
}
80% {
    transform: rotate(-1deg);
}
100% {
    transform: rotate(0deg);
}
}
.animation-bounce {
    animation-duration: 1.6s;
    animation-name: bounce;
    animation-timing-function: ease;
    transform-origin: 50% 100% 0;
}
@keyframes bounce {
0% {
    transform: translateY(0%) scaleY(0.6);
}
60% {
    transform: translateY(-100%) scaleY(1.1);
}
70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
}
80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
}
90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
}
100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
}
}
.animation-pulse {
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: pulse;
}
@keyframes pulse {
0% {
    opacity: 0.7;
    transform: scale(0.9);
}
50% {
    opacity: 1;
    transform: scale(1);
}
100% {
    opacity: 0.7;
    transform: scale(0.9);
}
}
.animation-pulseOut {
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: pulseOut;
}
@keyframes pulseOut {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
}
}
.animation-floating {
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: floating;
}
@keyframes floating {
0% {
    transform: translateY(0%);
}
50% {
    transform: translateY(8%);
}
100% {
    transform: translateY(0%);
}
}
.animation-tossing {
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-name: tossing;
}
@keyframes tossing {
0% {
    transform: rotate(-4deg);
}
50% {
    transform: rotate(4deg);
}
100% {
    transform: rotate(-4deg);
}
}
.animation-pullUp {
    animation-duration: 1.1s;
    animation-name: pullUp;
    animation-timing-function: ease-out;
    transform-origin: 50% 100% 0;
}
@keyframes pullUp {
0% {
    transform: scaleY(0.1);
}
40% {
    transform: scaleY(1.02);
}
60% {
    transform: scaleY(0.98);
}
80% {
    transform: scaleY(1.01);
}
100% {
    transform: scaleY(0.98);
}
80% {
    transform: scaleY(1.01);
}
100% {
    transform: scaleY(1);
}
}
.animation-pullDown {
    animation-duration: 1.1s;
    animation-name: pullDown;
    animation-timing-function: ease-out;
    transform-origin: 50% 0 0;
}
@keyframes pullDown {
0% {
    transform: scaleY(0.1);
}
40% {
    transform: scaleY(1.02);
}
60% {
    transform: scaleY(0.98);
}
80% {
    transform: scaleY(1.01);
}
100% {
    transform: scaleY(0.98);
}
80% {
    transform: scaleY(1.01);
}
100% {
    transform: scaleY(1);
}
}
.animation-stretchLeft {
    animation-duration: 1.5s;
    animation-name: stretchLeft;
    animation-timing-function: ease-out;
    transform-origin: 100% 0 0;
}
@keyframes stretchLeft {
0% {
    transform: scaleX(0.3);
}
40% {
    transform: scaleX(1.02);
}
60% {
    transform: scaleX(0.98);
}
80% {
    transform: scaleX(1.01);
}
100% {
    transform: scaleX(0.98);
}
80% {
    transform: scaleX(1.01);
}
100% {
    transform: scaleX(1);
}
}
.animation-stretchRight {
    animation-duration: 1.5s;
    animation-name: stretchRight;
    animation-timing-function: ease-out;
    transform-origin: 0 0 0;
}
@keyframes stretchRight {
0% {
    transform: scaleX(0.3);
}
40% {
    transform: scaleX(1.02);
}
60% {
    transform: scaleX(0.98);
}
80% {
    transform: scaleX(1.01);
}
100% {
    transform: scaleX(0.98);
}
80% {
    transform: scaleX(1.01);
}
100% {
    transform: scaleX(1);
}
}
.animation-pulseSlow {
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: pulseSlow;
    animation-timing-function: linear;
}
@keyframes pulseSlow {
0% {
    transform: scale(1.1);
}
50% {
    transform: scale(1);
}
100% {
    transform: scale(1.1);
}
}
.animation-spinning {
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-name: spinning;
    animation-timing-function: linear;
}
@keyframes spinning {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.animation-slideLR {
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-name: slideLR;
    animation-timing-function: linear;
}
@keyframes slideLR {
0% {
    transform: translateX(0px);
}
25% {
    transform: translateX(-10px);
}
50% {
    transform: translateX(0px);
}
75% {
    transform: translateX(10px);
}
100% {
    transform: translateX(0px);
}
}
