.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s;
}
.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}
@keyframes bounce-up {
    0%,
    100% {
        transform: rotate(180deg) translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: rotate(180deg) translateY(-25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.custom-bounce-up {
    animation: bounce-up 1s infinite;
}