/* Better Rate Mortgage — AI chat widget. Bottom-RIGHT (UserWay moved to bottom-left). */
.brm-chat-bubble{
  position:fixed;right:22px;bottom:22px;z-index:100010;
  width:64px;height:64px;border-radius:50%;border:none;cursor:pointer;
  background:#042C53;color:#fff;box-shadow:0 8px 28px rgba(4,44,83,.35);
  display:flex;align-items:center;justify-content:center;
  transition:transform .15s ease;
}
.brm-chat-bubble:hover{transform:scale(1.06)}
.brm-chat-bubble svg{width:30px;height:30px;display:block}
.brm-chat-bubble .brm-chat-x{display:none;font-size:26px;font-weight:700;line-height:1}
.brm-chat-open .brm-chat-bubble svg{display:none}
.brm-chat-open .brm-chat-bubble .brm-chat-x{display:block}

.brm-chat-panel{
  position:fixed;right:22px;bottom:100px;z-index:100010;
  width:390px;max-width:calc(100vw - 44px);height:600px;max-height:calc(100dvh - 130px);
  background:#fff;border-radius:18px;box-shadow:0 24px 70px rgba(8,30,60,.35);
  display:none;flex-direction:column;overflow:hidden;
  font-family:Roboto,"Segoe UI",-apple-system,Arial,sans-serif;
}
.brm-chat-open .brm-chat-panel{display:flex}

.brm-chat-head{background:#042C53;color:#fff;padding:16px 20px 13px}
.brm-chat-head .t{font-size:17px;font-weight:800}
.brm-chat-head .s{font-size:11.5px;color:#8fb0d6;margin-top:3px;line-height:1.4}

.brm-chat-log{flex:1;overflow-y:auto;padding:16px 14px;background:#f4f7fc;
  display:flex;flex-direction:column;gap:10px;-webkit-overflow-scrolling:touch}
.brm-chat-msg{max-width:84%;padding:10px 14px;border-radius:14px;font-size:14.5px;line-height:1.5;
  white-space:pre-wrap;word-wrap:break-word;overflow-wrap:break-word}
.brm-chat-msg.user{align-self:flex-end;background:#3572C9;color:#fff;border-bottom-right-radius:5px}
.brm-chat-msg.bot{align-self:flex-start;background:#fff;color:#333;border:1px solid #e3e8f0;border-bottom-left-radius:5px}
.brm-chat-msg.bot a{color:#124286;font-weight:600;word-break:break-all}
.brm-chat-typing{align-self:flex-start;background:#fff;border:1px solid #e3e8f0;border-radius:14px;
  padding:13px 16px;display:flex;gap:5px}
.brm-chat-typing i{width:7px;height:7px;border-radius:50%;background:#9db4d4;animation:brmChatDot 1.1s infinite}
.brm-chat-typing i:nth-child(2){animation-delay:.18s}
.brm-chat-typing i:nth-child(3){animation-delay:.36s}
@keyframes brmChatDot{0%,60%,100%{opacity:.35;transform:translateY(0)}30%{opacity:1;transform:translateY(-4px)}}

.brm-chat-chips{display:flex;flex-wrap:wrap;gap:7px;padding:0 14px 10px;background:#f4f7fc}
.brm-chat-chips button{border:1.5px solid #cfdcf0;background:#fff;color:#0d2748;font-size:12.5px;font-weight:600;
  padding:7px 12px;border-radius:999px;cursor:pointer;font-family:inherit}
.brm-chat-chips button:hover{border-color:#3572C9;background:#eef3fb}

.brm-chat-inrow{display:flex;gap:8px;padding:12px 14px;border-top:1px solid #e3e8f0;background:#fff}
.brm-chat-inrow textarea{flex:1;resize:none;border:1.5px solid #cfdcf0;border-radius:12px;padding:10px 12px;
  font-family:inherit;font-size:16px;line-height:1.4;height:44px;max-height:100px;color:#0d2748}
.brm-chat-inrow textarea:focus{outline:2px solid #3572C9;outline-offset:1px}
.brm-chat-inrow button{border:none;background:#F9AC1B;color:#042C53;font-weight:800;font-size:14px;
  padding:0 18px;border-radius:12px;cursor:pointer;font-family:inherit}
.brm-chat-inrow button:disabled{opacity:.5;cursor:default}
.brm-chat-fine{font-size:10.5px;color:#8a93a3;text-align:center;padding:0 14px 10px;background:#fff;line-height:1.45}

@media(max-width:560px){
  .brm-chat-bubble{bottom:88px}          /* clear the sticky CTA bar */
  .brm-chat-panel{left:10px;right:10px;width:auto;max-width:none;bottom:164px;height:auto;
    top:76px;max-height:none}
}
