#lwc-line-widget-root {
    position: relative;
    z-index: 2147482000;
}
.lwc-widget {
    --lwc-green: #06c755;
    --lwc-bottom-desktop: 24px;
    --lwc-bottom-mobile: 18px;
    position: fixed;
    bottom: var(--lwc-bottom-desktop);
    z-index: 2147482000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans TC", Arial, sans-serif;
}
.lwc-widget.lwc-pos-right { right: 20px; }
.lwc-widget.lwc-pos-left { left: 20px; }
.lwc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--lwc-green);
    color: #fff;
    padding: 12px 16px 12px 13px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 7px 22px rgba(0, 0, 0, .22);
    transition: transform .18s ease, box-shadow .18s ease;
}
.lwc-toggle:hover, .lwc-toggle:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
    outline: none;
}
.lwc-icon {
    width: 25px;
    height: 25px;
    display: block;
    fill: currentColor;
}
.lwc-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    width: 270px;
    box-sizing: border-box;
    padding: 20px 18px 17px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .20);
    color: #222;
    text-align: center;
}
.lwc-pos-right .lwc-panel { right: 0; }
.lwc-pos-left .lwc-panel { left: 0; }
.lwc-close {
    position: absolute;
    right: 8px;
    top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}
.lwc-title {
    margin: 1px 22px 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
}
.lwc-text {
    margin: 0 0 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.lwc-qr {
    display: block;
    width: 176px;
    height: 176px;
    object-fit: contain;
    margin: 0 auto 14px;
    background: #fff;
}
.lwc-link {
    display: block;
    border-radius: 8px;
    padding: 11px 10px;
    background: var(--lwc-green);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}
.lwc-link:hover, .lwc-link:focus-visible {
    background: #05b84d;
    color: #fff !important;
}
.lwc-hide-desktop { display: none; }
@media (max-width: 767px) {
    .lwc-widget {
        bottom: var(--lwc-bottom-mobile);
    }
    .lwc-widget.lwc-pos-right { right: 14px; }
    .lwc-widget.lwc-pos-left { left: 14px; }
    .lwc-toggle {
        padding: 11px 14px 11px 12px;
        font-size: 15px;
    }
    .lwc-panel {
        width: min(270px, calc(100vw - 28px));
    }
    .lwc-hide-desktop { display: block; }
    .lwc-hide-mobile { display: none; }
}
