@charset "UTF-8";
/**
 * Styling for module toc_api (Table of contents API) via toc_filter
 */
html {
  --fla-heading-font-family: "CenturyGothicStd", "Inter", sans-serif;
  --fla-subheading-font-family: "Poppins";
  --fla-body-font-family: "Inter", "Helvetica Neue", "Arial", "Helvetica", "sans-serif";
  --fla-text-color-light: rgba(255,255,255,0.618);
}

body {
  --fla-dock-height: 0px;
}

body[data-fla-state*="do:1"] {
  --fla-dock-height: var(--fla-footer-height);
}

/**
 * TO BE INCLUDED WITHIN THE CONTENT CONTAINING ELEMENT
 * (WHERE THE SCOLLING DOES HAPPEN)
 */
/**
 * Must be applied not to the block element but the h1/h2/h3 directly
 * block must be display: contents
 */
/**
  NOTE: THIS IS SPECIFIC TO FONTS
  ARIAL: 0.318/2
 */
/**
 * What this does, is:
 * Given a Text like "First, Last and Always" we have the descender "y"
 * this mixin calculates the space that is taken by descenders and subtracts it
 * from the height of the element via negative margin bottom. By the way:
 * the descender space is also taken if we have text that does NOT have a descender!
 * When to use:
 * - The text block needs to sit bottom align with a specific design line or element
 *
 * When NOT to use:
 * - If another text block is placed below this one. in that case we need to use another mixin "centuryGothicDescendantEqualizer"
 *
 * Get the UnitsPerEM via "ttx -t head CenturyGothicStd.ttf" (fonttools)
 * Get the sTypoDescender via `ttx -t OS/2 CenturyGothicStd.ttf` (fonttools)
 * Calculate the Descener Ratio: Descender Ratio = |sTypoDescender| / unitsPerEm
 * Translate into CSS: margin-bottom: calc(-1*<DescenderRatio>)
 *
 * @see https://stackoverflow.com/questions/27631736/meaning-of-top-ascent-baseline-descent-bottom-and-leading-in-androids-font
 */
/**
 What we do here is:
 Based on this graphic: https://i.sstatic.net/LwZJF.png we cut off the
 distance from the bottom to the Descent
 */
/**
 * @deprecated Moved to a SDC component
 */
/**
 * Meant to glue the menu image before and after the content area so it can be used as glass background..
 */
/**
 * Use the content's image as a background below the content area to prevent boring grey areas
 */
/*
 * Use this for sections where the main content area must start below the header (not overlayed by the glass header)
 * to look fine u need to define a backkground image either for the body element or the layout container
 */
.toc-mobile {
  display: none !important;
}

.toc-desktop, .toc-default {
  display: block !important;
  text-align: left;
  border: unset !important;
  line-height: 1.5;
}

.toc-desktop ol.none, .toc-default ol.none {
  padding-left: 0;
}

.toc-desktop li, .toc-default li {
  list-style-type: disclosure-closed;
  list-style-type: disc;
}

.toc-desktop li::marker, .toc-default li::marker {
  font-weight: bold;
  font-size: 150%;
  line-height: 1.1;
  opacity: 0.5;
}

.toc-desktop > h3, .toc-default > h3 {
  display: none;
}

/**
 * Create an offset for all anchors so when we jump to them they are not hidden below the fixed glass header
 */
.toc-filter {
  --anchor-offset: calc(var(--fla-header-height) + 1em);
}

.toc-filter h2[id]::before, .toc-filter h3[id]::before, .toc-filter h4[id]::before {
  content: "";
  display: block;
  height: var(--anchor-offset);
  /* header height */
  margin-top: calc( -1 * var(--anchor-offset));
  /* shifts anchor position up */
  visibility: hidden;
}

.toc-filter a.back-to-top {
  outline: none;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

.toc-filter a.back-to-top:before {
  content: "🠭 ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.toc-filter a.back-to-top:before {
  color: transparent;
  position: relative;
  background: transparent url(/themes/custom/fla/icons/bootstrap/arrow-up-short.svg) left center no-repeat;
  background-size: 100% auto;
  width: 2ch;
  height: calc( 1rem * 1.42857143);
  display: inline-block;
  margin-right: 0.125ch;
  filter: invert(1);
}

.toc-filter a.back-to-top:hover {
  opacity: 1;
  text-decoration: underline;
}

.toc-filter a.back-to-top:first-of-type {
  display: none;
}

/*# sourceMappingURL=fla-toc.css.map */