/**
 * Breakpoint set v2.
 *
 * We can feed this to any of the breakpoint mixins here using the
 * $breakpoints parameter.
 *
 * Intended to replace the $grid-breakpoints variable.
 * Keep it simple, keep the 4 basic breakpoints,
 * add a minimum of intermediate points.
 *
 * Note that we might need a superset of this to make it work with
 * @mixin media-breakpoint-only.
 */
:export {
  size-xs: 0.25rem;
  size-s: 0.5rem;
  size-sm: 0.75rem;
  size-sm-extra: 0.875rem;
  size-m: 1rem;
  size-md: 1.125rem;
  size-l: 1.25rem;
  size-lg: 1.5rem;
  size-xl: 1.75rem;
  size-xxl: 2rem;
  size-2xl: 2.25rem;
  size-2lg: 2.5rem;
  size-3xl: 3rem;
  size-4xl: 3.5rem;
  size-5xl: 4rem;
  size-6xl: 4.5rem;
  size-7xl: 5rem;
  size-7xlg: 6rem;
  size-8xl: 8rem;
  container-width: 1320px;
  body-color: #282b2b;
  z-index-checkbox-radio: -10;
  z-index-background: -1;
  z-index-sticky: 1;
  z-index-infopanel: 1;
  z-index-details-wrapper: 2;
  z-index-banner-controls: 2;
  z-index-modal-controls: 2;
  z-index-sidebar: 3;
  z-index-sidebar-header: 4;
  z-index-globalheader-dropdown: 5;
  z-index-accordion-focused: 10;
  z-index-mainmenu-inactive: 10;
  z-index-mainmenu-inner: 10;
  z-index-likert-table-header: 50;
  z-index-social-action-popover: 51;
  z-index-mainmenu-overlay: 60;
  z-index-mainmenu-container: 70;
  z-index-mainmenu-toggle: 70;
  z-index-mainmenu-container-mobile: 505;
  z-index-mainmenu-toggle-mobile: 520;
  z-index-throbber-overlay: 1261;
  z-index-max-absolute: 2147483647;
  font-weight-light: 100;
  font-weight-normal: 400;
  font-weight-semibold: 500;
  font-weight-nearlybold: 600;
  font-weight-bold: 700;
  font-weight-black: 900;
}

/* Mixins */
/* TYPOGRAPHY */
/** 20px **/
/** 14px **/
/** 12px **/
:export {
  font-family-main: "Inter", Helvetica, Arial, sans-serif;
  font-family-headers: "Chronicle Display A", "Chronicle Display B", "Times New Roman", Times, serif;
  font-family-icons: "ph";
  fontstack-body: "Inter", Helvetica, Arial, sans-serif;
  font-size-base: 1rem;
  font-size-lg: 1.25rem;
  font-size-sm: 0.875rem;
  font-size-xs: 0.75rem;
  font-weight-normal: normal;
  font-weight-bold: bold;
  font-weight-base: normal;
  line-height-base: 1.5;
  h1-font-size: 2.5rem;
  h2-font-size: 2rem;
  h3-font-size: 1.75rem;
  h4-font-size: 1.5rem;
  h5-font-size: 1.25rem;
  h6-font-size: 1rem;
}

/**
 * @file
 * Devices mixins.
 */
/*
Breakpoint viewport sizes and media queries.

Breakpoints are defined as a map of (name: minimum width), order from small to large:

    (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)

The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
*/
/*
Name of the next breakpoint, or null for the last breakpoint.

    >> breakpoint-next(sm)
    md
    >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    md
    >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))
    md
*/
/*
Minimum breakpoint width. Null for the smallest (first) breakpoint.

    >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    576px
*/
/*
Maximum breakpoint width.
The maximum value is reduced by 0.02px to work around the limitations of
`min-` and `max-` prefixes and viewports with fractional widths.
See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
See https://bugs.webkit.org/show_bug.cgi?id=178261

    >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    767.98px
*/
/*
Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
Useful for making responsive utilities.

    >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    ""  (Returns a blank string)
    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    "-sm"
*/
/*
Media of at most the maximum breakpoint width. No query for the largest breakpoint.
Makes the @content apply to the given breakpoint and narrower.
*/
/*
Media that spans multiple breakpoint widths.
Makes the @content apply between the min and max breakpoints
*/
/*
Media between the breakpoint's minimum and maximum widths.
No minimum for the smallest breakpoint, and no maximum for the largest one.
Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
*/
/**
 * Devices breakpoint mixin.
 *
 * @deprecated Replace with @include devices-v2.
 *
 * @see DU-1697
 */
/**
 * Device sizing for v2 breakpoints.
 *
 * Intended to replace the @mixin devices above. Keep it simple, keep the 4
 * basic breakpoints, add a minimum of intermediate points.
 *
 * @see DU-1697
 */
/**
 * Device sizing for v2 breakpoints.
 *
 * Intended to replace the @mixin devices above. Keep it simple, keep the 4
 * basic breakpoints, add a minimum of intermediate points.
 *
 * @see DU-1697
 */
/**
 * @file
 * Devices mixins.
 */
/* Mixins */
/**
 * @file
 * Devices mixins.
 */
/* Mixins */
/**
 * @file
 * Grid mixins.
 */
/**
 * Get the size of the gutter on the left and right of the container.
 * Varies by $breakpoint (xs, sm, md, lg).
 */
/**
 * Get the size of an element $column-count number of columns wide.
 * Varies by $breakpoint (xs, sm, md, lg).
 */
/**
 * Get the size of an internal gap $column-count wide.
 * Varies by $breakpoint (xs, sm, md, lg).
 */
/*generateSpacing mixin will create spacing classes for margin and padding.
Eg: mt-0, pl-2,mh-2
The first letter represents the spacing type ( Margin/Padding ).
m:  margin
p:  padding
The second letter represents the direction.
l: left
r: right
t: top
b: bottom
v: vertical (top and bottom)
h: horizontal (left and right)
a: all
The third represents the spacing value (which you can give your own)
For eg:
'mb-0' means margin-bottom: 0;
'ph-2' mean padding-left: 2rem; padding-right: 2rem;
'pv-4' mean padding-top: 4rem; padding-bottom: 4rem;
*/
.slnsw-navigation-globalheader {
  display: flex;
  padding: 0.25rem 0.25rem;
  height: 3rem;
  color: var(--sl-global-nav-foreground, var(--global-nav-secondary-default, rgb(218, 172, 98)));
  background-color: var(--sl-global-nav-background, var(--colours-primary-900, #030303));
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .slnsw-navigation-globalheader {
    padding: 0.25rem 0.5rem;
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .slnsw-navigation-globalheader {
    padding: 0.25rem 1.5rem;
  }
}
@media (min-width: 1200px) {
  .slnsw-navigation-globalheader {
    padding: 0.5rem 1.5rem;
    height: 3.5rem;
  }
}
.slnsw-navigation-globalheader[data-site="www.sl.nsw.gov.au"] {
  --sl-global-nav-foreground: var(
    --sl-global-nav-primary-default,
    #313435
  );
  --sl-global-nav-background: var(
    --sl-global-nav-tertiary-200,
    #f1f2f2
  );
}
.slnsw-navigation-globalheader__dropdown-container {
  position: relative;
}
.slnsw-navigation-globalheader__dropdown-toggle {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  display: flex;
  padding: 0.375rem 0.25rem;
  border: 0 none;
  color: var(--sl-global-nav-foreground);
  background: transparent;
  border-radius: 0.25rem 0.25rem 0 0;
  flex-direction: row;
  gap: 0.5rem;
  appearance: none;
}
.slnsw-navigation-globalheader__dropdown-toggle [data-toggle-state="0"] {
  display: inline;
}
.slnsw-navigation-globalheader__dropdown-toggle [data-toggle-state="1"] {
  display: none;
}
.slnsw-navigation-globalheader__dropdown-toggle [class^=ph-],
.slnsw-navigation-globalheader__dropdown-toggle [class*=" ph-"] {
  font-weight: normal;
}
@media (min-width: 768px) {
  .slnsw-navigation-globalheader__dropdown-toggle {
    padding: 0.375rem 0.5rem;
  }
}
@media (min-width: 992px) {
  .slnsw-navigation-globalheader__dropdown-toggle {
    font: 400 0.875rem/1.25rem Inter, Helvetica, Arial, sans-serif;
    font-weight: 700;
  }
  .slnsw-navigation-globalheader__dropdown-toggle [class^=ph-],
  .slnsw-navigation-globalheader__dropdown-toggle [class*=" ph-"] {
    font-weight: normal;
  }
}
.slnsw-navigation-globalheader__dropdown-toggle--active {
  color: var(--tertiary-800, #4a4c4c);
  background-color: var(--global-nav-secondary-default, rgb(218, 172, 98));
}
.slnsw-navigation-globalheader__dropdown-toggle--active [data-toggle-state="0"] {
  display: none;
}
.slnsw-navigation-globalheader__dropdown-toggle--active [data-toggle-state="1"] {
  display: inline;
}
.slnsw-navigation-globalheader__dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  padding: 1rem 1rem 1.5rem 1rem;
  width: 17.5rem;
  background-color: var(--global-nav-secondary-default, rgb(218, 172, 98));
  border-radius: 0 0.25rem 0.25rem 0.25rem;
  z-index: 5;
}
.slnsw-navigation-globalheader__dropdown-content--open {
  display: block;
}
.slnsw-navigation-globalheader__extra {
  display: flex;
  flex-direction: row;
}
.slnsw-navigation-globalheader__links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slnsw-navigation-globalheader__links li::before {
  content: unset;
}
.slnsw-navigation-globalheader__links--links-primary {
  font: 400 0.875rem/1.25rem Inter, Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.slnsw-navigation-globalheader__links--links-primary li {
  border-bottom: 1px solid var(--global-nav-secondary-400, rgb(233, 205, 161));
}
.slnsw-navigation-globalheader__links--links-primary a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: var(--tertiary-800, #4a4c4c);
  border-radius: 0.25rem;
}
.slnsw-navigation-globalheader__links--links-primary a:hover, .slnsw-navigation-globalheader__links--links-primary a:focus, .slnsw-navigation-globalheader__links--links-primary a:active {
  background-color: var(--global-nav-secondary-400, rgb(233, 205, 161));
}
.slnsw-navigation-globalheader__links--links-primary a:visited, .slnsw-navigation-globalheader__links--links-primary a.visited {
  color: var(--tertiary-800, #4a4c4c);
}
.slnsw-navigation-globalheader__links--links-primary a:focus {
  background-color: var(--global-nav-secondary-400, rgb(233, 205, 161));
}
.slnsw-navigation-globalheader__links--links-secondary {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  padding-top: 0.5rem;
}
.slnsw-navigation-globalheader__links--links-secondary a {
  display: block;
  padding: 0.25rem 0;
  text-decoration: none;
  color: var(--colours-tertiary-800, #4a4c4c);
}
.slnsw-navigation-globalheader__links--links-secondary a:hover, .slnsw-navigation-globalheader__links--links-secondary a:focus, .slnsw-navigation-globalheader__links--links-secondary a:active {
  background-color: var(--global-nav-secondary-400, rgb(233, 205, 161));
}
.slnsw-navigation-globalheader__links--links-secondary a:visited, .slnsw-navigation-globalheader__links--links-secondary a.visited {
  color: var(--colours-tertiary-800, #4a4c4c);
}
.slnsw-navigation-globalheader__links--links-secondary a:focus {
  background-color: var(--global-nav-secondary-400, rgb(233, 205, 161));
}
.slnsw-navigation-globalheader__links--links-extra {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0;
}
@media (min-width: 992px) {
  .slnsw-navigation-globalheader__links--links-extra {
    font: 400 0.875rem/1.25rem Inter, Helvetica, Arial, sans-serif;
    font-weight: 700;
    gap: 0.5rem;
  }
}
.slnsw-navigation-globalheader__links--links-extra li {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.slnsw-navigation-globalheader__links--links-extra a {
  display: flex;
  padding: 0.75rem;
  text-decoration: none;
  color: var(--sl-global-nav-foreground);
  background-color: transparent;
  border-radius: 0.5rem;
  flex-direction: row;
}
@media (min-width: 992px) {
  .slnsw-navigation-globalheader__links--links-extra a {
    border-radius: 1rem;
  }
}
.slnsw-navigation-globalheader__links--links-extra a:hover, .slnsw-navigation-globalheader__links--links-extra a:focus, .slnsw-navigation-globalheader__links--links-extra a:active {
  color: var(--sl-global-nav-foreground);
  background-color: transparent;
}
.slnsw-navigation-globalheader__links--links-extra a:visited, .slnsw-navigation-globalheader__links--links-extra a.visited {
  color: var(--sl-global-nav-foreground);
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .slnsw-navigation-globalheader__links--links-extra a {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .slnsw-navigation-globalheader__links--links-extra a {
    padding: 0.625rem 0.75rem;
  }
}
.slnsw-navigation-globalheader__links--links-extra a.outline {
  padding: 0.5rem;
  border: 1px solid var(--sl-global-nav-foreground);
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .slnsw-navigation-globalheader__links--links-extra a.outline {
    padding: 0.625rem 0.75rem;
  }
}
.slnsw-navigation-globalheader__links--links-extra a.outline .slnsw-navigation-globalheader-linktext__icon {
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .slnsw-navigation-globalheader__links--links-extra a.outline .slnsw-navigation-globalheader-linktext__icon {
    width: 1rem;
    height: 1rem;
    font-size: 1rem !important;
    line-height: 1rem;
  }
}
@media (max-width: 767.98px) {
  .slnsw-navigation-globalheader__links--links-extra a.priority-low .slnsw-navigation-globalheader-linktext__label {
    display: none;
  }
}
.slnsw-navigation-globalheader .extlink {
  display: none;
}
.slnsw-navigation-globalheader-linktext__icon {
  width: 1rem;
  height: 1rem;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .slnsw-navigation-globalheader-linktext__icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem !important;
    line-height: 1.5rem;
  }
}

/*# sourceMappingURL=global-header.css.map */
