#tm-chatbot,
#tm-chatbot * {
    box-sizing: border-box;
}

#tm-chatbot {
    --tmc-primary: #ec4899;
    --tmc-secondary: #8b5cf6;
    --tmc-panel: #180923;
    --tmc-text: #fff7fb;
    --tmc-muted: #d9c9e3;
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 0;
    height: 0;
    color: var(--tmc-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.45;
    pointer-events: none;
}

/* Le lanceur survole toujours les autres assistants afin que son libellé reste lisible. */
#tm-chatbot:has(.tm-chatbot__launcher:hover),
#tm-chatbot:has(.tm-chatbot__launcher:focus-visible) {
    z-index: 2147483646 !important;
}

#tm-chatbot.tm-chatbot--left {
    right: auto;
    left: 24px;
}

#tm-chatbot [hidden] {
    display: none !important;
}

#tm-chatbot button,
#tm-chatbot a {
    font: inherit;
}

#tm-chatbot button {
    text-transform: none;
    letter-spacing: normal;
}

#tm-chatbot .tm-chatbot__launcher {
    position: absolute;
    right: 0 !important;
    bottom: 0 !important;
    display: grid;
    place-items: center;
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    height: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
    margin: 0 !important;
    padding: 2px !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 50% !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none !important;
    appearance: none !important;
    isolation: isolate;
    z-index: 3;
    transition: transform .22s ease, filter .22s ease;
}

#tm-chatbot.tm-chatbot--left .tm-chatbot__launcher {
    right: auto !important;
    left: 0 !important;
}

#tm-chatbot .tm-chatbot__launcher:hover {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateY(-3px) scale(1.035);
}

#tm-chatbot .tm-chatbot__launcher:focus,
#tm-chatbot .tm-chatbot__launcher:active,
#tm-chatbot .tm-chatbot__launcher:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#tm-chatbot .tm-chatbot__launcher:focus-visible .tm-chatbot__launcher-mascot {
    filter:
        drop-shadow(0 0 2px #fff)
        drop-shadow(-4px 0 8px rgba(236, 72, 153, .96))
        drop-shadow(4px 0 8px rgba(84, 94, 255, .96));
}

.tm-chatbot__icon-button:focus-visible,
.tm-chatbot__choice:focus-visible,
.tm-chatbot__answer-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.tm-chatbot__pulse {
    position: absolute;
    inset: 3px;
    z-index: -1;
    border: 0;
    background: url("../images/milo-lila-guide.webp") center / contain no-repeat;
    filter: blur(8px) saturate(1.25);
    opacity: 0;
    animation: tm-chatbot-pulse 2.3s ease-out infinite;
}

.tm-chatbot__launcher-mascot {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    transition: opacity .2s ease, transform .25s ease;
}

.tm-chatbot__mascot {
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .24));
}

.tm-chatbot__mascot--heart {
    max-width: none !important;
    transform: scale(1.2);
    filter:
        drop-shadow(-5px 0 10px rgba(236, 72, 153, .62))
        drop-shadow(5px 0 10px rgba(72, 92, 255, .62));
}

.tm-chatbot__mascot--bear,
.tm-chatbot__mascot--bunny {
    max-width: none !important;
    transform: scale(1.14);
}

.tm-chatbot__launcher .tm-chatbot__mascot--duo {
    display: block;
    width: 112%;
    height: 112%;
    max-width: none !important;
    filter:
        drop-shadow(-5px 0 10px rgba(236, 72, 153, .6))
        drop-shadow(5px 0 10px rgba(72, 92, 255, .6));
}

#tm-chatbot .tm-chatbot__tooltip {
    position: absolute;
    right: 100%;
    bottom: 24px;
    width: max-content;
    max-width: min(280px, calc(100vw - 130px));
    margin-right: 12px;
    padding: 8px 11px;
    border: 1px solid color-mix(in srgb, var(--tmc-primary) 60%, #fff);
    border-radius: 12px;
    background: color-mix(in srgb, var(--tmc-panel) 92%, #fff 8%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35), 0 0 14px color-mix(in srgb, var(--tmc-secondary) 38%, transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateX(7px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 4;
}

#tm-chatbot.tm-chatbot--left .tm-chatbot__tooltip {
    right: auto;
    left: 100%;
    margin-right: 0;
    margin-left: 12px;
    transform: translateX(-7px);
}

#tm-chatbot .tm-chatbot__launcher:hover .tm-chatbot__tooltip,
#tm-chatbot .tm-chatbot__launcher:focus-visible .tm-chatbot__tooltip {
    opacity: 1;
    transform: translateX(0);
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__mascot--heart,
#tm-chatbot[data-mascot="bear"] .tm-chatbot__mascot--bear,
#tm-chatbot[data-mascot="bunny"] .tm-chatbot__mascot--bunny {
    display: block;
    animation: tm-chatbot-pop .36s cubic-bezier(.2, .85, .35, 1.25);
}

.tm-chatbot__close-mark {
    position: absolute;
    display: none !important;
    place-items: center;
    width: 36px;
    height: 36px;
    opacity: 0;
    transform: rotate(-70deg) scale(.6);
    transition: opacity .2s ease, transform .25s ease;
}

.tm-chatbot__close-mark svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.tm-chatbot--open .tm-chatbot__launcher-mascot {
    opacity: 1;
    transform: none;
}

.tm-chatbot--open .tm-chatbot__close-mark {
    display: none !important;
}

.tm-chatbot--open .tm-chatbot__pulse {
    animation: none;
    opacity: 0;
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__pulse {
    display: block;
}

.tm-chatbot__panel {
    position: absolute;
    right: 118px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    width: min(390px, calc(100vw - 150px));
    max-height: min(660px, calc(100vh - 132px));
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--tmc-primary) 32%, rgba(255, 255, 255, .4));
    border-radius: 26px;
    background: linear-gradient(165deg, color-mix(in srgb, var(--tmc-panel) 93%, #fff 7%), var(--tmc-panel));
    box-shadow: 0 30px 80px rgba(12, 1, 18, .58), 0 0 45px color-mix(in srgb, var(--tmc-secondary) 18%, transparent);
    pointer-events: auto;
    z-index: 1;
    transform-origin: right bottom;
    animation: tm-chatbot-panel-in .28s cubic-bezier(.2, .8, .3, 1);
}

.tm-chatbot--left .tm-chatbot__panel {
    right: auto;
    left: 118px;
    transform-origin: left bottom;
}

.tm-chatbot__header {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    min-height: 78px;
    padding: 12px 13px 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(115deg, color-mix(in srgb, var(--tmc-primary) 18%, transparent), color-mix(in srgb, var(--tmc-secondary) 15%, transparent));
}

.tm-chatbot__avatar {
    display: grid;
    flex: 0 0 52px;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
    box-shadow: 0 0 16px color-mix(in srgb, var(--tmc-secondary) 24%, transparent);
    overflow: visible;
}

.tm-chatbot__identity {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.tm-chatbot__identity strong {
    overflow: hidden;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tm-chatbot__identity > span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--tmc-muted);
    font-size: 12px;
}

.tm-chatbot__identity i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #66e5a8;
    box-shadow: 0 0 8px rgba(102, 229, 168, .9);
}

.tm-chatbot__subtitle-copy {
    display: block;
    line-height: 1.25;
}

/* L'accueil Milo & Lila assume pleinement les deux couleurs de la marque. */
#tm-chatbot[data-mascot="heart"] .tm-chatbot__panel {
    border: 2px solid transparent;
    background:
        linear-gradient(165deg, color-mix(in srgb, var(--tmc-panel) 93%, #fff 7%), var(--tmc-panel)) padding-box,
        linear-gradient(135deg, var(--tmc-primary) 0%, #d946ef 48%, var(--tmc-secondary) 100%) border-box;
    box-shadow:
        0 30px 80px rgba(12, 1, 18, .58),
        -11px 0 34px color-mix(in srgb, var(--tmc-primary) 32%, transparent),
        11px 0 34px color-mix(in srgb, var(--tmc-secondary) 34%, transparent);
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__header {
    border-bottom-color: color-mix(in srgb, #d946ef 42%, transparent);
    background: linear-gradient(
        112deg,
        color-mix(in srgb, var(--tmc-primary) 32%, transparent),
        color-mix(in srgb, #d946ef 18%, transparent) 50%,
        color-mix(in srgb, var(--tmc-secondary) 30%, transparent)
    );
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__avatar {
    border: 2px solid transparent;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .11), transparent 70%) padding-box,
        conic-gradient(from 210deg, var(--tmc-primary), #f0abfc, var(--tmc-secondary), var(--tmc-primary)) border-box;
    box-shadow:
        inset 0 0 14px rgba(217, 70, 239, .2),
        -7px 0 18px color-mix(in srgb, var(--tmc-primary) 66%, transparent),
        7px 0 18px color-mix(in srgb, var(--tmc-secondary) 66%, transparent);
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__icon-button {
    border-color: color-mix(in srgb, #d946ef 62%, transparent);
    box-shadow: -3px 0 8px color-mix(in srgb, var(--tmc-primary) 22%, transparent), 3px 0 8px color-mix(in srgb, var(--tmc-secondary) 22%, transparent);
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__choice--male {
    border-color: color-mix(in srgb, var(--tmc-secondary) 82%, #fff 18%);
    box-shadow: inset 0 0 12px color-mix(in srgb, var(--tmc-secondary) 12%, transparent), 0 0 12px color-mix(in srgb, var(--tmc-secondary) 20%, transparent);
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__choice--female {
    border-color: color-mix(in srgb, var(--tmc-primary) 82%, #fff 18%);
    box-shadow: inset 0 0 12px color-mix(in srgb, var(--tmc-primary) 12%, transparent), 0 0 12px color-mix(in srgb, var(--tmc-primary) 20%, transparent);
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__choice--male:hover,
#tm-chatbot[data-mascot="heart"] .tm-chatbot__choice--male:focus-visible {
    background: linear-gradient(135deg, color-mix(in srgb, var(--tmc-secondary) 72%, #24102e), color-mix(in srgb, var(--tmc-secondary) 48%, #12051b));
}

#tm-chatbot[data-mascot="heart"] .tm-chatbot__choice--female:hover,
#tm-chatbot[data-mascot="heart"] .tm-chatbot__choice--female:focus-visible {
    background: linear-gradient(135deg, color-mix(in srgb, var(--tmc-primary) 72%, #24102e), color-mix(in srgb, var(--tmc-primary) 48%, #12051b));
}

#tm-chatbot[data-mascot="bear"] {
    --tmc-accent: var(--tmc-secondary);
}

#tm-chatbot[data-mascot="bunny"] {
    --tmc-accent: var(--tmc-primary);
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__panel {
    border-color: color-mix(in srgb, var(--tmc-accent) 76%, white 18%);
    box-shadow: 0 30px 80px rgba(12, 1, 18, .58), 0 0 48px color-mix(in srgb, var(--tmc-accent) 42%, transparent);
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__header {
    border-bottom-color: color-mix(in srgb, var(--tmc-accent) 45%, transparent);
    background: linear-gradient(115deg, color-mix(in srgb, var(--tmc-accent) 28%, transparent), color-mix(in srgb, var(--tmc-panel) 94%, var(--tmc-accent) 6%));
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__avatar {
    border-color: color-mix(in srgb, var(--tmc-accent) 82%, white 18%);
    box-shadow: inset 0 0 14px color-mix(in srgb, var(--tmc-accent) 20%, transparent), 0 0 19px color-mix(in srgb, var(--tmc-accent) 68%, transparent);
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__icon-button {
    border-color: color-mix(in srgb, var(--tmc-accent) 62%, transparent);
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__messages {
    scrollbar-color: color-mix(in srgb, var(--tmc-accent) 72%, transparent) transparent;
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__bubble--visitor {
    background: linear-gradient(135deg, color-mix(in srgb, var(--tmc-accent) 88%, #fff 12%), var(--tmc-accent));
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__choice {
    border-color: color-mix(in srgb, var(--tmc-accent) 72%, white 18%);
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__choice:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--tmc-accent) 72%, #24102e), color-mix(in srgb, var(--tmc-accent) 52%, #12051b));
}

#tm-chatbot:not([data-mascot="heart"]) .tm-chatbot__choice--action > span:first-child {
    color: color-mix(in srgb, var(--tmc-accent) 72%, white 28%);
}

.tm-chatbot__icon-button {
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: #f7eefa;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease;
}

.tm-chatbot__icon-button:hover {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
}

.tm-chatbot__icon-button svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

#tm-chatbot .tm-chatbot__header .tm-chatbot__icon-button {
    display: grid !important;
    flex: 0 0 38px !important;
    place-items: center !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    appearance: none !important;
    border: 1px solid var(--tmc-secondary) !important;
    border-radius: 50% !important;
    background: rgba(139, 92, 246, .08) !important;
    box-shadow: 0 0 8px rgba(139, 92, 246, .18) !important;
    color: #fff !important;
}

#tm-chatbot .tm-chatbot__header .tm-chatbot__icon-button:hover,
#tm-chatbot .tm-chatbot__header .tm-chatbot__icon-button:focus-visible {
    border-color: var(--tmc-primary) !important;
    background: rgba(236, 72, 153, .16) !important;
    box-shadow: 0 0 11px rgba(236, 72, 153, .28) !important;
    outline: none;
}

#tm-chatbot .tm-chatbot__header .tm-chatbot__icon-button svg {
    width: 19px !important;
    height: 19px !important;
    fill: currentColor !important;
}

.tm-chatbot__messages {
    flex: 1 1 auto;
    min-height: 188px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 17px 15px 9px;
    overscroll-behavior: contain;
    scrollbar-color: color-mix(in srgb, var(--tmc-primary) 60%, transparent) transparent;
    scrollbar-width: thin;
}

.tm-chatbot__message-row {
    display: flex;
    margin: 0 0 10px;
    animation: tm-chatbot-message-in .24s ease both;
}

.tm-chatbot__message-row--visitor {
    justify-content: flex-end;
}

.tm-chatbot__bubble {
    width: fit-content;
    max-width: 86%;
    padding: 10px 13px;
    border-radius: 17px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
}

.tm-chatbot__bubble p {
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.48;
    white-space: pre-line;
}

.tm-chatbot__bubble--assistant {
    border: 1px solid rgba(255, 255, 255, .1);
    border-bottom-left-radius: 5px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.tm-chatbot__bubble--visitor {
    border-bottom-right-radius: 5px;
    background: linear-gradient(135deg, var(--tmc-primary), var(--tmc-secondary));
    color: #fff;
}

.tm-chatbot__answer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    background: #fff;
    color: #3e123f !important;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease;
}

.tm-chatbot__answer-link::after {
    margin-left: 7px;
    content: "→";
}

.tm-chatbot__answer-link:hover {
    color: #2b092e !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.tm-chatbot__choices {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding: 8px 15px 13px;
}

.tm-chatbot__choice {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 9px 11px;
    border: 1px solid color-mix(in srgb, var(--tmc-primary) 52%, white 16%);
    border-radius: 14px;
    background: color-mix(in srgb, var(--tmc-panel) 82%, white 9%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.tm-chatbot__choice:hover {
    border-color: rgba(255, 255, 255, .72);
    background: linear-gradient(135deg, color-mix(in srgb, var(--tmc-primary) 72%, #24102e), color-mix(in srgb, var(--tmc-secondary) 68%, #24102e));
    transform: translateY(-2px);
}

.tm-chatbot__choice--male,
.tm-chatbot__choice--female,
.tm-chatbot__choice--restart {
    grid-column: auto;
}

.tm-chatbot__choice--action {
    justify-content: flex-start;
    text-align: left;
}

.tm-chatbot__choice--action > span:first-child {
    display: grid;
    flex: 0 0 29px;
    place-items: center;
    width: 29px;
    height: 29px;
    margin-right: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    color: #ffd5ef;
    font-size: 15px;
}

.tm-chatbot__choice--restart {
    grid-column: 1 / -1;
}

.tm-chatbot__privacy {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    padding: 9px 14px 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #bdaec7;
    font-size: 10px;
    line-height: 1.35;
}

.tm-chatbot__privacy svg {
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
    margin-top: 1px;
    fill: #c9b4d3;
}

@keyframes tm-chatbot-pulse {
    0% { opacity: .52; transform: scale(.92); }
    70%, 100% { opacity: 0; transform: scale(1.15); }
}

@keyframes tm-chatbot-pop {
    from { opacity: 0; transform: scale(.55) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes tm-chatbot-panel-in {
    from { opacity: 0; transform: translateY(15px) scale(.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes tm-chatbot-message-in {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
    #tm-chatbot {
        right: 14px;
        bottom: 14px;
    }

    #tm-chatbot.tm-chatbot--left {
        right: auto;
        left: 14px;
    }

    #tm-chatbot .tm-chatbot__launcher {
        width: 78px !important;
        min-width: 78px !important;
        max-width: 78px !important;
        height: 78px !important;
        min-height: 78px !important;
        max-height: 78px !important;
    }

    .tm-chatbot__launcher-mascot {
        width: 75px;
        height: 75px;
    }

    .tm-chatbot__panel {
        position: fixed;
        right: 98px;
        bottom: 12px;
        left: auto;
        width: min(390px, calc(100vw - 112px));
        max-height: calc(100dvh - 24px);
        border-radius: 22px;
        transform-origin: right bottom;
    }

    .tm-chatbot--left .tm-chatbot__panel {
        right: auto;
        left: 98px;
        transform-origin: left bottom;
    }
}

@media (max-width: 360px) {
    .tm-chatbot__choices {
        grid-template-columns: 1fr;
    }

    .tm-chatbot__choice--restart {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    #tm-chatbot *,
    #tm-chatbot *::before,
    #tm-chatbot *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/*
 * 1.0.9 - Transparence stricte du lanceur.
 * Les panneaux de conversation gardent volontairement leur fond lorsqu'ils sont ouverts.
 */
#tm-chatbot,
#tm-chatbot .tm-chatbot__launcher,
#tm-chatbot .tm-chatbot__launcher:hover,
#tm-chatbot .tm-chatbot__launcher:focus,
#tm-chatbot .tm-chatbot__launcher:focus-visible,
#tm-chatbot .tm-chatbot__launcher:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

#tm-chatbot .tm-chatbot__launcher::before,
#tm-chatbot .tm-chatbot__launcher::after {
    background: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

#tm-chatbot .tm-chatbot__launcher-mascot,
#tm-chatbot .tm-chatbot__launcher-mascot > img,
#tm-chatbot .tm-chatbot__launcher .tm-chatbot__mascot--duo {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
}

#tm-chatbot .tm-chatbot__pulse {
    display: none !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 0 !important;
    animation: none !important;
}

/* 1.1.0 - Aucun lanceur incomplet avant le décodage des WebP. */
#tm-chatbot:not(.tm-assets-ready) .tm-chatbot__launcher {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#tm-chatbot.tm-assets-ready .tm-chatbot__launcher {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
