@charset "UTF-8";
/* CSS Document */

/* Begin Article Divider  styles */

.article-full-divider {
  border: none;
  height: 1px;
  background-color: #ddd;

  /* break out of article width */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  margin-top: 40px;
  margin-bottom: 40px;
}
/* End Article Divider styles */

/* Begin Article More Questions styles */

.article-more-questions a.button,
.article-more-questions a.button:link,
.article-more-questions a.button:visited {
  background-color: #0b5f5a;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 8px 14px;   /* smaller button */
  border-radius: 4px;
  font-size: 14px;     /* smaller text */
  font-weight: 600;
  line-height: 1.2;
}

.article-more-questions a.button:hover,
.article-more-questions a.button:focus {
  background-color: #094c48;
  color: #ffffff;
  text-decoration: none;
}
/* End Article More Questions styles */

/* Begin callout styles  */ 

/* Base callout */
.article-body .callout {
  border-left: 4px solid transparent;
  border-radius: 4px;
  padding: 16px 16px 16px 48px; /* extra left padding for icon */
  margin: 20px 0;
  font-size: 15px;
  position: relative; /* enables icon positioning */
}

/* Icon handler for all callouts */
.article-body .callout::before {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 20px;
  line-height: 1;
}

/* Shared styles for all callout types */
.article-body .callout-note,
.article-body .callout-info,
.article-body .callout-warning,
.article-body .callout-success,
.article-body .callout-error {
  padding: 2px 12px;
  font-size: 15px;
}

.article-body .callout-note p,
.article-body .callout-info p,
.article-body .callout-warning p,
.article-body .callout-success p,
.article-body .callout-error p {
  margin: 5px 0;
}

.article-body .callout-note strong,
.article-body .callout-info strong,
.article-body .callout-warning strong,
.article-body .callout-success strong,
.article-body .callout-error strong {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
}

.article-body .callout-note strong::before,
.article-body .callout-info strong::before,
.article-body .callout-warning strong::before,
.article-body .callout-success strong::before,
.article-body .callout-error strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Note (light blue) */
.article-body .callout-note {
  background: #f0f6ff;
  border-left-color: #2f76da;
  color: #1a355b;
}
.article-body .callout-note strong::before {
  background-image: url("https://ritis-support.zendesk.com/hc/theming_assets/01KC4R21B8CJ5KWA47D845CE30");
}

/* Info (purple) */
.article-body .callout-info {
  background: #f5f0ff;
  border-left-color: #7a3dd6;
  color: #341b5f;
}
.article-body .callout-info strong::before {
  background-image: url("https://ritis-support.zendesk.com/hc/theming_assets/01KC4XHWYF3410XC6C70K15315");
}

/* Warning (yellow/orange) */
.article-body .callout-warning {
  background: #fff9e6;
  border-left-color: #ffb400;
  color: #604400;
}
.article-body .callout-warning strong::before {
  background-image: url("https://ritis-support.zendesk.com/hc/theming_assets/01KC4XG72AEEXZ211QDWPV8YVP");
}

/* Success (green) */
.article-body .callout-success {
  background: #f0fff5;
  border-left-color: #2e9e52;
  color: #1b4d2c;
}
.article-body .callout-success strong::before {
  background-image: url("https://ritis-support.zendesk.com/hc/theming_assets/01KC4XNMG8BGMGZ62M2SNVCVSA");
}

/* Error (red) */
.article-body .callout-error {
  background: #ffecec;
  border-left-color: #d93636;
  color: #5a0000;
}
.article-body .callout-error strong::before {
  background-image: url("https://ritis-support.zendesk.com/hc/theming_assets/01KC4XFW2813YVSYVNF9577C2M");
}

/* End callout style */

/* Begin article toc style */

.article-toc-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.article-toc {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

/* match Copenhagen sidebar style for nested links */
.article-toc-level-h3 .sidenav-item {
  padding-left: 16px;
  display: block;
}

.article-toc-level-h3 .sidenav-item:hover {
  color: $link_color; /* keep consistent */
}

/* End article toc style */

/*Begin Tools grid + cards for articles  */
.kb-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch; /* equal heights in each row */
}

@media (max-width: 900px) {
  .kb-tools {
    grid-template-columns: 1fr;
  }
}

.kb-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* header inside card */
.kb-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.kb-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.kb-link-with-icon img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  filter: brightness(1.1);
}

.kb-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #111827;
  line-height: 1.2;
}

.kb-card p {
  margin: 10px 0 14px;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.kb-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.kb-kv {
  margin: 16px 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: bold;
}

/* chips wrap to next line, labels stay single-line */
.kb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kb-chip {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  white-space: nowrap;
  background: #dbeafe;
  color: #1e3a8a;
}

.kb-chip--green {
  background: #dcfce7;
  color: #065f46;
}
/*End Tools grid + cards for articles  */

  
/* Begin Print Articles */
@media print {
  
   /* Hide the "Powered by Zendesk" footer */
  .powered-by-zendesk,
  .footer,
  footer {
    display: none !important;
  }
  
  /* Hide site chrome */
  header,
  .header,
  nav,
  .sub-nav,
  .breadcrumbs,
  .search,
  footer,
  .footer,
  .print-article,
  .article-votes,
  .article-meta,
  .article-subscribe,
  .article-comments,
  .cookie-banner {
    display: none !important;
  }

  /* Hide "Articles in this section" (Copenhagen sidebar) */
  .article-sidebar,
  .article-sidebar *,
  .section-tree,
  .section-tree-title {
    display: none !important;
  }

  /* Keep article title visible + nice */
  .article-header,
  .article-header h1,
  h1.article-title {
    display: block !important;
    font-size: 22pt !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin: 0 0 18px 0 !important;
  }

  /* Let the article body use full width */
  .article-container {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .article-body {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
  }

  /* Keep your custom cards tidy */
  .kb-tools {
    display: block !important;
  }

  .kb-card {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
    margin-bottom: 16px !important;
    box-shadow: none !important;
  }
	
/* Hide Related articles on print */
  .article-relatives,
  .related-articles {
    display: none !important;
  }
}

/* End Print Articles */

/* Begin Print Article Button Styling */
.print-article {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2563eb;        /* rich blue button */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.print-article:hover {
  background-color: #1e4ed8;        /* darker blue on hover */
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.print-article:active {
  background-color: #1e40af;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* small printer icon */
.print-article img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);  /* makes icon white */
}
/* End Print Article Button Styling */


/* table style */
.step-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

/* number column */
.step-table .num {
  width: 30px;
 padding: 0 0 0 5px;
  vertical-align: top;
  text-align: left;
  font-weight: 600;        /* bolder number */
  color: #555555;          /* medium gray */
  border-right: 5px solid #ccc; /* vertical divider */
}

/* instruction text column */
.step-table .text {
  padding-left: 16px;
  vertical-align: top;
}

/* invisible block to create space between rows */
.step-spacer {
  display: inline-block;
  width: 100%;
  height: 28px; /* adjust gap between steps */
}

/* dotted border under each row */
.step-table tr {
  border-bottom: 1px dotted #ccc;
}

/* remove dotted border from last row */
.step-table tr:last-child {
  border-bottom: none;
}

/* End table style */


