/*
@mixin font-body-thin {
  @include font-body;
  font-weight: 100;
}
@mixin font-body-extralight {
  @include font-body;
  font-weight: 200;
}
*/
/*
@mixin font-body-black {
  @include font-body;
  font-weight: 900;
}
*/
/*
@mixin font-header-thin {
  @include font-header;
  font-weight: 100;
}
@mixin font-header-extralight {
  @include font-header;
  font-weight: 200;
}
*/
/*
@mixin font-header-black {
  @include font-header;
  font-weight: 900;
}
*/
code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-weight: normal;
  font-style: normal;
  color: inherit; /* Resets Bootstrap --bs-code-color */
}

/* code in a block */
pre code {
  display: block;
  padding: 0.5rem;
  width: fit-content;
  min-width: 100%;
}

/* inline code (not in a block) */
code:not(pre *) {
  padding: 0.1em 0.4ch;
}

/* block and inline code */
pre,
code:not(pre *) {
  border-radius: 0.4em;
  border: 1px solid #f1f1f1;
  background-color: #f8f8f8;
}

#main-navigation.navbar {
  background: #123960;
}
#main-navigation .navbar-text {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}
#main-navigation .nav-link {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  opacity: 0.8;
}
#main-navigation .nav-link:hover:not(.active),
#main-navigation .nav-link:focus {
  opacity: 1;
}
#main-navigation .nav-link.active {
  opacity: 1;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
#main-navigation .dropdown-item {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #475569;
}
#main-navigation .dropdown-item:hover {
  color: #123960;
}
#main-navigation .dropdown-item:active {
  background-color: #f1f5f9;
}
#main-navigation .navbar-toggler {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.15s ease;
}
#main-navigation .navbar-toggler:focus {
  box-shadow: none;
}
#main-navigation .navbar-toggler:active,
#main-navigation .navbar-toggler:hover {
  border-color: white;
}

.navbar-brand {
  margin-right: 0.75rem;
}
.navbar-brand img {
  height: 40px;
}
.navbar-brand + .navbar-text {
  padding-top: 0.625rem;
}

body {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #1e293b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #123960;
  letter-spacing: -0.0125em;
}

a {
  color: #0224b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

a:hover {
  color: #ff0000;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
pre + h1,
pre + h2,
pre + h3,
pre + h4,
pre + h5,
pre + h6,
table + h1,
table + h2,
table + h3,
table + h4,
table + h5,
table + h6,
div + h1,
div + h2,
div + h3,
div + h4,
div + h5,
div + h6,
img + h1,
img + h2,
img + h3,
img + h4,
img + h5,
img + h6 {
  margin-top: 2.5rem;
}

h1 + h2 {
  margin-top: 2.5rem;
}

.breadcrumb {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
}
.breadcrumb a {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.breadcrumb-item {
  color: #64748b;
}
.breadcrumb-item.active {
  color: #64748b;
}

.support-sections {
  color: #64748b;
}
.support-sections h3 {
  font-size: 1.25rem;
}
.support-sections:not(:last-of-type) {
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

h2 a.anchor-link,
h3 a.anchor-link,
h4 a.anchor-link,
h5 a.anchor-link,
h6 a.anchor-link {
  opacity: 0;
  margin-left: -1.75rem;
  transition: opacity 0.1s linear;
  visibility: hidden;
}

h2:hover a.anchor-link,
h3:hover a.anchor-link,
h4:hover a.anchor-link,
h5:hover a.anchor-link,
h6:hover a.anchor-link {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  body.qac-sidenav-toggled .qac-sidebar {
    transform: translateX(-15rem);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.2s ease-in-out, opacity 0.25s ease-in,
      visibility 0ms ease-in 0.25s;
  }
  body.qac-sidenav-toggled .qac-main {
    margin-left: -15rem;
  }
  body.qac-sidenav-toggled .qac-layout {
    gap: 0;
  }
}

@media (min-width: 992px) {
  .qac-layout {
    display: grid;
    grid-template-areas: "sidebar main";
    grid-template-columns: 1fr 5fr;
    grid-template-columns: auto 5fr;
    gap: 1.5rem;
  }
}

.qac-sidebar {
  grid-area: sidebar;
}
@media (min-width: 992px) {
  .qac-sidebar {
    position: sticky;
    top: 5rem;
    display: block !important;
    height: calc(100vh - 2rem);
    overflow-y: auto;
    width: 15rem;
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition: transform 0.2s ease-in-out, opacity 0.25s ease-in,
      visibility 0ms ease-in 0ms;
  }
}

.qac-links-heading {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #123960;
  padding-left: 0.75rem;
}

.qac-links-link {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 0.25rem;
  color: rgba(30, 41, 59, 0.5);
  color: #64748b;
  text-decoration: none;
}
.qac-links-link:hover,
.qac-links-link:focus,
.qac-links-link:active,
.qac-links-link.active {
  color: #1e293b;
  background-color: rgba(2, 36, 179, 0.05);
}
.qac-links-link.active {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
}

.qac-main {
  grid-area: main;
  transition: margin-left 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .qac-main {
    display: grid;
    grid-template-areas: "intro" "toc" "content";
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .qac-main {
    grid-template-areas: "intro toc" "content toc";
    grid-template-rows: auto 1fr;
    grid-template-columns: 5fr 1fr;
  }
}
@media (max-width: 991px) {
  .qac-main {
    max-width: 760px;
    margin-inline: auto;
  }
}

.qac-intro {
  grid-area: intro;
}

.qac-toc {
  grid-area: toc;
}
@media (min-width: 992px) {
  .qac-toc {
    position: sticky;
    top: 5rem;
    right: 0;
    z-index: 2;
    height: calc(100vh - 6rem);
    overflow-y: auto;
  }
}
.qac-toc nav ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.qac-toc nav ul ul {
  padding-left: 1rem;
  margin-top: 0.25rem;
}
.qac-toc nav li {
  margin-bottom: 0.1rem;
}
.qac-toc nav a {
  font-size: 0.75rem;
  color: #64748b;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.qac-toc nav a:hover {
  color: black;
}
@media (max-width: 767px) {
  .qac-toc nav {
    padding: 1.25rem;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.25rem;
  }
}

.qac-toc-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #123960;
}

@media (min-width: 768px) {
  .qac-toc-collapse {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .qac-toc-collapse {
    border-left-width: 0 !important;
  }
}

.qac-toc-toggle {
  display: flex;
  align-items: center;
  border: 1px solid #94a3b8;
}
.qac-toc-toggle:hover,
.qac-toc-toggle:focus {
  border-color: #cbd5e1;
  box-shadow: none;
}
.qac-toc-toggle:active {
  border-color: #94a3b8;
}
.qac-toc-toggle:active:focus {
  box-shadow: none;
}
@media (max-width: 576px) {
  .qac-toc-toggle {
    justify-content: space-between;
    width: 100%;
  }
}

.qac-content {
  grid-area: content;
  min-width: 1px;
}
.qac-content img {
  max-width: 100%;
  height: auto;
}
.qac-content ul li,
.qac-content ol li {
  margin-bottom: 0.5rem;
}
.qac-content ul li ul,
.qac-content ul li ol,
.qac-content ol li ul,
.qac-content ol li ol {
  margin-top: 0.5rem;
}

table {
  border: solid 1px #ddd;
  width: 100%;
}

table td,
table th {
  padding: 0.25rem;
}

table thead,
table tfoot {
  background: #f5f5f5;
}
table tr.even,
table tr.alt,
table tr:nth-of-type(even) {
  background: #f9f9f9;
}

table + p,
table + .alert {
  margin-top: 1rem;
}

html {
  scroll-padding-top: calc(66px + 1.5rem);
}

footer {
  position: relative;
  padding: 3rem 0;
  margin-top: 6rem;
  display: block;
  background-color: #123960;
  color: #fff;
}

footer code {
  color: var(--bs-dark);
}

.qa-search-container {
  border-bottom: 1px solid #123960;
}

#search,
.ais-SearchBox {
  min-height: 2.5rem;
}

.ais-Stats-text {
  font-size: 0.75em;
}

.alert :last-child {
  margin-bottom: 0;
}
@media print {
  .no-print {
    display: none;
  }

  .qac-layout {
    grid-template-areas: "one";
  }

  .qac-main {
    grid-template-columns: 1fr;
  }
}

blockquote {
  margin: 1em;
  border-left: 5px solid #eee;
  padding: 0.25em 1.5em;
  line-height: 1.25em;
}

blockquote *:last-child {
  margin-bottom: 0;
}

mark {
  padding: 0;
}

.embed {
  margin-bottom: 1rem;
}
