#jmb-root {
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;  -webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#jmb-root * {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
} #jmb-root input, 
#jmb-root textarea, 
#jmb-root select {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
} #jmb-root .chat-bubble {
position: fixed; bottom: 20px; right: 20px;
display: flex; align-items: center; gap: 12px;
cursor: pointer; z-index: 999990; background: transparent; padding: 0;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#jmb-root .chat-bubble:hover { transform: translateY(-5px); }
#jmb-root .launcher-message-group {
display: flex; flex-direction: column; align-items: flex-end;
position: relative; top: 8px; margin-right: 4px;
}
#jmb-root .launcher-text {
background: white; padding: 12px 20px; border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.15); font-size: 0.95rem;
color: #333; font-weight: 600; position: relative;
animation: fadeIn 0.5s ease-out; white-space: nowrap;
font-family: 'Poppins', sans-serif;
}
#jmb-root .launcher-text::after {
content: ''; position: absolute; top: 50%; right: -8px; 
transform: translateY(-50%); border-top: 8px solid transparent;
border-bottom: 8px solid transparent; border-left: 9px solid white;
}
#jmb-root .launcher-icon-below {
margin-top: 6px; margin-right: 2px; opacity: 0.6; color: #555;
display: flex; align-items: center; justify-content: center; transition: opacity 0.3s;
}
#jmb-root .chat-bubble:hover .launcher-icon-below { opacity: 1; }
#jmb-root .launcher-icon-svg { width: 18px; height: 18px; }
#jmb-root .launcher-avatar-wrapper { position: relative; width: 75px; height: 75px; }
#jmb-root .chat-bubble-avatar {
width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.3); background: black;
border: 3px solid white; transition: border-color 0.3s;
}
#jmb-root .chat-bubble:hover .chat-bubble-avatar { border-color: #f0f0f0; }
#jmb-root .chat-bubble-avatar video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
#jmb-root .status-dot {
position: absolute; bottom: 2px; right: 2px; width: 18px; height: 18px;
background-color: #2ecc71; border: 3px solid white; border-radius: 50%; z-index: 10;
} #jmb-root .chat-widget-side {
position: fixed; bottom: 20px; right: 20px;
width: 380px; height: 740px;
max-height: calc(100vh - 40px);
background: white; border-radius: 20px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
display: none; flex-direction: column; overflow: hidden; z-index: 999999;
font-family: 'Roboto', sans-serif;
}
#jmb-root .chat-widget-side.active { display: flex; } #jmb-root .video-background {
position: absolute; top: 0; left: 0; right: 0; bottom: 0;
overflow: hidden; background: #000;
transition: opacity 0.5s; z-index: 0;
}
#jmb-root .video-background.hidden { opacity: 0; pointer-events: none; }
#jmb-root .video-background::after {
content: ''; 
position: absolute; 
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(to bottom, 
rgba(0,0,0,0) 0%,      
rgba(0,0,0,0) 40%,     
rgba(0,0,0,0.3) 55%,   
rgba(0,0,0,0.55) 75%,
rgba(0,0,0,0.7) 100%   
);
pointer-events: none;
}
#jmb-root .video-background video { width: 100%; height: 100%; object-fit: cover; object-position: center; } #jmb-root .video-controls-top {
position: absolute; top: 15px; left: 15px; right: 15px;
display: flex; justify-content: space-between; align-items: center;
z-index: 100; pointer-events: none;
height: 40px;
}
#jmb-root .video-controls-left, #jmb-root .video-controls-right {
display: flex; gap: 8px; pointer-events: auto; align-items: center;
}
#jmb-root .control-btn {
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(4px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white; width: 30px; height: 30px;
border-radius: 50%; display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: all 0.2s;
}
#jmb-root .control-btn:hover { background: rgba(0, 0, 0, 0.5); transform: scale(1.05); }
#jmb-root .control-btn svg { width: 14px; height: 14px; fill: white; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
#jmb-root .lang-toggle {
background: white;
border-radius: 14px;
padding: 0 8px;
height: 28px;
display: flex; align-items: center; gap: 4px;
cursor: pointer; transition: transform 0.2s;
box-shadow: 0 1px 4px rgba(0,0,0,0.2);
pointer-events: auto;
color: #333;
}
#jmb-root .lang-toggle:hover { transform: scale(1.05); }
#jmb-root .lang-icon { font-size: 12px; display: flex; align-items: center; }
#jmb-root .lang-icon svg { width: 12px !important; height: 12px !important; }
#jmb-root .lang-text { font-size: 0.7rem; font-weight: 700; font-family: 'Poppins', sans-serif; }
#jmb-root .video-controls-top.chat-mode {
position: absolute; top: 0; left: 0; right: 0;
background: rgba(255, 255, 255, 0.98);
border-bottom: 1px solid #f0f0f0;
padding: 10px 15px;
height: 60px;
}
#jmb-root .chat-mode .control-btn {
background: #f3f3f3; 
border: none; 
color: #757575;
border-radius: 8px;
width: 36px; height: 36px;
}
#jmb-root .chat-mode .control-btn svg { fill: #757575; width: 20px; height: 20px; filter: none; }
#jmb-root .chat-mode .control-btn:hover { background: #e0e0e0; }
#jmb-root .chat-mode .video-controls-left .control-btn.playback-ctrl { display: none; }
#jmb-root .chat-mode .lang-toggle { background: #f3f3f3; color: #555; box-shadow: none; border: none; }
#jmb-root .chat-mode .lang-toggle svg { fill: #555; } #jmb-root .sound-indicator {
position: absolute; top: 52px; left: 15px;
background: rgba(255,255,255,0.95); color: #333;
padding: 5px 10px; border-radius: 3px;
font-size: 0.7rem; font-weight: 600; display: none; z-index: 101;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
line-height: 1.2; white-space: nowrap;
animation: pulse-attention 2s infinite;
}
@keyframes pulse-attention {
0% { transform: scale(1); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
50% { transform: scale(1.08); box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
100% { transform: scale(1); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
}
#jmb-root .sound-indicator::before {
content: ''; position: absolute; top: -6px; left: 10px;
border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 6px solid rgba(255,255,255,0.95);
}
#jmb-root .control-btn.muted svg.vol-high { display: none; }
#jmb-root .control-btn:not(.muted) svg.vol-off { display: none; }
#jmb-root .control-btn.paused svg.pause-icon { display: none; }
#jmb-root .control-btn:not(.paused) svg.play-icon { display: none; } #jmb-root .chat-content {
position: absolute; top: 0; left: 0; right: 0; bottom: 32px; 
z-index: 20; overflow-y: auto; overflow-x: hidden; padding: 0;
scroll-behavior: smooth;
}
#jmb-root .chat-content::-webkit-scrollbar { width: 5px; }
#jmb-root .chat-content::-webkit-scrollbar-track { background: transparent; margin-top: 60px; margin-bottom: 10px; }
#jmb-root .chat-content::-webkit-scrollbar-thumb { background: #0056D2; border-radius: 10px; } #jmb-root .content-wrapper {
min-height: 100%; display: flex; flex-direction: column;
justify-content: flex-end;
padding-bottom: 20px;
padding-top: 62%;
}
#jmb-root .welcome-message {
display: block; 
color: white;
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.3rem; 
text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.8);
padding: 0 25px; 
margin-bottom: 15px;
line-height: 1.4; 
text-align: left;
}
#jmb-root .options-container {
display: flex; flex-direction: column; align-items: flex-start;
padding: 0 25px; width: 100%; gap: 8px; padding-bottom: 20px;
}
#jmb-root .option-button {
background: #ffffff; border: none; border-radius: 999px; 
padding: 12px 20px; width: 100%;
font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
color: #1a1a1a; text-align: left;
cursor: pointer; transition: all 0.2s ease;
display: flex; align-items: center; justify-content: flex-start;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#jmb-root .option-button::before {
content: ''; display: inline-block; width: 18px; height: 18px;
border: 2px solid #0056D2; border-radius: 50%; margin-right: 12px;
background: transparent; flex-shrink: 0; transition: background 0.2s, transform 0.2s;
}
#jmb-root .option-button:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
#jmb-root .option-button:hover::before { background: rgba(0, 86, 210, 0.05); transform: scale(1.05); } #jmb-root .scroll-indicator-btn {
position: absolute; bottom: 45px; left: 50%; transform: translateX(-50%);
padding: 8px 18px; height: 44px; border-radius: 22px; 
background: rgba(255, 255, 255, 0.98);
display: flex; align-items: center; justify-content: center; gap: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
cursor: pointer; border: none; z-index: 99;
transition: opacity 0.3s ease, transform 0.2s;
animation: bounceBtn 2s infinite;
}
#jmb-root .scroll-text {
font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
color: #0056D2; white-space: nowrap;
}
#jmb-root .scroll-indicator-btn svg { width: 20px; height: 20px; fill: #0056D2; }
#jmb-root .scroll-indicator-btn:hover { background: white; transform: translateX(-50%) scale(1.02); }
#jmb-root .scroll-indicator-btn.hidden { opacity: 0; pointer-events: none; animation: none; }
@keyframes bounceBtn {
0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
40% {transform: translateX(-50%) translateY(-10px);}
60% {transform: translateX(-50%) translateY(-5px);}
} #jmb-root .chat-interface {
display: none; position: absolute; top: 60px;
left: 0; right: 0; bottom: 0;
background: white; z-index: 40; flex-direction: column;
}
#jmb-root .chat-interface.active { display: flex; }
#jmb-root .chat-messages {
flex: 1; 
overflow-y: auto; 
overflow-x: hidden;
padding: 15px 20px 20px 20px;
background: white; 
scroll-behavior: smooth;
}
#jmb-root .chat-messages::-webkit-scrollbar { width: 5px; }
#jmb-root .chat-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
#jmb-root .chat-video-thumbnail {
width: 140px; height: 220px;
background: #000; border-radius: 12px;
overflow: hidden; margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
position: relative; flex-shrink: 0; cursor: pointer;
}
#jmb-root .chat-video-thumbnail video { width: 100%; height: 100%; object-fit: cover; }
#jmb-root .play-overlay {
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 45px; height: 45px; background: rgba(0,0,0,0.4);
border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
#jmb-root .play-overlay svg { fill: white; width: 24px; height: 24px; margin-left: 3px; } #jmb-root .message-row { display: flex; gap: 10px; margin-bottom: 25px; align-items: flex-start; width: 100%; }
#jmb-root .bot-avatar-small {
width: 40px; height: 40px; border-radius: 50%;
overflow: hidden; background: #eee; flex-shrink: 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#jmb-root .bot-avatar-small video { width: 100%; height: 100%; object-fit: cover; }
#jmb-root .msg-content { max-width: 85%; display: flex; flex-direction: column; }
#jmb-root .bot-bubble { color: #222; font-size: 1rem; line-height: 1.5; margin-bottom: 5px; }
#jmb-root .message-row.user { flex-direction: row-reverse; align-items: center; }
#jmb-root .user-bubble {
background-color: #003B80; color: white;
padding: 12px 20px; border-radius: 20px;
font-size: 0.95rem; font-weight: 500;
box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: relative;
}
#jmb-root .timestamp { font-size: 0.7rem; color: #bbb; margin-top: 6px; width: 100%; display: block; }
#jmb-root .message-row.user .timestamp { text-align: right; margin-right: 5px; } #jmb-root .typing-bubble {
padding: 15px 20px; background: white; border: 1px solid #f0f0f0; border-radius: 0 20px 20px 20px;
display: flex; align-items: center; gap: 5px; width: fit-content;
}
#jmb-root .dot { width: 6px; height: 6px; background: #999; border-radius: 50%; animation: typing 1.4s infinite; }
#jmb-root .dot:nth-child(2) { animation-delay: 0.2s; }
#jmb-root .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.6; } 30% { transform: translateY(-6px); opacity: 1; } } #jmb-root .intaker-footer {
height: 35px; 
background: #ffffff;
display: flex; align-items: center; justify-content: center;
font-size: 11px; 
color: #555; 
border-top: 1px solid #f5f5f5; 
gap: 5px; 
width: 100%;
position: absolute; bottom: 0; left: 0; z-index: 100;
}
#jmb-root .chat-content { bottom: 35px; } 
#jmb-root .chat-interface { bottom: 35px; } 
#jmb-root .intaker-logo-container { font-weight: 700; color: #333; font-size: 12px; margin-left: 4px; } #jmb-root .chat-input-area {
display: flex; flex-direction: column; background: white;
padding: 15px 20px 10px 20px; border-top: 1px solid #e0e0e0;
position: relative; min-height: 140px; 
}
#jmb-root .story-textarea {
flex: 1; width: 100%; border: none; outline: none; resize: none;
font-family: 'Roboto', sans-serif; font-size: 1rem; color: #333;
background: transparent; margin-bottom: 10px; min-height: 60px; 
}
#jmb-root .story-textarea::placeholder { color: #aaa; }
#jmb-root .input-controls-row {
display: flex; justify-content: space-between; align-items: center; gap: 15px;
}
#jmb-root .send-pill-btn {
flex: 1; height: 48px; background: #e0e0e0; color: white;
border: none; border-radius: 25px; display: flex; align-items: center;
justify-content: center; cursor: default; transition: background 0.2s, transform 0.2s;
}
#jmb-root .send-pill-btn svg { width: 24px; height: 24px; fill: white; }
#jmb-root .send-pill-btn.active {
background: #43a047; cursor: pointer; box-shadow: 0 4px 10px rgba(67, 160, 71, 0.3);
}
#jmb-root .send-pill-btn.active:hover { background: #388e3c; transform: translateY(-2px); } #jmb-root .date-widget {
background: white; margin-top: 10px; animation: fadeIn 0.3s; width: 100%;
}
#jmb-root .name-inputs-row, #jmb-root .date-inputs-row { display: flex; gap: 10px; margin-bottom: 10px; width: 100%; } #jmb-root .name-input, #jmb-root .phone-number-input, #jmb-root .email-input {
background: #eff6ff; border: none; border-radius: 12px; padding: 12px 15px;
font-size: 0.95rem; color: #000000 !important; outline: none; font-family: inherit;
height: 48px; line-height: normal;
}
#jmb-root .name-input { flex: 1; min-width: 0; }
#jmb-root .email-input { width: 100%; padding: 15px; font-size: 1rem; margin-bottom: 10px; } #jmb-root .phone-input-row {
display: flex; width: 100%; margin-bottom: 10px; border-radius: 12px; overflow: hidden;
}
#jmb-root .phone-country-select {
background-color: #f0f2f5;
color: #000000 !important; border: none;
padding: 12px 30px 12px 15px; font-size: 1rem;
font-weight: 700;
line-height: normal; outline: none;
cursor: pointer;
width: 90px; border-radius: 12px 0 0 12px; appearance: none; 
-webkit-appearance: none;
-moz-appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
background-repeat: no-repeat;
background-position: right 10px center;
background-size: 10px;
}
#jmb-root .phone-number-input { flex: 1; border-radius: 0 12px 12px 0; font-size: 1rem; } #jmb-root .select-wrapper { flex: 1; position: relative; }
#jmb-root .date-select {
width: 100%; background: #f0f2f5; border: none; border-radius: 12px;
padding: 12px 30px 12px 15px; font-size: 0.95rem; color: #000000 !important; font-weight: 500;
outline: none; appearance: none; cursor: pointer; height: 48px; line-height: normal;
background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999999%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
background-repeat: no-repeat; background-position: right 15px center; background-size: 10px;
}
#jmb-root .date-actions-row { display: flex; align-items: center; gap: 15px; }
#jmb-root .skip-btn {
background: transparent; border: none; color: #999; font-size: 0.95rem;
font-weight: 500; cursor: pointer; padding: 0 5px;
}
#jmb-root .date-submit { flex-grow: 1; }
#jmb-root .big-green-check-btn {
width: 100%; background: #43a047; color: white; border: none;
border-radius: 25px; height: 45px; display: flex; align-items: center;
justify-content: center; cursor: pointer;
box-shadow: 0 4px 10px rgba(67, 160, 71, 0.3);
transition: transform 0.2s, background 0.2s;
}
#jmb-root .big-green-check-btn:hover { background: #388e3c; transform: translateY(-2px); }
#jmb-root .big-green-check-btn svg { width: 24px; height: 24px; fill: white; } #jmb-root .super-contact-widget, #jmb-root .location-widget-new {
background: white; margin-top: 10px; width: 100%; animation: fadeIn 0.3s;
display: flex; flex-direction: column; gap: 10px;
}
#jmb-root .super-contact-widget .name-input, 
#jmb-root .location-widget-new .name-input {
margin-bottom: 0; }
#jmb-root .super-contact-widget .phone-input-row { margin-bottom: 0; }
#jmb-root .super-contact-widget .email-input { margin-bottom: 0; }
#jmb-root .user-edit-row { display: flex; justify-content: flex-end; align-items: center; gap: 8px; margin-bottom: 5px; }
#jmb-root .user-name-bubble {
background: #003B80; color: white; padding: 12px 20px;
border-radius: 20px; font-size: 0.95rem; font-weight: 600;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
} #jmb-root .legal-disclaimer { font-size: 0.75rem; color: #888; text-align: left; margin: 10px 0 20px 0; line-height: 1.4; }
#jmb-root .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 999999; align-items: center; justify-content: center; padding: 20px; }
#jmb-root .modal-overlay.active { display: flex; }
#jmb-root .modal-card { background: white; width: 100%; max-width: 450px; border-radius: 16px; padding: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); animation: slideUpModal 0.3s; max-height: 90vh; overflow-y: auto; } #jmb-root .ims-trigger-wrapper { margin-top: 10px; width: 100%; animation: fadeIn 0.3s; }
#jmb-root .ims-trigger-btn {
background: #f8f9fa; color: #888; border: none; border-radius: 12px;
padding: 12px 20px; width: 100%; font-size: 0.95rem; cursor: pointer;
display: flex; align-items: center; justify-content: space-between;
transition: background 0.2s; font-family: inherit;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
#jmb-root .ims-trigger-btn:hover { background: #eee; }
#jmb-root .ims-trigger-btn svg { width: 18px; height: 18px; fill: #888; }
#jmb-root .ims-container {
position: absolute; bottom: 0; left: 0; right: 0; background: white; z-index: 50;
display: flex; flex-direction: column; border-top: 1px solid #eee;
box-shadow: 0 -5px 20px rgba(0,0,0,0.1); animation: slideUp 0.3s ease-out;
max-height: 80%; border-radius: 20px 20px 0 0; font-family: 'Roboto', sans-serif;
}
#jmb-root .ims-scroll-area { overflow-y: auto; flex: 1; padding-top: 5px; }
#jmb-root .ims-scroll-area::-webkit-scrollbar { width: 5px; }
#jmb-root .ims-scroll-area::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }
#jmb-root .ims-option { display: flex; align-items: center; padding: 15px 20px; border-bottom: 1px solid #f9f9f9; cursor: pointer; transition: background 0.1s; }
#jmb-root .ims-option.selected { background-color: #eff6ff; }
#jmb-root .ims-checkbox-box {
width: 18px; height: 18px; border: 2px solid #bbb; border-radius: 3px;
margin-right: 15px; display: flex; align-items: center; justify-content: center;
background: white; flex-shrink: 0;
}
#jmb-root .ims-option.selected .ims-checkbox-box { background-color: #007bff; border-color: #007bff; }
#jmb-root .ims-option.selected .ims-checkbox-box::after {
content: ''; display: block; width: 5px; height: 9px;
border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); margin-bottom: 2px;
}
#jmb-root .ims-label { font-size: 0.95rem; color: #333; line-height: 1.3; }
#jmb-root .ims-summary-bar { display: none; padding: 8px 15px; background: white; border-top: 1px solid #eee; gap: 8px; flex-wrap: nowrap; overflow-x: auto; align-items: center; }
#jmb-root .ims-summary-bar.active { display: flex; }
#jmb-root .ims-tag { background: #eff6ff; color: #333; border-radius: 4px; padding: 4px 8px; font-size: 0.85rem; display: flex; align-items: center; white-space: nowrap; }
#jmb-root .ims-tag-close { margin-left: 6px; color: #888; font-weight: bold; cursor: pointer; font-size: 14px; }
#jmb-root .ims-tag-count { color: #888; font-size: 0.8rem; margin-left: auto; white-space: nowrap; }
#jmb-root .ims-footer { padding: 10px 20px 10px 20px; background: white; display: flex; align-items: center; gap: 20px; border-top: 1px solid #f0f0f0; }
#jmb-root .ims-skip-btn { background: none; border: none; color: #999; font-size: 1rem; font-weight: 500; cursor: pointer; }
#jmb-root .ims-submit-btn {
flex: 1; height: 48px; border-radius: 25px; border: none; background-color: #f0f0f0; 
display: flex; align-items: center; justify-content: center; cursor: default; transition: background 0.2s;
}
#jmb-root .ims-submit-btn svg { width: 24px; height: 24px; fill: #bbb; }
#jmb-root .ims-submit-btn.active { background-color: #43a047; cursor: pointer; box-shadow: 0 4px 10px rgba(67, 160, 71, 0.3); }
#jmb-root .ims-submit-btn.active:hover { background-color: #388e3c; }
#jmb-root .ims-submit-btn.active svg { fill: white; }
#jmb-root .ims-branding { text-align: center; font-size: 11px; color: #ccc; padding-bottom: 5px; background: white; display: flex; justify-content: center; align-items: center; gap: 4px; }
#jmb-root .ims-branding strong { color: #333; font-weight: 700; display:flex; align-items:center; }
#jmb-root .ims-branding svg { width: 14px; height: 14px; fill: #000; margin-right: 2px; } #jmb-root .jmb-retainer-overlay {
position: fixed; top: 0; left: 0; right: 0; bottom: 0;
background: rgba(46, 36, 117, 0.85); backdrop-filter: blur(8px);
display: none; justify-content: center; align-items: center;
z-index: 999999; padding: 20px; font-family: 'Poppins', sans-serif;
}
#jmb-root .jmb-retainer-overlay.active { display: flex; }
#jmb-root .jmb-retainer-card {
background: white; width: 100%; max-width: 420px; border-radius: 20px;
padding: 30px 25px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
position: relative; overflow: hidden; border: 2px solid #D4AF37;
}
#jmb-root .jmb-retainer-card::before {
content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,255,255,0) 70%);
animation: rotate 10s linear infinite; z-index: 0;
}
#jmb-root .retainer-content-wrapper { position: relative; z-index: 1; }
#jmb-root .icon-shield { font-size: 50px; margin-bottom: 15px; filter: drop-shadow(0 0 10px #D4AF37); animation: bounce 2s infinite; }
#jmb-root .retainer-title { color: #2E2475; font-weight: 800; font-size: 26px; line-height: 1.1; margin: 0 0 10px 0; text-transform: uppercase; }
#jmb-root .retainer-title .gold-text { color: #D4AF37; }
#jmb-root .empathy-text { font-size: 15px; color: #555; margin-bottom: 20px; line-height: 1.5; font-weight: 500; }
#jmb-root .guarantee-box { background: #f9f9ff; border-radius: 12px; padding: 15px; text-align: left; margin-bottom: 20px; border-left: 4px solid #D4AF37; }
#jmb-root .check-item { display: flex; align-items: start; margin-bottom: 12px; font-size: 13px; color: #333; line-height: 1.4; }
#jmb-root .check-item:last-child { margin-bottom: 0; }
#jmb-root .check-item span { color: #27ae60; font-weight: bold; margin-right: 10px; font-size: 16px; flex-shrink: 0; }
#jmb-root .next-step-nudge {
font-size: 12px; color: #2E2475; background: rgba(212, 175, 55, 0.15);
padding: 10px; border-radius: 8px; margin-bottom: 15px; font-weight: 600;
border: 1px dashed #D4AF37; line-height: 1.4;
}
#jmb-root .btn-retainer-yes {
background: linear-gradient(135deg, #2E2475 0%, #4a3bba 100%); color: white; border: none;
padding: 16px 20px; width: 100%; border-radius: 50px; font-weight: 700; font-size: 18px;
cursor: pointer; transition: transform 0.2s; box-shadow: 0 4px 15px rgba(46, 36, 117, 0.4);
margin-bottom: 15px; text-decoration: none; display: inline-block; box-sizing: border-box;
}
#jmb-root .btn-retainer-yes:hover { transform: scale(1.02); }
#jmb-root .btn-retainer-no { background: transparent; border: none; color: #888; font-size: 13px; cursor: pointer; text-decoration: underline; padding: 5px; }
#jmb-root .btn-retainer-no:hover { color: #555; } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpModal { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} } @media (max-width: 480px) {
#jmb-root .chat-widget-side { width: calc(100% - 30px); height: calc(100% - 100px); right: 15px; bottom: 80px; border-radius: 16px; }
#jmb-root .chat-bubble { right: 15px; bottom: 20px; }
#jmb-root .launcher-text, #jmb-root .launcher-icon-below { display: none; }
#jmb-root .msg-content { max-width: 85%; }
#jmb-root .jmb-loading-placeholder { border-radius: 16px; }
} #jmb-root #jmb-consent-overlay .modal-card {
background-color: #4D4D4D; color: #ffffff; border-radius: 20px; padding: 25px 30px;
max-width: 420px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); border: none; font-family: 'Roboto', sans-serif;
}
#jmb-root #jmb-consent-overlay .consent-header { font-size: 1.3rem; font-weight: 700; color: #ffffff; text-align: left; margin-bottom: 15px; line-height: 1.2; }
#jmb-root #jmb-consent-overlay .consent-text { font-size: 0.85rem; color: #e0e0e0; line-height: 1.4; margin-bottom: 20px; text-align: left; font-weight: 400; }
#jmb-root .intaker-consent-option {
background-color: #B0B0B0; border-radius: 18px; padding: 15px 20px; margin-bottom: 12px;
cursor: pointer; display: flex; align-items: flex-start; gap: 15px; transition: background-color 0.2s;
}
#jmb-root .intaker-consent-option:hover { background-color: #bfbfbf; }
#jmb-root .intaker-consent-label { color: #222222; font-size: 0.95rem; line-height: 1.3; font-weight: 500; text-align: left; }
#jmb-root .intaker-radio-circle {
width: 22px; height: 22px; border-radius: 50%; background-color: #ffffff; border: 2px solid #ffffff;
flex-shrink: 0; margin-top: 2px; position: relative; display: flex; align-items: center; justify-content: center;
}
#jmb-root .intaker-consent-option.selected .intaker-radio-circle::after { content: ''; width: 12px; height: 12px; background-color: #2196F3; border-radius: 50%; display: block; }
#jmb-root .intaker-privacy-link { display: block; text-align: center; margin-top: 15px; color: #ffffff; font-size: 0.8rem; text-decoration: underline; font-weight: 600; }
#jmb-root #jmb-alt-phone-container { display: none; margin-top: 5px; margin-bottom: 15px; background: rgba(255,255,255,0.1); padding: 15px; border-radius: 12px; }
#jmb-root #jmb-alt-phone-input { width: 100%; padding: 12px; border-radius: 8px; border: none; font-size: 1rem; }
#jmb-root .dark-submit-btn { width: 100%; background-color: #43a047; color: white; padding: 12px; border-radius: 25px; border: none; font-weight: 700; margin-top: 10px; cursor: pointer; }
#jmb-root #jmb-consent-overlay { align-items: flex-end; justify-content: center; padding-bottom: 20px; }
@media(min-width: 480px) { #jmb-root #jmb-consent-overlay { align-items: center; } } #jmb-root .jmb-loading-placeholder {
position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: #ffffff;
z-index: 9999;
display: flex; align-items: center; justify-content: center;
transition: opacity 0.4s ease;
border-radius: 20px;
}
#jmb-root .jmb-loading-inner {
text-align: center; color: #333;
animation: fadeIn 0.3s ease-out;
}
#jmb-root .jmb-loading-logo {
font-family: 'Poppins', sans-serif;
font-size: 3rem; font-weight: 800;
letter-spacing: 4px; color: #003B80;
margin-bottom: 15px;
}
#jmb-root .jmb-loading-text {
font-family: 'Poppins', sans-serif;
font-size: 1.1rem; font-weight: 600;
color: #333; margin-bottom: 5px;
animation: pulse-attention 2s infinite;
}
#jmb-root .jmb-loading-subtext {
font-family: 'Roboto', sans-serif;
font-size: 0.85rem; font-weight: 400;
color: #888; margin-bottom: 20px;
}
#jmb-root .jmb-loading-dots {
display: flex; gap: 8px; justify-content: center;
}
#jmb-root .jmb-loading-dots span {
width: 8px; height: 8px; border-radius: 50%;
background: #003B80; animation: typing 1.4s infinite;
}
#jmb-root .jmb-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
#jmb-root .jmb-loading-dots span:nth-child(3) { animation-delay: 0.4s; } #jmb-root .jmb-char-counter {
font-family: 'Roboto', sans-serif;
font-size: 0.7rem; color: #bbb;
text-align: right; padding: 0 2px;
margin-bottom: 4px; transition: color 0.2s;
}
#jmb-root .jmb-char-counter.near-limit {
color: #e67e22; font-weight: 600;
}
#jmb-root .jmb-char-counter.over-limit {
color: #e74c3c; font-weight: 700;
animation: pulse-attention 1s infinite;
} #jmb-root .jmb-required-disclaimer {
font-family: 'Roboto', sans-serif;
font-size: 0.7rem; color: #0056D2;
text-align: center; padding: 6px 15px;
margin: 0 0 10px 0; line-height: 1.3;
font-weight: 500; font-style: italic;
background: #eff6ff; border-radius: 6px;
} #jmb-root .skip-btn,
#jmb-root .ims-skip-btn {
display: none !important;
} #jmb-root .chat-widget-side {
will-change: transform;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#jmb-root .video-background video {
will-change: transform;
}
#jmb-root .chat-messages {
will-change: scroll-position;
}
#jmb-root .jmb-loading-placeholder {
will-change: opacity;
} #jmb-root .jmb-hp-field {
position: absolute !important;
left: -9999px !important;
top: -9999px !important;
width: 1px !important;
height: 1px !important;
opacity: 0 !important;
overflow: hidden !important;
pointer-events: none !important;
} #jmb-root .jmb-modal-close-btn {
position: absolute; top: 10px; right: 12px;
background: none; border: none; color: #999;
font-size: 1.5rem; cursor: pointer; z-index: 10;
width: 30px; height: 30px; display: flex;
align-items: center; justify-content: center;
border-radius: 50%; transition: background 0.2s;
}
#jmb-root .jmb-modal-close-btn:hover {
background: rgba(255,255,255,0.15); color: white;
}
#jmb-root .modal-card {
position: relative;
} #jmb-root .ims-close-btn {
background: none; border: 1px solid #555;
color: #999; font-size: 0.8rem; padding: 8px 16px;
border-radius: 20px; cursor: pointer;
transition: all 0.2s;
}
#jmb-root .ims-close-btn:hover {
border-color: #999; color: white;
} #jmb-root .jmb-retry-btn {
display: inline-block; margin-top: 8px;
background: #0056D2; color: white;
border: none; border-radius: 16px;
padding: 8px 20px; font-size: 0.85rem;
font-weight: 600; cursor: pointer;
transition: background 0.2s;
}
#jmb-root .jmb-retry-btn:hover {
background: #0041a3;
} #jmb-root .jmb-widget-error {
font-family: 'Roboto', sans-serif;
font-size: 0.75rem; color: #e74c3c;
padding: 6px 10px; margin: 6px 0;
text-align: left; font-weight: 500;
line-height: 1.5;
} #jmb-root .bot-avatar-img {
width: 100%; height: 100%;
object-fit: cover;
border-radius: 50%;
} #jmb-root .jmb-consent-hint {
font-family: 'Roboto', sans-serif;
font-size: 0.8rem;
color: #ffcc00;
text-align: center;
padding: 8px 12px;
margin-top: 10px;
background: rgba(255, 204, 0, 0.12);
border: 1px solid rgba(255, 204, 0, 0.3);
border-radius: 8px;
font-weight: 500;
line-height: 1.3;
animation: fadeIn 0.3s ease-out;
}