﻿#bubble-container {
    overflow-x: hidden;
    position: fixed;
    bottom: 15px !important;
    right: 110px;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 15px;
    z-index: 99;
}

#message-bubble {
    display: flex;
    margin-right: 8px;
    cursor: pointer;
    animation: BubbleLoad var(--animation-duration) forwards;
}

    #message-bubble.hide {
        animation: BubbleUnload var(--animation-duration) forwards;
    }

    #message-bubble > #message {
        display: flex;
        padding: 15px;
        font-weight: bold;
        font-size: 16px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 2px 32px rgba(0, 0, 0, 0.1);
        color: var(--third-color);
        background-color: var(--second-color);
        border-radius: 5px;
    }

    #message-bubble > #triangle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 50px;
        position: relative;
        overflow: hidden;
    }

        #message-bubble > #triangle::after {
            content: "";
            position: absolute;
            width: 50px;
            height: 50px;
            background: var(--second-color);
            transform: rotate(45deg);
            right: 28px;
            border-radius: 5px;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 2px 32px rgba(0, 0, 0, 0.1);
        }
