:root{--brand-primary-color:#2980b9;--brand-primary-color-hover:#1c5980;--brand-background-gradient:linear-gradient(145deg,#fff,#e6e9f0);--brand-font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;--brand-text-color:#2c3e50;--brand-button-radius:12px;--brand-border-radius:20px;--brand-box-shadow:0 15px 30px #0000001f;--brand-input-border:#bdc3c7;--brand-input-border-focus:#2980b9;--brand-message-user-bg:#d6eaff;--brand-message-user-shadow:#0066cc4d;--brand-message-assistant-bg:#f0f4f8;--brand-close-button-bg:#ecf0f1;--brand-close-button-hover-bg:#2980b9;--brand-close-button-hover-color:#fff;--brand-close-button-color:#34495e}body{background-color:initial!important;margin:0;padding:0}.chat-container,body{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-family:var(--brand-font-family)}.chat-container{background:linear-gradient(145deg,#d4e8ff,#304563);border-radius:20px;border-radius:var(--brand-border-radius);bottom:20px;box-shadow:0 15px 30px #0000001f;box-shadow:var(--brand-box-shadow);color:#2c3e50;color:var(--brand-text-color);display:flex;flex-direction:column;font-size:14px;height:540px;overflow:hidden;padding:20px;position:fixed;right:20px;width:360px;z-index:9999}.chat-logo{background-position:50%;background-repeat:no-repeat;background-size:contain;cursor:pointer;height:40px;margin:0 auto 12px;width:120px}.chat-container-inner{display:flex;flex-direction:column;flex-grow:1;height:100%;position:relative}.close-button{align-items:center;background-color:#2980b9;background-color:var(--brand-primary-color);border:none;border-radius:50%;box-shadow:0 2px 8px #0000001a;color:#fff;cursor:pointer;display:flex;font-size:18px;font-weight:700;height:26px;justify-content:center;position:absolute;right:12px;top:12px;transition:background-color .3s ease;width:26px;z-index:10}.close-button:hover{background-color:#2980b9;background-color:var(--brand-close-button-hover-bg);color:#fff}h1{color:#34495e;font-family:Inter,system-ui,sans-serif;font-size:1.1rem;font-weight:600;letter-spacing:.03em;margin:0 0 12px;text-align:center;text-transform:none}.chat-box{animation:fadeIn .4s ease-in-out;background-color:#fff;border:1px solid #dfe4ea;border-radius:16px;box-shadow:inset 0 4px 6px #0000000d;flex-grow:1;line-height:1.5;margin-bottom:12px;max-height:100%;overflow-y:auto;padding:15px}.message{animation:fadeInUp .3s forwards;border-radius:16px;box-shadow:0 5px 15px #0000000d;font-size:14px;margin:0 auto 18px;max-width:80%;opacity:0;padding:8px 18px;white-space:pre-wrap;word-break:break-word}.message:nth-child(odd){animation-delay:.1s}.message:nth-child(2n){animation-delay:.2s}.message strong{color:#2c3e50;color:var(--brand-text-color);font-weight:600;margin-right:8px;text-transform:capitalize}.message.user{align-self:flex-end;background-color:#d6eaff;background-color:var(--brand-message-user-bg);border-top-left-radius:20px;border-top-right-radius:4px;box-shadow:0 5px 15px #0066cc4d;box-shadow:0 5px 15px var(--brand-message-user-shadow);margin-left:20%}.message.assistant,.message.user{border-bottom-left-radius:20px;border-bottom-right-radius:20px;max-width:75%;text-align:left}.message.assistant{align-self:flex-start;animation:fadeInUp .4s ease forwards;background-color:#f0f4f8;background-color:var(--brand-message-assistant-bg);border-top-left-radius:4px;border-top-right-radius:20px;margin-right:20%}.message.assistant:nth-child(odd){animation-delay:.1s}.message.assistant:nth-child(2n){animation-delay:.2s}input[type=text]{border:1px solid #bdc3c7;border:1px solid var(--brand-input-border);border-radius:12px;border-radius:var(--brand-button-radius);box-sizing:border-box;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-family:var(--brand-font-family);font-size:14px;height:40px;margin-bottom:14px;outline:none;padding:10px 14px;transition:border-color .3s ease;width:100%}input[type=text]:focus{border-color:#2980b9;border-color:var(--brand-input-border-focus)}button{background-color:#2980b9;background-color:var(--brand-primary-color);border:none;border-radius:12px;border-radius:var(--brand-button-radius);color:#fff;cursor:pointer;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-family:var(--brand-font-family);font-size:16px;font-weight:700;margin-top:0;padding:14px 0;transition:background-color .3s ease;width:100%}button:hover{background-color:#1c5980;background-color:var(--brand-primary-color-hover)}.chat-toggle{bottom:28px!important;font-size:36px!important;right:28px!important}.chat-toggle:hover{background-color:#1c5980;background-color:var(--brand-primary-color-hover)}.typing-indicator{color:#2980b9;color:var(--brand-primary-color);display:inline-flex;font-size:1.1em;font-weight:600;gap:5px}.typing-indicator span{animation:pulse 1.4s ease-in-out infinite;background-color:#2980b9;background-color:var(--brand-primary-color);border-radius:50%;display:inline-block;height:8px;margin:0 3px;width:8px}.typing-indicator span:first-child{animation-delay:0s}.typing-indicator span:nth-child(2){animation-delay:.2s}.typing-indicator span:nth-child(3){animation-delay:.4s}@keyframes pulse{0%,80%,to{opacity:.3;transform:scale(.8)}40%{opacity:1;transform:scale(1.2)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.timestamp{color:#7f8c8d;display:block;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-family:var(--brand-font-family);font-size:.65rem;margin-top:4px;text-align:right}.header-with-logo{align-items:center;display:flex;gap:12px;margin-bottom:16px}.logo-circle{border:2px solid #2980b9;border:2px solid var(--brand-primary-color);border-radius:50%;box-shadow:0 6px 12px #00000040,inset 0 0 8px #ffffff1a;height:56px;object-fit:cover;width:56px}.header-with-logo h1{color:#2c3e50;color:var(--brand-text-color);font-size:.9rem;font-weight:600;margin:0;text-align:left}.header-text-lang{align-items:center;display:flex;gap:12px}.language-select{border-radius:6px;font-size:.8rem;padding:4px 8px;white-space:nowrap;width:110px}.flag-icon{border-radius:3px;height:14px;margin-right:6px;object-fit:cover;vertical-align:middle;width:20px}.chat-toggle{background-color:#2980b9!important;background-color:var(--brand-primary-color)!important;border:none!important;bottom:40px!important;box-shadow:0 6px 14px #00000026!important;font-size:26px!important;position:fixed!important;right:40px!important;transition:background-color .3s ease!important}.chat-toggle span{align-items:center!important;background:#f44336!important;border-radius:50%!important;box-shadow:0 0 3px #0003!important;color:#fff!important;display:flex!important;font-size:12px!important;font-weight:700!important;height:20px!important;justify-content:center!important;line-height:20px!important;padding:0!important;pointer-events:none!important;position:absolute!important;right:-6px!important;text-align:center!important;top:-6px!important;-webkit-user-select:none!important;user-select:none!important;width:20px!important}.clientB-theme{--brand-primary-color:#004080;--brand-primary-color-hover:#003060;--brand-background-gradient:linear-gradient(145deg,#e0f8ff,#c0d8ff);--brand-text-color:#102040;--brand-button-radius:14px;--brand-border-radius:18px}.clientB-theme button{background-color:#304563;border-radius:12px;border-radius:var(--brand-button-radius)}.clientB-theme button:hover{background-color:#25394a}.clientB-theme .chat-toggle{background-color:#304563!important;color:#fff!important}.clientB-theme .chat-toggle:hover{background-color:#25394a!important}.clientB-theme .chat-toggle,.clientB-theme .chat-toggle.active,.clientB-theme .chat-toggle.open{background-color:#304563!important;color:#fff!important}.clientB-theme .chat-toggle.active:hover,.clientB-theme .chat-toggle.open:hover,.clientB-theme .chat-toggle:hover{background-color:#25394a!important}.clientB-toggle{animation:pulseGlow 2.5s infinite;background-color:#304563!important;border-radius:50%!important;box-shadow:0 6px 14px #00000026!important;color:#fff!important}.clientB-toggle:hover{animation:none;background-color:#25394a!important}.clientB-theme .chat-toggle{animation:pulseGlow 2.5s infinite}.clientB-theme .chat-toggle:hover{animation:none}@keyframes pulseGlow{0%,to{box-shadow:0 0 20px 5px #304563e6}50%{box-shadow:0 0 40px 10px #304563}}.clientB-theme .chat-toggle,.clientB-toggle{animation:pulseGlowSoft 2.5s infinite;background-color:#304563!important;box-shadow:0 0 10px 3px #30456380!important}@keyframes pulseGlowSoft{0%,to{box-shadow:0 0 10px 3px #30456380}50%{box-shadow:0 0 15px 6px #304563b3}}.ai-pulse-dots{bottom:8px;display:flex;gap:4px;pointer-events:none;position:absolute;right:8px}.ai-pulse-dots span{animation:pulseDots 1.4s ease-in-out infinite;background:#304563;border-radius:50%;height:6px;width:6px}.ai-pulse-dots span:first-child{animation-delay:0s}.ai-pulse-dots span:nth-child(2){animation-delay:.2s}.ai-pulse-dots span:nth-child(3){animation-delay:.4s}@keyframes pulseDots{0%,80%,to{opacity:.3;transform:scale(.8)}40%{opacity:1;transform:scale(1.2)}}.unread-badge{animation:pulseRedDot 2s ease-in-out infinite!important;background-color:#ff0000b3!important;border-radius:50%!important;box-shadow:0 0 6px #f00c!important;height:12px!important;pointer-events:none!important;position:absolute!important;right:6px!important;top:6px!important;width:12px!important}@keyframes pulseRedDot{0%,to{opacity:.7;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}.chat-toggle{align-items:center!important;background:none!important;border-radius:50%!important;box-shadow:none!important;color:#fff!important;cursor:pointer!important;display:flex!important;height:52px!important;justify-content:center!important;pointer-events:auto!important;width:52px!important;z-index:10000!important}.chat-toggle:before{animation:pulseGradientBrand 3s ease-in-out infinite;background:linear-gradient(270deg,#304563cc,#475f8399,#304563cc);border-radius:50%;content:"";filter:blur(8px);height:64px;left:-6px;opacity:.7;pointer-events:none;position:absolute;top:-6px;width:64px;z-index:-1}@keyframes pulseGradientBrand{0%,to{background-position:0 50%;filter:blur(8px);opacity:.7;transform:scale(1)}50%{background-position:100% 50%;filter:blur(12px);opacity:.9;transform:scale(1.05)}}.chat-toggle{position:relative;z-index:10000}.chat-toggle:after{animation:ringPulse 2.5s ease-in-out infinite;border:2px solid #30456399;border-radius:50%;content:"";height:64px;left:-8px;pointer-events:none;position:absolute;top:-8px;width:64px;z-index:-2}@keyframes ringPulse{0%,to{opacity:.6;transform:scale(1)}50%{opacity:1;transform:scale(1.2)}}.chat-toggle.active:after,.chat-toggle.open:after{display:none}@media (max-width:480px){.chat-toggle{bottom:80px!important;font-size:22px!important;height:44px!important;right:40px!important;width:44px!important}.chat-toggle:after{height:65px!important;left:-12px!important;top:-12px!important;width:65px!important}.chat-toggle>span{top:-14px!important}.chat-container{border-radius:16px!important;bottom:60px!important;box-sizing:border-box!important;height:80vh!important;left:50%!important;max-width:100vw!important;padding:12px!important;position:fixed!important;right:auto!important;transform:translateX(-50%)!important;width:95vw!important}input[type=text]{font-size:16px!important}}#root,body,html{background-color:initial!important}.chat-container.closed{display:none!important}
/*# sourceMappingURL=main.88ef7401.css.map*/