.live-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 12;
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    filter: drop-shadow(0 13px 14px rgba(31, 75, 83, .2));
    transition: transform .45s ease, opacity .45s ease
}

.live-widget canvas {
    display: block;
    width: 170px;
    height: 220px;
    pointer-events: auto
}

.live-widget img {
    width: 132px;
    animation: live-breathe 4s ease-in-out infinite
}

.live-widget.has-live2d img {
    display: none
}

.live-widget span {
    margin-top: -16px;
    padding: 2px 7px;
    border-radius: 99px;
    background: rgba(248, 247, 242, .74);
    color: #537782;
    font: 8px "DM Mono", monospace;
    letter-spacing: .04em
}

.live-widget button {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 2px;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(37, 53, 69, .65);
    color: #fff;
    cursor: pointer;
    pointer-events: auto
}

.live-widget.is-hidden {
    transform: translateX(190px);
    opacity: 0
}

@keyframes live-breathe {
    50% {
        transform: translateY(-8px) rotate(1.5deg)
    }
}

@media(max-width:760px) {
    .live-widget {
        width: 110px;
        right: 4px;
        bottom: 5px
    }

    .live-widget canvas {
        width: 110px;
        height: 145px
    }

    .live-widget img {
        width: 92px
    }

    .live-widget button {
        top: 5px
    }

    .live-widget span {
        font-size: 7px
    }
}