@charset "UTF-8";
/**
* @file
* Common dependencies for all theme stylesheets (both global and component specific)
*/
/**
* @file
* Functions
*
* Defines reusable Sass functions that perform calculations or transformations (e.g.,
* color manipulation, scaling values).
*/
/**
 * @file
 * Color functions
 */
/**
* @file
* Tier 1 - Primitive Color Variables
*
* Contains the color design tokens assigned to our aliases.
* These variables are the raw, unchanging values used to define the core visual language of the project.
*/
/**
* @file
* Convert values into rem units.
* Only `px` values are converted to rem.
* ! Use CSS variables whenever possible
* defines the base font size in a way that is understandable by Sass functions
*/
/**
* @file
* Mixins
*
* Contains imports for reusable Sass mixins that encapsulate common patterns or logic, such as
* responsive styles, vendor prefixes, or utility functions.
*/
/**
* @file
* Breakpoints
*
* Defines CSS variables for responsive design breakpoints used throughout the project.
*/
/**
* @file
* Container Mixins
*
* Contains mixins for containers that can be applied on a component level when their associated utility class is applied
*/
/**
* @file
* Container Variables
*/
/**
 * @file
 * Global typography for site
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
* @file
* Type SCSS variables for spacing system
*/
/* === Font Stacks === */
/* === Font Weights === */
/* === Letter Spacing === */
/* === Line Heights === */
/* A single line value will be used for type. The largest value was selected based on comparing between mobile and desktop. */
/* === Font Sizes === */
/* Min / Mobile */
/* Max / Desktop */
/* Font Size / Fluid Units
* Resource: Utopia Clamp Calculator
* @link https://utopia.fyi/clamp/calculator?a=320,1440,92—104|64—88|52—64|48—60|32—40|16—20
*
* viewport values from utopia clamp calculator
* values without clamp are the same for mobile and desktop
*/
/*
 Preset typography
*/
/**
* @file
* Utility Mixins
*/
/**
* @file
* Container Mixins
*
* Contains mixins for containers that can be applied on a component level when their associated utility class is applied
*/
/**
* @file
* Variables
*/
/**
* @file
* Type SCSS variables for transition durations.
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
* @file
* SCSS variables for radii
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
 * @file
 * Global typography for site
*/
/**
* @file
* Z-Index
*
* Source of truth for z-index values used throughout the theme.
*/
/**
* @file
* SCSS variables for miscellaneous items
*/
/**
* @file
* Common dependencies for all theme stylesheets (both global and component specific)
*/
/**
 * Tabs/tab as seen on the search page.
 * Pattern reference: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/tab_role#example
 */
/**
 * Styles for "No Results" message to be displayed when 0 results are returned initiating 
 * a search from the Nav, or when 0 results are returned using filters
 */
/**
* @file
* Utility Mixins
*/
.node__page-navigator {
  align-self: start;
  grid-column: 2/3;
  inset-block-start: 1rem;
  position: sticky;
  z-index: 2;
}

.page-navigator {
  background-color: var(--surface-primary);
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: 0 1.125rem 3rem rgba(0, 0, 0, 0.2);
  margin-block-end: 3rem;
  overflow: hidden;
  transition: transform 300ms ease-in-out;
}
@media (min-width: 768px) {
  .page-navigator {
    margin-block-start: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .page-navigator {
    margin-block: 0 4.5rem;
    margin-inline-end: clamp(1rem, 3vw, 2.875rem);
    z-index: 2;
  }
}

.header-sticky .node__page-navigator {
  inset-block-start: calc(var(--header-offset) + 1rem);
}

.header-sticky .node__page-navigator:has(.is-in-view) {
  inset-block-start: 0;
  transform: translateY(calc(var(--header-offset) - 1rem));
}

.toolbar-fixed.header-hidden .node__page-navigator {
  inset-block-start: calc(var(--drupal-displace-offset-top, 0) + 1rem);
}

.toolbar-fixed.header-sticky .node__page-navigator {
  inset-block-start: calc(var(--header-offset) + var(--drupal-displace-offset-top, 0) + 1rem);
}

.toolbar-fixed.header-sticky .node__page-navigator:has(.is-in-view) {
  inset-block-start: 0;
  transform: translateY(calc(var(--header-offset) - 1rem));
}

.page-navigator__title {
  inline-size: 100%;
  inline-size: -webkit-fill-available;
  inline-size: -moz-available;
  inline-size: stretch;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  block-size: 100%;
  border: 0 none;
  color: var(--text-primary);
  cursor: pointer;
  display: block;
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  letter-spacing: 0.1em;
  padding: 1rem 1.5rem;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}
.page-navigator__title[aria-expanded=true] {
  background: var(--surface-primary) no-repeat center right 1.5rem url("/themes/custom/tnvacation/img/icons/tnds/close.svg");
}
@media (min-width: 1024px) {
  .page-navigator__title {
    background: var(--surface-action);
    color: var(--text-on-action);
    pointer-events: none;
  }
  .page-navigator__title[aria-expanded=true], .page-navigator__title[aria-expanded=false] {
    background-color: var(--surface-action);
    background-image: none;
  }
}

@media (max-width: 1023px) {
  .page-navigator:has(.page-navigator__title[aria-expanded=false]) {
    block-size: 3rem;
    border-radius: 0.5rem;
    inline-size: 4.3125rem;
    margin-left: auto;
    overflow: hidden;
  }
  .page-navigator:has(.page-navigator__title[aria-expanded=false]) .page-navigator__title > span,
  .page-navigator:has(.page-navigator__title[aria-expanded=false]) .page-navigator__links {
    display: none;
  }
  .page-navigator:has(.page-navigator__title[aria-expanded=false]) .page-navigator__title {
    background: var(--surface-primary) no-repeat center url("/themes/custom/tnvacation/img/icons/tnds/list.svg");
  }
}
.page-navigator__links {
  align-items: stretch;
  block-size: 0;
  border: 0.0625rem solid var(--surface-tertiary);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: block-size 300ms ease-in-out;
}
@media (min-width: 1024px) {
  .page-navigator__links {
    background-image: none;
    block-size: auto;
  }
}

.page-navigator__links :where(ol, ul) {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-navigator__title[aria-expanded=true] + .page-navigator__links {
  block-size: auto;
}

@starting-style {
  .page-navigator__links {
    block-size: 0;
  }
  @media (min-width: 1024px) {
    .page-navigator__links {
      block-size: auto;
    }
  }
}
.page-navigator__links li {
  border-top: 0.0625rem solid var(--surface-tertiary);
  list-style: none;
  margin: 0;
  max-inline-size: none;
  padding: 0;
  position: relative;
}

.page-navigator__links > :where(ul, ol) > li:first-child {
  border-top: none;
}

.page-navigator__links a {
  color: var(--text-secondary);
  display: block;
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  letter-spacing: 0.1em;
  padding: 1rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}
.page-navigator__links a:hover, .page-navigator__links a:focus, .page-navigator__links a:active, .page-navigator__links a.page-navigator__link--active {
  background-color: var(--surface-secondary);
  text-decoration: none;
}
@media (hover: none) {
  .page-navigator__links a:hover {
    background-color: initial;
    text-decoration: inherit;
  }
  .page-navigator__links a:active, .page-navigator__links a:focus, .page-navigator__links a.page-navigator__link--active {
    background-color: var(--surface-secondary);
    text-decoration: none;
  }
}

.page-navigator__section-toggle {
  cursor: pointer;
  padding-right: 2rem;
  position: relative;
}
.page-navigator__section-toggle:hover, .page-navigator__section-toggle:focus {
  background-color: var(--surface-secondary);
  text-decoration: none;
}
.page-navigator__section-toggle:hover .page-navigator__chevron, .page-navigator__section-toggle:focus .page-navigator__chevron {
  color: var(--text-primary);
}

.page-navigator__chevron {
  align-items: center;
  color: var(--text-on-tertiary);
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  right: 0.75rem;
  top: 0;
  transition: transform 0.2s ease;
  width: 1rem;
}
.page-navigator__chevron svg {
  display: block;
  height: 1rem;
  width: 1rem;
}

.page-navigator__section-toggle[aria-expanded=true] {
  background-color: var(--surface-page);
}
.page-navigator__section-toggle[aria-expanded=true] .page-navigator__chevron {
  transform: rotate(180deg);
}

.page-navigator__chapters {
  overflow: hidden;
  transition: height 0.3s ease;
}
.page-navigator__chapters.is-collapsed {
  display: none;
}
.page-navigator__chapters.is-collapsing {
  display: block;
}

.page-navigator--sections-only .page-navigator__links ul ul {
  display: none;
}
.page-navigator--sections-only .page-navigator__chevron {
  display: none;
}
.page-navigator--sections-only .page-navigator__section-toggle {
  cursor: default;
  padding-right: 0.75rem;
}

.page-navigator--chapters-only .page-navigator__links > ul > li > a {
  display: none;
}
.page-navigator--chapters-only .page-navigator__links > ul > li {
  border-top: none;
}
.page-navigator--chapters-only .page-navigator__links > ul > li > ul > li:first-child {
  border-top: 1px solid var(--surface-tertiary);
}

@media (min-width: 1024px) {
  .node__page-content-wrapper.util-content-grid:has(.page-navigator) {
    grid-template-rows: 0 repeat(auto-fit, minmax(min-content, 100%));
  }
  .node__page-content-wrapper.util-content-grid:has(.page-navigator) .node__intro {
    grid-row: 2/-1;
  }
}
.node__page-content-wrapper.util-content-grid:has(.page-navigator) .page-navigator {
  inset: 0;
}
.node__page-content-wrapper.util-content-grid:has(.page-navigator) .page-navigator .page-navigator__links {
  max-block-size: 50dvb;
  overflow: auto;
}
/*# sourceMappingURL=../maps/page-navigator/page-navigator.css.map */
