#fcb-floating-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: row;
    transition: ease all 0.4s !important;
    box-shadow: 0 0 10px #00000070;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

#fcb-floating-wrapper .fcb-button {
    background-color:#e67e22;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 50px;
    writing-mode: tb-rl;
    transform: rotate(-180deg);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 24px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

#fcb-floating-wrapper .fcb-box {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 180px;
}

#fcb-floating-wrapper.shrink {
    --boxWidth: 180px;
    right: calc((var(--boxWidth) * -1)) !important;
    transition: ease all 0.4s !important;
}