
.rasa-live-chat {
    position: fixed;
    left: 24px;
    bottom: 94px;
    z-index: 99990;
    font-family: inherit;
}

.rasa-live-chat-launcher {
    position: relative;
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 24px;
    color: #fff;
    cursor: pointer;
    background:
        radial-gradient(circle at 25% 22%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg, #16C7C7, #073B4C);
    box-shadow: 0 18px 48px rgba(7,49,61,.22);
    display: grid;
    place-items: center;
    transition: .24s ease;
}

.rasa-live-chat-launcher:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(7,49,61,.28);
}

.rasa-live-chat-icon {
    font-size: 12px;
    font-weight: 950;
}

.rasa-live-chat-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 1px solid rgba(22,199,199,.32);
    animation: rasaChatPulse 2.4s ease-in-out infinite;
}

.rasa-live-chat-launcher b {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    box-shadow: 0 10px 24px rgba(239,68,68,.25);
}

.rasa-live-chat-panel {
    position: absolute;
    left: 0;
    bottom: 84px;
    width: min(370px, calc(100vw - 38px));
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.96);
    box-shadow: 0 32px 100px rgba(7,49,61,.20);
    backdrop-filter: blur(20px);
    transform: translateY(14px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: .24s ease;
}

.rasa-live-chat.is-open .rasa-live-chat-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.rasa-live-chat-head {
    position: relative;
    overflow: hidden;
    min-height: 82px;
    padding: 16px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.22), transparent 22%),
        linear-gradient(135deg, #052d38, #075766 56%, #16C7C7);
}

.rasa-live-chat-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: rasaChatGrid 15s linear infinite;
}

.rasa-live-chat-head > * {
    position: relative;
    z-index: 2;
}

.rasa-live-chat-head strong {
    display: block;
    font-size: 16px;
    font-weight: 950;
}

.rasa-live-chat-head span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
}

.rasa-live-chat-head button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.14);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.rasa-live-chat-start,
.rasa-live-chat-room,
.rasa-live-chat-rating {
    padding: 16px;
}

.rasa-live-chat-start p {
    margin: 0 0 14px;
    color: rgba(6,45,56,.70);
    font-size: 13px;
    line-height: 1.9;
}

.rasa-live-chat label {
    display: block;
    margin-bottom: 12px;
    color: #073B4C;
    font-size: 12px;
    font-weight: 900;
}

.rasa-live-chat input,
.rasa-live-chat textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(7,59,76,.12);
    border-radius: 15px;
    padding: 12px;
    color: #073B4C;
    background: rgba(255,255,255,.88);
    outline: none;
    font-family: inherit;
    transition: .20s ease;
}

.rasa-live-chat textarea {
    min-height: 82px;
    resize: none;
}

.rasa-live-chat input:focus,
.rasa-live-chat textarea:focus {
    border-color: #16C7C7;
    box-shadow: 0 0 0 4px rgba(22,199,199,.12);
    background: #fff;
}

.rasa-live-chat-start button,
.rasa-live-chat-compose button,
.rasa-live-chat-rating button#rasaLiveChatSubmitRating {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 950;
    background:
        radial-gradient(circle at 25% 22%, rgba(255,255,255,.26), transparent 26%),
        linear-gradient(135deg, #16C7C7, #073B4C);
    box-shadow: 0 14px 36px rgba(7,49,61,.14);
    transition: .20s ease;
}

.rasa-live-chat-start button:hover,
.rasa-live-chat-compose button:hover,
.rasa-live-chat-rating button#rasaLiveChatSubmitRating:hover {
    transform: translateY(-2px);
}

    display: block;
    margin-top: 10px;
    color: #dc2626;
    font-size: 12px;
}

.rasa-live-chat-messages {
    height: 280px;
    overflow-y: auto;
    padding: 4px 2px 10px;
    display: grid;
    gap: 9px;
}

.rasa-live-chat-message {
    display: flex;
}

.rasa-live-chat-message.visitor {
    justify-content: flex-start;
}

.rasa-live-chat-message.admin,
.rasa-live-chat-message.system {
    justify-content: flex-end;
}

.rasa-live-chat-bubble {
    max-width: 78%;
    padding: 10px 12px;
    border-radius: 17px;
    line-height: 1.85;
    font-size: 12px;
    box-shadow: 0 12px 28px rgba(7,49,61,.06);
}

.rasa-live-chat-message.visitor .rasa-live-chat-bubble {
    background: rgba(22,199,199,.13);
    color: #073B4C;
    border-bottom-right-radius: 6px;
}

.rasa-live-chat-message.admin .rasa-live-chat-bubble {
    background: #073B4C;
    color: #fff;
    border-bottom-left-radius: 6px;
}

.rasa-live-chat-message.system .rasa-live-chat-bubble {
    max-width: 92%;
    background: rgba(7,59,76,.07);
    color: rgba(6,45,56,.68);
    text-align: center;
}

.rasa-live-chat-bubble small {
    display: block;
    margin-top: 4px;
    opacity: .65;
    font-size: 10px;
}

.rasa-live-chat-compose {
    display: grid;
    grid-template-columns: 1fr 74px;
    gap: 8px;
    align-items: end;
    margin-top: 10px;
}

.rasa-live-chat-compose textarea {
    min-height: 48px;
    max-height: 92px;
}

.rasa-live-chat-compose button {
    min-height: 48px;
}

.rasa-live-chat-end-btn {
    width: 100%;
    margin-top: 10px;
    min-height: 36px;
    border: 1px solid rgba(7,59,76,.10);
    border-radius: 999px;
    color: #073B4C;
    background: rgba(7,59,76,.045);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
}

.rasa-live-chat-rating strong {
    display: block;
    color: #073B4C;
    margin-bottom: 12px;
}

.rasa-live-chat-stars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin-bottom: 10px;
}

.rasa-live-chat-stars button {
    min-height: 38px;
    border: 0;
    border-radius: 14px;
    color: #073B4C;
    background: rgba(22,199,199,.10);
    cursor: pointer;
    font-family: inherit;
    font-weight: 950;
}

.rasa-live-chat-stars button.is-active {
    color: #fff;
    background: linear-gradient(135deg, #16C7C7, #073B4C);
}

@keyframes rasaChatPulse {
    0%, 100% { opacity: .35; transform: scale(.98); }
    50% { opacity: .85; transform: scale(1.06); }
}

@keyframes rasaChatGrid {
    to { background-position: 28px 28px, 28px 28px; }
}

@media (max-width: 640px) {
    .rasa-live-chat {
        left: 14px;
        right: 14px;
        bottom: 86px;
    }

    .rasa-live-chat-panel {
        left: 0;
        width: calc(100vw - 28px);
    }
}

html body .rasa-live-chat {
    position: fixed !important;
    left: 24px !important;
    right: auto !important;
    bottom: 92px !important;
    width: 72px !important;
    height: 72px !important;
    z-index: 999999 !important;
    pointer-events: none !important;
}

html body .rasa-live-chat .rasa-live-chat-launcher {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    display: grid !important;
    pointer-events: auto !important;
    z-index: 3 !important;
}

html body .rasa-live-chat .rasa-live-chat-panel {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    bottom: 84px !important;
    width: min(370px, calc(100vw - 38px)) !important;
    max-width: min(370px, calc(100vw - 38px)) !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(14px) scale(.96) !important;
    z-index: 2 !important;
}

html body .rasa-live-chat.is-open {
    width: 72px !important;
    height: 72px !important;
}

html body .rasa-live-chat.is-open .rasa-live-chat-panel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

html body .rasa-live-chat:not(.is-open) .rasa-live-chat-start,
html body .rasa-live-chat:not(.is-open) .rasa-live-chat-room,
html body .rasa-live-chat:not(.is-open) .rasa-live-chat-rating {
    display: none !important;
}

@media (max-width: 640px) {
    html body .rasa-live-chat {
        left: 14px !important;
        right: auto !important;
        bottom: 84px !important;
        width: 66px !important;
        height: 66px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-launcher {
        width: 66px !important;
        height: 66px !important;
        border-radius: 22px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-panel {
        left: 0 !important;
        right: auto !important;
        bottom: 78px !important;
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
    }
}

html body .rasa-live-chat {
    left: 24px !important;
    bottom: 34px !important;
    width: 150px !important;
    height: 58px !important;
}

html body .rasa-live-chat .rasa-live-chat-launcher {
    width: 150px !important;
    height: 58px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    padding: 0 15px !important;
    background:
        radial-gradient(circle at 22% 20%, rgba(255,255,255,.34), transparent 28%),
        linear-gradient(135deg, #16C7C7 0%, #0b7d89 44%, #073B4C 100%) !important;
    box-shadow:
        0 18px 48px rgba(7,49,61,.24),
        inset 0 1px 0 rgba(255,255,255,.26) !important;
    overflow: hidden !important;
}

html body .rasa-live-chat .rasa-live-chat-launcher::before {
    content: "";
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 13px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.72));
    box-shadow: inset 0 -1px 0 rgba(7,59,76,.10), 0 8px 18px rgba(7,49,61,.14);
    -webkit-mask:
        radial-gradient(circle at 35% 38%, #000 0 4px, transparent 4.5px),
        radial-gradient(circle at 50% 38%, #000 0 4px, transparent 4.5px),
        radial-gradient(circle at 65% 38%, #000 0 4px, transparent 4.5px),
        radial-gradient(ellipse at 50% 45%, #000 0 18px, transparent 18.5px);
    mask:
        radial-gradient(circle at 35% 38%, #000 0 4px, transparent 4.5px),
        radial-gradient(circle at 50% 38%, #000 0 4px, transparent 4.5px),
        radial-gradient(circle at 65% 38%, #000 0 4px, transparent 4.5px),
        radial-gradient(ellipse at 50% 45%, #000 0 18px, transparent 18.5px);
}

html body .rasa-live-chat .rasa-live-chat-icon {
    font-size: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

html body .rasa-live-chat .rasa-live-chat-icon::after {
    content: "گفتگوی آنلاین";
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -.2px;
}

html body .rasa-live-chat .rasa-live-chat-pulse {
    inset: -7px !important;
    border-radius: 999px !important;
}

html body .rasa-live-chat .rasa-live-chat-panel {
    bottom: 72px !important;
}

html body .rasa-live-chat .rasa-live-chat-head {
    min-height: 92px !important;
    padding: 17px 17px 16px 14px !important;
    align-items: center !important;
    gap: 12px !important;
    border-radius: 0 !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,.24), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(135deg, #052d38 0%, #07616f 56%, #16C7C7 100%) !important;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.14) !important;
}

html body .rasa-live-chat .rasa-live-chat-head img,
html body .rasa-live-chat .rasa-live-chat-head .avatar,
html body .rasa-live-chat .rasa-live-chat-head [class*="image"],
html body .rasa-live-chat .rasa-live-chat-head [class*="photo"] {
    display: none !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div {
    position: relative !important;
    padding-right: 58px !important;
    min-height: 52px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div::before {
    content: "💬";
    position: absolute;
    right: 0;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        0 14px 34px rgba(0,0,0,.10);
    backdrop-filter: blur(12px);
}

html body .rasa-live-chat .rasa-live-chat-head strong {
    font-size: 16px !important;
    font-weight: 950 !important;
    color: #fff !important;
    line-height: 1.45 !important;
}

html body .rasa-live-chat .rasa-live-chat-head span {
    margin-top: 4px !important;
    color: rgba(255,255,255,.80) !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
}

html body .rasa-live-chat .rasa-live-chat-head span::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-left: 6px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.16);
    vertical-align: middle;
}

html body .rasa-live-chat .rasa-live-chat-head button {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.15) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16) !important;
    transition: .2s ease !important;
}

html body .rasa-live-chat .rasa-live-chat-head button:hover {
    background: rgba(255,255,255,.24) !important;
    transform: rotate(6deg) scale(1.04) !important;
}

@media (max-width: 640px) {
    html body .rasa-live-chat {
        left: 14px !important;
        bottom: 28px !important;
        width: 140px !important;
        height: 54px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-launcher {
        width: 140px !important;
        height: 54px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-launcher::before {
        width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-icon::after {
        font-size: 12px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-panel {
        bottom: 68px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-head > div {
        padding-right: 52px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-head > div::before {
        width: 42px !important;
        height: 42px !important;
        border-radius: 16px !important;
        font-size: 20px !important;
    }
}

html body .rasa-live-chat .rasa-live-chat-launcher {
    position: absolute !important;
    overflow: visible !important;
}

html body .rasa-live-chat #rasaLiveChatUnread {
    position: absolute !important;
    top: -9px !important;
    left: -8px !important;
    right: auto !important;
    z-index: 20 !important;
    min-width: 26px !important;
    height: 26px !important;
    padding: 0 7px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
    border: 2px solid #fff !important;
    box-shadow: 0 12px 30px rgba(239,68,68,.32) !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

html body .rasa-live-chat #rasaLiveChatUnread[hidden] {
    display: none !important;
}

html body .rasa-live-chat .rasa-live-chat-head,
html body .rasa-live-chat .rasa-live-chat-head * {
    box-sizing: border-box !important;
}

html body .rasa-live-chat .rasa-live-chat-head {
    color: #fff !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,.24), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(135deg, #052d38 0%, #07616f 56%, #16C7C7 100%) !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div,
html body .rasa-live-chat .rasa-live-chat-head strong,
html body .rasa-live-chat .rasa-live-chat-head span {
    background: transparent !important;
    background-color: transparent !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div {
    min-width: 0 !important;
    max-width: calc(100% - 46px) !important;
    padding: 9px 58px 9px 12px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 12px 30px rgba(0,0,0,.08) !important;
    backdrop-filter: blur(12px) !important;
}

html body .rasa-live-chat .rasa-live-chat-head strong {
    display: block !important;
    color: #ffffff !important;
    text-shadow: 0 3px 14px rgba(0,0,0,.22) !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

html body .rasa-live-chat .rasa-live-chat-head span {
    display: block !important;
    color: rgba(255,255,255,.84) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.16) !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div::before {
    right: 9px !important;
}

html body .rasa-live-chat .rasa-live-chat-head button {
    color: #fff !important;
    background: rgba(255,255,255,.16) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
}

html body .rasa-live-chat.is-open #rasaLiveChatUnread:not([hidden]) {
    display: grid !important;
}

@media (max-width: 640px) {
    html body .rasa-live-chat #rasaLiveChatUnread {
        top: -8px !important;
        left: -7px !important;
        min-width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-head > div {
        padding-right: 54px !important;
        max-width: calc(100% - 42px) !important;
    }
}

html body .rasa-live-chat .rasa-live-chat-panel {
    width: min(335px, calc(100vw - 34px)) !important;
    max-width: min(335px, calc(100vw - 34px)) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 8%, rgba(22,199,199,.08), transparent 24%),
        rgba(255,255,255,.94) !important;
    border: 1px solid rgba(255,255,255,.96) !important;
    box-shadow:
        0 26px 84px rgba(7,49,61,.20),
        inset 0 1px 0 rgba(255,255,255,.72) !important;
    backdrop-filter: blur(20px) !important;
}

html body .rasa-live-chat .rasa-live-chat-head {
    min-height: 78px !important;
    padding: 13px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,.14) !important;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.23), transparent 23%),
        linear-gradient(135deg, #052d38 0%, #086372 58%, #16C7C7 100%) !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div {
    min-height: 46px !important;
    padding: 7px 52px 7px 10px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.095) !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14) !important;
}

html body .rasa-live-chat .rasa-live-chat-head > div::before {
    width: 40px !important;
    height: 40px !important;
    right: 7px !important;
    border-radius: 15px !important;
    font-size: 19px !important;
}

html body .rasa-live-chat .rasa-live-chat-head strong {
    font-size: 14px !important;
    line-height: 1.45 !important;
}

html body .rasa-live-chat .rasa-live-chat-head span {
    margin-top: 2px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}

html body .rasa-live-chat .rasa-live-chat-head button {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
    border-radius: 12px !important;
    font-size: 19px !important;
}

html body .rasa-live-chat .rasa-live-chat-start,
html body .rasa-live-chat .rasa-live-chat-room,
html body .rasa-live-chat .rasa-live-chat-rating {
    padding: 13px !important;
}

html body .rasa-live-chat .rasa-live-chat-start p {
    margin-bottom: 11px !important;
    font-size: 12px !important;
    line-height: 1.75 !important;
}

html body .rasa-live-chat label {
    margin-bottom: 9px !important;
    font-size: 11px !important;
}

html body .rasa-live-chat input,
html body .rasa-live-chat textarea {
    margin-top: 5px !important;
    padding: 10px 11px !important;
    border-radius: 13px !important;
    font-size: 12px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.80),
        0 8px 20px rgba(7,49,61,.035) !important;
}

html body .rasa-live-chat input:focus,
html body .rasa-live-chat textarea:focus {
    box-shadow:
        0 0 0 3px rgba(22,199,199,.12),
        0 10px 26px rgba(7,49,61,.055) !important;
}

html body .rasa-live-chat-start button,
html body .rasa-live-chat-compose button,
html body .rasa-live-chat-rating button#rasaLiveChatSubmitRating {
    min-height: 39px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    box-shadow:
        0 12px 30px rgba(7,49,61,.14),
        inset 0 1px 0 rgba(255,255,255,.20) !important;
}

html body .rasa-live-chat .rasa-live-chat-messages {
    height: 225px !important;
    padding: 2px 1px 8px !important;
    gap: 7px !important;
    scrollbar-width: thin !important;
}

html body .rasa-live-chat .rasa-live-chat-messages::-webkit-scrollbar {
    width: 5px !important;
}

html body .rasa-live-chat .rasa-live-chat-messages::-webkit-scrollbar-thumb {
    border-radius: 999px !important;
    background: rgba(7,59,76,.20) !important;
}

html body .rasa-live-chat .rasa-live-chat-bubble {
    max-width: 82% !important;
    padding: 8px 10px !important;
    border-radius: 15px !important;
    line-height: 1.75 !important;
    font-size: 11.5px !important;
    box-shadow: 0 10px 24px rgba(7,49,61,.055) !important;
}

html body .rasa-live-chat .rasa-live-chat-bubble small {
    margin-top: 3px !important;
    font-size: 9.5px !important;
}

html body .rasa-live-chat .rasa-live-chat-compose {
    grid-template-columns: 1fr 64px !important;
    gap: 7px !important;
    margin-top: 8px !important;
}

html body .rasa-live-chat .rasa-live-chat-compose textarea {
    min-height: 42px !important;
    max-height: 78px !important;
    border-radius: 14px !important;
}

html body .rasa-live-chat .rasa-live-chat-compose button {
    min-height: 42px !important;
    padding: 0 10px !important;
}

html body .rasa-live-chat .rasa-live-chat-end-btn {
    margin-top: 8px !important;
    min-height: 33px !important;
    font-size: 11px !important;
    background: rgba(7,59,76,.04) !important;
    transition: .2s ease !important;
}

html body .rasa-live-chat .rasa-live-chat-end-btn:hover {
    background: rgba(22,199,199,.09) !important;
    transform: translateY(-1px) !important;
}

html body .rasa-live-chat .rasa-live-chat-rating strong {
    margin-bottom: 9px !important;
    font-size: 13px !important;
}

html body .rasa-live-chat .rasa-live-chat-stars {
    gap: 6px !important;
    margin-bottom: 8px !important;
}

html body .rasa-live-chat .rasa-live-chat-stars button {
    min-height: 34px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
}

html body .rasa-live-chat .rasa-live-chat-launcher {
    box-shadow:
        0 16px 44px rgba(7,49,61,.24),
        inset 0 1px 0 rgba(255,255,255,.28) !important;
}

html body .rasa-live-chat .rasa-live-chat-launcher:hover {
    filter: saturate(1.08) !important;
}

@media (max-width: 640px) {
    html body .rasa-live-chat .rasa-live-chat-panel {
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
        border-radius: 22px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-messages {
        height: 218px !important;
    }

    html body .rasa-live-chat .rasa-live-chat-head {
        min-height: 74px !important;
        padding: 12px !important;
    }
}

