#iarAvatarBubble{
    position:fixed;
    right:24px;
    bottom:24px;
    width:88px;
    height:88px;
    border-radius:50%;
    overflow:hidden;
    background:linear-gradient(135deg,#c60b1e,#7b0712);
    z-index:9999999;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:
        0 0 0 4px rgba(241,182,50,.20),
        0 0 30px rgba(241,182,50,.45),
        0 18px 45px rgba(0,0,0,.35);
    transition:.3s ease;
}

#iarAvatarBubble:hover{
    transform:scale(1.08) translateY(-4px);
}

#iarAvatarBubble img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

#iarAvatarPanel{
    position:fixed;
    right:24px;
    bottom:125px;
    width:430px;
    height:680px;
    max-width:calc(100vw - 32px);
    max-height:calc(100vh - 140px);
    background:#080b12;
    border-radius:28px;
    overflow:hidden;
    z-index:9999998;
    box-shadow:0 30px 90px rgba(0,0,0,.55);
    border:1px solid rgba(255,255,255,.18);
    display:none;
}

.iar-avatar-header{
    height:56px;
    background:linear-gradient(135deg,#c60b1e,#7b0712);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    font-weight:800;
}

.iar-avatar-header button{
    background:transparent;
    border:0;
    color:#fff;
    font-size:2rem;
    line-height:1;
    cursor:pointer;
}

#iarAvatarPanel iframe{
    width:100%;
    height:calc(100% - 56px);
    border:0;
    display:block;
}

@media(max-width:600px){
    #iarAvatarBubble{
        right:16px;
        bottom:16px;
        width:76px;
        height:76px;
    }

    #iarAvatarPanel{
        right:12px;
        left:12px;
        bottom:104px;
        width:auto;
        height:calc(100vh - 125px);
        max-width:none;
        max-height:none;
        border-radius:22px;
    }
}