@keyframes slideInLeft{0%{opacity:0;transform:translate(-20px)}to{opacity:1;transform:translate(0)}}@keyframes slideInRight{0%{opacity:0;transform:translate(20px)}to{opacity:1;transform:translate(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes typing{0%,60%,to{opacity:.7;transform:translateY(0)}30%{opacity:1;transform:translateY(-10px)}}.chatbot-header{justify-content:space-between;align-items:center;padding:20px 20px 5px;display:flex}@media (max-height:250px){.chatbot-header{display:none}}.chatbot-header-left{align-items:center;gap:15px;display:flex}.chatbot-avatar{background:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:60px;height:60px;font-size:32px;display:flex}.chatbot-avatar img{width:40px;height:40px}.chatbot-title-section{flex-direction:column;display:flex}.chatbot-title{white-space:nowrap;text-overflow:ellipsis;width:170px;margin:0;font-size:18px;font-weight:700;overflow:hidden}.chatbot-title-light{color:#222}.chatbot-title-dark{color:#f2f2f2}.chatbot-subtitle{margin:0;font-size:14px}.chatbot-subtitle-light{color:#393939}.chatbot-subtitle-dark{color:#d1d1d1}.chatbot-header-actions{align-self:start;gap:25px;height:30px;padding-top:12px;padding-right:15px;display:flex}.chatbot-icon-button{cursor:pointer;background:0 0;border:none;transition:transform .2s,opacity .2s}.chatbot-icon-button:hover{opacity:.8;transform:scale(1.1)}.chatbot-icon-button:active{transform:scale(.95)}.chatbot-content{scrollbar-width:none;-ms-overflow-style:none;border-radius:20px 20px 0 0;flex-direction:column;flex:1;margin:10px 10px 0;padding:15px;display:flex;overflow-y:auto}.chatbot-content-light{background:#fff}.chatbot-content-dark{background:#1a1835}.chatbot-content::-webkit-scrollbar{display:none}.chatbot-first-message{border-radius:15px 15px 15px 0;width:-moz-fit-content;width:fit-content;margin-bottom:8px;padding:10px;font-size:14px;animation:.3s slideInLeft}.chatbot-first-message-light{color:#2c3e50;background:#f5f5f5}.chatbot-first-message-dark{color:#f5f5f5;background:#5f28fb}.chatbot-prompts{flex-wrap:wrap;gap:10px;margin-bottom:8px;display:flex}.chatbot-prompt-button{overflow-wrap:anywhere;text-align:start;cursor:pointer;max-width:330px;animation:.4s backwards fadeInUp;animation-delay:calc(.1s*var(--index,1));border-radius:16px;padding:8px 16px;font-size:14px;transition:all .3s}.chatbot-prompt-button-light{color:#2c3e50;background:#fff;border:2px solid gray}.chatbot-prompt-button-dark{color:#f2f2f2;background:#5f28fb;border:2px solid #5e40af}.chatbot-prompt-button-light:hover{background:var(--hover-bg,gray);color:#2c3e50;transform:translateY(-2px);box-shadow:0 4px 8px rgba(128,128,128,.3)}.chatbot-prompt-button-dark:hover{background:var(--hover-bg,#5e40af);color:#fff;transform:translateY(-2px);box-shadow:0 4px 8px #6645c2}.chatbot-prompt-button:active{transform:translateY(0)}.chatbot-messages{scrollbar-width:none;-ms-overflow-style:none;flex:1;margin-bottom:15px;overflow-y:auto}.chatbot-messages::-webkit-scrollbar{display:none}.chatbot-message-base{word-wrap:break-word;border-radius:15px;max-width:80%;margin-bottom:10px;padding:12px 16px;font-size:14px}.chatbot-message-user{text-align:left;margin-left:auto;margin-right:0;animation:.3s slideInRight;display:block}.chatbot-message-user-light{color:#2c3e50}.chatbot-message-user-dark{color:#f2f2f2}.chatbot-message-bot{border-radius:15px 15px 15px 0;animation:.3s slideInLeft}.chatbot-message-bot-light{color:#2c3e50;background:#f5f5f5}.chatbot-message-bot-dark{color:#f5f5f5;background:#5f28fb}.chatbot-input-container{border-radius:0 0 15px 15px;align-items:center;gap:10px;margin:0 10px 10px;padding:15px;display:flex;box-shadow:0 -4px 12px rgba(0,0,0,.1)}@media (max-height:200px){.chatbot-input-container{padding:2px 2px 2px 15px}}.chatbot-input-container-light{background:#fff;border-top:1px solid #e0e0e0}.chatbot-input-container-dark{background:#1a1835;border-top:1px solid #444654}.chatbot-input{border:none;outline:none;flex:1;font-size:14px;transition:transform .2s}.chatbot-input-light{color:#2c3e50}.chatbot-input-dark{color:#fff}.chatbot-input:focus{transform:scale(1.01)}.chatbot-input::placeholder{color:#bebebe}.chatbot-input:disabled{opacity:.6;cursor:not-allowed}.chatbot-send-button{cursor:pointer;border:none;border-radius:50%;justify-content:center;align-items:center;width:48px;height:48px;transition:all .3s;display:flex}.chatbot-send-button-light:hover:not(:disabled){transform:scale(1.1)rotate(15deg);box-shadow:0 4px 12px gray}.chatbot-send-button-dark:hover:not(:disabled){transform:scale(1.1)rotate(15deg);box-shadow:0 4px 12px #5f28fb}.chatbot-send-button:active:not(:disabled){transform:scale(.95)rotate(0)}.chatbot-send-button:disabled{opacity:.5;cursor:not-allowed}.chatbot-send-button svg{fill:#222;width:24px;height:24px;margin-left:4px}.chatbot-send-button-light svg{fill:#222}.chatbot-send-button-dark svg{fill:#f2f2f2}.chatbot-typing-indicator{align-items:center;gap:4px;display:flex}.chatbot-typing-dot{background-color:#bebebe;border-radius:50%;width:8px;height:8px;animation:1.4s infinite typing}.chatbot-typing-dot:nth-child(2){animation-delay:.2s}.chatbot-typing-dot:nth-child(3){animation-delay:.4s}.chatbot-popover-menu{z-index:10000;opacity:0;pointer-events:none;border-radius:24px;min-width:120px;padding:8px;font-size:18px;transition:opacity .2s,transform .2s;position:absolute;top:55px;right:65px;transform:translateY(-8px);box-shadow:0 2px 8px rgba(0,0,0,.15)}.chatbot-popover-menu.visible{opacity:1;pointer-events:auto;transform:translateY(0)}.chatbot-popover-menu-light{color:#2c3e50;background:#fff;border-radius:16px}.chatbot-popover-menu-dark{color:#f5f5f5;background:#5f28fb;border-color:#1a1835;border-radius:16px;box-shadow:0 2px 8px #393939}.chatbot-popover-item{padding:10px}.chatbot-popover-item-light:hover{background:#f2f2f2;border-radius:16px}.chatbot-popover-item-dark:hover{background:#4b4786;border-radius:16px}.chatbot-wrapper{background:#f5f5f5;justify-content:center;align-items:center;width:100vw;height:100vh;display:flex;overflow:hidden}.chatbot-container{background:#efedec;flex-direction:column;width:100%;height:100%;display:flex;overflow:hidden}.chatbot-message-user{justify-self:right}.chatbot-message-bot{justify-self:left}@media (max-height:200px){.chatbot-content{margin:2px 2px 0;padding-top:5px;padding-bottom:5px}.chatbot-messages{margin-bottom:5px}.chatbot-input-container{margin:2px 2px 0}.chatbot-input{padding-left:8px}}.chatbot-first-message-small-height{border-radius:15px 15px 15px 0;align-items:end;gap:10px;width:-moz-fit-content;width:fit-content;margin-bottom:8px;padding:10px;font-size:14px;animation:.3s slideInLeft;display:flex}@media (min-height:200px){.chatbot-first-message-small-height{display:none}}.chatbot-first-message-title{margin-bottom:5px;font-weight:600;display:block}@media (min-height:200px){.chatbot-first-message-title{display:none}}@media (max-height:200px){.chatbot-first-message{display:none}}.chatbot-message-icon{width:40px;height:40px}@media (min-height:200px){.chatbot-message-icon{display:none}}@media (max-height:200px){.chatbot-message-bot{margin-bottom:0;padding:0}}
/*# sourceMappingURL=c5a1ea20634bd938.css.map*/