:root {
  --theflow-ink: #191817;
  --theflow-muted: #6f6a63;
  --theflow-paper: #fbfaf7;
  --theflow-soft: #f3efe8;
  --theflow-line: rgba(25, 24, 23, .12);
  --theflow-accent: #b68b5f;
  --theflow-accent-dark: #7a5b3d;
  --theflow-green: #76846a;
  --theflow-chat-width: 430px;
  --theflow-chat-height: 610px;
  --theflow-header-height: 78px;
  --theflow-border-radius: 28px;
  --theflow-transition-speed: .28s;
}

#theflow-chatbot-popup,
#theflow-chatbot-popup * { box-sizing: border-box; }

#theflow-chatbot-popup,
#theflow-open-chat {
  font-family: Georgia, 'Times New Roman', serif;
}

#theflow-chatbot-popup {
  display: none;
  position: fixed;
  bottom: 34px;
  right: 34px;
  width: var(--theflow-chat-width);
  height: var(--theflow-chat-height);
  background: var(--theflow-paper);
  border: 1px solid var(--theflow-line);
  border-radius: var(--theflow-border-radius);
  box-shadow: 0 28px 80px rgba(25, 24, 23, .22), 0 8px 22px rgba(25, 24, 23, .12);
  overflow: hidden;
  opacity: 0;
  transform-origin: bottom right;
  transform: translateY(14px) scale(.96);
  transition: opacity var(--theflow-transition-speed) ease, transform var(--theflow-transition-speed) ease;
  z-index: 999999;
}

#theflow-chatbot-popup.visible {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

#theflow-chatbot-popup.theflow-fullscreen {
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: 28px;
  width: auto;
  height: auto;
  border-radius: 32px;
  transform: none;
}

#theflow-chatbot-header {
  height: var(--theflow-header-height);
  padding: 16px 18px 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--theflow-ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(182, 139, 95, .22), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f4efe6 54%, #e7dccd 100%);
  border-bottom: 1px solid var(--theflow-line);
}

.theflow-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.theflow-chat-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--theflow-ink), var(--theflow-accent-dark));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 8px 20px rgba(122, 91, 61, .22);
}

.theflow-chat-mark svg { width: 21px; height: 21px; }

.theflow-title-copy { min-width: 0; line-height: 1.15; }
.theflow-title-copy span {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theflow-title-copy small {
  display: block;
  margin-top: 3px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--theflow-muted);
}

.theflow-header-buttons {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
}

.theflow-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(25,24,23,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  color: var(--theflow-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  padding: 0;
}
.theflow-icon-button:hover {
  background: #fff;
  border-color: rgba(122,91,61,.32);
  transform: translateY(-1px);
}
.theflow-icon-button svg { width: 17px; height: 17px; }

#theflow-webchat {
  height: calc(100% - var(--theflow-header-height));
  position: relative;
  background:
    linear-gradient(rgba(251,250,247,.94), rgba(251,250,247,.94)),
    radial-gradient(circle at 100% 0%, rgba(118,132,106,.20), transparent 33%),
    radial-gradient(circle at 0% 100%, rgba(182,139,95,.18), transparent 38%);
}

#theflow-webchat .webchat__basic-transcript__content {
  white-space: pre-wrap !important;
  word-break: break-word !important;
}
#theflow-webchat .webchat__bubble__content { padding: 12px 16px !important; }
#theflow-webchat .webchat__bubble { max-width: 86% !important; margin: 9px 10px !important; }
#theflow-webchat .webchat__send-box { border-top: 1px solid var(--theflow-line) !important; }

#theflow-open-chat {
  position: fixed;
  bottom: 34px;
  right: 34px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.32), transparent 26%),
    linear-gradient(135deg, var(--theflow-ink), var(--theflow-accent-dark));
  box-shadow: 0 18px 38px rgba(25,24,23,.26), 0 0 0 8px rgba(182,139,95,.10);
  transition: opacity var(--theflow-transition-speed) ease, transform var(--theflow-transition-speed) ease, box-shadow .2s ease;
  z-index: 999998;
}
#theflow-open-chat.hidden { opacity: 0; transform: scale(.92) translateY(10px); pointer-events: none; }
#theflow-open-chat:hover { transform: translateY(-5px); box-shadow: 0 24px 46px rgba(25,24,23,.30), 0 0 0 10px rgba(182,139,95,.12); }
#theflow-open-chat svg { width: 31px; height: 31px; color: #fff; }
#theflow-open-chat::after {
  content: 'AI';
  position: absolute;
  right: -2px;
  top: -4px;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theflow-paper);
  color: var(--theflow-accent-dark);
  border: 1px solid rgba(122,91,61,.20);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

#theflow-login-gate {
  height: calc(100% - var(--theflow-header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    linear-gradient(rgba(251,250,247,.92), rgba(251,250,247,.92)),
    radial-gradient(circle at 0% 100%, rgba(182,139,95,.20), transparent 35%);
}
.theflow-login-card {
  width: 100%;
  max-width: 350px;
  text-align: center;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--theflow-line);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 18px 44px rgba(25,24,23,.10);
  backdrop-filter: blur(10px);
}
.theflow-login-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--theflow-ink), var(--theflow-accent-dark));
}
.theflow-login-icon svg { width: 25px; height: 25px; }
.theflow-login-card h3 { margin: 0 0 10px; font-size: 23px; font-weight: 500; color: var(--theflow-ink); }
.theflow-login-card p {
  margin: 0 0 22px;
  color: var(--theflow-muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.theflow-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--theflow-ink);
  color: #fff !important;
  text-decoration: none !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(25,24,23,.18);
}
.theflow-login-button:hover { background: var(--theflow-accent-dark); color:#fff !important; }

@media (max-width: 768px) {
  :root { --theflow-header-height: 74px; }
  #theflow-chatbot-popup,
  #theflow-chatbot-popup.theflow-fullscreen {
    width: 100%; height: 100%; top: 0; left: 0; bottom: 0; right: 0; border-radius: 0;
  }
  #theflow-open-chat { width: 66px; height: 66px; bottom: 22px; right: 22px; }
  .theflow-title-copy span { font-size: 16px; }
}

/* v1.3 icon compatibility fixes for themes/builders that override inline SVGs */
#theflow-chatbot-popup svg,
#theflow-open-chat svg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  max-width: none !important;
  max-height: none !important;
}
.theflow-icon-button svg { width: 18px !important; height: 18px !important; }
.theflow-chat-mark svg { width: 22px !important; height: 22px !important; }
.theflow-login-icon svg { width: 26px !important; height: 26px !important; }
#theflow-open-chat svg { width: 32px !important; height: 32px !important; }

/* v1.4: SVG-free plugin icons, avoids WoodMart/WPBakery and BotFramework icon conflicts */
.theflow-chat-mark svg,
.theflow-login-icon svg,
.theflow-icon-button svg,
#theflow-open-chat svg { display: none !important; }

.theflow-mark-lines,
.theflow-launcher-icon {
  width: 26px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 4px 5px;
  color: inherit;
}
.theflow-mark-lines::after,
.theflow-launcher-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  bottom: -6px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-18deg);
  background: transparent;
}
.theflow-mark-lines span,
.theflow-launcher-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.theflow-mark-lines span:nth-child(3),
.theflow-launcher-icon span:nth-child(3) { width: 62%; }

.theflow-btn-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  color: currentColor;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
.theflow-btn-close::before,
.theflow-btn-close::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 2px;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: currentColor;
}
.theflow-btn-close::before { transform: rotate(45deg); }
.theflow-btn-close::after { transform: rotate(-45deg); }
.theflow-btn-restart::before {
  content: '↻';
  position: absolute;
  inset: -2px 0 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.theflow-btn-fullscreen::before {
  content: '⛶';
  position: absolute;
  inset: -1px 0 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
#theflow-chatbot-popup.theflow-fullscreen .theflow-btn-fullscreen::before { content: '▣'; }
#theflow-open-chat .theflow-launcher-icon { width: 31px; height: 26px; color: #fff; }
.theflow-login-icon .theflow-mark-lines { color: #fff; }
.theflow-chat-mark .theflow-mark-lines { color: #fff; width: 24px; height: 20px; }

/* Keep WebChat's own icons untouched, but hide upload because DirectLine attachment upload is not needed here */
#theflow-webchat button[aria-label*="Attach"],
#theflow-webchat button[title*="Attach"],
#theflow-webchat .webchat__upload-button,
#theflow-webchat .webchat__send-box__button--upload { display: none !important; }

/* v1.8 - Logout icon */
.theflow-logout-button { text-decoration: none !important; }
.theflow-btn-logout::before {
  content: '';
  width: 14px;
  height: 14px;
  display: block;
  border: 2px solid currentColor;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  transform: translateX(-2px);
}
.theflow-btn-logout::after {
  content: '';
  width: 11px;
  height: 2px;
  display: block;
  background: currentColor;
  position: absolute;
  right: 8px;
  top: 16px;
  box-shadow: 4px -4px 0 -1px currentColor, 4px 4px 0 -1px currentColor;
}

/* v1.9 - TheFlow branded WordPress login page with official logo */
body.login {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(182,139,95,.15), transparent 28%),
    radial-gradient(circle at 82% 15%, rgba(118,132,106,.10), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #f6f0e8 48%, #fbfaf7 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #191817;
}
body.login::before {
  content: '';
  position: fixed;
  left: -10%;
  right: -10%;
  top: 30%;
  height: 260px;
  background: linear-gradient(90deg, transparent, rgba(182,139,95,.11), rgba(255,255,255,.7), rgba(182,139,95,.08), transparent);
  transform: rotate(-5deg);
  pointer-events: none;
}
body.login div#login {
  position: relative;
  z-index: 1;
  width: 540px;
  max-width: calc(100% - 36px);
  padding: 44px 0 0;
}
body.login h1 {
  margin: 0 0 26px;
}
body.login h1 a {
  width: 360px;
  max-width: 90%;
  height: 92px;
  background-image: url('https://theflow.gr/wp-content/uploads/2022/05/Logo_new_7.6.gif') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  padding: 0;
}
body.login #login::before {
  content: 'Welcome Back';
  display: block;
  margin: 10px 0 8px;
  text-align: center;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 700;
  color: #0d2630;
  letter-spacing: -.02em;
}
body.login #login::after {
  content: 'Sign in to continue to your AI Assistant.';
  display: block;
  position: absolute;
  top: 158px;
  left: 0;
  right: 0;
  text-align: center;
  color: #6f6a63;
  font-size: 17px;
  font-weight: 400;
}
body.login form {
  position: relative;
  margin-top: 104px;
  border: 1px solid rgba(25,24,23,.10);
  border-radius: 24px;
  padding: 42px 38px 34px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 28px 70px rgba(25,24,23,.13), 0 8px 24px rgba(25,24,23,.08);
  backdrop-filter: blur(10px);
}
body.login form::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -44px;
  width: 74px;
  height: 74px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(25,24,23,.10);
  box-shadow: 0 14px 34px rgba(25,24,23,.14);
}
body.login form::after {
  content: '☰';
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  color: #b68b5f;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -8px;
}

body.login label {
  font-weight: 600;
  color: #191817;
  margin-bottom: 8px;
}
body.login .forgetmenot {
  margin-top: 6px;
}
body.login form .input,
body.login input[type='text'],
body.login input[type='password'] {
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(25,24,23,.14);
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  padding: 8px 14px;
}
body.login form .input:focus,
body.login input[type='text']:focus,
body.login input[type='password']:focus {
  border-color: #b68b5f;
  box-shadow: 0 0 0 3px rgba(182,139,95,.14);
}
body.login .button.wp-hide-pw {
  color: #7a5b3d;
}
body.login .button-primary {
  min-height: 48px;
  padding: 0 28px !important;
  border: 0;
  border-radius: 8px;
  background: #0d2630 !important;
  box-shadow: 0 10px 22px rgba(13,38,48,.20);
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
body.login .button-primary:hover {
  transform: translateY(-1px);
  background: #191817 !important;
  box-shadow: 0 14px 28px rgba(13,38,48,.24);
}
body.login #nav,
body.login #backtoblog {
  text-align: center;
  font-size: 14px;
}
body.login #nav a,
body.login #backtoblog a,
body.login .privacy-policy-page-link a {
  color: #7a5b3d !important;
  text-decoration: none;
  font-weight: 600;
}
body.login .wpml-ls-statics-login,
body.login .login-language,
body.login #language-switcher,
body.login .language-switcher,
body.login .wpml-ls,
body.login .login-language-switcher {
  display: none !important;
}
body.login .privacy-policy-page-link {
  margin-top: 32px;
  color: #6f6a63;
}
@media (max-width: 480px) {
  body.login div#login { padding-top: 28px; width: 100%; }
  body.login h1 a { height: 74px; }
  body.login #login::before { font-size: 34px; }
  body.login #login::after { top: 130px; font-size: 15px; }
  body.login form { margin-top: 92px; padding: 38px 22px 28px; border-radius: 20px; }
}

/* v2.0 - polished header controls with readable labels and fixed logout icon */
#theflow-chatbot-header {
  gap: 14px;
}
.theflow-header-title {
  flex: 1 1 auto;
  max-width: calc(100% - 300px);
}
.theflow-header-buttons {
  gap: 10px;
  align-items: center;
}
.theflow-icon-button {
  width: auto;
  min-width: 72px;
  height: 56px;
  padding: 8px 11px 7px;
  border-radius: 12px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(25,24,23,.10);
  box-shadow: 0 7px 16px rgba(25,24,23,.07);
  flex-direction: column;
  gap: 5px;
  color: var(--theflow-ink);
  text-align: center;
}
.theflow-icon-button:hover {
  background: #fff;
  border-color: rgba(182,139,95,.36);
  color: var(--theflow-accent-dark);
}
.theflow-button-text {
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.theflow-close-chat-button {
  min-width: 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.theflow-close-chat-button:hover {
  background: rgba(255,255,255,.72);
}
.theflow-close-chat-button .theflow-btn-icon {
  width: 20px;
  height: 20px;
}
.theflow-btn-fullscreen::before {
  content: '';
  position: absolute;
  inset: 1px;
  border: 2px solid currentColor;
  border-radius: 2px;
  clip-path: polygon(0 0, 36% 0, 36% 18%, 18% 18%, 18% 36%, 0 36%, 0 0, 64% 0, 100% 0, 100% 36%, 82% 36%, 82% 18%, 64% 18%, 64% 0, 100% 64%, 100% 100%, 64% 100%, 64% 82%, 82% 82%, 82% 64%, 100% 64%, 36% 100%, 0 100%, 0 64%, 18% 64%, 18% 82%, 36% 82%, 36% 100%, 0 36%);
}
#theflow-chatbot-popup.theflow-fullscreen .theflow-btn-fullscreen::before {
  content: '';
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
  clip-path: none;
}
.theflow-btn-restart::before {
  content: '↻';
  inset: -2px 0 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 18px;
}
.theflow-btn-logout {
  width: 21px;
  height: 20px;
}
.theflow-btn-logout::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 3px;
  width: 10px;
  height: 12px;
  border: 2px solid currentColor;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  transform: none;
}
.theflow-btn-logout::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 9px;
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: none;
}
.theflow-logout-button .theflow-btn-logout span,
.theflow-btn-logout span { display:none!important; }
.theflow-btn-logout i { display:none!important; }
.theflow-btn-logout:empty { display:inline-block; }
.theflow-btn-logout { color: var(--theflow-accent-dark); }
.theflow-btn-logout .dummy { display: none; }
.theflow-btn-logout:after { transform: none; }
.theflow-logout-button .theflow-btn-logout::before,
.theflow-logout-button .theflow-btn-logout::after { display: block; }
.theflow-btn-logout + .theflow-button-text { color: var(--theflow-accent-dark); }
.theflow-btn-logout-arrow {
  display: none;
}
.theflow-btn-logout::marker { display: none; }
.theflow-btn-logout:focus { outline: none; }
.theflow-btn-logout::selection { background: transparent; }
.theflow-btn-logout:before { box-sizing: border-box; }
.theflow-btn-logout:after { box-sizing: border-box; }
.theflow-logout-button .theflow-btn-icon::after {
  clip-path: polygon(0 0, 70% 0, 70% -6px, 100% 50%, 70% 106%, 70% 100%, 0 100%);
}

@media (max-width: 560px) {
  #theflow-chatbot-header {
    height: 86px;
    padding: 12px 12px 12px 14px;
  }
  .theflow-header-title { max-width: calc(100% - 210px); gap: 8px; }
  .theflow-chat-mark { width: 36px; height: 36px; }
  .theflow-title-copy span { font-size: 14px; }
  .theflow-title-copy small { font-size: 9px; letter-spacing: .12em; }
  .theflow-header-buttons { gap: 5px; }
  .theflow-icon-button { min-width: 46px; height: 46px; padding: 6px 6px 5px; border-radius: 10px; }
  .theflow-button-text { display:none; }
  .theflow-close-chat-button { min-width: 34px; width: 34px; height: 34px; }
  #theflow-webchat,
  #theflow-login-gate { height: calc(100% - 86px); }
}

/* v2.1 - rebuilt header controls with real inline SVG icons */
#theflow-chatbot-header {
  height: 78px !important;
  padding: 14px 16px 14px 18px !important;
  gap: 12px !important;
  overflow: hidden !important;
}
.theflow-header-title {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow: hidden !important;
}
.theflow-title-copy {
  min-width: 0 !important;
  overflow: hidden !important;
}
.theflow-title-copy span {
  max-width: 190px !important;
}
#theflow-chatbot-popup.theflow-fullscreen .theflow-title-copy span {
  max-width: 420px !important;
}
.theflow-header-buttons {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 7px !important;
  min-width: 0 !important;
}
.theflow-icon-button,
.theflow-icon-button:visited,
.theflow-icon-button:link {
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(25,24,23,.10) !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--theflow-ink) !important;
  text-decoration: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  font-family: inherit !important;
  vertical-align: middle !important;
  position: relative !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
}
.theflow-icon-button:hover {
  background: #fff !important;
  border-color: rgba(182,139,95,.38) !important;
  color: var(--theflow-accent-dark) !important;
  transform: translateY(-1px) !important;
}
.theflow-icon-button:focus-visible {
  outline: 2px solid rgba(182,139,95,.42) !important;
  outline-offset: 2px !important;
}
.theflow-control-icon {
  width: 19px !important;
  height: 19px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  pointer-events: none !important;
  flex: 0 0 auto !important;
}
.theflow-logout-button { color: var(--theflow-accent-dark) !important; }
.theflow-close-chat-button {
  border-radius: 50% !important;
  background: rgba(255,255,255,.50) !important;
}
.theflow-button-text,
.theflow-btn-icon,
.theflow-btn-fullscreen,
.theflow-btn-restart,
.theflow-btn-logout,
.theflow-btn-close {
  display: none !important;
}
.theflow-btn-icon::before,
.theflow-btn-icon::after,
.theflow-btn-fullscreen::before,
.theflow-btn-fullscreen::after,
.theflow-btn-restart::before,
.theflow-btn-restart::after,
.theflow-btn-logout::before,
.theflow-btn-logout::after,
.theflow-btn-close::before,
.theflow-btn-close::after {
  content: none !important;
  display: none !important;
}
@media (max-width: 560px) {
  #theflow-chatbot-header {
    height: 76px !important;
    padding: 12px 10px 12px 12px !important;
    gap: 8px !important;
  }
  .theflow-chat-mark { width: 35px !important; height: 35px !important; }
  .theflow-header-title { gap: 8px !important; }
  .theflow-title-copy span { max-width: 142px !important; font-size: 13px !important; }
  .theflow-title-copy small { font-size: 8px !important; letter-spacing: .12em !important; }
  .theflow-header-buttons { gap: 5px !important; }
  .theflow-icon-button,
  .theflow-icon-button:visited,
  .theflow-icon-button:link {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    border-radius: 10px !important;
  }
  .theflow-control-icon { width: 17px !important; height: 17px !important; }
  #theflow-webchat,
  #theflow-login-gate { height: calc(100% - 76px) !important; }
}
@media (max-width: 410px) {
  .theflow-title-copy span { max-width: 105px !important; }
  .theflow-title-copy small { display: none !important; }
  .theflow-header-buttons { gap: 4px !important; }
  .theflow-icon-button,
  .theflow-icon-button:visited,
  .theflow-icon-button:link {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
  }
}

/* v2.2 - The Flow Partners brand guide visual system
   Brand references: palette #000000, #E2CFC5, #C4C4C2, #F69A96, #FFFFFF, #09434C.
   Typography stack follows the supplied brand guide names when available on the site.
*/
:root {
  --theflow-ink: #000000;
  --theflow-teal: #09434C;
  --theflow-blush: #E2CFC5;
  --theflow-grey: #C4C4C2;
  --theflow-coral: #F69A96;
  --theflow-white: #FFFFFF;
  --theflow-muted: rgba(0,0,0,.58);
  --theflow-paper: #FFFFFF;
  --theflow-soft: #F7F3F0;
  --theflow-line: rgba(0,0,0,.13);
  --theflow-accent: #09434C;
  --theflow-accent-dark: #000000;
  --theflow-green: #09434C;
  --theflow-chat-width: 458px;
  --theflow-chat-height: 640px;
  --theflow-header-height: 92px;
  --theflow-border-radius: 0px;
}

#theflow-chatbot-popup,
#theflow-open-chat,
body.login {
  font-family: 'Nexa Light', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
}

.theflow-title-copy span,
.theflow-login-card h3,
body.login #login::before {
  font-family: 'Glysa Medium', Glysa, Georgia, 'Times New Roman', serif !important;
  font-weight: 500 !important;
  letter-spacing: .01em !important;
}

.theflow-title-copy small,
.theflow-button-text,
.theflow-login-button,
body.login label,
body.login .button-primary {
  font-family: 'Nexa Bold', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
}

#theflow-chatbot-popup {
  background: var(--theflow-white) !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  border-radius: 0 !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.18), 0 0 0 10px rgba(226,207,197,.22) !important;
}

#theflow-chatbot-popup.visible {
  transform: translateY(0) scale(1) !important;
}

#theflow-chatbot-popup.theflow-fullscreen {
  top: 24px !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 24px !important;
  border-radius: 0 !important;
}

#theflow-chatbot-header {
  min-height: 92px !important;
  height: 92px !important;
  padding: 18px 18px 16px 24px !important;
  background:
    linear-gradient(90deg, rgba(226,207,197,.98) 0%, rgba(226,207,197,.68) 34%, #ffffff 100%) !important;
  border-bottom: 1px solid rgba(0,0,0,.16) !important;
  color: var(--theflow-ink) !important;
}

.theflow-chat-mark {
  width: 50px !important;
  height: 50px !important;
  border-radius: 0 !important;
  background: var(--theflow-teal) !important;
  color: var(--theflow-white) !important;
  box-shadow: 8px 8px 0 rgba(226,207,197,.85) !important;
}

.theflow-title-copy span {
  max-width: 205px !important;
  font-size: 20px !important;
  line-height: 1.05 !important;
  color: var(--theflow-ink) !important;
}

#theflow-chatbot-popup.theflow-fullscreen .theflow-title-copy span {
  max-width: 520px !important;
}

.theflow-title-copy small {
  margin-top: 7px !important;
  color: var(--theflow-teal) !important;
  font-size: 10px !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
}

.theflow-header-buttons {
  gap: 8px !important;
}

.theflow-icon-button,
.theflow-icon-button:visited,
.theflow-icon-button:link {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  background: rgba(255,255,255,.92) !important;
  color: var(--theflow-ink) !important;
}

.theflow-icon-button:hover {
  color: var(--theflow-white) !important;
  background: var(--theflow-teal) !important;
  border-color: var(--theflow-teal) !important;
  transform: translateY(-2px) !important;
}

.theflow-logout-button {
  color: var(--theflow-coral) !important;
}

.theflow-close-chat-button:hover {
  background: var(--theflow-ink) !important;
  border-color: var(--theflow-ink) !important;
}

#theflow-webchat {
  height: calc(100% - 92px) !important;
  background:
    linear-gradient(90deg, rgba(196,196,194,.12) 0 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(196,196,194,.12) 0 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, rgba(226,207,197,.28) 100%) !important;
}

#theflow-webchat .webchat__bubble__content {
  font-family: 'Nexa Light', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
  padding: 16px 18px !important;
}

#theflow-webchat .webchat__bubble {
  max-width: 84% !important;
}

#theflow-webchat .webchat__bubble:not(.webchat__bubble--from-user) .webchat__bubble__content {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  border-radius: 0 !important;
  box-shadow: 8px 8px 0 rgba(226,207,197,.42) !important;
}

#theflow-webchat .webchat__bubble--from-user .webchat__bubble__content {
  background: var(--theflow-teal) !important;
  color: var(--theflow-white) !important;
  border-radius: 0 !important;
  box-shadow: 8px 8px 0 rgba(196,196,194,.45) !important;
}

#theflow-webchat .webchat__send-box,
#theflow-webchat .webchat__send-box__main {
  background: #ffffff !important;
  border-top: 1px solid rgba(0,0,0,.16) !important;
}

#theflow-open-chat {
  width: 76px !important;
  height: 76px !important;
  border-radius: 0 !important;
  background: var(--theflow-teal) !important;
  border: 1px solid rgba(255,255,255,.36) !important;
  box-shadow: 10px 10px 0 rgba(226,207,197,.80), 0 20px 38px rgba(0,0,0,.18) !important;
}

#theflow-open-chat:hover {
  transform: translate(-2px, -5px) !important;
  background: var(--theflow-ink) !important;
}

#theflow-open-chat::after {
  content: 'AI' !important;
  right: -11px !important;
  top: -11px !important;
  background: var(--theflow-coral) !important;
  color: var(--theflow-white) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-family: 'Nexa Bold', Nexa, Arial, sans-serif !important;
}

#theflow-login-gate {
  height: calc(100% - 92px) !important;
  background:
    linear-gradient(135deg, rgba(226,207,197,.48), rgba(255,255,255,.84)),
    linear-gradient(90deg, rgba(9,67,76,.05) 0 1px, transparent 1px) 0 0 / 30px 30px !important;
}

.theflow-login-card {
  border-radius: 0 !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 12px 12px 0 rgba(226,207,197,.72), 0 22px 48px rgba(0,0,0,.10) !important;
}

.theflow-login-icon {
  border-radius: 0 !important;
  background: var(--theflow-teal) !important;
  box-shadow: 6px 6px 0 rgba(226,207,197,.75) !important;
}

.theflow-login-button {
  border-radius: 0 !important;
  background: var(--theflow-teal) !important;
  box-shadow: 6px 6px 0 rgba(196,196,194,.75) !important;
}
.theflow-login-button:hover { background: var(--theflow-ink) !important; }

/* Brand login page */
body.login {
  background:
    linear-gradient(90deg, rgba(226,207,197,.36) 0 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(196,196,194,.18) 0 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #ffffff 0%, #f8f4f1 48%, rgba(226,207,197,.62) 100%) !important;
}
body.login::before {
  background: linear-gradient(90deg, transparent, rgba(9,67,76,.13), rgba(226,207,197,.50), transparent) !important;
  height: 230px !important;
}
body.login #login::before {
  color: #000000 !important;
}
body.login #login::after {
  color: rgba(0,0,0,.62) !important;
}
body.login form {
  border-radius: 0 !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 14px 14px 0 rgba(226,207,197,.78), 0 28px 66px rgba(0,0,0,.12) !important;
}
body.login form::before {
  border-radius: 0 !important;
  background: #09434C !important;
  box-shadow: 8px 8px 0 rgba(226,207,197,.78) !important;
}
body.login form::after {
  color: #ffffff !important;
}
body.login form .input,
body.login input[type='text'],
body.login input[type='password'] {
  border-radius: 0 !important;
  border-color: rgba(0,0,0,.18) !important;
}
body.login form .input:focus,
body.login input[type='text']:focus,
body.login input[type='password']:focus {
  border-color: #09434C !important;
  box-shadow: 0 0 0 3px rgba(9,67,76,.13) !important;
}
body.login .button-primary {
  border-radius: 0 !important;
  background: #09434C !important;
  box-shadow: 6px 6px 0 rgba(196,196,194,.85) !important;
}
body.login .button-primary:hover {
  background: #000000 !important;
}
body.login #nav a,
body.login #backtoblog a,
body.login .privacy-policy-page-link a {
  color: #09434C !important;
}

@media (max-width: 560px) {
  :root { --theflow-header-height: 82px; }
  #theflow-chatbot-header { height: 82px !important; min-height: 82px !important; padding: 12px !important; }
  .theflow-title-copy span { max-width: 128px !important; font-size: 15px !important; }
  .theflow-title-copy small { font-size: 8px !important; letter-spacing: .14em !important; }
  .theflow-chat-mark { width: 40px !important; height: 40px !important; box-shadow: 5px 5px 0 rgba(226,207,197,.85) !important; }
  .theflow-icon-button,
  .theflow-icon-button:visited,
  .theflow-icon-button:link { width: 34px !important; min-width: 34px !important; height: 34px !important; min-height: 34px !important; }
  #theflow-webchat,
  #theflow-login-gate { height: calc(100% - 82px) !important; }
}

/* v3.1 - stability, feedback, and cleaner login/chat backgrounds */
#theflow-webchat-shell {
  height: calc(100% - 92px) !important;
  display: flex !important;
  flex-direction: column !important;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, rgba(226,207,197,.22) 100%) !important;
}

#theflow-webchat {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
}

#theflow-feedback-bar {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 44px;
  padding: 7px 12px;
  border-top: 1px solid rgba(0,0,0,.13);
  background: #ffffff;
  color: rgba(0,0,0,.62);
  font-family: 'Nexa Light', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
}

#theflow-feedback-bar.visible {
  display: flex;
}

.theflow-feedback-button {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(9,67,76,.22);
  border-radius: 0;
  background: #ffffff;
  color: #09434C;
  cursor: pointer;
  font-family: 'Nexa Bold', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
}

.theflow-feedback-button:hover,
.theflow-feedback-button.selected {
  background: #09434C;
  color: #ffffff;
}

.theflow-feedback-button:disabled {
  cursor: default;
  opacity: .72;
}

.theflow-chat-status {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  color: rgba(0,0,0,.62);
  text-align: center;
  font-family: 'Nexa Light', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
}

.theflow-chat-status-error {
  color: #09434C;
}

.theflow-icon-button.theflow-is-busy {
  pointer-events: none;
  opacity: .56;
}

#theflow-login-gate {
  background: linear-gradient(135deg, rgba(226,207,197,.42), rgba(255,255,255,.92)) !important;
}

body.login {
  background:
    radial-gradient(circle at 18% 18%, rgba(246,154,150,.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(9,67,76,.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8f4f1 52%, rgba(226,207,197,.58) 100%) !important;
}

body.login::before {
  background: linear-gradient(90deg, transparent, rgba(226,207,197,.44), rgba(255,255,255,.72), transparent) !important;
}

body.login div#login {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 34px !important;
}

body.login #login::before {
  order: 1;
  margin: 0 0 18px !important;
}

body.login h1 {
  order: 2;
  margin: 0 0 18px !important;
}

body.login #login::after {
  order: 3;
  position: static !important;
  margin: 0 0 34px;
}

body.login form {
  order: 4;
  margin-top: 0 !important;
}

body.login #nav,
body.login #backtoblog,
body.login .privacy-policy-page-link {
  order: 5;
}

@media (max-width: 560px) {
  #theflow-webchat-shell { height: calc(100% - 82px) !important; }
  #theflow-feedback-bar { align-items: stretch; flex-direction: column; min-height: auto; }
  .theflow-feedback-button { width: 100%; }
}

/* v3.2 feedback modal + transcript email */
.theflow-email-transcript-button {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(9,67,76,.22);
  background: #E2CFC5;
  color: #09434C;
  cursor: pointer;
  font-family: 'Nexa Bold', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  margin-right: auto;
}
.theflow-email-transcript-button:hover { background: #09434C; color: #fff; }
.theflow-email-transcript-button:disabled { cursor: default; opacity: .65; }

.theflow-feedback-modal {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(9, 67, 76, .36);
  backdrop-filter: blur(4px);
}
.theflow-feedback-modal.visible { display: flex; }
.theflow-feedback-dialog {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid rgba(9,67,76,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
  padding: 24px;
  color: #09434C;
}
.theflow-feedback-dialog h3 {
  margin: 0 0 8px;
  font-family: 'Glysa Medium', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}
.theflow-feedback-dialog p {
  margin: 0 0 14px;
  font-family: 'Nexa Light', Arial, sans-serif;
  color: rgba(9,67,76,.72);
}
#theflow-feedback-comment {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid rgba(9,67,76,.25);
  padding: 12px;
  font-family: 'Nexa Light', Arial, sans-serif;
  color: #09434C;
  outline: none;
}
#theflow-feedback-comment:focus { border-color: #09434C; }
.theflow-feedback-dialog-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.theflow-feedback-primary,
.theflow-feedback-secondary {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #09434C;
  cursor: pointer;
  font-family: 'Nexa Bold', Arial, sans-serif;
}
.theflow-feedback-primary { background: #09434C; color: #fff; }
.theflow-feedback-secondary { background: #fff; color: #09434C; }
@media (max-width: 640px) {
  #theflow-feedback-bar { align-items: stretch; flex-direction: column; }
  .theflow-email-transcript-button { width: 100%; margin-right: 0; }
  .theflow-feedback-dialog-actions { flex-direction: column-reverse; }
  .theflow-feedback-primary, .theflow-feedback-secondary { width: 100%; }
}


/* v3.2.5 - compact feedback/email toolbar fix */
#theflow-feedback-bar,
#theflow-feedback-bar.visible {
  box-sizing: border-box !important;
}

#theflow-feedback-bar.visible {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  min-height: 74px !important;
  padding: 7px 8px 8px !important;
  border-top: 1px solid rgba(0,0,0,.13) !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

#theflow-feedback-bar > span {
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 2px !important;
  overflow: hidden !important;
  color: rgba(9,67,76,.70) !important;
  font-family: 'Nexa Light', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 10.5px !important;
  line-height: 1.25 !important;
  text-align: center !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

.theflow-email-transcript-button,
.theflow-feedback-button {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 6px 6px !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
}

.theflow-email-transcript-button {
  grid-column: auto !important;
  background: #E2CFC5 !important;
  color: #09434C !important;
  border: 1px solid rgba(9,67,76,.22) !important;
}

.theflow-email-transcript-button::before {
  content: '✉' !important;
  margin-right: 4px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.theflow-feedback-button[data-feedback="helpful"] {
  border-color: rgba(9,67,76,.24) !important;
}

.theflow-feedback-button[data-feedback="needs_work"] {
  border-color: rgba(246,154,150,.72) !important;
  color: #09434C !important;
}

.theflow-feedback-button:hover,
.theflow-feedback-button.selected,
.theflow-email-transcript-button:hover {
  background: #09434C !important;
  border-color: #09434C !important;
  color: #ffffff !important;
}

#theflow-webchat-shell {
  min-height: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 480px) {
  #theflow-feedback-bar.visible {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 5px !important;
    min-height: 72px !important;
    padding: 7px 6px !important;
  }
  #theflow-feedback-bar > span {
    font-size: 10px !important;
  }
  .theflow-email-transcript-button,
  .theflow-feedback-button {
    height: 32px !important;
    min-height: 32px !important;
    padding: 5px 4px !important;
    font-size: 9.5px !important;
  }
}


/* v3.2.7 - persistent transcript preview across page navigation */
.theflow-transcript-restore {
  flex: 0 0 auto;
  max-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.13);
  background: linear-gradient(180deg, rgba(226,207,197,.34), rgba(255,255,255,.96));
  color: #09434C;
  font-family: 'Nexa Light', Nexa, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
}
.theflow-transcript-restore-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(9,67,76,.12);
  font-family: 'Nexa Bold', Nexa, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
#theflow-transcript-restore-hide {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(9,67,76,.20);
  background: #fff;
  color: #09434C;
  cursor: pointer;
  line-height: 20px;
}
.theflow-transcript-restore-body {
  max-height: 150px;
  overflow: auto;
  padding: 8px 12px 10px;
}
.theflow-transcript-restore-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px;
  padding: 5px 0;
  font-size: 12px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(9,67,76,.08);
}
.theflow-transcript-restore-item:last-child { border-bottom: 0; }
.theflow-transcript-restore-item strong {
  font-family: 'Nexa Bold', Nexa, Arial, sans-serif;
  color: #09434C;
}
.theflow-transcript-restore-item span {
  color: rgba(0,0,0,.72);
  white-space: pre-wrap;
  word-break: break-word;
}
@media (max-width: 560px) {
  .theflow-transcript-restore { max-height: 150px; }
  .theflow-transcript-restore-body { max-height: 112px; }
  .theflow-transcript-restore-item { grid-template-columns: 52px 1fr; font-size: 11px; }
}
