#clara-chat{flex-direction:column;justify-content:space-between}
#clara-chat.popup{display:none;position:fixed;right:0;bottom:0;margin:32px;width:calc(100vw - 64px);max-width:500px;height:min(782px,calc(100vh - 133px - 64px - 16px));max-height:782px;background-color:#FFF;border:1px solid #C1CDD7;border-radius:16px;z-index:11;box-shadow:0px 0px 24px 0px #25143514;color:#251435}
@media (max-width:563px){#clara-chat.popup{width:100vw;height:100vh;max-width:100%;max-height:100%;z-index:20;border:0;padding-bottom:0;margin:0}}
#clara-chat.full{height:100dvh}
#clara-chat.visible{display:flex}
#clara-chat .chat-header{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:16px;background-color:#F4F6F8;border-radius:16px 16px 0 0}
@media (max-width:563px){#clara-chat .chat-header{align-items:flex-start}}
#clara-chat .chat-header-wrapper{display:grid;grid-template-areas:"logo title" "logo subtitle";column-gap:16px}
#clara-chat .chat-header-logo{grid-area:logo;width:40px;height:40px;margin:auto;border-radius:50%}
@media (max-width:563px){#clara-chat .chat-header-logo{margin-top:0}}
#clara-chat .chat-header-title{grid-area:title;font-weight:500}
#clara-chat .chat-header-subtitle{grid-area:subtitle;font-size:14px;color:#5D617B}
#clara-chat .chat-header-buttons{display:flex;gap:16px}
#clara-chat .chat-header-buttons img{width:24px;height:24px;cursor:pointer}
#clara-chat .chat-footer{padding:0 16px 16px}
#clara-chat .chat-input{width:calc(100% - 40px);height:fit-content;min-height:28px;background-color:#FFF;color:#251435;border:2px solid #C1CDD7;border-radius:4px;padding:4px 32px 4px 4px;resize:none;line-height:28px}
#clara-chat .chat-input:hover{border-color:#9AA4AC}
#clara-chat .chat-input:focus{border-color:#3A3E41}
#clara-chat .chat-input.disabled{pointer-events:none;border-color:#E0E6EB;color:#25143580}
#clara-chat .chat-cookies-link{display:flex;justify-content:center;text-decoration:none;font-weight:500;padding:8px;border-radius:4px;width:fit-content;margin:auto}
@media (max-width:563px){#clara-chat .chat-cookies-link{width:initial}}
#clara-chat .chat-cookies-link:hover{background-color:#DFDFE5}
#clara-chat #send-button{position:absolute;width:24px;height:24px;top:calc(50% - 12px - 2px);right:8px;cursor:pointer}
#clara-chat #send-button.disabled{pointer-events:none;opacity:0.5}
#chat-content{padding:16px 12px 16px 16px;flex-grow:1;display:flex;flex-direction:column;overflow-y:auto;margin-right:4px}
#chat-content.full{height:calc(100vh - 175px)}
#chat-content .chat-message{display:flex;flex-direction:column;row-gap:4px}
#chat-content .chat-message-title{font-size:14px;font-weight:700}
#chat-content .chat-message-timestamp{font-size:12px;line-height:16px;color:#5D617B}
#chat-content .chat-message-notice{font-weight:500}
#chat-content .chat-message-subtitle{font-size:14px;color:#5D617B}
#chat-content .chat-message.first{margin-top:auto}
#chat-content .chat-message:not(.first){margin-top:16px}
#chat-content .chat-message.received{width:100%;max-width:350px}
#chat-content .chat-message.received .chat-message-content{background-color:#F4F6F8;border-radius:0 4px 4px 4px;padding:8px}
#chat-content .chat-message.received .chat-message-content.chat-loader{padding:15px 14px}
#chat-content .chat-message.outgoing{align-self:flex-end;align-items:flex-end;text-align:right}
#chat-content .chat-notice{display:flex;flex-direction:column;align-items:center;text-align:center;margin:auto}
#chat-content .chat-notice img{margin-bottom:16px}
#chat-content .chat-feedback-title{color:#5D617B;font-size:14px;font-weight:500}
#chat-content .chat-feedback-buttons{display:flex;justify-content:space-between;gap:16px}
#chat-content .chat-feedback-buttons button{flex-grow:1}
#chat-content .chat-feedback-buttons button.active{color:#FFF;background-color:#15171C;border-color:#15171C}
#chat-content .chat-loader{display:flex;justify-content:space-between;gap:8px;width:min-content}
#chat-content .chat-loader-dot{width:10px;height:10px;background-color:#5D617B;border-radius:50%;animation:bounce 2s ease infinite}
#chat-content .chat-loader-dot:nth-of-type(2){-webkit-animation-delay:0.2s;animation-delay:0.2s}
#chat-content .chat-loader-dot:nth-of-type(3){-webkit-animation-delay:0.4s;animation-delay:0.4s}
@keyframes bounce{0%{transform:translateY(0%)}50%{transform:translateY(-75%)}100%{transform:translateY(0)}}
#chat-button{position:fixed;bottom:32px;right:32px;width:80px;height:80px;display:flex;justify-content:center;align-items:center;background-color:#63629B;z-index:11;border-radius:50%;cursor:pointer}
@media (max-width:563px){#chat-button{width:48px;height:48px;bottom:8px;right:8px}}
#chat-button:hover{background-color:#8281AF}
#chat-button.hidden{display:none}
#chat-button img{width:48px;height:48px}
#chat-popup-backdrop{display:none;position:absolute;background-color:#251435;opacity:0.3;width:100%;height:100%;border-radius:16px}
#chat-popup-backdrop.visible{display:block}
#chat-popup{display:none;position:absolute;background-color:#FFF;padding:40px;max-width:calc(404px - 80px);width:100%;left:50%;top:50%;transform:translate(-50%,-50%);flex-direction:column;row-gap:40px;border-radius:8px}
@media (max-width:563px){#chat-popup{width:calc(100% - 80px - 32px);max-width:100%;left:16px;right:16px;transform:translate(0,-50%)}}
#chat-popup.visible{display:flex}
#chat-popup .chat-popup-content{display:flex;flex-direction:column;gap:8px;text-align:center}
#chat-popup .chat-popup-content :first-child{font-weight:500}
#chat-popup .chat-popup-buttons{display:flex;justify-content:space-between;gap:16px}
#chat-popup .chat-popup-buttons button{width:calc(100% - 48px);cursor:pointer}