.fsb-wrapper-f0d2a7e1 {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fsb-wrapper-f0d2a7e1.fsb-left {
    left: 20px;
}

.fsb-wrapper-f0d2a7e1.fsb-right {
    right: 20px;
}

.fsb-item-f0d2a7e1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px;
    background-color: #ffffff;
    color: #333333;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fsb-item-f0d2a7e1:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.fsb-item-f0d2a7e1 i {
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease;
}

.fsb-item-f0d2a7e1 svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* Scroll Animation Styles */
.fsb-wrapper-f0d2a7e1.fsb-animate {
    opacity: 0;
    pointer-events: none;
}
.fsb-wrapper-f0d2a7e1.fsb-left.fsb-animate {
    transform: translate(-150%, -50%);
}
.fsb-wrapper-f0d2a7e1.fsb-right.fsb-animate {
    transform: translate(150%, -50%);
}

.fsb-wrapper-f0d2a7e1.fsb-visible.fsb-left {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
}
.fsb-wrapper-f0d2a7e1.fsb-visible.fsb-right {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
}
