#exe-live-chat-root {
    --exe-chat-red: #ef233c;
    --exe-chat-red-dark: #9f1025;
    --exe-chat-red-soft: rgba(239, 35, 60, 0.14);
    --exe-chat-bg: #101116;
    --exe-chat-panel: #17181f;
    --exe-chat-panel-soft: #1d1f27;
    --exe-chat-border: rgba(255, 255, 255, 0.09);
    --exe-chat-text: #f8f8fb;
    --exe-chat-muted: #a8a9b2;
    --exe-chat-success: #31d17c;
    --exe-chat-warning: #ffb547;
    --exe-chat-danger: #ff5b70;

    position: fixed;
    z-index: 2147483000;
    left: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 0;
    height: 0;
    color: var(--exe-chat-text);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

#exe-live-chat-root,
#exe-live-chat-root *,
#exe-live-chat-root *::before,
#exe-live-chat-root *::after {
    box-sizing: border-box;
}

#exe-live-chat-root button,
#exe-live-chat-root input,
#exe-live-chat-root textarea {
    font: inherit;
}

#exe-live-chat-root button {
    border: 0;
    padding: 0;
    color: inherit;
    background: none;
    cursor: pointer;
}

.exe-chat-launcher {
    position: absolute;
    left: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 21px;
    color: #fff;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.28),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ff3852 0%,
            #d91431 48%,
            #8d0d20 100%
        );
    box-shadow:
        0 18px 42px rgba(111, 5, 27, 0.44),
        0 7px 18px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateZ(0);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-radius 180ms ease;
    isolation: isolate;
}

.exe-chat-launcher::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -5px;
    border: 1px solid rgba(239, 35, 60, 0.34);
    border-radius: 25px;
    opacity: 0.8;
    animation: exe-chat-pulse 2.6s ease-out infinite;
}

.exe-chat-launcher:hover {
    transform: translateY(-3px);
    border-radius: 18px;
    box-shadow:
        0 22px 48px rgba(111, 5, 27, 0.50),
        0 9px 22px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.27);
}

.exe-chat-launcher:active {
    transform: translateY(0) scale(0.97);
}

.exe-chat-launcher:focus-visible,
.exe-chat-icon-btn:focus-visible,
.exe-chat-primary-btn:focus-visible,
.exe-chat-secondary-btn:focus-visible,
.exe-chat-hold-btn:focus-visible,
.exe-chat-input:focus-visible,
.exe-chat-textarea:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

.exe-chat-launcher svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exe-chat-launcher-badge {
    position: absolute;
    top: -6px;
    right: -7px;
    display: none;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    align-items: center;
    justify-content: center;
    border: 3px solid #111218;
    border-radius: 999px;
    color: #fff;
    background: #ffcc40;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
}

.exe-chat-launcher-badge.is-visible {
    display: flex;
}

.exe-chat-panel {
    position: absolute;
    left: 0;
    bottom: 76px;
    display: flex;
    flex-direction: column;
    width: min(390px, calc(100vw - 32px));
    height: min(640px, calc(100vh - 120px));
    max-height: 76vh;
    overflow: hidden;
    border: 1px solid var(--exe-chat-border);
    border-radius: 25px;
    color: var(--exe-chat-text);
    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.035),
            transparent 35%
        ),
        rgba(16, 17, 22, 0.98);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.50),
        0 10px 30px rgba(94, 4, 23, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.965);
    transform-origin: left bottom;
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#exe-live-chat-root.is-open .exe-chat-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.exe-chat-header {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 16px 16px 15px 18px;
    overflow: hidden;
    border-bottom: 1px solid var(--exe-chat-border);
    background:
        radial-gradient(
            circle at 0 0,
            rgba(255, 80, 104, 0.21),
            transparent 48%
        ),
        linear-gradient(
            115deg,
            rgba(239, 35, 60, 0.16),
            rgba(255, 255, 255, 0.015)
        );
}

.exe-chat-header::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -70px;
    top: -78px;
    border: 28px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.exe-chat-brand-mark {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            #ff3b55,
            #a90e26
        );
    box-shadow:
        0 10px 24px rgba(115, 8, 29, 0.30),
        inset 0 1px rgba(255, 255, 255, 0.20);
}

.exe-chat-brand-mark svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exe-chat-heading {
    position: relative;
    z-index: 1;
    min-width: 0;
    flex: 1;
}

.exe-chat-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.exe-chat-presence {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    color: var(--exe-chat-muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exe-chat-presence-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--exe-chat-success);
    box-shadow: 0 0 0 4px rgba(49, 209, 124, 0.11);
}

.exe-chat-presence[data-state="connecting"]
.exe-chat-presence-dot {
    background: var(--exe-chat-warning);
    box-shadow: 0 0 0 4px rgba(255, 181, 71, 0.11);
}

.exe-chat-presence[data-state="offline"]
.exe-chat-presence-dot,
.exe-chat-presence[data-state="error"]
.exe-chat-presence-dot {
    background: var(--exe-chat-danger);
    box-shadow: 0 0 0 4px rgba(255, 91, 112, 0.11);
}

.exe-chat-icon-btn {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045) !important;
    transition:
        background 160ms ease,
        transform 160ms ease;
}

.exe-chat-icon-btn:hover {
    background: rgba(255, 255, 255, 0.09) !important;
    transform: translateY(-1px);
}

.exe-chat-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.exe-chat-notice {
    display: none;
    flex: 0 0 auto;
    margin: 12px 14px 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 91, 112, 0.22);
    border-radius: 13px;
    color: #ffdce1;
    background: rgba(255, 91, 112, 0.10);
    font-size: 12px;
    line-height: 1.45;
}

.exe-chat-notice.is-visible {
    display: block;
}

.exe-chat-notice[data-kind="success"] {
    border-color: rgba(49, 209, 124, 0.23);
    color: #d7ffe9;
    background: rgba(49, 209, 124, 0.09);
}

.exe-chat-notice[data-kind="warning"] {
    border-color: rgba(255, 181, 71, 0.24);
    color: #ffe9c6;
    background: rgba(255, 181, 71, 0.09);
}

.exe-chat-body {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.exe-chat-view {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(255, 255, 255, 0.15)
        transparent;
}

.exe-chat-view::-webkit-scrollbar,
.exe-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.exe-chat-view::-webkit-scrollbar-thumb,
.exe-chat-messages::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.14);
}

.exe-chat-hero {
    position: relative;
    padding: 17px;
    overflow: hidden;
    border: 1px solid var(--exe-chat-border);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(239, 35, 60, 0.13),
            rgba(255, 255, 255, 0.025)
        );
}

.exe-chat-hero::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -38px;
    width: 104px;
    height: 104px;
    border: 22px solid rgba(239, 35, 60, 0.08);
    border-radius: 50%;
}

.exe-chat-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: #ff7d90;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.exe-chat-eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.exe-chat-hero h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.35px;
}

.exe-chat-hero p {
    position: relative;
    z-index: 1;
    max-width: 290px;
    margin: 9px 0 0;
    color: var(--exe-chat-muted);
    font-size: 13px;
    line-height: 1.55;
}

.exe-chat-form {
    display: grid;
    gap: 13px;
    margin-top: 16px;
}

.exe-chat-field {
    display: grid;
    gap: 7px;
}

.exe-chat-field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.exe-chat-label {
    color: #e9e9ee;
    font-size: 12px;
    font-weight: 700;
}

.exe-chat-counter {
    color: #777984;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}

.exe-chat-counter.is-limit {
    color: var(--exe-chat-danger);
}

.exe-chat-input,
.exe-chat-textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    caret-color: #ff536c;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.exe-chat-input {
    height: 47px;
    padding: 0 14px;
}

.exe-chat-textarea {
    min-height: 104px;
    max-height: 180px;
    padding: 12px 14px;
    resize: vertical;
    line-height: 1.5;
}

.exe-chat-input::placeholder,
.exe-chat-textarea::placeholder {
    color: #747680;
}

.exe-chat-input:hover,
.exe-chat-textarea:hover {
    border-color: rgba(255, 255, 255, 0.17);
}

.exe-chat-input:focus,
.exe-chat-textarea:focus {
    border-color: rgba(255, 66, 91, 0.70);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.10);
}

.exe-chat-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.exe-chat-primary-btn,
.exe-chat-secondary-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 160ms ease,
        opacity 160ms ease,
        background 160ms ease;
}

.exe-chat-primary-btn {
    flex: 1;
    padding: 0 17px !important;
    color: #fff !important;
    background:
        linear-gradient(
            135deg,
            #ff3953,
            #c9102c
        ) !important;
    box-shadow:
        0 11px 24px rgba(156, 10, 36, 0.28),
        inset 0 1px rgba(255, 255, 255, 0.20);
}

.exe-chat-secondary-btn {
    padding: 0 15px !important;
    border: 1px solid var(--exe-chat-border) !important;
    color: #dddde3 !important;
    background: rgba(255, 255, 255, 0.045) !important;
}

.exe-chat-primary-btn:hover,
.exe-chat-secondary-btn:hover {
    transform: translateY(-1px);
}

.exe-chat-primary-btn:disabled,
.exe-chat-secondary-btn:disabled,
.exe-chat-hold-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.exe-chat-btn-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-top-color: #fff;
    border-radius: 50%;
    animation: exe-chat-spin 700ms linear infinite;
}

.exe-chat-security-note {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-top: 14px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 13px;
    color: #8f919b;
    background: rgba(255, 255, 255, 0.025);
    font-size: 11px;
    line-height: 1.5;
}

.exe-chat-security-note svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    fill: none;
    stroke: #bdc0c9;
    stroke-width: 1.8;
}

.exe-chat-hold-wrap {
    display: grid;
    place-items: center;
    flex: 1;
    min-height: 350px;
    padding: 12px 0;
    text-align: center;
}

.exe-chat-hold-card {
    width: 100%;
}

.exe-chat-hold-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 17px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    color: #ff5b70;
    background:
        radial-gradient(
            circle,
            rgba(239, 35, 60, 0.17),
            rgba(239, 35, 60, 0.04)
        );
}

.exe-chat-hold-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exe-chat-hold-card h3 {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.exe-chat-hold-card > p {
    max-width: 300px;
    margin: 9px auto 20px;
    color: var(--exe-chat-muted);
    font-size: 13px;
    line-height: 1.55;
}

.exe-chat-hold-btn {
    --hold-progress: 0%;

    position: relative;
    width: 100%;
    min-height: 58px;
    overflow: hidden;
    border: 1px solid rgba(255, 76, 101, 0.40) !important;
    border-radius: 17px;
    color: #fff !important;
    background:
        linear-gradient(
            135deg,
            rgba(239, 35, 60, 0.22),
            rgba(159, 16, 37, 0.24)
        ) !important;
    font-weight: 800;
    isolation: isolate;
    user-select: none;
    touch-action: none;
}

.exe-chat-hold-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    width: var(--hold-progress);
    background:
        linear-gradient(
            90deg,
            #e91e3c,
            #ff4d66
        );
    transition: width 80ms linear;
}

.exe-chat-hold-btn.is-holding {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow:
        0 0 0 5px rgba(239, 35, 60, 0.10),
        0 13px 30px rgba(135, 9, 31, 0.25);
}

.exe-chat-hold-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    pointer-events: none;
}

.exe-chat-hold-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exe-chat-hold-progress-text {
    min-height: 19px;
    margin-top: 10px;
    color: #8f919b;
    font-size: 12px;
}

.exe-chat-hold-back {
    margin-top: 14px;
    padding: 8px 12px !important;
    color: #adafb8 !important;
    font-size: 12px !important;
}

.exe-chat-conversation {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.exe-chat-conversation-bar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 9px 15px;
    border-bottom: 1px solid var(--exe-chat-border);
    color: #8f919b;
    background: rgba(255, 255, 255, 0.018);
    font-size: 11px;
}

.exe-chat-conversation-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c4c5cc;
    font-weight: 700;
}

.exe-chat-conversation-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--exe-chat-warning);
}

.exe-chat-conversation-status[data-status="open"]::before,
.exe-chat-conversation-status[data-status="waiting_user"]::before {
    background: var(--exe-chat-success);
}

.exe-chat-conversation-status[data-status="closed"]::before,
.exe-chat-conversation-status[data-status="archived"]::before {
    background: #777984;
}

.exe-chat-messages {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 17px 15px 21px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(255, 255, 255, 0.14)
        transparent;
}

.exe-chat-empty-messages {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 40px 20px;
    color: #777984;
    font-size: 12px;
    text-align: center;
}

.exe-chat-day-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 13px 0;
    color: #696b75;
    font-size: 10px;
    text-transform: uppercase;
}

.exe-chat-day-separator::before,
.exe-chat-day-separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.055);
}

.exe-chat-message-row {
    display: flex;
    margin: 9px 0;
}

.exe-chat-message-row.is-user {
    justify-content: flex-end;
}

.exe-chat-message-row.is-admin,
.exe-chat-message-row.is-system {
    justify-content: flex-start;
}

.exe-chat-message {
    max-width: 82%;
}

.exe-chat-message-author {
    margin: 0 7px 4px;
    color: #777984;
    font-size: 10px;
    font-weight: 700;
}

.exe-chat-message-row.is-user
.exe-chat-message-author {
    text-align: right;
}

.exe-chat-message-bubble {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px 16px 16px 5px;
    color: #e8e8ed;
    background: var(--exe-chat-panel-soft);
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.exe-chat-message-row.is-user
.exe-chat-message-bubble {
    border-color: rgba(255, 77, 102, 0.23);
    border-radius: 16px 16px 5px 16px;
    color: #fff;
    background:
        linear-gradient(
            140deg,
            #dd1937,
            #a70f27
        );
    box-shadow: 0 8px 20px rgba(99, 5, 24, 0.18);
}

.exe-chat-message-row.is-system
.exe-chat-message-bubble {
    color: #bbbcc5;
    background: rgba(255, 255, 255, 0.03);
    font-size: 12px;
    font-style: italic;
}

.exe-chat-message-meta {
    margin: 5px 7px 0;
    color: #666873;
    font-size: 9px;
}

.exe-chat-message-row.is-user
.exe-chat-message-meta {
    text-align: right;
}

.exe-chat-composer {
    flex: 0 0 auto;
    padding:
        12px
        14px
        calc(13px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--exe-chat-border);
    background: rgba(17, 18, 24, 0.98);
}

.exe-chat-composer-row {
    display: flex;
    align-items: flex-end;
    gap: 9px;
}

.exe-chat-composer-box {
    min-width: 0;
    flex: 1;
    position: relative;
}

.exe-chat-composer textarea {
    display: block;
    width: 100%;
    min-height: 45px;
    max-height: 115px;
    padding: 12px 48px 11px 13px;
    resize: none;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 15px;
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    line-height: 1.45;
}

.exe-chat-composer textarea:focus {
    border-color: rgba(255, 68, 93, 0.63);
    box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.08);
}

.exe-chat-composer textarea::placeholder {
    color: #747680;
}

.exe-chat-composer-count {
    position: absolute;
    right: 11px;
    bottom: 8px;
    color: #666873;
    font-size: 9px;
    pointer-events: none;
}

.exe-chat-send-btn {
    flex: 0 0 auto;
    display: grid !important;
    place-items: center;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    color: #fff !important;
    background:
        linear-gradient(
            135deg,
            #ff3c56,
            #c6102c
        ) !important;
    box-shadow: 0 8px 20px rgba(137, 8, 31, 0.25);
    transition:
        transform 160ms ease,
        opacity 160ms ease;
}

.exe-chat-send-btn:hover {
    transform: translateY(-1px);
}

.exe-chat-send-btn:disabled {
    cursor: not-allowed;
    opacity: 0.52;
    transform: none;
}

.exe-chat-send-btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exe-chat-closed-note {
    padding: 14px;
    color: #a7a8b1;
    border-top: 1px solid var(--exe-chat-border);
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    text-align: center;
}

.exe-chat-state {
    display: grid;
    place-items: center;
    flex: 1;
    min-height: 300px;
    padding: 25px;
    text-align: center;
}

.exe-chat-state-inner {
    max-width: 290px;
}

.exe-chat-state-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    border: 1px solid var(--exe-chat-border);
    border-radius: 21px;
    color: #ff5a70;
    background: var(--exe-chat-red-soft);
}

.exe-chat-state-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exe-chat-state h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.exe-chat-state p {
    margin: 9px 0 17px;
    color: var(--exe-chat-muted);
    font-size: 12px;
    line-height: 1.55;
}

.exe-chat-loader {
    width: 36px;
    height: 36px;
    margin: 0 auto 15px;
    border: 3px solid rgba(255, 255, 255, 0.09);
    border-top-color: var(--exe-chat-red);
    border-radius: 50%;
    animation: exe-chat-spin 750ms linear infinite;
}

@keyframes exe-chat-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes exe-chat-pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.94);
    }

    70% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

@media (max-width: 640px) {
    #exe-live-chat-root {
        left: 12px;
        bottom:
            calc(
                12px +
                env(safe-area-inset-bottom)
            );
    }

    .exe-chat-launcher {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }

    .exe-chat-panel {
        position: fixed;
        left: 8px;
        right: 8px;
        bottom:
            calc(
                78px +
                env(safe-area-inset-bottom)
            );
        width: auto;
        height: min(650px, calc(100dvh - 98px));
        max-height: none;
        border-radius: 23px;
        transform-origin: center bottom;
    }

    .exe-chat-header {
        min-height: 70px;
        padding: 12px 12px 12px 14px;
    }

    .exe-chat-brand-mark {
        width: 41px;
        height: 41px;
        border-radius: 14px;
    }

    .exe-chat-view {
        padding: 15px;
    }

    .exe-chat-message {
        max-width: 88%;
    }
}

@media (max-height: 620px) and (min-width: 641px) {
    .exe-chat-panel {
        height: calc(100vh - 105px);
        max-height: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #exe-live-chat-root *,
    #exe-live-chat-root *::before,
    #exe-live-chat-root *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   EXE LIVE CHAT PROFESSIONAL UI V1.1.0
   ========================================================= */

#exe-live-chat-root {
    font-family:
        Inter,
        "Noto Sans Georgian",
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 14px;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.exe-chat-panel {
    width: min(410px, calc(100vw - 32px));
    height: min(700px, calc(100dvh - 106px));
    max-height: calc(100dvh - 106px);
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.026),
            transparent 22%
        ),
        #111319;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.58),
        0 12px 32px rgba(87, 5, 25, 0.24);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.exe-chat-header {
    min-height: 74px;
    padding: 14px 14px 13px 16px;
    gap: 11px;
    border-bottom-color: rgba(255, 255, 255, 0.075);
    background:
        radial-gradient(
            circle at 0 0,
            rgba(255, 56, 82, 0.19),
            transparent 49%
        ),
        linear-gradient(
            120deg,
            rgba(218, 20, 52, 0.11),
            rgba(255, 255, 255, 0.012)
        );
}

.exe-chat-header::after {
    opacity: 0.42;
}

.exe-chat-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 22px rgba(180, 12, 42, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.exe-chat-brand-mark svg {
    width: 22px;
    height: 22px;
}

.exe-chat-heading {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-width: 0;
}

.exe-chat-title {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.15px;
    white-space: normal;
}

.exe-chat-presence {
    min-width: 0;
    max-width: 100%;
    gap: 7px;
}

.exe-chat-presence-dot {
    width: 8px;
    height: 8px;
    box-shadow:
        0 0 0 3px rgba(46, 204, 113, 0.10);
}

.exe-chat-presence-text {
    display: block;
    min-width: 0;
    color: #b5b8c3;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.exe-chat-icon-btn {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    color: #c9cbd2;
    background: rgba(255, 255, 255, 0.045);
}

.exe-chat-icon-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.075);
}

.exe-chat-body {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.008),
            transparent 25%
        );
}

.exe-chat-view {
    padding: 16px;
}

.exe-chat-hero {
    height: auto !important;
    min-height: 126px !important;
    padding: 16px 17px 17px;
    border-color: rgba(255, 255, 255, 0.085);
    border-radius: 17px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(230, 25, 58, 0.13),
            transparent 46%
        ),
        linear-gradient(
            145deg,
            rgba(231, 31, 61, 0.095),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.exe-chat-hero > * {
    max-width: 100% !important;
}

.exe-chat-hero h1,
.exe-chat-hero h2,
.exe-chat-hero h3 {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    margin-bottom: 7px;
    max-width: 100% !important;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.38;
    letter-spacing: -0.2px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.exe-chat-hero p {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 100% !important;
    color: #b8bbc5;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.55;
    white-space: normal;
}

.exe-chat-hero span {
    position: relative;
    z-index: 2;
}

.exe-chat-form {
    gap: 11px;
    margin-top: 14px;
}

.exe-chat-field {
    gap: 6px;
}

.exe-chat-field-head {
    min-height: 19px;
}

.exe-chat-label {
    color: #f0f1f4;
    font-size: 12.5px;
    font-weight: 750;
    line-height: 1.4;
}

.exe-chat-counter {
    color: #858994;
    font-size: 10.5px;
    font-weight: 500;
}

.exe-chat-input,
.exe-chat-textarea {
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 12px;
    color: #f7f7f9;
    background: #191c22;
    font-size: 13.5px;
    font-weight: 500;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.exe-chat-input {
    height: 46px;
    padding: 0 14px;
}

.exe-chat-textarea {
    min-height: 94px;
    max-height: 145px;
    padding: 12px 14px;
    line-height: 1.55;
    resize: vertical;
}

.exe-chat-input::placeholder,
.exe-chat-textarea::placeholder {
    color: #70747f;
    opacity: 1;
}

.exe-chat-input:hover,
.exe-chat-textarea:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: #1b1e25;
}

.exe-chat-input:focus,
.exe-chat-textarea:focus,
.exe-chat-input:focus-visible,
.exe-chat-textarea:focus-visible {
    outline: none;
    outline-offset: 0;
    border-color: #ff3852;
    background: #1b1e25;
    box-shadow:
        0 0 0 3px rgba(255, 56, 82, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.exe-chat-form button[type="submit"],
.exe-chat-primary-button,
.exe-chat-submit {
    min-height: 47px;
    border-radius: 13px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.1px;
    background:
        linear-gradient(
            135deg,
            #ff3852,
            #da1232
        );
    box-shadow:
        0 10px 26px rgba(185, 12, 44, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.exe-chat-form button[type="submit"]:hover,
.exe-chat-primary-button:hover,
.exe-chat-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.045);
    box-shadow:
        0 13px 30px rgba(185, 12, 44, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.exe-chat-security-note {
    gap: 9px;
    margin-top: 12px;
    padding: 11px 12px;
    border-color: rgba(255, 255, 255, 0.065);
    border-radius: 12px;
    color: #a5a8b2;
    background: #16191f;
    font-size: 10.8px;
    font-weight: 500;
    line-height: 1.55;
}

.exe-chat-security-note svg {
    width: 15px;
    height: 15px;
    stroke: #c4c7cf;
}

.exe-chat-notice {
    font-size: 12px;
    line-height: 1.45;
}

.exe-chat-launcher {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.25),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ff3852,
            #d81232 52%,
            #970e25
        );
    box-shadow:
        0 17px 38px rgba(119, 5, 28, 0.42),
        0 7px 18px rgba(0, 0, 0, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.exe-chat-launcher::before {
    border-radius: 22px;
    opacity: 0.55;
}

.exe-chat-launcher svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 640px) {
    #exe-live-chat-root {
        left: 12px;
        bottom: 12px;
    }

    .exe-chat-panel {
        left: 0;
        bottom: 68px;
        width: calc(100vw - 24px);
        height: min(720px, calc(100dvh - 92px));
        max-height: calc(100dvh - 92px);
        border-radius: 20px;
    }

    .exe-chat-header {
        min-height: 70px;
        padding: 13px 13px 12px 14px;
    }

    .exe-chat-brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .exe-chat-title {
        font-size: 14px;
    }

    .exe-chat-presence-text {
        font-size: 11px;
    }

    .exe-chat-view {
        padding: 14px;
    }

    .exe-chat-hero {
        min-height: 120px !important;
        padding: 15px;
    }

    .exe-chat-hero h1,
    .exe-chat-hero h2,
    .exe-chat-hero h3 {
        font-size: 17px;
        line-height: 1.4;
    }

    .exe-chat-hero p {
        font-size: 12px;
    }

    .exe-chat-form {
        margin-top: 12px;
    }

    .exe-chat-input {
        height: 45px;
    }

    .exe-chat-textarea {
        min-height: 90px;
    }

    .exe-chat-security-note {
        margin-top: 10px;
    }

    .exe-chat-launcher {
        width: 56px;
        height: 56px;
        border-radius: 17px;
    }
}

@media (max-height: 720px) and (min-width: 641px) {
    .exe-chat-panel {
        height: calc(100vh - 96px);
        max-height: calc(100vh - 96px);
    }

    .exe-chat-hero {
        min-height: 112px !important;
    }
}

/* =========================================================
   EXE CHAT BPG ARIAL FONT V1.2.0
   ========================================================= */

@font-face {
    font-family: "xChat Georgian";
    src:
        url("../webfonts/BPG_Arial_Web_2021.woff2")
            format("woff2"),
        url("../webfonts/BPG_Arial_Web_2021.woff")
            format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "xChat Georgian";
    src:
        url("../webfonts/BPG_Arial_Web_2021.woff2")
            format("woff2"),
        url("../webfonts/BPG_Arial_Web_2021.woff")
            format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

#exe-live-chat-root,
#exe-live-chat-root button,
#exe-live-chat-root input,
#exe-live-chat-root textarea {
    font-family:
        "xChat Georgian",
        "Segoe UI",
        Arial,
        sans-serif !important;
    font-kerning: normal;
    font-feature-settings: "kern" 1;
    letter-spacing: 0 !important;
}

#exe-live-chat-root {
    font-size: 14px;
    line-height: 1.5;
}

.exe-chat-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.exe-chat-presence-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.exe-chat-message-author {
    font-size: 11px;
    font-weight: 700;
}

.exe-chat-message-bubble {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.exe-chat-message-meta,
.exe-chat-counter,
.exe-chat-composer-count {
    font-size: 10.5px;
    font-weight: 400;
}

.exe-chat-conversation-status {
    font-size: 12px;
    font-weight: 700;
}

.exe-chat-input,
.exe-chat-textarea,
.exe-chat-composer textarea {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.exe-chat-label {
    font-size: 13px;
    font-weight: 700;
}

.exe-chat-hero h1,
.exe-chat-hero h2,
.exe-chat-hero h3 {
    font-weight: 700;
    letter-spacing: 0 !important;
}

.exe-chat-hero p,
.exe-chat-security-note {
    font-weight: 400;
}




/* EXE_CHAT_MULTI_CONVERSATION_STYLES_V1 */

.exe-chat-auth-view {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.exe-chat-thread-panel {
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.032),
            rgba(255, 255, 255, 0.012)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.exe-chat-thread-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.exe-chat-thread-panel-head h3 {
    margin: 3px 0 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.exe-chat-thread-eyebrow {
    display: block;
    color: #ef5268;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.65px;
}

.exe-chat-thread-refresh {
    min-height: 34px;
    padding: 0 11px !important;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.exe-chat-thread-list {
    display: flex;
    max-height: 210px;
    flex-direction: column;
    gap: 7px;
    overflow-y: auto;
    padding: 9px;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(255, 255, 255, 0.14)
        transparent;
}

.exe-chat-thread-list::-webkit-scrollbar {
    width: 5px;
}

.exe-chat-thread-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.exe-chat-thread-item {
    display: flex;
    width: 100%;
    min-height: 59px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 11px !important;
    border: 1px solid rgba(255, 255, 255, 0.065) !important;
    border-radius: 13px;
    color: #f4f4f6 !important;
    background: rgba(255, 255, 255, 0.027) !important;
    text-align: left;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

.exe-chat-thread-item:hover {
    border-color: rgba(239, 45, 76, 0.32) !important;
    background: rgba(239, 45, 76, 0.075) !important;
    transform: translateY(-1px);
}

.exe-chat-thread-item.is-active {
    border-color: rgba(239, 45, 76, 0.38) !important;
    background:
        linear-gradient(
            135deg,
            rgba(239, 45, 76, 0.12),
            rgba(255, 255, 255, 0.025)
        ) !important;
}

.exe-chat-thread-main {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.exe-chat-thread-title {
    overflow: hidden;
    color: #f7f7f8;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.exe-chat-thread-preview {
    overflow: hidden;
    color: #92959f;
    font-size: 10.5px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.exe-chat-thread-side {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
}

.exe-chat-thread-date {
    max-width: 72px;
    color: #737680;
    font-size: 9.5px;
    font-weight: 400;
    line-height: 1.25;
    text-align: right;
}

.exe-chat-thread-arrow {
    color: #ef5268;
    font-size: 21px;
    font-weight: 300;
    line-height: 1;
}

.exe-chat-thread-empty {
    display: grid;
    min-height: 74px;
    place-items: center;
    padding: 18px;
    color: #858892;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.exe-chat-new-conversation-head {
    padding: 2px 2px 0;
}

.exe-chat-new-conversation-head > span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.exe-chat-new-conversation-head p {
    margin: 3px 0 0;
    color: #91949e;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.45;
}

.exe-chat-conversation-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
}

.exe-chat-bar-btn {
    min-height: 28px;
    padding: 0 9px !important;
    border: 1px solid rgba(255, 255, 255, 0.085) !important;
    border-radius: 9px;
    color: #b9bbc3 !important;
    background: rgba(255, 255, 255, 0.035) !important;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
    transition:
        color 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.exe-chat-bar-btn:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.075) !important;
}

.exe-chat-bar-btn.is-primary {
    border-color: rgba(239, 45, 76, 0.34) !important;
    color: #ffffff !important;
    background: rgba(239, 45, 76, 0.15) !important;
}

.exe-chat-bar-btn.is-primary:hover {
    border-color: rgba(239, 45, 76, 0.50) !important;
    background: rgba(239, 45, 76, 0.24) !important;
}

@media (max-width: 430px) {
    .exe-chat-conversation-bar {
        gap: 8px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .exe-chat-conversation-status {
        max-width: 128px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .exe-chat-bar-btn {
        padding: 0 7px !important;
        font-size: 10px;
    }

    .exe-chat-thread-date {
        display: none;
    }
}


/* EXE_CHAT_AUTH_HUB_REDESIGN_STYLES_V1 */

.exe-chat-auth-view {
    gap: 12px;
}

.exe-chat-auth-hub-view {
    justify-content: flex-start;
}

.exe-chat-thread-panel-clean {
    border-color: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    background: #15181e;
    box-shadow: none;
}

.exe-chat-thread-panel-head-clean {
    min-height: 74px;
    padding: 14px 15px;
    border-bottom-color: rgba(255, 255, 255, 0.055);
}

.exe-chat-thread-heading {
    min-width: 0;
}

.exe-chat-thread-heading h3 {
    margin: 3px 0 2px;
    font-size: 16px;
    font-weight: 700;
}

.exe-chat-thread-heading p {
    margin: 0;
    color: #858994;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-eyebrow {
    color: #90949e;
    font-size: 9.5px;
    letter-spacing: 0.5px;
}

.exe-chat-refresh-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.075) !important;
    border-radius: 10px;
    color: #a9acb5 !important;
    background: rgba(255, 255, 255, 0.025) !important;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.exe-chat-refresh-icon:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    background: rgba(255, 255, 255, 0.055) !important;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-list {
    max-height: 252px;
    gap: 5px;
    padding: 7px;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-item {
    min-height: 58px;
    padding: 10px 11px !important;
    border-color: transparent !important;
    border-radius: 11px;
    background: transparent !important;
    transform: none;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-item:hover {
    border-color: rgba(255, 255, 255, 0.055) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    transform: none;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-item.is-active {
    border-color: rgba(255, 255, 255, 0.065) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    box-shadow:
        inset 3px 0 0 #e82043;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-title {
    color: #e7e8eb;
    font-size: 12.5px;
    font-weight: 600;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-preview {
    color: #777b86;
}

.exe-chat-thread-panel-clean
.exe-chat-thread-arrow {
    color: #737783;
}

.exe-chat-start-new-btn {
    display: flex;
    width: 100%;
    min-height: 70px;
    align-items: center;
    gap: 12px;
    padding: 11px 13px !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 15px;
    color: #ffffff !important;
    background: #15181e !important;
    text-align: left;
    transition:
        border-color 150ms ease,
        background 150ms ease;
}

.exe-chat-start-new-btn:hover {
    border-color: rgba(232, 32, 67, 0.24) !important;
    background: #181b21 !important;
}

.exe-chat-start-new-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(232, 32, 67, 0.16);
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 300;
    line-height: 1;
}

.exe-chat-start-new-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.exe-chat-start-new-copy strong {
    color: #f3f3f5;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.exe-chat-start-new-copy small {
    color: #7f838e;
    font-size: 10.8px;
    font-weight: 400;
    line-height: 1.35;
}

.exe-chat-start-new-arrow {
    color: #70747f;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
}

.exe-chat-auth-compose-view {
    justify-content: flex-start;
}

.exe-chat-hub-back {
    display: inline-flex;
    min-height: 34px;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    padding: 0 9px !important;
    border: 0 !important;
    border-radius: 9px;
    color: #979ba5 !important;
    background: transparent !important;
    font-size: 11.5px;
    font-weight: 600;
}

.exe-chat-hub-back:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.exe-chat-hub-back span {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.exe-chat-compose-header {
    padding: 4px 2px 2px;
}

.exe-chat-compose-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #e82043;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.55px;
}

.exe-chat-compose-header h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.exe-chat-compose-header p {
    margin: 0;
    color: #858994;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.5;
}

.exe-chat-compose-form {
    margin-top: 4px;
}

.exe-chat-auth-compose-view
.exe-chat-textarea {
    min-height: 142px;
    background: #171a20;
}

.exe-chat-auth-compose-view
.exe-chat-security-note {
    margin-top: 2px;
    border-color: rgba(255, 255, 255, 0.055);
    background: #15181e;
}

.exe-chat-notice[data-kind="success"] {
    border-color: rgba(49, 209, 124, 0.16);
    color: #bdebd0;
    background: rgba(49, 209, 124, 0.055);
}

@media (max-width: 430px) {
    .exe-chat-thread-panel-clean
    .exe-chat-thread-list {
        max-height: 230px;
    }

    .exe-chat-start-new-btn {
        min-height: 66px;
    }
}


/* EXE_CHAT_COMPACT_AUTH_HUB_STYLES_V1 */

#exe-live-chat-root.is-auth-hub-compact
.exe-chat-panel {
    height: auto;
    max-height: calc(100dvh - 106px);
}

#exe-live-chat-root.is-auth-hub-compact
.exe-chat-body {
    min-height: auto;
    flex: 0 0 auto;
    overflow: visible;
}

#exe-live-chat-root.is-auth-hub-compact
.exe-chat-auth-hub-view {
    min-height: auto;
    flex: 0 0 auto;
    overflow: visible;
}

#exe-live-chat-root.is-auth-hub-compact
.exe-chat-thread-panel-clean
.exe-chat-thread-list {
    max-height: min(310px, calc(100dvh - 330px));
}

@media (max-width: 640px) {
    #exe-live-chat-root.is-auth-hub-compact
    .exe-chat-panel {
        height: auto;
        max-height: calc(100dvh - 92px);
    }

    #exe-live-chat-root.is-auth-hub-compact
    .exe-chat-thread-panel-clean
    .exe-chat-thread-list {
        max-height: min(280px, calc(100dvh - 305px));
    }
}

@media (max-height: 620px) {
    #exe-live-chat-root.is-auth-hub-compact
    .exe-chat-thread-panel-clean
    .exe-chat-thread-list {
        max-height: 190px;
    }
}
