.sd-container-b2fc7890 {
    display: block;
    width: 100%;
}

.sd-link-b2fc7890 {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.sd-icon-b2fc7890 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sd-bounce {
    animation: bounce-b2fc7890 2s infinite;
}

@keyframes bounce-b2fc7890 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}