/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*#chatbotContainer {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*    width: 600px;*/
/*    background-color: #f0f0f0;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
/*    transition: height 0.3s ease;*/
/*    overflow: hidden;*/
/*    z-index:1001;*/
/*}*/

/*#chatbotContainer.closed {*/
/*    height: 50px;*/
/*}*/

/*#chatbotContainer:not(.closed) {*/
/*    height: 800px;*/
/*}*/

/*#toggleChat {*/
/*    background: none;*/
/*    border: none;*/
/*    color: white;*/
/*    font-size: 20px;*/
/*    cursor: pointer;*/
/*}*/

/*#chat-content {*/
/*    height: calc(100% - 50px);*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*#chatMessages {*/
/*    flex-grow: 1;*/
/*    overflow-y: auto;*/
/*    padding: 10px;*/
/*}*/

/*#chatInputContainer {*/
/*    display: flex;*/
/*    padding: 10px;*/
/*}*/

/*#messageInput {*/
/*    flex-grow: 1;*/
/*    padding: 5px;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 3px;*/
/*}*/

/*#sendButton {*/
/*    margin-left: 5px;*/
/*    padding: 5px 10px;*/
/*    background-color: #007bff;*/
/*    color: white;*/
/*    border: none;*/
/*    border-radius: 3px;*/
/*    cursor: pointer;*/
/*}*/

/*.user-message, .bot-message {*/
/*    margin: 5px 0;*/
/*    padding: 5px 10px;*/
/*    border-radius: 5px;*/
/*    max-width: 80%;*/
/*}*/

/*.user-message {*/
/*    background-color: #007bff;*/
/*    color: white;*/
/*    align-self: flex-end;*/
/*    margin-left: auto;*/
/*}*/

/*.bot-message {*/
/*    background-color: #e9e9e9;*/
/*    color: black;*/
/*    align-self: flex-start;*/
/*}*/


.chatbot-toggler {
    position: fixed;
    bottom: 40px;
    right: 40px;
    outline: none;
    border: none;
    height: 40px;
    width: 40px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #4aa017;
    transition: all 0.2s ease;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
}

.chatbox .chat .chatbot-message-stack {
    display: flex;
    flex-direction: column;
    gap: 0.34rem;
    min-width: 0;
}

.chatbox .chat.incoming .chatbot-message-stack {
    align-items: flex-start;
}

.chatbox .chat.outgoing .chatbot-message-stack {
    align-items: flex-end;
}

.chatbox .chat .chatbot-message-time {
    font-size: 0.77rem;
    line-height: 1;
    color: #9aa59f;
}

.chatbot-toggler:hover {
    background: #4aa017;
}

.chatbot-toggler svg path {
    fill: #fff;
}

@media (max-width: 991px) {
    .chatbot-toggler {
        bottom: 20px;
        right: 20px;
    }
}

@keyframes chatbot-spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .chatbot-toggler {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .chatbot-toggler {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 375px) {
    .chatbot-toggler {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 320px) {
    .chatbot-toggler {
        bottom: 20px;
        right: 20px;
    }
}

body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
    background: #4aa017;
}
.chatbot-toggler span {
    color: #fff;
    position: absolute;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
    opacity: 0;
}
body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot {
    position: fixed;
    right: 70px;
    bottom: 80px;
    overflow: hidden;
    width: 340px;
    height: 520px;
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
    background: #fff;
    transform-origin: bottom right;
    border-radius: 15px;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
}

body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* ChatBot */
.chatbot header {
    background: #4aa017 !important;
    position: relative;
    color: #fff;
    padding: 15px 0;
    padding-bottom:10px;
    text-align: center;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chatbot header span {
    position: absolute;
    right: 15px;
    top: 50%;
    display: none;
    cursor: pointer;
    transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
    .chatbot header span {
        display: block;
    }
}
.chatbot header span svg {
    height: 20px;
    width: 20px;
    fill: #fff;
}
.chatbot header span:hover {
    opacity: 0.8;
}
.chatbot header span:first-child {
    right: 55px;
}
.chatbot header span:last-child {
    right: 15px;
}

.chatbot header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.chatbot .chatbox {
    overflow-y: auto;
    padding: 15px 10px 8px;
    height: 400px;
    background: #FAFAFA;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.chatbox .chat {
    display: flex;
    list-style: none;
    margin: -1px 0 0;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
    width: 6px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
}

.chatbox .incoming > span {
    height: 30px;
    width: 30px;
    color: #fff;
    align-self: flex-end;
    background: #4aa017;
    text-align: center;
    line-height: 32px;
    border-radius: 5px;
    margin: 0 8px 2px 0;
}

.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
    font-size: 0.8rem;
}
.chatbox .chat p {
    color: #fff;
    font-size: 0.9rem;
    max-width: 75%;
    padding: 5px 10px;
    border-radius: 10px 10px 0 10px;
    background: #4aa017;
    line-height: 1.3;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.chatbox .incoming p {
    color: black;
    font-size: 0.9rem;
    background: #f2f2f2;
    border-radius: 10px 10px 10px 0;
    text-align: left;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}

.chatbox .chat p.error::before {
    content: "!";
    color: #721c24;
    font-weight: 600;
    margin-right: 5px;
}

.chatbox .chat p.error::after {
    content: "!";
    color: #721c24;
    font-weight: 600;
    margin-left: 5px;
}

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}
@media (max-width: 375px) and (-webkit-min-device-pixel-ratio: 2),
(max-width: 375px) and (min-device-pixel-ratio: 2) {
    .chatbox .chat p.error {
        background: #f8d7da;
        color: #721c24;
    }
}

.chatbot .chat-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    gap: 5px;
    background: #FAFAFA;
    padding: 5px 20px;
    border-top: 1px solid #ccc;
}

.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.95rem;
    resize: none;
    padding: 16px 15px 16px 0;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    background: #FAFAFA;
}

.chat-input button {
    align-self: flex-end;
    height: 40px;
    line-height: 55px;
    color: #4aa017;
    font-size: 1.35rem;
    cursor: pointer;
    visibility: hidden;
    transition: 0.3s ease;
    justify-content: flex-end;
    border: none;
    background: none;
}

.chat-input textarea:valid ~ button {
    visibility: visible;
}
@media (max-width: 767px) {
    .chatbot {
        width: 100%;
        height: 100%;
        border-radius: 0;
        bottom: 0;
        right: 0;
    }
    .chatbot header {
        border-radius: 0;
    }
    .chatbot .chat-input {
        position: relative;
    }
    .chatbot .chat-input textarea {
        padding: 16px 15px 16px 0;
    }
    .chatbot .chat-input button {
        height: 55px;
        line-height: 55px;
        font-size: 1.35rem;
    }
}

@media (max-width: 575px) {
    .chatbot {
        width: 100%;
        height: 100%;
        border-radius: 0;
        bottom: 0;
        right: 0;
    }
    .chatbot header {
        border-radius: 0;
    }
    .chatbot .chat-input {
        position: relative;
    }
    .chatbot .chat-input textarea {
        padding: 16px 15px 16px 0;
    }
    .chatbot .chat-input button {
        height: 55px;
        line-height: 55px;
        font-size: 1.35rem;
    }
}


/* HTML: <div class="loader"></div>, see https://css-loaders.com/dots/ */
.loadingDots {
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#99A0A3 90%,#0000);
    background:
        var(--_g) 0%   50%,
        var(--_g) 50%  50%,
        var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.grecaptcha-badge {visibility: hidden !important;width:20px;}

.chatbotAvatar{font-size:30px;margin-right:10px;}
.chatbotColor{color:#2f3985;}/*#58619E*/
.chatbotBackgroundColor{background:var(--chatbot-primary);}
.chatbotBackgroundColor:hover{background:var(--chatbot-primary);}

.chatbotDisclaimer{
    font-size: 0.7rem;
}

/*
 * Chatbot v2 styles:
 * keep this block at the end so it overrides legacy rules above.
 */
:root {
    --chatbot-bg: #eff5f1;
    --chatbot-surface: #ffffff;
    --chatbot-border: #d8e3db;
    --chatbot-primary: #149247;
    --chatbot-primary-dark: #0e7f3b;
    --chatbot-primary-soft: #e8f5eb;
    --chatbot-text: #243029;
    --chatbot-muted: #6f7f76;
    --chatbot-shadow: 0 28px 72px -44px rgba(18, 83, 47, 0.45);
}

.chatbot-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 3rem 1.5rem 8rem;
    box-sizing: border-box;
    background: radial-gradient(circle at top right, #eaf6ef 0%, var(--chatbot-bg) 55%);
    color: var(--chatbot-text);
    font-family: 'Open Sans', sans-serif;
}

.chatbot-page__intro {
    width: min(720px, 100%);
    background: var(--chatbot-surface);
    border: 1px solid var(--chatbot-border);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    box-shadow: var(--chatbot-shadow);
}

.chatbot-page__intro h1 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.chatbot-page__intro p {
    margin: 0.75rem 0 0;
    line-height: 1.6;
    color: var(--chatbot-muted);
}

.chatbotBackgroundColor {
    background: var(--chatbot-primary);
}

.chatbot-toggler {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--chatbot-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
}

.chatbot-toggler:hover {
    transform: translateY(-1px);
}

.chatbot-toggler .chatbot-toggler-close {
    display: none;
}

body.show-chatbot .chatbot-toggler .chatbot-toggler-open {
    display: none;
}

body.show-chatbot .chatbot-toggler .chatbot-toggler-close {
    display: inline;
}

body.show-chatbot .chatbot-toggler {
    z-index: 998;
    pointer-events: none;
    opacity: 0;
}

.chatbot-form {
    margin: 0;
}

.chatbot {
    position: fixed;
    right: 1.5rem;
    bottom: 5.4rem;
    width: min(400px, calc(100vw - 2rem));
    height: min(620px, calc(100vh - 7.2rem));
    background: var(--chatbot-surface);
    border: 1px solid var(--chatbot-border);
    border-radius: 18px;
    box-shadow: var(--chatbot-shadow);
    display: flex;
    flex-direction: column;
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    z-index: 999;
    font-family: 'Open Sans', sans-serif;
}

.chatbot.is-dragging,
.chatbot.is-resizing {
    transition: none;
}

body.show-chatbot .chatbot {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 18px 18px 0 0;
    padding: 0.95rem 1rem 0.85rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--chatbot-primary) 0%, var(--chatbot-primary-dark) 100%);
    cursor: move;
    user-select: none;
}

.chatbot.is-dragging header {
    cursor: grabbing;
}

.chatbot-header-action {
    cursor: pointer;
}

.chatbot-resize-handle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    cursor: nwse-resize;
    border-bottom-right-radius: 18px;
    background:
        linear-gradient(135deg, transparent 45%, rgba(109, 130, 117, 0.22) 45%, rgba(109, 130, 117, 0.22) 56%, transparent 56%),
        linear-gradient(135deg, transparent 60%, rgba(109, 130, 117, 0.35) 60%, rgba(109, 130, 117, 0.35) 72%, transparent 72%);
}

.chatbot header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 8px 8px;
}

.chatbot-header-main,
.chatbot-header-actions {
    position: relative;
    z-index: 1;
}

.chatbot-header-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-width: 0;
}

.chatbot-header-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1rem;
}

.chatbot-header-copy {
    min-width: 0;
    text-align: center;
}

.chatbot-header-status {
    margin: 0.18rem 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.33rem;
    font-size: 0.78rem;
    color: rgba(239, 255, 245, 0.95);
}

.chatbot-header-status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #e6f17a;
    box-shadow: 0 0 0 2px rgba(230, 241, 122, 0.18);
}

.chatbot-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin-left: 0;
    position: absolute;
    right: 0.85rem;
    top: 0.78rem;
}

.chatbot-header-action {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1;
    transition: background 0.18s ease, transform 0.18s ease;
}

.chatbot-header-action:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.chatbot header h2 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
}

.chatbot-subtitle {
    margin: 0.28rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(241, 255, 246, 0.95);
}

.chatbot .close-btn {
    font-size: 1rem;
}

.chatbot .chatbox {
    margin: 0;
    padding: 1rem 0.85rem 0.8rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
    overflow-y: auto;
    flex: 1;
    background: linear-gradient(180deg, #f8fbf9 0%, #f2f6f3 100%);
}

.chatbox .chat {
    margin: 0;
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    min-width: 0;
}

.chatbox .chat p {
    margin: 0;
    max-width: 100%;
    padding: 0.8rem 0.88rem;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    overflow: visible;
    text-overflow: clip;
    min-width: 0;
}

.chatbox .chat .chatbot-message-text {
    display: block;
    max-height: none;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
}

.chatbox .chat .chatbot-message-text a.chatbot-source-link {
    color: var(--chatbot-primary);
    text-decoration: underline;
    text-underline-offset: 0.1em;
    text-decoration-thickness: 1px;
}

.chatbox .chat.outgoing {
    justify-content: flex-end;
}

.chatbox .chat.outgoing p {
    color: #2d4338;
    background: #e8f3eb;
    border: 1px solid #d4e6d9;
    border-radius: 14px 14px 4px 14px;
}

.chatbox .chat.incoming p {
    color: var(--chatbot-text);
    background: var(--chatbot-surface);
    border: 1px solid #d8e2db;
    border-radius: 14px 14px 14px 4px;
    box-shadow: 0 7px 18px -16px rgba(36, 48, 41, 0.34);
}

.chatbox .chat.incoming .chatbotAvatar {
    width: 1.55rem;
    height: 1.55rem;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: block;
    flex: 0 0 auto;
    padding: 0;
    margin-top: 0.18rem;
}

.chatbot-registration {
    border: 1px solid var(--chatbot-border);
    border-radius: 12px;
    padding: 0.75rem;
    background: #fff;
}

.chatbot-registration__title {
    margin: 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.chatbot-registration__message {
    margin: 0.45rem 0 0;
    font-size: 0.86rem;
    color: var(--chatbot-muted);
}

.chatbot-registration__actions {
    margin-top: 0.65rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chatbot-registration__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.chatbot-registration__actions .is-primary {
    color: #fff;
    background: var(--chatbot-primary);
}

.chatbot-registration__actions .is-secondary {
    color: var(--chatbot-primary);
    background: var(--chatbot-primary-soft);
}

.chatbot .chat-input {
    position: static;
    bottom: auto;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.46rem;
    border: 1px solid var(--chatbot-border);
    margin: 0.82rem 0.85rem 0.5rem;
    padding: 0.42rem 0.46rem;
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.chat-input textarea {
    flex: 1;
    min-height: 40px;
    min-width: 0;
    max-height: 140px;
    resize: none;
    border: 0;
    border-radius: 0;
    padding: 0.52rem 0.35rem;
    outline: none;
    font: inherit;
    line-height: 1.4;
    color: var(--chatbot-text);
    background: transparent;
}

.chat-input-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.chat-input-file-trigger {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 9px;
    border: 1px solid var(--chatbot-border);
    color: var(--chatbot-primary);
    background: #f6faf8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.chat-input-file-trigger:hover {
    background: #eaf5ef;
}

.chat-input-file-hint {
    margin: 0.04rem 0.95rem 0.48rem;
    font-size: 0.72rem;
    color: #5e6f66;
}

.chat-input textarea:focus {
    box-shadow: none;
}

.chat-input textarea:disabled {
    background: #f3f6fb;
    color: #7387a6;
}

.chatbot .chat-input button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 10px;
    border: 0;
    color: #fff;
    background: var(--chatbot-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    line-height: 1;
    font-size: 1.05rem;
    padding: 0;
    visibility: visible;
    box-shadow: none;
}

.chatbot .chat-input button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.chatbotDisclaimer {
    margin: 0 0.92rem 0.72rem;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #738079;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.chatbotDisclaimer span {
    color: var(--chatbot-primary);
    font-size: 0.8rem;
}

.chatbox .incoming .chatbot-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.08rem 0;
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    border-radius: 0;
    line-height: 1;
    text-align: left;
    color: inherit;
    align-self: auto;
}

.chatbox .incoming .chatbot-loading-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    padding: 0.08rem 0;
    width: auto;
    margin: 0;
    line-height: 1;
}

.chatbox .incoming .chatbot-loading-indicator .chatbot-spinner {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    border: 2px solid rgba(22, 163, 74, 0.2);
    border-top-color: #16a34a;
    flex: 0 0 auto;
    animation: chatbot-spinner-rotate 0.9s linear infinite;
}

.chatbox .incoming .chatbot-loading-indicator .chatbot-loading-text {
    font-size: 0.81rem;
    color: #4b5563;
}

.chatbox .incoming .chatbot-typing-indicator .chatbot-typing-dot {
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: #96a39d;
    opacity: 0.45;
    margin: 0;
    line-height: 1;
    text-align: initial;
    align-self: auto;
    animation: chatbot-typing-bounce 1s infinite ease-in-out;
}

.chatbox .incoming .chatbot-typing-indicator .chatbot-typing-dot:nth-child(2) {
    animation-delay: 0.16s;
}

.chatbox .incoming .chatbot-typing-indicator .chatbot-typing-dot:nth-child(3) {
    animation-delay: 0.32s;
}

.loadingDots {
    display: inline-block;
    width: 48px;
    height: 24px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #98a7c0 92%, #0000);
    background:
        var(--_g) 0% 50%,
        var(--_g) 50% 50%,
        var(--_g) 100% 50%;
    background-size: calc(100% / 3) 50%;
    animation: chatbot-loading-dots 1.1s infinite linear;
}

@keyframes chatbot-typing-bounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

@keyframes chatbot-loading-dots {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%;
    }
    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%;
    }
    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%;
    }
    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%;
    }
}

@media (max-width: 640px) {
    .chatbot-page {
        padding: 1rem 1rem 6.6rem;
    }

    .chatbot-page__intro {
        padding: 1rem 1.1rem;
        border-radius: 14px;
    }

    .chatbot {
        right: 0.7rem;
        bottom: 4.8rem;
        width: calc(100vw - 1.4rem);
        height: calc(100vh - 6rem);
        border-radius: 14px;
    }

    .chatbot header {
        border-radius: 14px 14px 0 0;
        cursor: default;
    }

    .chatbot-resize-handle {
        display: none;
    }

    .chatbot .chat-input {
        margin: 0.76rem 0.72rem 0.46rem;
    }

    .chatbotDisclaimer {
        margin: 0 0.78rem 0.62rem;
    }
}
