/* INFORMATION
    - Document: ClickHelp User Manual Style Sheet
    - Version:  3.0
    - Updated:  2023-06-23
    - Author:   ClickHelp
*/
/* ========================#️⃣ 
   GENERAL STYLES
   ========================#️⃣ */
/* Color setup. The second class is a hack for WebHelp */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@200;500;700&display=swap");:root,
.TopicViewer_contentContainer
{
  --type-primary: #242424;
  --type-secondary: #424242;
  --type-disabled: #bdbdbd;
  --grey10: #faf9f8;
  --grey20: #f3f2f1;
  --grey30: #edebe9;
  --background-subtle-secondary: #0000000a;
  --background-subtle-tertiary: #00000006;
  --background-subtle-accent: #0057280f;
  --stroke-default: #0000000f;
  --accent: #008f42;
  --accent-darker: #00612d;
  --accent--blue: #00568f;
  --accent--pink: #d51545;
  --system-critial: #a8201a;
  --font-code: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --font-body: "Geologica", "Segoe UI", Segoe UI, SegoeUI, Helvetica Neue,
    Helvetica, Arial, sans-serif;
}

/* Body is not using variables to bypass DX issue with creating inline styles when Delete-ing next line */
.ch-ArticleContent
{
  color: #000000e4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Geologica", "Segoe UI", Segoe UI, SegoeUI, Helvetica Neue,
    Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.5;
}

.ch-ArticleContent p
{
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 24px;
}

.ch-ArticleContent b,
.ch-ArticleContent strong
{
  font-weight: 500;
}

.ch-ArticleContent h1,
.ch-ArticleContent h2,
.ch-ArticleContent h3,
.ch-ArticleContent h4,
.ch-ArticleContent h5
{
  font-weight: 700;
  line-height: 1.3;
  margin: 1em 0;
}

.ch-ArticleContent h1
{
  font-size: 1.802rem;
}

.ch-ArticleContent h2
{
  font-size: 32px;
  line-height: 40px;
  margin: 40px 0 24px;
}

.ch-ArticleContent h3
{
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 24px;
  color: var(--type-secondary);
}

.ch-ArticleContent h4
{
  font-size: 18px;
  margin: 0 0 26px;
  color: var(--type-secondary);
}

.ch-ArticleContent h5
{
  font-size: 16px;
  margin: 0 0 24px;
  color: var(--type-secondary);
}

.ch-ArticleContent small,
.ch-ArticleContent .text_small
{
  font-size: 0.889rem;
}

/*Make first image in a paragraph or first paragraph in table cell have no margin - so that image and paragraph margins don't stack*/
.ch-ArticleContent p > img:first-child,
.ch-ArticleContent td > p:first-child
{
  margin-top: 0;
}

/* ========================#️⃣
   LINKS
   ========================#️⃣ */
.ch-ArticleContent a,
.ch-ArticleContent a:link
{
  color: var(--accent);
  text-decoration: underline;
}

.ch-ArticleContent a:hover,
.ch-ArticleContent a:visited:hover
{
  text-decoration: none;
}

.ch-ArticleContent a:visited
{
  color: var(--accent-darker);
}

.ch-ArticleContent a[target="_blank"]::after
{
  content: "";
  background: var(--accent);
  mask-image: url(/resources/Storage/!Shared/icon-new-tab--normal.png);
  -webkit-mask-image: url(/resources/Storage/!Shared/icon-new-tab--normal.png);
  -webkit-mask-position-x: 2px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  display: inline-block;
  vertical-align: unset;
  height: 14px;
  width: 14px;
  padding-left: 5px;
}

.ch-ArticleContent a[target="_blank"]:visited::after
{
  background: var(--accent-darker);
}

.ch-ArticleContent figure > a[target="_blank"]::after,
.ch-ArticleContent figure > a[target="_blank"]:visited::after
{
  display: none;
}

/* ========================#️⃣
   TABLES
   ========================#️⃣ */
.ch-ArticleContent table
{
  margin-bottom: 24px;
  font-weight: 200;
}

/*#region Fluent table */
.ch-ArticleContent .table-fluent
{
  max-width: 1160px;
  width: 100%;
  display: block;
  overflow-x: auto;
}

.ch-ArticleContent .table-fluent th,
.ch-ArticleContent .table-fluent td
{
  border-bottom: 1px solid var(--grey30);
  padding: 8px 12px;
  vertical-align: top;
}

.ch-ArticleContent .table-fluent th
{
  font-weight: 700;
  text-align: left;
  width: fit-content !important;
}

.ch-ArticleContent .table-fluent tr:hover
{
  background: var(--background-subtle-secondary);
}

.ch-ArticleContent .table-fluent tr.group-header-row
{
  font-size: 20px;
  font-weight: 700;
}

.ch-ArticleContent .group-header-row td
{
  border-bottom: none;
  padding-bottom: 0px;
}

.ch-ArticleContent .table-fluent.apitable td:nth-child(3)
{
  color: var(--type-secondary);
}

.ch-ArticleContent .table-fluent.apitable td:nth-child(1)
{
  font-weight: 700;
}

.ch-ArticleContent .table-fluent.apitable td:nth-child(2)
{
  font-family: "Consolas", monospace;
  text-transform: lowercase;
  color: var(--type-disabled);
}

.ch-ArticleContent li > table
{
  margin-top: 8px;
}

/*#endregion*/
.ch-ArticleContent .apitable
{
  max-width: 1160px;
  width: 100%;
/* Scrollable tables on smaller screens */
  display: block;
  overflow-x: auto;
}

/*#region alternating columns */
.ch-ArticleContent .alternating-cols td:nth-child(even),
.ch-ArticleContent .alternating-cols th:nth-child(even)
{
  background: var(--grey10);
}

.ch-ArticleContent .alternating-cols tr:hover > td,
.ch-ArticleContent .alternating-cols tr:hover > th
{
  background: var(--grey20);
}

/*#endregion*/
/* ========================#️⃣
   LISTS
   ========================#️⃣ */
/*#region list margins*/
.ch-ArticleContent ul,
.ch-ArticleContent ol
{
  margin-bottom: 24px;
}

/*nested lists*/
.ch-ArticleContent li ul,
.ch-ArticleContent li ol,
.ch-ArticleContent ol ol,
.ch-ArticleContent ol ol ol,
.ch-ArticleContent ol ol ol ol,
.ch-ArticleContent ol ol ol ol ol,
.ch-ArticleContent ul ul,
.ch-ArticleContent ul ul ul,
.ch-ArticleContent ul ul ul ul,
.ch-ArticleContent ul ul ul ul ul
{
  margin-bottom: 0;
}

.ch-ArticleContent ul li,
.ch-ArticleContent ol li
{
  margin-bottom: 8px;
}

/*#endregion*/
/*#region Nested ordered list styles */
.ch-ArticleContent ol ol
{
  list-style-type: lower-alpha;
}

.ch-ArticleContent ol ol ol
{
  list-style-type: lower-roman;
}

.ch-ArticleContent ol ol ol ol
{
  list-style-type: decimal;
}

.ch-ArticleContent ol ol ol ol ol
{
  list-style-type: lower-alpha;
}

.ch-ArticleContent ol ol ol ol ol ol
{
  list-style-type: lower-roman;
}

.ch-ArticleContent ol ol ol ol ol ol ol
{
  list-style-type: decimal;
}

.ch-ArticleContent ol ol ol ol ol ol ol ol
{
  list-style-type: lower-alpha;
}

.ch-ArticleContent ol ol ol ol ol ol ol ol ol
{
  list-style-type: lower-roman;
}

.ch-ArticleContent ol ol ol ol ol ol ol ol ol ol
{
  list-style-type: decimal;
}

/*#endregion*/
/*#region Nested unordered list styles */
.ch-ArticleContent ul ul
{
  list-style-type: circle;
}

.ch-ArticleContent ul ul ul
{
  list-style-type: square;
}

.ch-ArticleContent ul ul ul ul
{
  list-style-type: disc;
}

.ch-ArticleContent ul ul ul ul ul
{
  list-style-type: circle;
}

.ch-ArticleContent ul ul ul ul ul ul
{
  list-style-type: square;
}

.ch-ArticleContent ul ul ul ul ul ul ul
{
  list-style-type: disc;
}

.ch-ArticleContent ul ul ul ul ul ul ul ul
{
  list-style-type: circle;
}

.ch-ArticleContent ul ul ul ul ul ul ul ul ul
{
  list-style-type: square;
}

.ch-ArticleContent ul ul ul ul ul ul ul ul ul ul
{
  list-style-type: disc;
}

.ch-ArticleContent .list-numeric
{
  list-style-type: decimal;
}

/*#endregion*/
/* ========================#️⃣ 
   VARIOUS ELEMENTS
   ========================#️⃣ */
/*#region Simplified Infoboxes*/
/* Colors require fallback non-transparent alternatives in printeddoc.css */
.ch-ArticleContent .infobox-simple
{
  background: rgba(0, 0, 0, 0.0241);
  border-radius: 4px;
  border-left: 4px solid rgba(0, 0, 0, 0.1622);
  width: 100%;
}

.ch-ArticleContent .infobox-simple td
{
  padding: 12px 16px;
}

.ch-ArticleContent .infobox--note
{
  background: #e0ecf6;
  border-left-color: #005fb8;
}

.ch-ArticleContent .infobox--important
{
  background: #fff4ce;
  border-left-color: #b95e04;
}

.ch-ArticleContent .infobox--warning
{
  background: #fee3d9;
  border-left-color: #c42b1c;
}

.ch-ArticleContent .infobox--tip
{
  background: #dff6dd;
  border-left-color: #0f7b0f;
}

.ch-ArticleContent .infobox--example
{
  background: #f9f9f9;
  border-left-color: #8d8d8d;
}

/*#endregion*/
/*#region Details */
.ch-ArticleContent details
{
  width: clamp(480px, 100%, 860px);
  margin-top: 16px;
}

.ch-ArticleContent details summary
{
  background: var(--background-subtle-tertiary);
  padding: 4px 8px;
  border: 2px solid var(--background-subtle-secondary);
  border-radius: 4px;
  font-weight: 500;
}

.ch-ArticleContent details summary::marker
{
  color: var(--type-secondary);
}

/*#endregion*/
/*#region Figure*/
.ch-ArticleContent figure
{
  width: min-content;
  background: rgb(250, 249, 248);
  padding: 16px;
  border-radius: 3px;
  margin: 0;
  border: 2px solid #edebe9;
}

.ch-ArticleContent figure img.screenshot-effects
{
  margin-top: 0;
}

.ch-ArticleContent figcaption
{
  font-size: 0.9em;
  font-style: italic;
  text-align: center;
}

.ch-ArticleContent figure
{
  margin-top: 16px;
}

/*#endregion*/
/*#region Inline Code, Input and such*/
.ch-ArticleContent .inline-code,
.ch-ArticleContent .user-input,
.ch-ArticleContent .keybind,
.ch-ArticleContent code
{
  font-family: var(--font-code);
  padding: 3px 4px;
  font-size: 90%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.ch-ArticleContent .inline-code b,
.ch-ArticleContent .user-input b,
.ch-ArticleContent .keybind b,
.ch-ArticleContent code b
{
  font-weight: 700;
}

.ch-ArticleContent .inline-code
{
  white-space: pre-wrap;
  background: #edf7f2;
  color: var(--accent, #008f42);
}

.ch-ArticleContent .user-input
{
  white-space: pre-wrap;
  background: #edf3f7;
  color: var(--accent--blue, #00568f);
}

.ch-ArticleContent .keybind
{
  white-space: pre-wrap;
  background: #fdf1f4;
  color: var(--accent--pink, #d51545);
}

/*#endregion*/
/*#region Tabs*/
.ch-ArticleContent .CHTabs_tabCaptionSelected,
.ch-ArticleContent .CHTabs_tabCaptionSelected:hover
{
  font-weight: 500 !important;
}

.ch-ArticleContent .CHTabs_tabCaption.CHTabs_tabCaptionSelected,
.ch-ArticleContent .CHTabs_tabCaptionSelected:hover
{
  color: #008f42;
  background-color: #dae8df;
}

.ch-ArticleContent .CHTabs_tabCaption:hover
{
  color: #008f42;
  background-color: #e7ede8;
}

/*#endregion*/
/*#region Mini-TOC*/
.ch-ArticleContent .minitoc-fluent
{
  width: fit-content;
  min-width: 200px;
  background: var(--background-subtle-tertiary);
  border-radius: 5px;
  padding: 8px 12px 8px 40px;
}

.ch-ArticleContent .minitoc-fluent > li
{
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 3px;
}

.ch-ArticleContent .minitoc-fluent > li > a
{
  text-decoration: none;
  width: 100%;
  display: flex;
  padding: 6px 8px;
  color: var(--type-primary);
}

.ch-ArticleContent .minitoc-fluent > li:hover
{
  background: rgba(0, 86, 40, 0.06);
}

.ch-ArticleContent .minitoc-fluent > li > a:hover
{
  color: var(--accent);
}

.ch-ArticleContent .minitoc-fluent::before
{
  content: "In this topic";
  color: var(--type-secondary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin: -20px;
}

.ch-ArticleContent .minitoc-fluent > li::marker
{
  color: var(--type-secondary);
}

/*#endregion*/
.ch-ArticleContent .screenshot-effects
{
  border-radius: 5px;
  border: 2px solid var(--background-subtle-secondary);
}

.ch-ArticleContent .block-quote
{
  padding: 8px;
  background: var(--grey10);
  border-radius: 2px;
  font-style: italic;
}

.ch-ArticleContent hr
{
  border: 1px solid #edebe9;
}

.ch-ArticleContent video
{
  margin: 1rem 0 0;
  border-radius: 5px;
  border: 2px solid var(--background-subtle-secondary);
}

/* What's new user-suggested item */
.ch-ArticleContent .release-notes-user-item
{
  list-style-image: url(/resources/Storage/ClickHelp%20Product%20Documentation_Files/Images/community-check.png);
}

/*#region beautiful code samples*/
.ch-ArticleContent table.CHCodeSample_container.notranslate
{
  border-radius: 8px;
  border: none;
  background: var(--background-subtle-secondary);
}

.ch-ArticleContent td.CHCodeSample_header
{
  background: none;
  border: none;
}

.ch-ArticleContent td.CHCodeSample_code.notranslate.cm-s-default
{
  background: none;
  padding-top: 0;
}

.ch-ArticleContent .CHCodeSample_copyCode.nonPrintable,
.ch-ArticleContent .CHCodeSample_copyCode.nonPrintable:hover
{
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACJSURBVHgB7ZQrDoAwEEQHgsKCRXMHNBrLSTgDWI6B5g6cBmw106Sq6S8U0QRe8szuZrJmF0idzNHr6EhLS/+kOz0QyEIrR7+mq17MYd4MKuyCHblhGRI4IAJTYIUIcrzMH/j1QAH/6Z16sTAMynNr6UYnR6hQM156OtMGD7C9r04FN47Ngt9WWtwdzRDDXJMb6QAAAABJRU5ErkJggg==")
    no-repeat center center;
  margin: 4px;
  border-radius: 4px;
  border: none;
  padding: 0;
}

.ch-ArticleContent .CHCodeSample_copyCode.nonPrintable:hover
{
  background-color: var(--background-subtle-secondary);
}

.ch-ArticleContent .CHCodeSample_copyCode a,
.ch-ArticleContent .CHCodeSample_copyCode a:hover
{
  color: transparent !important;
  width: 42px;
  height: 42px;
  display: flex;
}

.ch-ArticleContent tr.CHCodeSample_tr1
{
  height: 50px;
}

.ch-ArticleContent .CHCodeSample_langName.notranslate
{
  color: var(--type-secondary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

/*#endregion*/
/* ========================#️⃣ 
   UI & LAYOUT
   ========================#️⃣ */
/*#region Header */
.ch-ArticleContent .header-wrapper
{
  display: flex;
  flex-direction: column;
  align-content: stretch;
  justify-content: flex-start;
  align-items: stretch;
  background: var(--background-subtle-tertiary);
  border-bottom: 1px solid var(--stroke-default);
  padding: 8px 16px;
  margin-bottom: 24px;
}

.ch-ArticleContent .header-panel
{
  color: var(--type-disabled);
  font-size: 12px;
}

.ch-ArticleContent .header-panel p
{
  margin: 0;
}

.ch-ArticleContent .header-panel a
{
  color: #008f42cc;
}

/*#endregion*/
/*#region Footer */
.ch-ArticleContent .footer
{
  background: var(--background-subtle-tertiary);
  border-top: var(--stroke-default);
  font-size: 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 32px 16px;
  margin-top: 16px;
/* margin-bottom: 32px; */
}

.ch-ArticleContent .footer > .right-side
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
}

.ch-ArticleContent .footer > .right-side > div,
.ch-ArticleContent .footer > .left-side > div
{
  padding: 4px 12px;
}

.ch-ArticleContent .footer a,
.ch-ArticleContent .footer a:hover
{
  color: var(--type-primary, #000000e4);
}

.ch-ArticleContent .footer a
{
  text-decoration: none;
}

.ch-ArticleContent .footer a:hover
{
  text-decoration: underline;
}

.ch-ArticleContent .footer a::after
{
  display: none;
}

/*#endregion*/
/*#region Breadcrumbs */
.ch-ArticleContent .fluent-breadcrumbs
{
  font-size: 14px;
  margin: 4px 0 12px;
}

.ch-ArticleContent .fluent-breadcrumbs .CHBreadcrumb_separator
{
  padding: 0 8px;
}

.ch-ArticleContent .fluent-breadcrumbs .CHBreadcrumb_item
{
  color: var(--type-secondary);
}

/*#endregion*/
/*#region Next/Previous */
.ch-ArticleContent .next-prev-container
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  margin: 32px 0 0;
}

.ch-ArticleContent .next-prev-container > a:first-child
{
  margin-right: 8px;
}

.ch-ArticleContent a.fluent-previous,
.ch-ArticleContent a.fluent-next
{
  background: var(--background-subtle-tertiary);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 256px;
}

.ch-ArticleContent a.fluent-previous:hover,
.ch-ArticleContent a.fluent-next:hover
{
  background: var(--background-subtle-accent);
}

.ch-ArticleContent a.fluent-previous::before
{
  content: "Previous topic\a";
  white-space: pre-wrap;
  font-size: 14px;
  color: var(--type-secondary);
}

.ch-ArticleContent a.fluent-next::before
{
  content: "Next topic\a";
  white-space: pre-wrap;
  font-size: 14px;
  color: var(--type-secondary);
}

.ch-ArticleContent a.fluent-next.tutorial::before
{
  content: "Next step\a";
  white-space: pre-wrap;
  font-size: 14px;
  color: var(--type-secondary);
}

/*#endregion*/
/*#region Scroll to top button */
.ch-ArticleContent #to-top-btn
{
  display: none;
  position: fixed;
  bottom: 50%;
  right: 32px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--grey10);
  color: var(--type-primary);
  cursor: pointer;
  padding: 15px;
  border-radius: 8px;
  opacity: 0.5;
  transition: background-color 0.2s, opacity 0.2s;
}

.ch-ArticleContent #to-top-btn:hover
{
  background-color: var(--grey20);
  opacity: 1;
  transition: background-color 0.2s, opacity 0.2s;
}

.ch-ArticleContent #to-top-btn div
{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.ch-ArticleContent #to-top-btn span
{
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  font-family: "Geologica", "Segoe UI", Segoe UI, SegoeUI, Helvetica Neue,
    Helvetica, Arial, sans-serif;
}

@media (max-width: 860px)
{
  .ch-ArticleContent #to-top-btn
  {
    display: none !important;
  }
}

/*#endregion*/
/*#region Width limiters*/
.ch-ArticleContent .wl-860,
.ch-ArticleContent img.screenshot-effects,
.ch-ArticleContent .CHCodeSample_container,
.ch-ArticleContent .CHCodeSample_codeSimple,
.ch-ArticleContent .infoBoxFluent,
.ch-ArticleContent .infobox-simple,
.ch-ArticleContent p,
.ch-ArticleContent .CHTabs_container,
.ch-ArticleContent .CHTabs_tabContentContainer,
.ch-ArticleContent video
{
  max-width: 860px;
}

.ch-ArticleContent ul,
.ch-ArticleContent ol,
.ch-ArticleContent li img.screenshot-effects,
.ch-ArticleContent li .infobox-simple
{
  max-width: 820px;
}

.ch-ArticleContent .WebHelp_containerMobile img.screenshot-effects
{
  max-width: 100%;
}

.ch-ArticleContent .CHTabs_tabContentContainer img.screenshot-effects
{
  width: 100%;
}

/*#endregion*/
/* ========================#️⃣ 
   API
   ========================#️⃣ */
/*#region API */
.ch-ArticleContent .api-method-type
{
  padding: 0 6px 1px 6px;
  border-radius: 3px;
}

.ch-ArticleContent .api-method-type.type--get
{
  background: #edf7f2;
  color: #008f42;
  border: 1px solid #008f42;
}

.ch-ArticleContent .api-method-type.type--post
{
  background: #ca6e001a;
  color: #ca6e00;
  border: 1px solid #ca6e00;
}

.ch-ArticleContent .api-method-type.type--patch
{
  background: #156d9d1a;
  color: #156d9d;
  border: 1px solid #156d9d;
}

.ch-ArticleContent .api-method-type.type--head
{
  background: #4747471a;
  color: #474747;
  border: 1px solid #474747;
}

.ch-ArticleContent .api-method-type.type--del
{
  background: #ca2d001a;
  color: #ca2d00;
  border: 1px solid #ca2d00;
}

.ch-ArticleContent .api-endpoint
{
  padding: 8px 16px;
  background: #0000000a;
  border: 1px solid #0000000f;
  border-radius: 4px;
  font-family: var(--font-code);
  color: var(--type-secondary);
}

/*#endregion#*/
/* ========================#️⃣ 
TO BE ARCHIVED
Items that are still in use but are being replaced
========================#️⃣ */
/*#region New infoboxes Fluent Design style*/
/* Common infoboxes style */
.ch-ArticleContent .infoBoxFluent
{
  width: 100%;
  border-radius: 3px;
  padding: 8px;
  margin: 16px 0 0;
}

/* Overrides for infoboxes positioned inside other elements */
.ch-ArticleContent .table-fluent .infoBoxFluent td
{
  padding: 0;
  font-weight: 200 !important;
  border: none;
}

.ch-ArticleContent li .infoBoxFluent
{
  margin-bottom: 12px;
  margin-top: 4px;
}

/* Override end */
.ch-ArticleContent .iconCell
{
  width: 32px;
}

.ch-ArticleContent .iconCell .icon
{
  max-width: 16px;
  max-height: 16px;
  padding: 8px;
  vertical-align: middle;
}

/* Infobox borders */
.ch-ArticleContent .infoBoxFluent.note,
.ch-ArticleContent .infoBoxFluent.important,
.ch-ArticleContent .infoBoxFluent.warning,
.ch-ArticleContent .infoBoxFluent.tip,
.ch-ArticleContent .infoBoxFluent.example
{
  border: 1px solid rgba(0, 0, 0, 0.0578);
}

/* Infoboxe backgrounds */
.ch-ArticleContent .infoBoxFluent.example
{
  background: rgba(246, 246, 246, 0.5);
}

.ch-ArticleContent .infoBoxFluent.note
{
  background: #e0f2ff;
}

.ch-ArticleContent .infoBoxFluent.important
{
  background: #fff4ce;
}

.ch-ArticleContent .infoBoxFluent.warning
{
  background: #fed9cc;
}

.ch-ArticleContent .infoBoxFluent.tip
{
  background: #d2f9d2;
}

/* Type and Content Cell */
.ch-ArticleContent .typeCell,
.ch-ArticleContent .contentCell
{
  padding: 0 8px;
}

.ch-ArticleContent .typeCell
{
  color: #2c3e50;
  padding-left: 0;
  font-weight: 500;
}

/* Type text coloring */
.ch-ArticleContent .typeCell
{
  color: #1b1b1b;
}

/* Fixing margins */
.ch-ArticleContent table.infoBoxFluent td > p:first-child
{
  margin-top: 0;
}

.ch-ArticleContent table.infoBoxFluent td > ul
{
  margin-top: 0;
}

/*#endregion*/