@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.help-center {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: bounce 2s infinite;
}

.help-center i {
    color: #3c65f5;
}