/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.5.15,
* Autoprefixer: v10.5.0
* Browsers: last 4 version
*/

.navigation.whitenav {
background-color: #379fd8;
}

.navigation.whitenav.sticky{
background-color: white;
}

/* ==========================================================
   Base & Global Layout
   ========================================================== */

/* Flex layout: Sidebar + Main Content */
.knowledgebase_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  width: 90%;
  max-width: 1300px;
  margin: 40px auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Main Content Column */
.knowledgebase_main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.knowledgebase_main .kb-article {
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}



/* ==========================================================
   Panel View & 300ms Swipe-Up / Fade-In Transition
   ========================================================== */

/* All panels hidden by default */
.kb-panel {
  display: none;
}

/* Active panel displays with 300ms swipe-up & fade-in */
.kb-panel.active {
  display: block;
  -webkit-animation: kbPanelSwipeUp 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: kbPanelSwipeUp 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

@-webkit-keyframes kbPanelSwipeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes kbPanelSwipeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* Accessibility: instant display if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .kb-panel.active {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}


/* ==========================================================
   Hotjar / Zendesk Help Center Knowledge Base Style
   ========================================================== */

.submit_ticket_button{
padding: 10px;
color: white;
background-color: #2563eb;
margin: 10px auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: background .3s ease;
transition: background .3s ease;
font-weight: 600;
font-size: 14px;
border-radius: 6px;
}

.submit_ticket_button:hover{
color: white;
background-color: #1d4ed8;
}

.submit_ticket_tag{
margin: auto;
}

/* Main Container (Flat, clean, crisp documentation style) */
.kb-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #555e69;                 /* Soft slate gray body text */
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Page Title (H1) */
.kb-article h1 {
  font-size: 30px;
  font-weight: 500;
  color: #2f3640;                 /* Deep charcoal */
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9edf0; /* Light gray divider line under H1 */
  letter-spacing: -0.01em;
}

/* Section Headings (H2) */
.kb-article h2 {
  font-size: 22px;
  font-weight: 500;
  color: #373f47;
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 16px;
}

/* Sub-headings (H3) */
.kb-article h3 {
  font-size: 17px;
  font-weight: 600;
  color: #373f47;
  margin-top: 26px;
  margin-bottom: 12px;
}

/* Paragraphs */
.kb-article{
  font-weight: 400;
}

.kb-article p {
  margin-top: 0;
  margin-bottom: 18px;
  color: #555e69;  
}

/* Bold / Strong */
.kb-article strong {
  font-weight: 600;
  color: #2f3640;
}

/* Links */
.kb-article a {
  color: #2196f3;                 /* Hotjar doc blue */
  text-decoration: none;
}

.kb-article a:hover {
  text-decoration: underline;
}

/* Lists & Bullets */
.kb-article ul {
  list-style-type: disc;
  padding-left: 22px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.kb-article ol {
  padding-left: 22px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.kb-article li {
  margin-bottom: 8px;
  color: #555e69;
  line-height: 1.6;
}

.kb-article li > ul,
.kb-article li > ol {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* ==========================================================
   Hotjar Blue Info Callout Box (applied to blockquote)
   ========================================================== */
.kb-article blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  background-color: #eaf4fc;      /* Soft sky blue background */
  border-left: 4px solid #2196f3; /* Solid blue accent bar */
  border-radius: 0 4px 4px 0;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
}

/* Callout Title with built-in Info SVG Icon */
.kb-article blockquote strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #1e88e5;                 /* Vibrant blue title */
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Embedded circular info icon */
.kb-article blockquote strong::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%232196f3"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"/></svg>');
}

.kb-article blockquote p:last-child {
  margin-bottom: 0;
}

.kb-article blockquote p strong {
  display: inline-block;
  margin-bottom: 0;
}

.kb-article blockquote p strong::before {
  display: none;
}

/* Inline Code / UI Pills */
.kb-article code {
  font-family: ui-monospace, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  background-color: #f1f3f5;
  color: #373f47;
  padding: 2px 5px;
  border-radius: 4px;
}


/* ==========================================================
   Knowledge Base Sidebar (Sticky Container)
   ========================================================== */

.knowledgebase_sidebar {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 32px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding-right: 16px;
}

.knowledgebase_sidebar::-webkit-scrollbar {
  width: 4px;
}

.knowledgebase_sidebar::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}


/* ==========================================================
   Tier 1: Main Category Accordion
   ========================================================== */

.kb-category-group {
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}

.kb-category-group:last-child {
  border-bottom: none;
}

/* Main Category Button */
.kb-cat-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

.kb-cat-toggle:hover {
  background-color: #f1f5f9;
}

.kb-cat-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e293b;
  pointer-events: none;
}

/* Category Chevron (Bold, Darker) */
.kb-cat-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: border-color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 8px;
}

.kb-cat-toggle:hover .kb-cat-chevron {
  border-color: #1e293b;
}

.kb-cat-toggle[aria-expanded="true"] .kb-cat-chevron {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Category Body Container */
.kb-cat-body {
  display: none;
  padding-left: 6px;
  margin-top: 4px;
}

.kb-cat-toggle[aria-expanded="true"] + .kb-cat-body {
  display: block;
}


/* ==========================================================
   Tier 2: Module Accordion
   ========================================================== */

.kb-nav-group {
  margin-bottom: 4px;
}

/* Sub-Module Toggle Button */
.kb-nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 6px 10px 6px 12px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

.kb-nav-toggle:hover {
  background-color: #f8fafc;
}

.kb-nav-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  margin: 0;
  pointer-events: none;
}

.kb-nav-toggle:hover .kb-nav-title {
  color: #1e293b;
}

/* Sub-Module Chevron */
.kb-chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #94a3b8;
  border-bottom: 1.5px solid #94a3b8;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: border-color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 8px;
}

.kb-nav-toggle:hover .kb-chevron {
  border-color: #475569;
}

.kb-nav-toggle[aria-expanded="true"] .kb-chevron {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Topic Links Rail */
.kb-nav-list {
  list-style: none;
  padding: 0;
  margin: 2px 0 6px 16px;
  border-left: 2px solid #e9edf0;
  display: none;
}

.kb-nav-toggle[aria-expanded="true"] + .kb-nav-list {
  display: block;
}

.kb-nav-item {
  margin: 0;
}

/* Topic Anchor Links */
.kb-nav-link {
  display: block;
  padding: 5px 12px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.kb-nav-link:hover {
  color: #334155;
  text-decoration: none;
}

/* Active Highlighted Topic */
.kb-nav-link.active {
  color: #1976d2 !important;
  font-weight: 600;
  border-left: 2px solid #2196f3;
  border-radius: 0 6px 6px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(33, 150, 243, 0.14)), to(rgba(33, 150, 243, 0.01)));
  background: linear-gradient(90deg, rgba(33, 150, 243, 0.14) 0%, rgba(33, 150, 243, 0.01) 100%);
  text-shadow: 0 0 8px rgba(33, 150, 243, 0.45);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}


/* ==========================================================
   Mobile Navigation & Off-Canvas Drawer Styles
   ========================================================== */

.kb-mobile-toggle,
.kb-backdrop,
.kb-sidebar-mobile-header {
  display: none;
}

/* Mobile & Tablet view (<= 900px) */
@media (max-width: 900px) {
  .knowledgebase_container {
    display: block;
    width: 100%;
    margin: 20px auto;
    padding: 0;
  }

  .knowledgebase_main{
  padding: 0 15px;
  }

  .kb-article {
    padding: 0 15px;
    max-width: 100%;
  }

  /* Floating "Contents" Button */
  .kb-mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 998;
    background: #1976d2;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    -webkit-box-shadow: 0 4px 16px rgba(25, 118, 210, 0.35);
            box-shadow: 0 4px 16px rgba(25, 118, 210, 0.35);
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, background-color 0.2s ease;
    transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  }

  .kb-mobile-toggle:active {
    -webkit-transform: scale(0.96);
        -ms-transform: scale(0.96);
            transform: scale(0.96);
    background: #1565c0;
  }

  /* Dark Backdrop Overlay */
  .kb-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .kb-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  /* Off-Canvas Slide-In Drawer */
  .knowledgebase_sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    max-height: 100vh;
    background-color: #ffffff;
    z-index: 1001;
    padding: 20px 16px 24px 20px;
    -webkit-box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
            box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .knowledgebase_sidebar.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  /* Mobile Drawer Header */
  .kb-sidebar-mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9edf0;
    font-size: 16px;
    font-weight: 600;
    color: #2f3640;
  }

  .kb-close-btn {
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 4px;
  }

  .kb-close-btn:hover {
    color: #2f3640;
  }
}

@media (max-width: 600px) {
.knowledgebase_main{
padding: 0;
}
}

/* ==========================================================
   Article Top Header: Breadcrumbs & Next / Prev Controls
   ========================================================== */

.kb-article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid #edf2f7;
}

/* Breadcrumbs (Category > Module > Current Page) */
.kb-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #8a94a6;
}

.kb-breadcrumb-item {
  color: #64748b;
  font-weight: 500;
}

.kb-breadcrumb-separator {
  color: #cbd5e1;
  font-size: 11px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.kb-breadcrumb-current {
  color: #1e293b;
  font-weight: 600;
}

/* Top Next/Prev Navigation Buttons */
.kb-top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.kb-nav-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: #475569;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.kb-nav-btn:hover:not(:disabled) {
  background-color: #ffffff;
  color: #1e88e5;
  border-color: #2196f3;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.kb-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e2e8f0;
  background-color: #f8fafc;
  color: #94a3b8;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
  .kb-article-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }

  .kb-top-nav {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .kb-nav-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ==========================================================
   Optional Bottom Article Footer (Large Next / Prev Cards)
   ========================================================== */

.kb-article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e9edf0;
}

.kb-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 48%;
  background: #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.kb-footer-next {
  text-align: right;
  margin-left: auto;
}

.kb-footer-nav:hover {
  border-color: #2196f3;
  -webkit-box-shadow: 0 3px 12px rgba(33, 150, 243, 0.08);
          box-shadow: 0 3px 12px rgba(33, 150, 243, 0.08);
}

.kb-footer-nav-label {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 4px;
}

.kb-footer-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kb-footer-nav:hover .kb-footer-nav-title {
  color: #1976d2;
}

@media (max-width: 600px) {
  .kb-article-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kb-footer-nav {
    max-width: 100%;
  }
}


@media (max-width: 1100px) {

  .kb-article-footer{
  display: none;
  }
}


.kb-panel .pricingfaqscontainer{
width: 100%;
margin: 0 0 0 0;
padding: 0 0 0px 0 !important;
}

.kb-panel .pricingfaqscontainer .faqtitle{
font-size: 15px; 
padding: 10px 10px 10px 0px; 
}

.kb-panel .pricingfaqscontainer .faqanswer{
margin-bottom: 50px;
font-size: 15px;
}

.kb-panel .leftalign.shadowedbox {
padding: 0;
-webkit-box-shadow: none;
        box-shadow: none;
}

.kb-article .pricingfaqscontainer h3{
color: blue;
}

.kb-article .specialaccentcolor{
color: #1976d2 !important;
}







/* ==================== KB SEARCH BAR ==================== */
.kb-search-container {
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}

.kb-search-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 6px 10px 6px 14px;
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.04);
            box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.kb-search-bar:focus-within {
    border-color: #3b82f6;
    -webkit-box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.kb-search-icon {
    color: #94a3b8;
    margin-right: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.kb-search-input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #1e293b;
    background: transparent;
}

.kb-search-input::-webkit-input-placeholder {
    color: #94a3b8;
}

.kb-search-input::-moz-placeholder {
    color: #94a3b8;
}

.kb-search-input:-ms-input-placeholder {
    color: #94a3b8;
}

.kb-search-input::-ms-input-placeholder {
    color: #94a3b8;
}

.kb-search-input::placeholder {
    color: #94a3b8;
}

.kb-search-clear {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 8px;
    display: none;
}

.kb-search-clear:hover {
    color: #475569;
}

.kb-search-submit {
    background: #2563eb;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: background 0.15s ease;
    transition: background 0.15s ease;
}

.kb-search-submit:hover {
    background: #1d4ed8;
}

/* ==================== SEARCH MODAL & FADE / SLIDE-IN ==================== */
.kb-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 16px 20px;
    opacity: 0;
    -webkit-transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kb-modal-backdrop.active {
    opacity: 1;
}

.kb-search-modal {
    background: #ffffff;
    width: 100%;
    max-width: 680px;
    border-radius: 12px;
    -webkit-box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.25), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.25), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: calc(85vh - 60px);
    overflow: hidden;
    -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
            transform: translateY(-25px);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kb-modal-backdrop.active .kb-search-modal {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.kb-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.kb-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.kb-modal-subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    color: #64748b;
}

.kb-modal-close {
    background: transparent;
    border: none;
    font-size: 26px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.kb-modal-close:hover {
    color: #0f172a;
}

.kb-modal-body {
    padding: 14px 20px;
    overflow-y: auto;
}

/* ==================== RESULT ITEMS ==================== */
.kb-result-item {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.18s ease;
    transition: all 0.18s ease;
    text-decoration: none;
    display: block;
}

.kb-result-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.kb-result-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.kb-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.kb-result-tags {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.4;
}

.kb-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}


.kb-single-link-group .kb-root-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 600;
    color: inherit;
    border-radius: 6px;
    -webkit-transition: background-color 0.15s ease;
    transition: background-color 0.15s ease;
}

.kb-single-link-group .kb-root-link.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color, #0066cc);
}