@charset "UTF-8";
.rmc-chat-bubble {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--bubble-background-color, #6e0b8f)CC;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.rmc-chat-bubble:hover {
    transform: scale(1.1);
}
.rmc-chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: var(--pulse-animation, none);
    z-index: -1;
}
.rmc-chat-bubble.unread::before {
    animation: bubble-pulse-unread 2s ease-in-out infinite;
}
@keyframes bubble-pulse {
    0% { box-shadow: 0 0 10px var(--bubble-color, #6e0b8f); }
    50% { box-shadow: 0 0 30px var(--bubble-color, #6e0b8f); }
    100% { box-shadow: 0 0 10px var(--bubble-color, #6e0b8f); }
}
@keyframes bubble-pulse-unread {
    0% { box-shadow: 0 0 10px #FF4444; }
    50% { box-shadow: 0 0 30px #FF4444; }
    100% { box-shadow: 0 0 10px #FF4444; }
}
.rmc-chat-icon {
    fill: #FFFFFF;
    width: 24px;
    height: 24px;
}