﻿.sce-btn-hello {
    animation: bounce 0.5s infinite ease-in-out !important;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.sce-btn-hello .sce-btn__tooltip {
    visibility: visible;
}
