/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ------------------------------------ */
  /* Brand Colors - Your Custom Theme */
  /* ------------------------------------ */

  /* Your main brand color */
  --brand-bg: #1a2e60;
  /* Your main brand text color */
  --brand-text: #355ac0;
  /* The color of text when it sits upon your brands color */
  --text-onbrand: #fff;
  /* The color of primary text within the theme - e.g., h1, h2, h3  */
  --text-primary: #282a30;
  /* The color of secondary text within the theme - e.g., p, a, li */
  --text-secondary: #3c4149;
  /* The color of tertiary text within the theme - e.g., footer, small text */
  --text-tertiary: #6f6e77;

  /* ------------------------------------ */
  /* Structural Variables */
  /* ------------------------------------ */

  --font-family-primary: 'Inter', system-ui, "Segoe UI", "Roboto", "Helvetica", "Arial",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  --font-family-headline: 'Inter', system-ui, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";

  --font-family-nav: 'Inter', system-ui, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";

  --bg-primary: var(--brand-bg);
  --bg-inverse: #fff;
  --bg-inverse-hover: #f9f8f9;
  --bg-dark: #282a30;
  --text-brand: var(--brand-text);
  --text-inverse: #fff;
  --text-dark: #282a30;

  --text-placeholder: rgba(26, 46, 96, 0.4);
  --text-inverse-placeholder: rgba(255, 255, 255, 0.8);
  --text-white: #fff;

  --border-primary: #e9e8ea;
  --border-primary-hover: var(--brand-text);
  --border-selected: var(--brand-text);
  --border-brand: var(--brand-text);
  --border-inverse: #fff;

  --system-text: #1570ef;
  --system-border: #b2ddff;
  --system-bg: #eff8ff;

  --system-blue-bg: #eff8ff;
  --system-blue-text: #1849a9;
  --system-blue-border: #528bff;
  --system-blue-bg-dm: #102a56;
  --system-blue-text-dm: #53b1fd;
  --system-blue-border-dm: #1570ef;

  --system-yellow-bg: #fefbe8;
  --system-yellow-text: #ffc82c;
  --system-yellow-border: #ffc82c;
  --system-yellow-bg-dm: rgba(251, 191, 36, 0.1);
  --system-yellow-text-dm: #ffc82c;
  --system-yellow-border-dm: #ffc82c;

  --system-green-bg: #f0fdf4;
  --system-green-text: #166534;
  --system-green-border: #22c55e;

  --system-red-bg: #fef2f2;
  --system-red-text: #dc2626;
  --system-red-border: #ef4444;

  --width-primary: 960px;

  --font-settings: "cv01", "ss03";
  --font-variations: "opsz" auto;
  --font-xs: 13px;
  --font-s: 14px;
  --font-md: 15px;
  --font-base: 16px;
  --font-lg: 18px;
  --font-xl: 22px;
  --font-hero: 56px;
  --font-h1: 32px;

  --radius-base: 8px;

  --spacing-xxl: 7rem;
  --spacing-xl: 3.25rem;
  --spacing-l: 2.25rem;
  --spacing-m: 1.75rem;
  --spacing-s: 1.25rem;
  --spacing-xs: 1rem;
  --spacing-xxs: 0.875rem;
  --spacing-xxxs: 0.6rem;

  --opacity-dimmed: 0.4;

  --lineheight-base: 1.3;

  --shadow-base: rgba(26, 46, 96, 0.04) 0px 1px 3px 0px,
    rgba(26, 46, 96, 0.06) 0px 1px 2px 0px;

  --transition-base: all 0.2s ease-in-out;

  --zindex-top: 100000;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-base);
  line-height: var(--lineheight-base);
  background: #fafafa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  font-feature-settings: var(--font-settings);
  font-variation-settings: var(--font-variations);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: var(--text-brand);
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

a:hover,
a:focus {
  color: var(--text-primary);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px var(--bg-inverse),
    0 0 0 3px var(--border-selected) !important;
  border-radius: var(--radius-base);
  text-decoration: none;
  border-color: transparent !important;
}

a:active,
button:active {
  box-shadow: none;
}

input,
button,
select,
textarea {
  font-family: var(--font-family-primary);
  font-size: var(--font-base);
  line-height: 1.3;
}

select {
  width: 220px;
  border: 1px solid var(--border-primary);
  background-color: var(--bg-inverse);
  color: var(--text-primary);
}

.container-fluid {
  width: 100%;
  max-width: var(--width-primary);
  padding-left: 0;
  padding-right: 0;
}

#mainNav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--zindex-top);
  background: var(--bg-primary);
}

.navbar {
  margin: 0 !important;
}

.navbar .navbar-inner {
  background: none;
  padding: var(--spacing-xxs);
  box-shadow: none;
}

.navbar .brand {
  font-weight: 500;
  color: var(--text-onbrand);
  font-family: var(--font-family-primary);
}

a.brand img {
  width: 200px;
  height: auto;
}

.navbar .nav {
  display: flex;
  gap: var(--spacing-s);
}

.navbar .nav a {
  font-family: var(--font-family-nav);
  font-size: var(--font-base);
  font-weight: 500;
  text-transform: capitalize;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.navbar .nav > li > a {
  padding: 11px 0;
}

.navbar .nav li a {
  color: var(--text-onbrand);
}

.navbar .nav .active a,
.navbar .nav .active a:hover,
.navbar .nav .active a:focus {
  color: var(--text-onbrand);
}

.navbar .nav .active a:before {
  content: "";
  position: absolute;
  left: calc(50% - 2.5px);
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-onbrand);
}

.navbar .nav li a:hover,
.navbar .nav li a:focus {
  opacity: 0.8;
  color: var(--text-onbrand);
}

.navbar [class^="icon-"],
[class*=" icon-"],
.featherlight-close-icon {
  color: var(--text-onbrand);
  opacity: var(--opacity-dimmed);
}

.navbar .nav .active .caret {
  display: none;
}

.navbar .btn-navbar {
  margin: 0;
  color: var(--text-onbrand);
  top: 12px;
}

.navbar .btn-navbar .icon-bar {
  background-color: var(--text-onbrand);
  box-shadow: 0;
  border-radius: 0;
  opacity: 1;
}

.icon-private-lg {
  opacity: var(--opacity-dimmed);
}

#docsSearch {
  background: #1a2e60;
  padding: var(--spacing-m) var(--spacing-s) 0;
  border: 0;
  margin-bottom: 0;
}

#docsSearch + #contentArea {
  margin-top: var(--spacing-m);
}

#docsSearch h1 {
  font-weight: 700;
  color: var(--text-onbrand);
  width: 100%;
  max-width: var(--width-primary);
  margin: 0 auto;
  text-align: left;
  font-size: var(--font-hero);
  font-family: var(--font-family-headline);
  line-height: 1.2;
}

#docsSearch #searchBar {
  width: 100%;
  max-width: var(--width-primary);
  margin: 0 auto;
  padding: var(--spacing-m) 0 var(--spacing-l);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-xxs);
}

#docsSearch #searchBar .search-query {
  background-color: var(--bg-inverse);
  border: 0;
  box-shadow: var(--shadow-base);
  color: var(--text-dark);
  height: 60px;
  border-radius: var(--radius-base);
  font-size: var(--font-lg);
  font-family: var(--font-family-primary);
}

#docsSearch #searchBar .search-query::placeholder {
  color: var(--text-placeholder);
}

#docsSearch #searchBar button {
  background: var(--bg-primary);
  border: 0;
  box-shadow: none;
  border-radius: calc(var(--radius-base) - 2px);
  color: var(--text-onbrand);
  font-size: var(--font-s);
  font-family: var(--font-family-primary);
  text-shadow: none;
  height: calc(60px - 20px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-xs);
  position: relative;
  top: inherit;
  left: inherit;
  right: 10px;
  font-weight: 600;
  position: absolute;
}

#contentArea {
  padding-top: 0;
}

#contentArea .row-fluid {
  display: flex;
  flex-direction: column-reverse;
}

#main-content {
  background: none;
  margin: 0;
  padding: 0;
  width: 100%;
  float: none;
}

#sidebar {
  margin: 0;
  width: 100%;
  position: relative;
  display: flex;
  margin-bottom: var(--spacing-s);
  align-items: center;
  gap: 10px;
}

#sidebar h3 {
  display: none;
}

#sidebar .nav-list {
  display: none;
}

#sidebar:before {
  pointer-events: none;
  user-select: none;
  position: absolute;
  content: "";
  width: 100vw;
  background: var(--bg-primary);
  height: 90px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 1;
}

#sidebar #searchBar .search-query {
  background-color: var(--bg-inverse);
  border: 1px solid var(--border-primary);
  box-shadow: none;
  color: var(--text-dark);
  height: 60px;
  border-radius: var(--radius-base);
  font-size: var(--font-lg);
  font-family: var(--font-family-primary);
  padding: 0 var(--spacing-xl) 0 var(--spacing-s);
}

#searchBar.sm {
  position: relative;
}

#searchBar.sm button {
  height: 60px;
  right: var(--spacing-s);
}

#searchBar {
  z-index: 100;
}

.collection-category .category-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-s);
  margin-bottom: var(--spacing-l);
}

:not(.collection-category) .category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-s);
  margin-bottom: var(--spacing-l);
}

.category-list.two-col .category {
  width: auto;
}

.category-list .category {
  margin: 0;
  box-shadow: var(--shadow-base);
  border-radius: var(--radius-base);
  border: 1px solid var(--border-primary);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: calc(var(--spacing-xxs) / 2);
  transition: var(--transition-base);
  position: relative;
  padding: var(--spacing-s) var(--spacing-s) var(--spacing-m);
  background: var(--bg-inverse);
  width: auto;
}

.category-list .category:before {
  content: "";
  left: 45px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  position: absolute;
  color: var(--text-secondary);
  opacity: var(--opacity-dimmed);
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA0OCA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgNkgxNkMxOC4xMjE3IDYgMjAuMTU2NiA2Ljg0Mjg1IDIxLjY1NjkgOC4zNDMxNUMyMy4xNTcxIDkuODQzNDQgMjQgMTEuODc4MyAyNCAxNFY0MkMyNCA0MC40MDg3IDIzLjM2NzkgMzguODgyNiAyMi4yNDI2IDM3Ljc1NzRDMjEuMTE3NCAzNi42MzIxIDE5LjU5MTMgMzYgMTggMzZINFY2WiIgc3Ryb2tlPSIjMzU1YWMwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNDQgNkgzMkMyOS44NzgzIDYgMjcuODQzNCA2Ljg0Mjg1IDI2LjM0MzEgOC4zNDMxNUMyNC44NDI5IDkuODQzNDQgMjQgMTEuODc4MyAyNCAxNFY0MkMyNCA0MC40MDg3IDI0LjYzMjEgMzguODgyNiAyNS43NTc0IDM3Ljc1NzRDMjYuODgyNiAzNi42MzIxIDI4LjQwODcgMzYgMzAgMzZINDRWNloiIHN0cm9rZT0iIzM1NWFjMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

.category-list .category:hover {
  border-color: var(--border-primary-hover);
  background: var(--bg-inverse);
}

.category-list .category:hover h3 {
  color: var(--text-brand);
}

.category-list .category:hover .article-count {
  color: var(--text-tertiary);
}

.collection-category h2 a {
  color: var(--text-primary);
  font-size: var(--font-xl);
  font-weight: 500;
  font-family: var(--font-family-primary);
}

.category-list h3 {
  margin: 0;
  padding: 0 0 0 var(--spacing-xxl);
  text-align: left;
  font-size: var(--font-base);
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-family-primary);
  transition: var(--transition-base);
}

.category-list .category p {
  margin: 0;
  padding: 0 0 0 var(--spacing-xxl);
  text-align: left;
  font-size: var(--font-base);
  color: var(--text-secondary);
  font-weight: 400;
  font-family: var(--font-family-primary);
}

.category-list .category .article-count {
  margin: calc(var(--spacing-xxs) / 2) 0 0;
  padding: 0 0 0 var(--spacing-xxl);
  text-align: left;
  font-size: var(--font-s);
  color: var(--text-tertiary);
  font-family: var(--font-family-primary);
  transition: var(--transition-base);
}

.contentWrapper {
  border: 0;
  border-radius: 0;
  padding: var(--spacing-s) 0;
  background: transparent;
  min-height: auto;
}

.contentWrapper > .appMessage {
  top: 6px;
  font-size: var(--font-xs) !important;
  border-radius: var(--radius-base) var(--radius-base) 0 0;
  background: var(--system-blue-bg);
  color: var(--system-blue-text);
  border-bottom: 0;
  padding: var(--spacing-xxxs);
  font-family: var(--font-family-primary);
}

.contentWrapper > .appMessage em {
  font-size: var(--font-xs);
  font-weight: 500;
  background: var(--system-blue-border);
  color: var(--text-white);
  text-transform: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(var(--radius-base) - 4px);
  padding: 0 var(--spacing-xxxs);
  height: 20px;
  font-family: var(--font-family-primary);
}

.contentWrapper h1 + ul.articleList {
  margin-top: var(--spacing-l);
}

#categoryHead h1 {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-l);
  color: var(--text-primary);
  font-family: var(--font-family-primary);
}

#categoryHead .sort {
  top: 0;
}

[class^="icon-"],
[class*=" icon-"],
.featherlight-close-icon {
  color: var(--text-secondary);
}

.icon-search {
  color: var(--text-onbrand);
}

.articleList {
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  width: 100;
  margin: 0;
  background: transparent;
}

.articleList li {
  margin: 0;
  padding: 0;
}

.articleList a {
  margin: 0;
  font-size: var(--font-base);
  font-family: var(--font-family-primary);
  padding: var(--spacing-xs) 0;
  border-radius: 0;
  display: flex;
  width: 100%;
  transition: var(--transition-base);
  position: relative;
  border-bottom: 1px solid var(--border-primary);
}

.articleList a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 24px;
  transform: rotate(45deg);
  width: 6px;
  height: 2px;
  background: var(--text-brand);
}
.articleList a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 27px;
  transform: rotate(-45deg);
  width: 6px;
  height: 2px;
  background: var(--text-brand);
}

.articleList a:hover {
  text-decoration: none;
  color: var(--text-brand);
  background: transparent;
}

.articleList a i {
  display: none;
}

.articleList a:hover span {
  text-decoration: none;
}

#serp .articlesFound strong {
  color: var(--text-primary);
  font-family: var(--font-family-primary);
}

.contentWrapper h1 {
  font-size: var(--font-xl);
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-family-primary);
}

.contentWrapper h1 strong {
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-family-primary);
}

#serp .articlesFound,
#serp .nada {
  font-size: var(--font-s);
  color: var(--text-tertiary);
  font-family: var(--font-family-primary);
  margin: 0 0 var(--spacing-l);
}

#serp .articleList > li {
  margin: 0;
  padding: 0;
  transition: var(--transition-base);
  border-radius: var(--radius-base);
}

#serp .articleList > li:hover {
  background: var(--bg-inverse-hover);
}

#serp .articleList > li a {
  font-size: var(--font-base);
  font-weight: 500;
  font-family: var(--font-family-primary);
}

#serp .articleList > li p {
  margin: 0 0 var(--spacing-xxxs);
  color: var(--text-tertiary);
  font-family: var(--font-family-primary);
  padding: 0 var(--spacing-xxs) var(--spacing-xxs);
}

#serp-dd {
  top: 92px;
  border-radius: var(--radius-base);
  border: 0;
  border: 1px solid var(--border-primary);
  background: var(--bg-inverse);
  box-shadow: var(--shadow-base);
}

#serp-dd.sb {
  width: 100%;
  top: 64px;
  border-radius: var(--radius-base);
}

#serp-dd .result > li.active {
  background: var(--bg-inverse-hover);
}

#serp-dd .result > li.private a {
  color: var(--text-tertiary);
}

#serp-dd .result a:hover {
  color: var(--text-brand);
  background: var(--bg-inverse-hover);
}

#serp-dd .result a:hover,
#serp-dd .result > li.active,
#fullArticle strong a,
#fullArticle a strong,
.collection a,
.contentWrapper a,
.most-pop-articles .popArticles a,
.most-pop-articles .popArticles a:hover span {
  color: var(--text-brand);
}

#serp-dd .noResults {
  color: var(--text-tertiary);
  font-family: var(--font-family-primary);
}

/* error page */

#generic {
  padding: var(--spacing-s);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-inverse);
}

#generic #errorContainer {
  padding: var(--spacing-m) var(--spacing-xl);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-base);
  background: var(--bg-inverse);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxxs);
  box-shadow: var(--shadow-base);
}

#generic #errorContainer h1 {
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-family-primary);
  margin: 0;
  line-height: inherit;
}

#errorContainer p {
  line-height: inherit;
  font-size: var(--font-base);
  font-family: var(--font-family-primary);
  margin: 0;
  color: var(--text-tertiary);
}

#errorContainer .icon-error {
  display: none;
}

/* articles */

#fullArticle {
  position: relative;
  font-size: var(--font-base);
  font-family: var(--font-family-primary);
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
  border-radius: var(--radius-base);
  padding-bottom: var(--spacing-l);
}

#fullArticle.withPreview {
  padding-top: 0;
}

#fullArticle::before {
  content: "";
  position: absolute;
  left: calc(0px - 160px);
  top: -50px;
  bottom: -28px;
  right: calc(0px - 160px);
  box-shadow: 0 0 0 1px var(--border-primary);
  border-radius: var(--radius-base);
  z-index: 1;
  pointer-events: none;
}

#fullArticle .title {
  font-size: calc(var(--font-h1) * 1.4);
  font-family: var(--font-family-headline);
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--spacing-l) 0;
}

#fullArticle .printArticle {
  display: none;
}

#fullArticle .admin-edit {
  display: inline-flex;
  margin: 0 0 var(--spacing-m);
  color: var(--system-text);
  background: var(--system-bg);
  box-shadow: 0 0 0 1px var(--system-border);
  font-family: var(--font-family-primary);
}

.btn {
  text-shadow: none;
  color: var(--text-primary);
  background: var(--bg-inverse);
  border: 0;
  box-shadow: 0 0 0 1px var(--border-primary);
  display: inline-flex;
  height: 40px;
  padding: 0 var(--spacing-xs);
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  font-size: var(--font-xs);
  font-weight: 500;
  font-family: var(--font-family-primary);
  border-radius: var(--radius-base);
}

.btn:hover {
  background: var(--bg-inverse-hover);
}

#fullArticle h1,
#fullArticle h2,
#fullArticle h3,
#fullArticle h4,
#fullArticle h5 {
  margin-bottom: var(--spacing-s);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-family-primary);
}

#fullArticle p,
#fullArticle ul,
#fullArticle ol,
#fullArticle li,
#fullArticle div,
#fullArticle blockquote,
#fullArticle dd,
#fullArticle table {
  font-size: var(--font-base);
  font-family: var(--font-family-primary);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-m);
}

#fullArticle li {
  margin-bottom: var(--spacing-xxxs);
}

#fullArticle h2 {
  font-size: var(--font-xl);
  color: var(--text-primary);
}

#fullArticle table thead {
  color: var(--text-primary);
}

#fullArticle table {
  border: 1px solid var(--border-primary);
}

#fullArticle .callout-yellow,
#fullArticle .callout-blue,
#fullArticle .callout-red,
#fullArticle .callout-green,
#fullArticle .callout,
#fullArticle .private-note {
  color: var(--text-primary);
  font-size: var(--font-sd);
  font-family: var(--font-family-primary);
  padding: var(--spacing-s) var(--spacing-m);
  margin-bottom: var(--spacing-m);
}

#fullArticle .callout-blue {
  background: var(--system-blue-bg);
  border-color: var(--system-blue-border);
}

#fullArticle .callout-blue p {
  color: var(--system-blue-text);
}

#fullArticle .callout-yellow {
  background: var(--system-yellow-bg);
  border-color: var(--system-yellow-border);
}

#fullArticle .callout-green {
  background: var(--system-green-bg);
  border-color: var(--system-green-border);
}

#fullArticle .callout-green p {
  color: var(--system-green-text);
}

#fullArticle .callout-red {
  background: var(--system-red-bg);
  border-color: var(--system-red-border);
}

#fullArticle .callout-red p {
  color: var(--system-red-text);
}

#fullArticle strong {
  color: var(--text-primary);
  font-family: var(--font-family-primary);
}

#fullArticle table th,
#fullArticle table td {
  border-top: 1px solid var(--border-primary);
}

#fullArticle pre,
#fullArticle code {
  background: var(--bg-inverse-hover);
  font-size: var(--font-s);
  line-height: var(--lineheight-base);
  color: var(--text-secondary);
  margin: 0 0 var(--spacing-m);
  border-radius: 0;
  border-color: var(--border-primary);
}

#fullArticle pre {
  white-space: pre;
  overflow-x: auto;
  line-height: 1.5;
}

#fullArticle code {
  white-space: nowrap;
}

#fullArticle pre code {
  padding: var(--spacing-xxs) var(--spacing-s);
}

#fullArticle blockquote {
  border: 0;
  box-shadow: inset 5px 0 0 0 var(--border-primary);
  padding: var(--spacing-xxs) var(--spacing-s);
}

/* article footer */

.articleFoot {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-s) 0;
  display: none;
}

.articleFoot p.lu,
.articleFoot time.lu {
  float: none;
  margin: 0;
}

.articleFoot p.help {
  margin: 0;
}

.articleFoot p,
.articleFoot time {
  font-family: var(--font-family-primary);
  font-size: var(--font-xs);
  font-weight: 400;
  font-style: normal;
  color: var(--text-tertiary);
}

.articleFoot .icon-contact {
  display: none;
}

#sbContact {
  border: 0;
  color: var(--text-primary);
  font-weight: 500;
  font-family: var(--font-family-primary);
  margin-right: 3px;
}

#sbContact:hover {
  border: 0;
  color: var(--text-primary);
}

.related {
  background: var(--bg-inverse);
  border-radius: var(--radius-base);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-base);
  padding: var(--spacing-m);
  margin: var(--spacing-s) 0;
}

.related h3 {
  text-transform: none;
  font-size: var(--font-xs);
  color: var(--text-primary);
  font-family: var(--font-family-primary);
  line-height: var(--lineheight-base);
  padding-left: var(--spacing-xxs);
}

.related ul {
  margin: 0;
  padding: var(--spacing-xs) 0 0;
  display: flex;
  flex-direction: column;
}

.related ul > li {
  padding: 0;
}

.related ul > li a {
  line-height: var(--lineheight-base);
  display: flex;
  margin: 0;
  font-size: var(--font-base);
  font-family: var(--font-family-primary);
  padding: var(--spacing-xxs);
  border-radius: var(--radius-base);
  display: flex;
  width: 100%;
  transition: var(--transition-base);
  position: relative;
}

.related ul > li a:hover {
  color: var(--text-brand);
  background: var(--bg-inverse-hover);
}

.related ul > li a:hover span {
  text-decoration: none;
}

.related ul > li a i {
  display: none;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-m) 0;
  font-size: var(--font-s);
  color: var(--text-tertiary);
}

footer p,
footer p a {
  margin: 0;
  color: var(--text-tertiary);
  font-size: var(--font-xs);
  font-family: var(--font-family-primary);
}

footer p a:hover {
  color: var(--text-primary);
}

/* ratings */

.articleRatings {
  box-shadow: none;
  border: 0;
  margin-top: var(--spacing-xl);
  background: var(--bg-inverse-hover);
  border-radius: var(--radius-base);
  font-size: var(--font-s);
  font-family: var(--font-family-primary);
  color: var(--text-tertiary);
  padding: var(--spacing-m);
}

.rateAction {
  background: var(--bg-inverse-hover);
  box-shadow: none;
  border-color: var(--text-tertiary);
}

.rating-face {
  fill: var(--text-tertiary);
}

.rateAction:not([disabled="disabled"]):hover,
.rateAction:not([disabled="disabled"]):focus {
  box-shadow: none;
}

/* breakpoints */

@media (max-width: 768px) and (max-width: 480px) {
  #searchBar button span {
    display: none;
  }

  #searchBar .search-query {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .collection-category h2 {
    text-align: left;
  }

  #docsSearch {
    margin: 0;
  }

  #contentArea {
    padding: 0 var(--spacing-s);
  }

  .navbar .nav {
    flex-direction: column;
  }

  #fullArticle::before {
    display: none;
  }

  #sidebar {
    padding: 0;
    margin-bottom: 0;
  }

  #mainNav {
    position: relative;
  }

  :not(.collection-category) .category-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Beacon/Help Scout modal fix */
#beacon-container,
.hsds-beacon,
.BeaconContainer {
  z-index: 1000000 !important;
}

.BeaconFabButtonFrame {
  z-index: 1000001 !important;
}

