#fan-insights-chats-room {
    position: fixed;
    bottom: .5rem;
    right: .5rem;
    max-height: calc(100% - 1rem);
    border-radius: 5px;
    z-index: 9999;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, .02), 0 6.7px 5.3px rgba(0, 0, 0, .028), 0 12.5px 10px rgba(0, 0, 0, .035), 0 22.3px 17.9px rgba(0, 0, 0, .042), 0 41.8px 33.4px rgba(0, 0, 0, .05), 0 100px 80px rgba(0, 0, 0, .07);
    display: none
}

#fan-insights-chats-room.fullscreen {
    width: 100%;
    height: 100%;
    max-height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0
}

#fan-insights-chats-toggle {
    position: fixed;
    z-index: 9998;
    bottom: 13%;
    right: .5rem;
    width: 90px;
    height: 90px;
    cursor: pointer
}

#fan-insights-chats-toggle iframe {
    pointer-events: none;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
#fan-insights-chats-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 或者 contain，看你要不要留白 */
  display: block;
  background-color: #015669;
  border-radius: 50%;
  border: 1px solid #37b2c7;
}

#fan-insights-chats-toggle .tooltips {
    position: absolute;
    right: 0;
    bottom: 110%;
    visibility: hidden;
    background-color: #015669;
    border: 1px solid #37b2c7;
    color: #FFFFFF;
    white-space: nowrap;
    font-size: 1.25rem;
    padding: .5rem .8rem;
    border-radius: .3rem
}

#fan-insights-chats-toggle:hover .tooltips {
    visibility: visible
}

@media(max-width:768px) {
    #fan-insights-chats-room {
        width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
        right: 0;
        bottom: 0
    }
}