:root {
  --horizon-frame-full-svg-width-mobile: 900px;
  --horizon-frame-full-svg-width-desktop: 2560px;
  --horizon-frame-half-svg-width-mobile: 450px;
  --horizon-frame-half-svg-width-desktop: 1280px;
}

@layer animations {
  @keyframes appear {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
      visibility: visible;
    }
  }

  @keyframes appearVerticalShift {
    0% {
      transform: translateY(10px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  }

  @keyframes appearHorizontalShift {
    0% {
      transform: translateX(-10px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @keyframes lineDrawToRight {
    0% {
      width: 0;
    }

    100% {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .appear {
      visibility: hidden;
      animation: appear 500ms;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
      animation-fill-mode: forwards;
      animation-play-state: paused;
    }

    .appearVerticalShift {
      visibility: hidden;
      animation: appearVerticalShift 500ms;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
      animation-fill-mode: forwards;
      animation-play-state: paused;
    }

    .appearHorizontalShift {
      visibility: hidden;
      animation: appearHorizontalShift 500ms;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
      animation-fill-mode: forwards;
      animation-play-state: paused;
    }

    .lineDrawToRight {
      animation: lineDrawToRight 500ms;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .playAnimation {
      animation-play-state: running;
    }

    /* .scroll-grow {
      animation: appear linear;
      animation-timeline: view();
      animation-range: entry 0 cover 25%;
    } */

    .animate-marquee {
      animation: marquee 50s linear infinite;
      will-change: transform;
    }

    .animate-marquee-reverse {
      animation: marquee 50s linear infinite;
      animation-direction: reverse;
      will-change: transform;
    }
  }
}

/* NOTE: while having all these brands named under a fuel file feels bad, there is not a great way to do this without
    a css preprocessor other than giving each brand their own file and duplicating code */

/* ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

/* MontSerrat is variable and comes with an italic version */

@font-face {
  font-family: 'MontSerrat';

  src: url(/fonts/Montserrat-VariableFont.ttf) format('truetype');

  font-display: swap;

  font-style: normal;

  font-weight: 1 1000;
}

@font-face {
  font-family: 'MontSerrat';

  src: url(/fonts/Montserrat-Italic-VariableFont.ttf) format('truetype');

  font-display: swap;

  font-style: italic;

  font-weight: 1 1000;
}

/* Anton is static and does not have an italic version  */

@font-face {
  font-family: 'Anton';

  src: url(/fonts/Anton-Regular.ttf) format('truetype');

  font-display: swap;

  font-style: normal;

  font-weight: 400;
}

/* Satoshi is variable and comes with an italic version */

@font-face {
  font-family: 'Satoshi';

  src: url(/fonts/Satoshi-Variable.ttf) format('truetype');

  font-display: swap;

  font-style: normal;

  font-weight: 1 1000;
}

@font-face {
  font-family: 'Satoshi';

  src: url(/fonts/Satoshi-Italic-Variable.ttf) format('truetype');

  font-display: swap;

  font-style: italic;

  font-weight: 1 1000;
}

/* apply font to body tag */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* fixme: fix when font weight added */
  line-height: var(--body-md-mobile-line-height);
  font-size: var(--body-md-mobile-text-size);
  font-weight: var(--body-md-mobile-weight);
}

@media (min-width: 600px) {
  body {
    line-height: var(--body-md-tablet-line-height);
    font-size: var(--body-md-tablet-text-size);
    font-weight: var(--body-md-tablet-weight);
  }
}

@media (min-width: 900px) {
  body {
    line-height: var(--body-md-desktop-line-height);
    font-size: var(--body-md-desktop-text-size);
    font-weight: var(--body-md-desktop-weight);
  }
}

body.font-bold {
  font-weight: 600;
}

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}

.modal {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.on-the-run-ca {
  /* button border radius */
  --border-radius-btn: 9999px;
}

.chevron,
  .fasgas,
  .on-the-run-ca,
  .on-the-run-us,
  .pioneer,
  .trans-action,
  .ultramar {
  --font-family-display: 'MontSerrat', 'Helvetica', 'Arial', sans-serif;
  --font-family-other: 'MontSerrat', 'Helvetica', 'Arial', sans-serif;
  font-family: var(--font-family-other);
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semi-bold: 600;
  --weight-bold: 700;
  --weight-extra-bold: 800;
  --weight-black: 900;
  /* display sizes */
  --display-lg-mobile-text-size: 35px;
  --display-lg-mobile-line-height: 37px;
  --display-lg-mobile-letter-spacing: normal;
  --display-lg-mobile-weight: var(--weight-extra-bold);
  --display-lg-tablet-text-size: 42px;
  --display-lg-tablet-line-height: 44px;
  --display-lg-tablet-letter-spacing: normal;
  --display-lg-tablet-weight: var(--weight-extra-bold);
  --display-lg-desktop-text-size: 50px;
  --display-lg-desktop-line-height: 50px;
  --display-lg-desktop-letter-spacing: normal;
  --display-lg-desktop-weight: var(--weight-extra-bold);
  --display-md-mobile-text-size: 30px;
  --display-md-mobile-line-height: 32px;
  --display-md-mobile-letter-spacing: normal;
  --display-md-mobile-weight: var(--weight-extra-bold);
  --display-md-tablet-text-size: 32px;
  --display-md-tablet-line-height: 36px;
  --display-md-tablet-letter-spacing: normal;
  --display-md-tablet-weight: var(--weight-extra-bold);
  --display-md-desktop-text-size: 42px;
  --display-md-desktop-line-height: 44px;
  --display-md-desktop-letter-spacing: normal;
  --display-md-desktop-weight: var(--weight-extra-bold);
  --display-sm-mobile-text-size: 26px;
  --display-sm-mobile-line-height: 28px;
  --display-sm-mobile-letter-spacing: normal;
  --display-sm-mobile-weight: var(--weight-extra-bold);
  --display-sm-tablet-text-size: 28px;
  --display-sm-tablet-line-height: 34px;
  --display-sm-tablet-letter-spacing: normal;
  --display-sm-tablet-weight: var(--weight-extra-bold);
  --display-sm-desktop-text-size: 32px;
  --display-sm-desktop-line-height: 36px;
  --display-sm-desktop-letter-spacing: normal;
  --display-sm-desktop-weight: var(--weight-extra-bold);
  /* heading styles */
  --heading-md-xl-text-transform: uppercase;
  --heading-xs-sm-text-transform: none;
  --heading-xl-mobile-text-size: 24px;
  --heading-xl-mobile-line-height: 28px;
  --heading-xl-mobile-letter-spacing: normal;
  --heading-xl-mobile-weight: var(--weight-extra-bold);
  --heading-xl-tablet-text-size: 24px;
  --heading-xl-tablet-line-height: 28px;
  --heading-xl-tablet-letter-spacing: normal;
  --heading-xl-tablet-weight: var(--weight-extra-bold);
  --heading-xl-desktop-text-size: 28px;
  --heading-xl-desktop-line-height: 34px;
  --heading-xl-desktop-letter-spacing: normal;
  --heading-xl-desktop-weight: var(--weight-extra-bold);
  --heading-lg-mobile-text-size: 20px;
  --heading-lg-mobile-line-height: 23px;
  --heading-lg-mobile-letter-spacing: normal;
  --heading-lg-mobile-weight: var(--weight-extra-bold);
  --heading-lg-tablet-text-size: 20px;
  --heading-lg-tablet-line-height: 23px;
  --heading-lg-tablet-letter-spacing: normal;
  --heading-lg-tablet-weight: var(--weight-extra-bold);
  --heading-lg-desktop-text-size: 24px;
  --heading-lg-desktop-line-height: 28px;
  --heading-lg-desktop-letter-spacing: normal;
  --heading-lg-desktop-weight: var(--weight-extra-bold);
  --heading-md-mobile-text-size: 18px;
  --heading-md-mobile-line-height: 21px;
  --heading-md-mobile-letter-spacing: normal;
  --heading-md-mobile-weight: var(--weight-bold);
  --heading-md-tablet-text-size: 18px;
  --heading-md-tablet-line-height: 21px;
  --heading-md-tablet-letter-spacing: normal;
  --heading-md-tablet-weight: var(--weight-bold);
  --heading-md-desktop-text-size: 20px;
  --heading-md-desktop-line-height: 23px;
  --heading-md-desktop-letter-spacing: normal;
  --heading-md-desktop-weight: var(--weight-bold);
  --heading-sm-mobile-text-size: 18px;
  --heading-sm-mobile-line-height: 26px;
  --heading-sm-mobile-letter-spacing: -0.15000000596046448;
  --heading-sm-mobile-weight: var(--weight-bold);
  --heading-sm-tablet-text-size: 18px;
  --heading-sm-tablet-line-height: 26px;
  --heading-sm-tablet-letter-spacing: -0.15000000596046448;
  --heading-sm-tablet-weight: var(--weight-bold);
  --heading-sm-desktop-text-size: 18px;
  --heading-sm-desktop-line-height: 26px;
  --heading-sm-desktop-letter-spacing: -0.15000000596046448;
  --heading-sm-desktop-weight: var(--weight-bold);
  --heading-xs-mobile-text-size: 18px;
  --heading-xs-mobile-line-height: 26px;
  --heading-xs-mobile-letter-spacing: -0.15000000596046448;
  --heading-xs-mobile-weight: var(--weight-semi-bold);
  --heading-xs-tablet-text-size: 18px;
  --heading-xs-tablet-line-height: 26px;
  --heading-xs-tablet-letter-spacing: -0.15000000596046448;
  --heading-xs-tablet-weight: var(--weight-semi-bold);
  --heading-xs-desktop-text-size: 18px;
  --heading-xs-desktop-line-height: 26px;
  --heading-xs-desktop-letter-spacing: -0.15000000596046448;
  --heading-xs-desktop-weight: var(--weight-semi-bold);
  /* body sizings */
  --body-lg-mobile-text-size: 17px;
  --body-lg-mobile-line-height: 25px;
  --body-lg-mobile-letter-spacing: normal;
  --body-lg-mobile-weight: var(--weight-regular);
  --body-lg-tablet-text-size: 17px;
  --body-lg-tablet-line-height: 25px;
  --body-lg-tablet-letter-spacing: normal;
  --body-lg-tablet-weight: var(--weight-regular);
  --body-lg-desktop-text-size: 20px;
  --body-lg-desktop-line-height: 28px;
  --body-lg-desktop-letter-spacing: normal;
  --body-lg-desktop-weight: var(--weight-regular);
  --body-md-mobile-text-size: 17px;
  --body-md-mobile-line-height: 25px;
  --body-md-mobile-letter-spacing: normal;
  --body-md-mobile-weight: var(--weight-regular);
  --body-md-tablet-text-size: 17px;
  --body-md-tablet-line-height: 25px;
  --body-md-tablet-letter-spacing: normal;
  --body-md-tablet-weight: var(--weight-regular);
  --body-md-desktop-text-size: 17px;
  --body-md-desktop-line-height: 25px;
  --body-md-desktop-letter-spacing: normal;
  --body-md-desktop-weight: var(--weight-regular);
  --body-sm-mobile-text-size: 14px;
  --body-sm-mobile-line-height: 22px;
  --body-sm-mobile-letter-spacing: normal;
  --body-sm-mobile-weight: var(--weight-regular);
  --body-sm-tablet-text-size: 14px;
  --body-sm-tablet-line-height: 22px;
  --body-sm-tablet-letter-spacing: normal;
  --body-sm-tablet-weight: var(--weight-regular);
  --body-sm-desktop-text-size: 14px;
  --body-sm-desktop-line-height: 22px;
  --body-sm-desktop-letter-spacing: normal;
  --body-sm-desktop-weight: var(--weight-regular);
  --body-xs-mobile-text-size: 13px;
  --body-xs-mobile-line-height: 20px;
  --body-xs-mobile-letter-spacing: normal;
  --body-xs-mobile-weight: var(--weight-regular);
  --body-xs-tablet-text-size: 13px;
  --body-xs-tablet-line-height: 20px;
  --body-xs-tablet-letter-spacing: normal;
  --body-xs-tablet-weight: var(--weight-regular);
  --body-xs-desktop-text-size: 13px;
  --body-xs-desktop-line-height: 20px;
  --body-xs-desktop-letter-spacing: normal;
  --body-xs-desktop-weight: var(--weight-regular);
  /* eyebrow sizings */
  --eyebrow-mobile-text-size: 16px;
  --eyebrow-mobile-line-height: 20px;
  --eyebrow-mobile-letter-spacing: normal;
  --eyebrow-mobile-weight: var(--weight-bold);
  --eyebrow-tablet-text-size: 16px;
  --eyebrow-tablet-line-height: 20px;
  --eyebrow-tablet-letter-spacing: normal;
  --eyebrow-tablet-weight: var(--weight-bold);
  --eyebrow-desktop-text-size: 16px;
  --eyebrow-desktop-line-height: 20px;
  --eyebrow-desktop-letter-spacing: normal;
  --eyebrow-desktop-weight: var(--weight-bold);
  /* button styles */
  --button-text-transform: uppercase;
  --button-mobile-text-size: 16px;
  --button-mobile-line-height: 20px;
  --button-mobile-letter-spacing: normal;
  --button-mobile-weight: var(--weight-bold);
  --button-tablet-text-size: 16px;
  --button-tablet-line-height: 20px;
  --button-tablet-letter-spacing: normal;
  --button-tablet-weight: var(--weight-bold);
  --button-desktop-text-size: 16px;
  --button-desktop-line-height: 20px;
  --button-desktop-letter-spacing: normal;
  --button-desktop-weight: var(--weight-bold);
  /* label styles */
  --label-text-transform: uppercase;
  --label-mobile-text-size: 16px;
  --label-mobile-line-height: 20px;
  --label-mobile-letter-spacing: normal;
  --label-mobile-weight: var(--weight-bold);
  --label-tablet-text-size: 16px;
  --label-tablet-line-height: 20px;
  --label-tablet-letter-spacing: normal;
  --label-tablet-weight: var(--weight-bold);
  --label-desktop-text-size: 16px;
  --label-desktop-line-height: 20px;
  --label-desktop-letter-spacing: normal;
  --label-desktop-weight: var(--weight-bold);
  /* chevron link styles */
  --chevron-link-text-transform: uppercase;
  --chevron-link-mobile-text-size: 16px;
  --chevron-link-mobile-line-height: 20px;
  --chevron-link-mobile-letter-spacing: normal;
  --chevron-link-mobile-weight: var(--weight-bold);
  --chevron-link-tablet-text-size: 16px;
  --chevron-link-tablet-line-height: 20px;
  --chevron-link-tablet-letter-spacing: normal;
  --chevron-link-tablet-weight: var(--weight-bold);
  --chevron-link-desktop-text-size: 16px;
  --chevron-link-desktop-line-height: 20px;
  --chevron-link-desktop-letter-spacing: normal;
  --chevron-link-desktop-weight: var(--weight-bold);
}

.on-the-run-ca {
  /* colors */
  --color-otrBlack: #000000;
  --color-otrBlack-10: #e6edf1;
  --color-otrBlack-15: #d9d9d9;
  --color-otrBlack-40: #909090;
  --color-otrBlue: #003da5;
  --color-otrLightBlue: #bbd5ec;
  --color-otrCharcoal: #616161;
  --color-otrCharcoalDark: #424242;
  --color-otrCharcoalLight: #7d7d7d;
  --color-otrPaleBlue: #f2f6f8;
  --color-otrRed: #da291c;
  --color-otrWhite: #ffffff;
  --color-otrYellow: #ffc400;
  /* background colors */
  --color-default: var(--color-otrWhite);
  --color-heroContrast: var(--color-otrBlue);
  --color-impact: var(--color-otrBlue);
  --color-attention: var(--color-otrBlue);
  --color-subdued: var(--color-otrPaleBlue);
  --color-subduedDim: var(--color-otrBlack-10);
  --color-soft: var(--color-otrYellow);
  --color-softImpact: var(--color-otrLightBlue);
  --color-accent: var(--color-otrBlue);
  --color-emphasis: var(--color-otrBlue);
  /* background images */
  --gradient-emphasis: linear-gradient(var(--color-otrBlue), var(--color-otrBlue));
  --image-featureCardsBlock: none;
  --image-locationSearchBlock: url('../images/on-the-run-ca/map_otr.webp');
  --image-splitCtaBlock: url('../images/on-the-run-ca/OnTheRun_split_cta_background_pattern.webp');
  --image-showcaseHeroBlock: none;
  /* nav theme variables */
  --superNav-background: var(--color-otrWhite);
  --superNav-link-hover: rgba(0, 0, 0, 0.06);
  --superNav-link-active: var(--color-otrBlue);
  --nav-background: linear-gradient(var(--color-otrYellow), var(--color-otrYellow));
  --nav-mobileBackground: linear-gradient(var(--color-otrYellow), var(--color-otrYellow));
  --nav-onBackground: var(--color-otrWhite);
  --nav-link-active: var(--color-impact);
}

.journie {
  /* button border radius */
  --border-radius-btn: 4px;
}

/* button additional sizes */

.journie .btn-small {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* fixme: fix when font weight added */
  line-height: var(--body-sm-mobile-line-height);
  font-size: var(--body-sm-mobile-text-size);
  font-weight: var(--body-sm-mobile-weight);
}

@media (min-width: 600px) {
  .journie .btn-small {
    line-height: var(--body-sm-tablet-line-height);
    font-size: var(--body-sm-tablet-text-size);
    font-weight: var(--body-sm-tablet-weight);
  }
}

@media (min-width: 900px) {
  .journie .btn-small {
    line-height: var(--body-sm-desktop-line-height);
    font-size: var(--body-sm-desktop-text-size);
    font-weight: var(--body-sm-desktop-weight);
  }
}

.journie .btn-small.font-bold {
  font-weight: 600;
}

.journie .btn-small {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 7px;
  padding-top: 6px;
  font-weight: 600;
  text-transform: none;
}

/* location finder overrides */

.journie section[data-block='location-finder'] {
  .context-contrast {
    --color-btn-action: var(--color-subdued);
    --color-btn-onAction: var(--color-journieFountainFizz);
  }
  .btn-quickFilter:hover,
    .btn-quickFilter:focus-visible {
    --color-btn-basic: var(--color-journieFountainFizz);
  }
  .btn-allFilters:hover,
    .btn-allFilters:focus-visible {
    background: rgba(255, 255, 255, 0.15);
  }
}

.journie {
  --font-family-display: 'Anton', 'Helvetica', 'Arial', sans-serif;
  --font-family-other: 'Satoshi', 'Helvetica', 'Arial', sans-serif;
  font-family: var(--font-family-other);
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semi-bold: 600;
  --weight-bold: 700;
  --weight-extra-bold: 800;
  --weight-black: 900;
  /* display sizes */
  --display-lg-mobile-text-size: 48px;
  --display-lg-mobile-line-height: 113%;
  --display-lg-mobile-letter-spacing: normal;
  --display-lg-mobile-weight: var(--weight-regular);
  --display-lg-tablet-text-size: 62px;
  --display-lg-tablet-line-height: 113%;
  --display-lg-tablet-letter-spacing: normal;
  --display-lg-tablet-weight: var(--weight-regular);
  --display-lg-desktop-text-size: 72px;
  --display-lg-desktop-line-height: 113%;
  --display-lg-desktop-letter-spacing: normal;
  --display-lg-desktop-weight: var(--weight-regular);
  --display-md-mobile-text-size: 43px;
  --display-md-mobile-line-height: 113%;
  --display-md-mobile-letter-spacing: normal;
  --display-md-mobile-weight: var(--weight-regular);
  --display-md-tablet-text-size: 48px;
  --display-md-tablet-line-height: 113%;
  --display-md-tablet-letter-spacing: normal;
  --display-md-tablet-weight: var(--weight-regular);
  --display-md-desktop-text-size: 64px;
  --display-md-desktop-line-height: 113%;
  --display-md-desktop-letter-spacing: normal;
  --display-md-desktop-weight: var(--weight-regular);
  --display-sm-mobile-text-size: 28px;
  --display-sm-mobile-line-height: 113%;
  --display-sm-mobile-letter-spacing: normal;
  --display-sm-mobile-weight: var(--weight-regular);
  --display-sm-tablet-text-size: 32px;
  --display-sm-tablet-line-height: 113%;
  --display-sm-tablet-letter-spacing: normal;
  --display-sm-tablet-weight: var(--weight-regular);
  --display-sm-desktop-text-size: 48px;
  --display-sm-desktop-line-height: 113%;
  --display-sm-desktop-letter-spacing: normal;
  --display-sm-desktop-weight: var(--weight-regular);
  /* heading styles */
  --heading-md-xl-text-transform: none;
  --heading-xs-sm-text-transform: none;
  --heading-xl-mobile-text-size: 27px;
  --heading-xl-mobile-line-height: 33px;
  --heading-xl-mobile-letter-spacing: -0.20000000298023224;
  --heading-xl-mobile-weight: var(--weight-bold);
  --heading-xl-tablet-text-size: 30px;
  --heading-xl-tablet-line-height: 36px;
  --heading-xl-tablet-letter-spacing: -0.20000000298023224;
  --heading-xl-tablet-weight: var(--weight-bold);
  --heading-xl-desktop-text-size: 36px;
  --heading-xl-desktop-line-height: 43px;
  --heading-xl-desktop-letter-spacing: -0.20000000298023224;
  --heading-xl-desktop-weight: var(--weight-bold);
  --heading-lg-mobile-text-size: 24px;
  --heading-lg-mobile-line-height: 30px;
  --heading-lg-mobile-letter-spacing: normal;
  --heading-lg-mobile-weight: var(--weight-black);
  --heading-lg-tablet-text-size: 24px;
  --heading-lg-tablet-line-height: 30px;
  --heading-lg-tablet-letter-spacing: normal;
  --heading-lg-tablet-weight: var(--weight-black);
  --heading-lg-desktop-text-size: 30px;
  --heading-lg-desktop-line-height: 36px;
  --heading-lg-desktop-letter-spacing: normal;
  --heading-lg-desktop-weight: var(--weight-black);
  --heading-md-mobile-text-size: 20px;
  --heading-md-mobile-line-height: 23px;
  --heading-md-mobile-letter-spacing: normal;
  --heading-md-mobile-weight: var(--weight-bold);
  --heading-md-tablet-text-size: 20px;
  --heading-md-tablet-line-height: 23px;
  --heading-md-tablet-letter-spacing: normal;
  --heading-md-tablet-weight: var(--weight-bold);
  --heading-md-desktop-text-size: 24px;
  --heading-md-desktop-line-height: 30px;
  --heading-md-desktop-letter-spacing: normal;
  --heading-md-desktop-weight: var(--weight-bold);
  --heading-sm-mobile-text-size: 18px;
  --heading-sm-mobile-line-height: 26px;
  --heading-sm-mobile-letter-spacing: normal;
  --heading-sm-mobile-weight: var(--weight-bold);
  --heading-sm-tablet-text-size: 18px;
  --heading-sm-tablet-line-height: 26px;
  --heading-sm-tablet-letter-spacing: normal;
  --heading-sm-tablet-weight: var(--weight-bold);
  --heading-sm-desktop-text-size: 20px;
  --heading-sm-desktop-line-height: 25px;
  --heading-sm-desktop-letter-spacing: normal;
  --heading-sm-desktop-weight: var(--weight-bold);
  --heading-xs-mobile-text-size: 18px;
  --heading-xs-mobile-line-height: 26px;
  --heading-xs-mobile-letter-spacing: normal;
  --heading-xs-mobile-weight: var(--weight-bold);
  --heading-xs-tablet-text-size: 18px;
  --heading-xs-tablet-line-height: 26px;
  --heading-xs-tablet-letter-spacing: normal;
  --heading-xs-tablet-weight: var(--weight-semi-bold);
  --heading-xs-desktop-text-size: 18px;
  --heading-xs-desktop-line-height: 26px;
  --heading-xs-desktop-letter-spacing: normal;
  --heading-xs-desktop-weight: var(--weight-bold);
  /* body sizings */
  --body-lg-mobile-text-size: 19px;
  --body-lg-mobile-line-height: 26px;
  --body-lg-mobile-letter-spacing: normal;
  --body-lg-mobile-weight: var(--weight-regular);
  --body-lg-tablet-text-size: 22px;
  --body-lg-tablet-line-height: 30px;
  --body-lg-tablet-letter-spacing: normal;
  --body-lg-tablet-weight: var(--weight-regular);
  --body-lg-desktop-text-size: 22px;
  --body-lg-desktop-line-height: 30px;
  --body-lg-desktop-letter-spacing: normal;
  --body-lg-desktop-weight: var(--weight-regular);
  /* TODO: Add paragraph spacing properties for body styles - think of how we want to implement this in styling */
  --body-md-mobile-text-size: 19px;
  --body-md-mobile-line-height: 26px;
  --body-md-mobile-letter-spacing: normal;
  --body-md-mobile-weight: var(--weight-regular);
  --body-md-tablet-text-size: 19px;
  --body-md-tablet-line-height: 26px;
  --body-md-tablet-letter-spacing: normal;
  --body-md-tablet-weight: var(--weight-regular);
  --body-md-desktop-text-size: 19px;
  --body-md-desktop-line-height: 26px;
  --body-md-desktop-letter-spacing: normal;
  --body-md-desktop-weight: var(--weight-regular);
  --body-sm-mobile-text-size: 15px;
  --body-sm-mobile-line-height: 22px;
  --body-sm-mobile-letter-spacing: normal;
  --body-sm-mobile-weight: var(--weight-regular);
  --body-sm-tablet-text-size: 15px;
  --body-sm-tablet-line-height: 22px;
  --body-sm-tablet-letter-spacing: normal;
  --body-sm-tablet-weight: var(--weight-regular);
  --body-sm-desktop-text-size: 15px;
  --body-sm-desktop-line-height: 22px;
  --body-sm-desktop-letter-spacing: normal;
  --body-sm-desktop-weight: var(--weight-regular);
  --body-xs-mobile-text-size: 13px;
  --body-xs-mobile-line-height: 19px;
  --body-xs-mobile-letter-spacing: normal;
  --body-xs-mobile-weight: var(--weight-regular);
  --body-xs-tablet-text-size: 13px;
  --body-xs-tablet-line-height: 19px;
  --body-xs-tablet-letter-spacing: normal;
  --body-xs-tablet-weight: var(--weight-regular);
  --body-xs-desktop-text-size: 13px;
  --body-xs-desktop-line-height: 19px;
  --body-xs-desktop-letter-spacing: normal;
  --body-xs-desktop-weight: var(--weight-regular);
  /* eyebrow sizings */
  --eyebrow-mobile-text-size: 19px;
  --eyebrow-mobile-line-height: 24px;
  --eyebrow-mobile-letter-spacing: 0.800000011920929;
  --eyebrow-mobile-weight: var(--weight-bold);
  --eyebrow-tablet-text-size: 19px;
  --eyebrow-tablet-line-height: 24px;
  --eyebrow-tablet-letter-spacing: 0.800000011920929;
  --eyebrow-tablet-weight: var(--weight-bold);
  --eyebrow-desktop-text-size: 19px;
  --eyebrow-desktop-line-height: 24px;
  --eyebrow-desktop-letter-spacing: 0.800000011920929;
  --eyebrow-desktop-weight: var(--weight-bold);
  /* button styles */
  --button-text-transform: none;
  --button-mobile-text-size: 16px;
  --button-mobile-line-height: 20px;
  --button-mobile-letter-spacing: normal;
  --button-mobile-weight: var(--weight-bold);
  --button-tablet-text-size: 16px;
  --button-tablet-line-height: 20px;
  --button-tablet-letter-spacing: normal;
  --button-tablet-weight: var(--weight-bold);
  --button-desktop-text-size: 16px;
  --button-desktop-line-height: 20px;
  --button-desktop-letter-spacing: normal;
  --button-desktop-weight: var(--weight-bold);
  /* label styles */
  --label-text-transform: none;
  --label-mobile-text-size: 19px;
  --label-mobile-line-height: 24px;
  --label-mobile-letter-spacing: normal;
  --label-mobile-weight: var(--weight-bold);
  --label-tablet-text-size: 19px;
  --label-tablet-line-height: 24px;
  --label-tablet-letter-spacing: normal;
  --label-tablet-weight: var(--weight-bold);
  --label-desktop-text-size: 19px;
  --label-desktop-line-height: 24px;
  --label-desktop-letter-spacing: normal;
  --label-desktop-weight: var(--weight-bold);
  /* chevron link styles */
  --chevron-link-text-transform: none;
  --chevron-link-mobile-text-size: 19px;
  --chevron-link-mobile-line-height: 24px;
  --chevron-link-mobile-letter-spacing: normal;
  --chevron-link-mobile-weight: var(--weight-bold);
  --chevron-link-tablet-text-size: 19px;
  --chevron-link-tablet-line-height: 24px;
  --chevron-link-tablet-letter-spacing: normal;
  --chevron-link-tablet-weight: var(--weight-bold);
  --chevron-link-desktop-text-size: 19px;
  --chevron-link-desktop-line-height: 24px;
  --chevron-link-desktop-letter-spacing: normal;
  --chevron-link-desktop-weight: var(--weight-bold);
  /* colors */
  --color-journieNightShift: #00023c;
  --color-journieFountainFizz: #140090;
  --color-journieSlushieGum: #ff007a;
  --color-journieHighEnergy: #fff50c;
  --color-journieNightShift900: #000bb0;
  --color-journieNightShift600: #0018ff;
  --color-journieNightShift400: #3e67ff;
  --color-journieNightShift200: #a8c7ff;
  --color-journieNightShift50: #e4f0ff;
  --color-journieSlushieGum500: #ff27a0;
  --color-journieSlushieGum400: #ff58bd;
  --color-journieSlushieGum300: #ff98d9;
  --color-journieSlushieGum200: #ffc6eb;
  --color-journieSlushieGum50: #fff0f9;
  --color-journieBlack: #000000;
  --color-journieGrey400: #2b2b2b;
  --color-journieGrey300: #696969;
  --color-journieGrey200: #c7c7c7;
  --color-journieGrey100: #f2f2f2;
  --color-journieWhite: #ffffff;
  /* background colors */
  --color-default: var(--color-journieWhite);
  --color-heroContrast: var(--color-journieFountainFizz);
  --color-impact: var(--color-journieNightShift);
  --color-attention: var(--color-journieNightShift900);
  --color-subdued: var(--color-journieNightShift50);
  --color-subduedDim: var(--color-journieNightShift50);
  --color-soft: var(--color-journieHighEnergy);
  --color-softImpact: var(--color-journieSlushieGum50);
  --color-accent: var(--color-journieNightShift600);
  --color-emphasis: var(--color-journieSlushieGum);
  --gradient-emphasis: linear-gradient(to bottom, #0b2d71, #0b2d71);
  --image-locationSearchBlock: none;
  --image-showcaseHeroBlock: none;
  /* Supernav theme variables */
  --superNav-background: var(--color-journieWhite);
  --superNav-link-hover: rgba(0, 0, 0, 0.06);
  --superNav-link-active: var(--color-journieNightShift900);
  /* main nav variables */
  --nav-background: linear-gradient(var(--color-journieNightShift), var(--color-journieNightShift));
  --nav-mobileBackground: linear-gradient(var(--color-journieNightShift), var(--color-journieNightShift));
  --nav-onBackground: var(--color-journieWhite);
  --nav-link-active: var(--color-journieSlushieGum);
  /* button colors */
  --color-disabled: #d9d9d9;
  --color-onDisabled: #7d7d7d;
  --color-disabledContrast: #909090;
  --color-onDisabledContrast: #424242;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

@media (min-width: 600px) {
  .\!container {
    max-width: 600px !important;
  }

  .container {
    max-width: 600px;
  }
}

@media (min-width: 900px) {
  .\!container {
    max-width: 900px !important;
  }

  .container {
    max-width: 900px;
  }
}

@media (min-width: 1294px) {
  .\!container {
    max-width: 1294px !important;
  }

  .container {
    max-width: 1294px;
  }
}

.card {
  overflow: hidden;
  border-radius: 10px;
}

.\!container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1294px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1294px;
}

.container-wide {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1600px;
  &.rounded-container {
    @media (min-width: 1600px) {
      border-radius: 10px;
    }
  }
}

.container-p {
  width: 100%;
}

@media (min-width: 600px) {
  .container-p {
    max-width: 600px;
  }
}

@media (min-width: 900px) {
  .container-p {
    max-width: 900px;
  }
}

@media (min-width: 1294px) {
  .container-p {
    max-width: 1294px;
  }
}

.container-p {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1294px;
  padding-left: 24px;
}

@media (min-width: 600px) {
  .container-p {
    padding-left: 40px;
  }
}

@media (min-width: 900px) {
  .container-p {
    padding-left: 48px;
  }
}

@media (min-width: 1294px) {
  .container-p {
    padding-left: 56px;
  }
}

.container-p {
  padding-right: 24px;
}

@media (min-width: 600px) {
  .container-p {
    padding-right: 40px;
  }
}

@media (min-width: 900px) {
  .container-p {
    padding-right: 48px;
  }
}

@media (min-width: 1294px) {
  .container-p {
    padding-right: 56px;
  }
}

/*
   * Custom top border class for footer.
   * The requirement is that the footer top border should only show if the block directly above it has a white background.
   * There could also be block exceptions (bg-colored-* background colored when md to lg for example).
   * The only exception at this time is the Spotlight block which is a non white bg when md to lg.
   */

/* Handles when section is the last child of main */

main:has(> section.bg-default:last-child:not([class*='bg-colored-'])) + footer > div.footer-t-border {
  border-top-width: 1px;
  border-style: solid;
  border-top-color: var(--color-divider);
}

/* Handles the exception where block has non white bg when md to lg.  */

main:has(> section:last-child.bg-default.bg-colored-md-to-lg) + footer > div.footer-t-border {
  border-top-width: 1px;
  border-style: solid;
  border-top-color: var(--color-divider);
}

@media (min-width: 900px) {
  @media not all and (min-width: 1294px) {
    main:has(> section:last-child.bg-default.bg-colored-md-to-lg) + footer > div.footer-t-border {
      border-top-color: transparent;
    }
  }
}

/*
    Handles when the last child of main is a div, it looks for a section inside it that is a last child.
    However, when the div has nested sibling divs each with sections inside,
    it will still select sections that are not the absolute last section (block) in main.
    This is because each nested div can have a section that is the last child.
    This is an edge case with no solution currently.
    There is no feasible way to select the last section on a page (regardless of nesting) using CSS3.
  */

main:has(> div:last-child section.bg-default:last-child:not([class*='bg-colored-'])) + footer > div.footer-t-border {
  border-top-width: 1px;
  border-style: solid;
  border-top-color: var(--color-divider);
}

/*
     * Custom top border class for Legal Block.
     * The requirement is that the legal block top border should only show if the block directly above it has a white background.
     * There could also be block exceptions (bg-colored-* background colored when md to lg for example).
     * The only exception at this time is the Spotlight block which is a non white bg when md to lg.
     */

/* Handles when section is the last child of main */

section.bg-default:not([class*='bg-colored-']) + section > ul.legal-block-border-top {
  border-top-width: 1px;
  border-style: solid;
  border-top-color: var(--color-divider);
}

/* Handles the exception where block has non white bg when md to lg. */

section.bg-default.bg-colored-md-to-lg + section > ul.legal-block-border-top {
  border-top-width: 1px;
  border-style: solid;
  border-top-color: var(--color-divider);
}

@media (min-width: 900px) {
  @media not all and (min-width: 1294px) {
    section.bg-default.bg-colored-md-to-lg + section > ul.legal-block-border-top {
      border-top-color: transparent;
    }
  }
}

/*
    Handles when the block above the Legal Block is wrapped inside a div
    (eg. in the case of a block with a Journie Horizon Frame)
  */

div:has(section.bg-default:last-child:not([class*='bg-colored-'])) + section > ul.legal-block-border-top {
  border-top-width: 1px;
  border-style: solid;
  border-top-color: var(--color-divider);
}

.layout-header-nav {
  *[data-block='location-finder'] {
    height: calc(100dvh - 128px);
  }
  @media (min-width: 900px) {
    *[data-block='location-finder'] {
      height: unset;
    }
  }
  .location-finder-body {
    height: calc(100dvh - 228px);
  }
  @media (min-width: 900px) {
    .location-finder-body {
      display: flex;
    }
  }
  @media (min-width: 900px) {
    .location-finder-body {
      height: calc(100vh - 238px);
    }
  }
  /* desktop */
  @media (min-width: 900px) {
    .location-finder-sidepanel {
      height: calc(100vh - 238px);
    }
  }
  /* mobile */
  .location-finder-mobile-list {
    height: calc(100dvh - 219px);
  }
  .location-finder-mobile-details {
    height: calc(100dvh - 128px);
  }
}

*[data-block='location-finder'] {
  .btn-quickFilter:hover,
    .btn-quickFilter:focus-visible {
    --color-btn-basic: rgba(0, 0, 0, 0.2);
  }
  .btn-allFilters:hover,
    .btn-allFilters:focus-visible {
    background: rgba(0, 0, 0, 0.2);
  }
}

/*
   * This better reflects what shows in editor.
   * With richtext
   * - on enter it creates a new <p>
   * - on shift-enter cursor moves to beginning of new line </br>
   */

.rich-text {
  h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    font-weight: var(--weight-medium);
  }
  p {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  h3 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h3 {
    line-height: var(--heading-sm-mobile-line-height);
  }
  h3 {
    font-size: var(--heading-sm-mobile-text-size);
  }
  h3 {
    font-weight: var(--heading-sm-mobile-weight);
  }
  h3 {
    text-transform: var(--heading-xs-sm-text-transform);
  }
  @media (min-width: 600px) {
    h3 {
      line-height: var(--heading-sm-tablet-line-height);
    }
  }
  @media (min-width: 600px) {
    h3 {
      font-size: var(--heading-sm-tablet-text-size);
    }
  }
  @media (min-width: 600px) {
    h3 {
      font-weight: var(--heading-sm-tablet-weight);
    }
  }
  @media (min-width: 900px) {
    h3 {
      line-height: var(--heading-sm-desktop-line-height);
    }
  }
  @media (min-width: 900px) {
    h3 {
      font-size: var(--heading-sm-desktop-text-size);
    }
  }
  @media (min-width: 900px) {
    h3 {
      font-weight: var(--heading-sm-desktop-weight);
    }
  }
  p:first-of-type,
    h3:first-of-type {
    margin-top: 0px;
  }
  a {
    word-break: break-all;
  }
  a {
    text-decoration-line: underline;
  }
  b,
    strong {
    font-weight: var(--weight-bold);
  }
  /* list styles */
  ol,
    ul {
    padding-left: 16px;
  }
  ul {
    list-style-type: disc;
  }
  ol {
    list-style-type: decimal;
  }
  li {
    padding-left: 8px;
  }
  /* table styles */
  table,
    table th,
    table td {
    border-width: 1px;
  }
  table,
    table th,
    table td {
    border-style: solid;
  }
  table,
    table th,
    table td {
    border-color: var(--color-standard);
  }
  table,
    table th,
    table td {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  table,
    table th,
    table td {
    padding-left: 12px;
    padding-right: 12px;
  }
  table {
    margin-bottom: 16px;
  }
  table th {
    background-color: var(--color-subdued);
  }
  table p:last-of-type {
    margin-bottom: 0px;
  }
  /* disallowed elements */
  img {
    display: none;
  }
}

/* images */

.rich-text.show-images {
  img {
    display: inline-block;
  }
}

.rich-text.show-images.full-width {
  img {
    margin-top: 84px;
    margin-bottom: 84px;
  }
  img {
    display: block;
  }
  img {
    height: 100%;
  }
  img {
    width: 100%;
  }
  img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  img:last-of-type {
    margin-bottom: 0px;
  }
}

/* block-specific rich text styles */

.contestPrizesBlock .rich-text {
  h4,
    h4 b {
    text-transform: uppercase;
  }
  h4,
    h4 b {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h4,
    h4 b {
    color: var(--color-display);
  }
  h4,
    h4 b {
    font-family: var(--font-family-display);
  }
  h4,
    h4 b {
    line-height: var(--display-sm-mobile-line-height);
  }
  h4,
    h4 b {
    font-size: var(--display-sm-mobile-text-size);
  }
  h4,
    h4 b {
    font-weight: var(--display-sm-mobile-weight);
  }
  @media (min-width: 600px) {
    h4,
    h4 b {
      line-height: var(--display-sm-tablet-line-height);
    }
  }
  @media (min-width: 600px) {
    h4,
    h4 b {
      font-size: var(--display-sm-tablet-text-size);
    }
  }
  @media (min-width: 600px) {
    h4,
    h4 b {
      font-weight: var(--display-sm-tablet-weight);
    }
  }
  @media (min-width: 900px) {
    h4,
    h4 b {
      line-height: var(--display-sm-desktop-line-height);
    }
  }
  @media (min-width: 900px) {
    h4,
    h4 b {
      font-size: var(--display-sm-desktop-text-size);
    }
  }
  @media (min-width: 900px) {
    h4,
    h4 b {
      font-weight: var(--display-sm-desktop-weight);
    }
  }
  h4,
    h4 b {
    margin-bottom: 8px;
  }
  h4,
    h4 b {
    margin-top: 0px;
  }
  p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  p {
    /* fixme: fix when font weight added */
  }
  p {
    line-height: var(--body-lg-mobile-line-height);
  }
  p {
    font-size: var(--body-lg-mobile-text-size);
  }
  p {
    font-weight: var(--body-lg-mobile-weight);
  }
  @media (min-width: 600px) {
    p {
      line-height: var(--body-lg-tablet-line-height);
    }
  }
  @media (min-width: 600px) {
    p {
      font-size: var(--body-lg-tablet-text-size);
    }
  }
  @media (min-width: 600px) {
    p {
      font-weight: var(--body-lg-tablet-weight);
    }
  }
  @media (min-width: 900px) {
    p {
      line-height: var(--body-lg-desktop-line-height);
    }
  }
  @media (min-width: 900px) {
    p {
      font-size: var(--body-lg-desktop-text-size);
    }
  }
  @media (min-width: 900px) {
    p {
      font-weight: var(--body-lg-desktop-weight);
    }
  }
  p {
    margin-bottom: 32px;
  }
  p {
    margin-top: 0px;
  }
  p {
    color: var(--color-subtle);
  }
  p:last-of-type {
    margin-bottom: 0px;
  }
}

.contactInfo .rich-text {
  h3 {
    margin-bottom: 0px;
  }
}

.standardLegalPage .rich-text {
  h3,
    h4 {
    color: var(--color-bright);
  }
  ul,
    ol {
    margin-left: 12px;
  }
}

section[data-block='step-showcase'] {
  ul li {
    list-style-position: inside;
  }
  ul li {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  li p {
    display: inline;
  }
}

/* display typography */

.display-lg {
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-display);
  font-family: var(--font-family-display);
  line-height: var(--display-lg-mobile-line-height);
  font-size: var(--display-lg-mobile-text-size);
  font-weight: var(--display-lg-mobile-weight);
}

@media (min-width: 600px) {
  .display-lg {
    line-height: var(--display-lg-tablet-line-height);
    font-size: var(--display-lg-tablet-text-size);
    font-weight: var(--display-lg-tablet-weight);
  }
}

@media (min-width: 900px) {
  .display-lg {
    line-height: var(--display-lg-desktop-line-height);
    font-size: var(--display-lg-desktop-text-size);
    font-weight: var(--display-lg-desktop-weight);
  }
}

.display-md {
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-display);
  font-family: var(--font-family-display);
  line-height: var(--display-md-mobile-line-height);
  font-size: var(--display-md-mobile-text-size);
  font-weight: var(--display-md-mobile-weight);
}

@media (min-width: 600px) {
  .display-md {
    line-height: var(--display-md-tablet-line-height);
    font-size: var(--display-md-tablet-text-size);
    font-weight: var(--display-md-tablet-weight);
  }
}

@media (min-width: 900px) {
  .display-md {
    line-height: var(--display-md-desktop-line-height);
    font-size: var(--display-md-desktop-text-size);
    font-weight: var(--display-md-desktop-weight);
  }
}

.display-sm {
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-display);
  font-family: var(--font-family-display);
  line-height: var(--display-sm-mobile-line-height);
  font-size: var(--display-sm-mobile-text-size);
  font-weight: var(--display-sm-mobile-weight);
}

@media (min-width: 600px) {
  .display-sm {
    line-height: var(--display-sm-tablet-line-height);
    font-size: var(--display-sm-tablet-text-size);
    font-weight: var(--display-sm-tablet-weight);
  }
}

@media (min-width: 900px) {
  .display-sm {
    line-height: var(--display-sm-desktop-line-height);
    font-size: var(--display-sm-desktop-text-size);
    font-weight: var(--display-sm-desktop-weight);
  }
}

/* headline typography*/

.headline-xs {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--heading-xs-mobile-line-height);
  font-size: var(--heading-xs-mobile-text-size);
  font-weight: var(--heading-xs-mobile-weight);
  text-transform: var(--heading-xs-sm-text-transform);
}

@media (min-width: 600px) {
  .headline-xs {
    line-height: var(--heading-xs-tablet-line-height);
    font-size: var(--heading-xs-tablet-text-size);
    font-weight: var(--heading-xs-tablet-weight);
  }
}

@media (min-width: 900px) {
  .headline-xs {
    line-height: var(--heading-xs-desktop-line-height);
    font-size: var(--heading-xs-desktop-text-size);
    font-weight: var(--heading-xs-desktop-weight);
  }
}

.headline-sm {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--heading-sm-mobile-line-height);
  font-size: var(--heading-sm-mobile-text-size);
  font-weight: var(--heading-sm-mobile-weight);
  text-transform: var(--heading-xs-sm-text-transform);
}

@media (min-width: 600px) {
  .headline-sm {
    line-height: var(--heading-sm-tablet-line-height);
    font-size: var(--heading-sm-tablet-text-size);
    font-weight: var(--heading-sm-tablet-weight);
  }
}

@media (min-width: 900px) {
  .headline-sm {
    line-height: var(--heading-sm-desktop-line-height);
    font-size: var(--heading-sm-desktop-text-size);
    font-weight: var(--heading-sm-desktop-weight);
  }
}

/* fixme: add other variants */

.headline-md {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--heading-md-mobile-line-height);
  font-size: var(--heading-md-mobile-text-size);
  font-weight: var(--heading-md-mobile-weight);
  text-transform: var(--heading-md-xl-text-transform);
}

@media (min-width: 600px) {
  .headline-md {
    line-height: var(--heading-md-tablet-line-height);
    font-size: var(--heading-md-tablet-text-size);
    font-weight: var(--heading-md-tablet-weight);
  }
}

@media (min-width: 900px) {
  .headline-md {
    line-height: var(--heading-md-desktop-line-height);
    font-size: var(--heading-md-desktop-text-size);
    font-weight: var(--heading-md-desktop-weight);
  }
}

.headline-lg {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--heading-lg-mobile-line-height);
  font-size: var(--heading-lg-mobile-text-size);
  font-weight: var(--heading-lg-mobile-weight);
  text-transform: var(--heading-md-xl-text-transform);
}

@media (min-width: 600px) {
  .headline-lg {
    line-height: var(--heading-lg-tablet-line-height);
    font-size: var(--heading-lg-tablet-text-size);
    font-weight: var(--heading-lg-tablet-weight);
  }
}

@media (min-width: 900px) {
  .headline-lg {
    line-height: var(--heading-lg-desktop-line-height);
    font-size: var(--heading-lg-desktop-text-size);
    font-weight: var(--heading-lg-desktop-weight);
  }
}

.headline-xl {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--heading-xl-mobile-line-height);
  font-size: var(--heading-xl-mobile-text-size);
  font-weight: var(--heading-xl-mobile-weight);
  text-transform: var(--heading-md-xl-text-transform);
}

@media (min-width: 600px) {
  .headline-xl {
    line-height: var(--heading-xl-tablet-line-height);
    font-size: var(--heading-xl-tablet-text-size);
    font-weight: var(--heading-xl-tablet-weight);
  }
}

@media (min-width: 900px) {
  .headline-xl {
    line-height: var(--heading-xl-desktop-line-height);
    font-size: var(--heading-xl-desktop-text-size);
    font-weight: var(--heading-xl-desktop-weight);
  }
}

/* body typography */

.body-xs {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* fixme: fix when font weight added */
  line-height: var(--body-xs-mobile-line-height);
  font-size: var(--body-xs-mobile-text-size);
  font-weight: var(--body-xs-mobile-weight);
}

@media (min-width: 600px) {
  .body-xs {
    line-height: var(--body-xs-tablet-line-height);
    font-size: var(--body-xs-tablet-text-size);
    font-weight: var(--body-xs-tablet-weight);
  }
}

@media (min-width: 900px) {
  .body-xs {
    line-height: var(--body-xs-desktop-line-height);
    font-size: var(--body-xs-desktop-text-size);
    font-weight: var(--body-xs-desktop-weight);
  }
}

.body-sm {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* fixme: fix when font weight added */
  line-height: var(--body-sm-mobile-line-height);
  font-size: var(--body-sm-mobile-text-size);
  font-weight: var(--body-sm-mobile-weight);
}

@media (min-width: 600px) {
  .body-sm {
    line-height: var(--body-sm-tablet-line-height);
    font-size: var(--body-sm-tablet-text-size);
    font-weight: var(--body-sm-tablet-weight);
  }
}

@media (min-width: 900px) {
  .body-sm {
    line-height: var(--body-sm-desktop-line-height);
    font-size: var(--body-sm-desktop-text-size);
    font-weight: var(--body-sm-desktop-weight);
  }
}

/* fixme: fix this bolded font when weights are added */

.body-sm.font-bold {
  font-weight: 600;
}

.body-md {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* fixme: fix when font weight added */
  line-height: var(--body-md-mobile-line-height);
  font-size: var(--body-md-mobile-text-size);
  font-weight: var(--body-md-mobile-weight);
}

@media (min-width: 600px) {
  .body-md {
    line-height: var(--body-md-tablet-line-height);
    font-size: var(--body-md-tablet-text-size);
    font-weight: var(--body-md-tablet-weight);
  }
}

@media (min-width: 900px) {
  .body-md {
    line-height: var(--body-md-desktop-line-height);
    font-size: var(--body-md-desktop-text-size);
    font-weight: var(--body-md-desktop-weight);
  }
}

.body-md.font-bold {
  font-weight: 600;
}

.body-lg {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* fixme: fix when font weight added */
  line-height: var(--body-lg-mobile-line-height);
  font-size: var(--body-lg-mobile-text-size);
  font-weight: var(--body-lg-mobile-weight);
}

@media (min-width: 600px) {
  .body-lg {
    line-height: var(--body-lg-tablet-line-height);
    font-size: var(--body-lg-tablet-text-size);
    font-weight: var(--body-lg-tablet-weight);
  }
}

@media (min-width: 900px) {
  .body-lg {
    line-height: var(--body-lg-desktop-line-height);
    font-size: var(--body-lg-desktop-text-size);
    font-weight: var(--body-lg-desktop-weight);
  }
}

/* other typography */

.eyebrow {
  text-transform: uppercase;
  line-height: var(--eyebrow-mobile-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--eyebrow-mobile-text-size);
  font-weight: var(--eyebrow-mobile-weight);
}

@media (min-width: 600px) {
  .eyebrow {
    line-height: var(--eyebrow-tablet-line-height);
    font-size: var(--eyebrow-tablet-text-size);
    font-weight: var(--eyebrow-tablet-weight);
  }
}

@media (min-width: 900px) {
  .eyebrow {
    line-height: var(--eyebrow-desktop-line-height);
    font-size: var(--eyebrow-desktop-text-size);
    font-weight: var(--eyebrow-desktop-weight);
  }
}

.label {
  line-height: var(--label-mobile-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--label-mobile-text-size);
  font-weight: var(--label-mobile-weight);
  text-transform: var(--label-text-transform);
}

@media (min-width: 600px) {
  .label {
    line-height: var(--label-tablet-line-height);
    font-size: var(--label-tablet-text-size);
    font-weight: var(--label-tablet-weight);
  }
}

@media (min-width: 900px) {
  .label {
    line-height: var(--label-desktop-line-height);
    font-size: var(--label-desktop-text-size);
    font-weight: var(--label-desktop-weight);
  }
}

.button {
  line-height: var(--button-mobile-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--button-mobile-text-size);
  font-weight: var(--button-mobile-weight);
  text-transform: var(--button-text-transform);
}

@media (min-width: 600px) {
  .button {
    line-height: var(--button-tablet-line-height);
    font-size: var(--button-tablet-text-size);
    font-weight: var(--button-tablet-weight);
  }
}

@media (min-width: 900px) {
  .button {
    line-height: var(--button-desktop-line-height);
    font-size: var(--button-desktop-text-size);
    font-weight: var(--button-desktop-weight);
  }
}

.chevron-link {
  line-height: var(--chevron-link-mobile-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--chevron-link-mobile-text-size);
  font-weight: var(--chevron-link-mobile-weight);
  text-transform: var(--chevron-link-text-transform);
}

@media (min-width: 600px) {
  .chevron-link {
    line-height: var(--chevron-link-tablet-line-height);
    font-size: var(--chevron-link-tablet-text-size);
    font-weight: var(--chevron-link-tablet-weight);
  }
}

@media (min-width: 900px) {
  .chevron-link {
    line-height: var(--chevron-link-desktop-line-height);
    font-size: var(--chevron-link-desktop-text-size);
    font-weight: var(--chevron-link-desktop-weight);
  }
}

.super-nav {
  height: 48px;
}

@media (min-width: 900px) {
  .super-nav {
    height: 74px;
  }
}

@media (min-width: 1031px) {
  .super-nav {
    height: 52px;
  }
}

.super-nav-brand-icon {
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

@media (min-width: 900px) {
  .super-nav-brand-icon {
    height: 36px;
  }
}

.super-nav-brand-icon:not(.active) {
  opacity: 0.4;
  --tw-saturate: saturate(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.super-nav-brand-icon:not(.active):hover {
  opacity: 0.6;
}

.on-the-run-ca {
  --nav-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.18);
}

/* Text */

.on-the-run-ca .context-base,
  .on-the-run-ca.context-base {
  --color-standard: var(--color-otrBlack);
  --color-subtle: var(--color-otrCharcoalDark);
  --color-rich: var(--color-otrBlue);
  --color-highlight: var(--color-otrBlue);
  --color-bright: var(--color-otrBlue);
  --color-display: var(--color-standard);
}

.on-the-run-ca .context-contrast,
  .on-the-run-ca.context-contrast {
  --color-standard: var(--color-otrWhite);
  --color-subtle: var(--color-otrWhite);
  --color-rich: var(--color-otrPaleBlue);
  --color-highlight: var(--color-otrYellow);
  --color-display: var(--color-standard);
}

/* Button action */

.on-the-run-ca .context-base,
  .on-the-run-ca.context-base {
  --color-btn-action: var(--color-otrYellow);
  --color-btn-onAction: var(--color-otrBlack);
  --color-btn-actionBorder: transparent;
  --color-btn-actionOutline: var(--color-otrYellow);
  --color-btn-actionTint: rgba(0, 0, 0, 0.06);
  --color-btn-actionDisabled: var(--color-otrBlack-15);
  --color-btn-onActionDisabled: var(--color-otrCharcoalLight);
  /* for OTR showcase hero block with soft or soft-impact styles, the action button should be white */
  section[data-block='showcase-hero'].bg-soft,
    section[data-block='showcase-hero'].bg-softImpact {
    --color-btn-action: var(--color-otrWhite);
    --color-btn-actionOutline: var(--color-otrWhite);
  }
}

.on-the-run-ca .context-contrast,
  .on-the-run-ca.context-contrast {
  --color-btn-action: var(--color-otrWhite);
  --color-btn-onAction: var(--color-otrBlack);
  --color-btn-actionOutline: var(--color-otrWhite);
  --color-btn-actionDisabled: var(--color-otrBlack-40);
  --color-btn-onActionDisabled: var(--color-otrCharcoalDark);
}

/* Button basic */

.on-the-run-ca .context-base,
  .on-the-run-ca.context-base {
  --color-btn-basic: transparent;
  --color-btn-onBasic: var(--color-otrBlack);
  --color-btn-basicBorder: var(--color-otrBlack);
  --color-btn-basicOutline: var(--color-otrBlack);
  --color-btn-basicTint: rgba(0, 0, 0, 0.06);
  --color-btn-basicDisabled: transparent;
  --color-btn-onBasicDisabled: var(--color-otrCharcoalLight);
}

.on-the-run-ca .context-contrast,
  .on-the-run-ca.context-contrast {
  --color-btn-onBasic: var(--color-otrWhite);
  --color-btn-basicBorder: var(--color-otrWhite);
  --color-btn-basicOutline: var(--color-otrWhite);
  --color-btn-basicDisabled: transparent;
  --color-btn-onBasicDisabled: var(--color-otrCharcoalDark);
}

/* Link */

.on-the-run-ca .context-base,
  .on-the-run-ca.context-base {
  --color-link: var(--color-otrBlue);
}

.on-the-run-ca .context-contrast,
  .on-the-run-ca.context-contrast {
  --color-link: var(--color-otrWhite);
}

/* Icon */

.on-the-run-ca .context-base,
  .on-the-run-ca.context-base {
  --color-icon: var(--color-otrBlack);
}

.on-the-run-ca .context-contrast,
  .on-the-run-ca.context-contrast {
  --color-icon: var(--color-otrWhite);
}

/* Divider */

.on-the-run-ca .context-base,
  .on-the-run-ca.context-base {
  --color-divider: rgba(0, 0, 0, 0.15);
}

.on-the-run-ca .context-contrast,
  .on-the-run-ca.context-contrast {
  --color-divider: rgba(255, 255, 255, 0.35);
}

.journie {
  --nav-shadow: none;
}

/* Text */

.journie .context-base,
  .journie.context-base {
  --color-standard: var(--color-journieBlack);
  --color-subtle: var(--color-journieGrey400);
  --color-rich: var(--color-journieNightShift);
  --color-highlight: var(--color-journieSlushieGum);
  --color-bright: var(--color-journieNightShift900);
  --color-display: var(--color-rich);
}

.journie .context-contrast,
  .journie.context-contrast {
  --color-standard: var(--color-journieWhite);
  --color-subtle: var(--color-journieWhite);
  --color-rich: var(--color-journieHighEnergy);
  --color-highlight: var(--color-journieSlushieGum);
  --color-display: var(--color-standard);
}

/* Button action */

.journie .context-base,
  .journie.context-base {
  --color-btn-action: var(--color-journieFountainFizz);
  --color-btn-onAction: var(--color-journieWhite);
  --color-btn-actionBorder: transparent;
  --color-btn-actionOutline: var(--color-journieFountainFizz);
  --color-btn-actionTint: rgba(0, 0, 0, 0.06);
  /*TODO: get actual colors*/
  --color-btn-actionDisabled: var(--color-journieGrey200);
  --color-btn-onActionDisabled: var(--color-journieGrey300);
}

.journie .context-contrast,
  .journie.context-contrast {
  --color-btn-action: var(--color-journieSlushieGum);
  --color-btn-onAction: var(--color-journieWhite);
  --color-btn-actionBorder: transparent;
  --color-btn-actionOutline: var(--color-journieSlushieGum);
  --color-btn-actionTint: rgba(0, 0, 0, 0.06);
  /*TODO: get actual colors*/
  --color-btn-actionDisabled: var(--color-journieGrey300);
  --color-btn-onActionDisabled: var(--color-journieGrey400);
}

/* Button basic */

.journie .context-base,
  .journie.context-base {
  --color-btn-basic: transparent;
  --color-btn-onBasic: var(--color-journieFountainFizz);
  --color-btn-basicBorder: var(--color-journieFountainFizz);
  --color-btn-basicOutline: var(--color-journieFountainFizz);
  --color-btn-basicTint: rgba(0, 0, 0, 0.06);
  --color-btn-basicDisabled: var(--color-journieGrey200);
  --color-btn-onBasicDisabled: var(--color-journieGrey300);
}

.journie .context-contrast,
  .journie.context-contrast {
  --color-btn-basic: transparent;
  --color-btn-onBasic: var(--color-journieWhite);
  --color-btn-basicBorder: var(--color-journieWhite);
  --color-btn-basicOutline: var(--color-journieWhite);
  --color-btn-basicTint: rgba(0, 0, 0, 0.06);
  --color-btn-basicDisabled: var(--color-journieGrey300);
  --color-btn-onBasicDisabled: var(--color-journieGrey400);
}

/* Link */

.journie .context-base,
  .journie.context-base {
  --color-link: var(--color-journieNightShift600);
}

.journie .context-contrast,
  .journie.context-contrast {
  --color-link: var(--color-journieHighEnergy);
}

/* Icon */

.journie .context-base,
  .journie.context-base {
  --color-icon: var(--color-journieFountainFizz);
}

.journie .context-contrast,
  .journie.context-contrast {
  --color-icon: var(--color-journieWhite);
}

/* Divider */

.journie .context-base,
  .journie.context-base {
  --color-divider: rgba(0, 0, 0, 0.15);
}

.journie .context-contrast,
  .journie.context-contrast {
  --color-divider: rgba(255, 255, 255, 0.35);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.-top-superNavHeightMobile {
  top: -48px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-l8 {
  bottom: 40px;
}

.left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;
}

.right-l12 {
  right: 72px;
}

.right-l4 {
  right: 16px;
}

.right-l5 {
  right: 20px;
}

.right-l6 {
  right: 24px;
}

.right-l7 {
  right: 32px;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-l3 {
  top: 12px;
}

.top-l7 {
  top: 32px;
}

.z-backdrop {
  z-index: 35;
}

.z-background {
  z-index: -1;
}

.z-header {
  z-index: 30;
}

.z-overlay {
  z-index: 10;
}

.z-popup {
  z-index: 50;
}

.z-superOverlay {
  z-index: 11;
}

.z-superSurface {
  z-index: 2;
}

.z-surface {
  z-index: 1;
}

.order-1 {
  order: 1;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.row-start-1 {
  grid-row-start: 1;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.m-\[7px\] {
  margin: 7px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-l3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mb-l1 {
  margin-bottom: 4px;
}

.mb-l10 {
  margin-bottom: 56px;
}

.mb-l12 {
  margin-bottom: 72px;
}

.mb-l17 {
  margin-bottom: 160px;
}

.mb-l2 {
  margin-bottom: 8px;
}

.mb-l3 {
  margin-bottom: 12px;
}

.mb-l4 {
  margin-bottom: 16px;
}

.mb-l5 {
  margin-bottom: 20px;
}

.mb-l6 {
  margin-bottom: 24px;
}

.mb-l7 {
  margin-bottom: 32px;
}

.mb-l8 {
  margin-bottom: 40px;
}

.mb-l9 {
  margin-bottom: 48px;
}

.ml-auto {
  margin-left: auto;
}

.ml-l2 {
  margin-left: 8px;
}

.ml-l3 {
  margin-left: 12px;
}

.ml-l6 {
  margin-left: 24px;
}

.mr-l2 {
  margin-right: 8px;
}

.mr-l6 {
  margin-right: 24px;
}

.mt-\[6px\] {
  margin-top: 6px;
}

.mt-l10 {
  margin-top: 56px;
}

.mt-l11 {
  margin-top: 64px;
}

.mt-l2 {
  margin-top: 8px;
}

.mt-l3 {
  margin-top: 12px;
}

.mt-l4 {
  margin-top: 16px;
}

.mt-l5 {
  margin-top: 20px;
}

.mt-l6 {
  margin-top: 24px;
}

.mt-l7 {
  margin-top: 32px;
}

.mt-l8 {
  margin-top: 40px;
}

.mt-l9 {
  margin-top: 48px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-\[1\/1\] {
  aspect-ratio: 1/1;
}

.aspect-\[16\/10\] {
  aspect-ratio: 16/10;
}

.aspect-\[16\/11\] {
  aspect-ratio: 16/11;
}

.aspect-\[16\/9\] {
  aspect-ratio: 16/9;
}

.aspect-\[3\/2\] {
  aspect-ratio: 3/2;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.h-2 {
  height: 2px;
}

.h-\[100\%\] {
  height: 100%;
}

.h-\[205px\] {
  height: 205px;
}

.h-\[300px\] {
  height: 300px;
}

.h-\[50px\] {
  height: 50px;
}

.h-\[56px\] {
  height: 56px;
}

.h-\[64px\] {
  height: 64px;
}

.h-\[770px\] {
  height: 770px;
}

.h-\[calc\(100dvh-128px\)\] {
  height: calc(100dvh - 128px);
}

.h-\[calc\(100dvh-219px\)\] {
  height: calc(100dvh - 219px);
}

.h-\[calc\(100dvh-228px\)\] {
  height: calc(100dvh - 228px);
}

.h-\[calc\(100dvh-72px\)\] {
  height: calc(100dvh - 72px);
}

.h-auto {
  height: auto;
}

.h-dvh {
  height: 100dvh;
}

.h-full {
  height: 100%;
}

.h-l10 {
  height: 56px;
}

.h-l11 {
  height: 64px;
}

.h-l12 {
  height: 72px;
}

.h-l7 {
  height: 32px;
}

.h-l8 {
  height: 40px;
}

.h-l9 {
  height: 48px;
}

.h-max {
  height: -moz-max-content;
  height: max-content;
}

.h-screen {
  height: 100vh;
}

.max-h-\[500px\] {
  max-height: 500px;
}

.max-h-full {
  max-height: 100%;
}

.min-h-\[100px\] {
  min-height: 100px;
}

.min-h-l16 {
  min-height: 140px;
}

.w-1\/2 {
  width: 50%;
}

.w-3\/4 {
  width: 75%;
}

.w-4\/5 {
  width: 80%;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-\[100px\] {
  width: 100px;
}

.w-\[160px\] {
  width: 160px;
}

.w-\[600px\] {
  width: 600px;
}

.w-\[64px\] {
  width: 64px;
}

.w-\[96px\] {
  width: 96px;
}

.w-auto {
  width: auto;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-l6 {
  width: 24px;
}

.w-l7 {
  width: 32px;
}

.w-l8 {
  width: 40px;
}

.w-l9 {
  width: 48px;
}

.w-screen {
  width: 100vw;
}

.min-w-l6 {
  min-width: 24px;
}

.min-w-l8 {
  min-width: 40px;
}

.max-w-\[375px\] {
  max-width: 375px;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.max-w-\[90px\] {
  max-width: 90px;
}

.max-w-containerWide {
  max-width: 1600px;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize {
  resize: both;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-l1 {
  gap: 4px;
}

.gap-l11 {
  gap: 64px;
}

.gap-l2 {
  gap: 8px;
}

.gap-l3 {
  gap: 12px;
}

.gap-l4 {
  gap: 16px;
}

.gap-l5 {
  gap: 20px;
}

.gap-l6 {
  gap: 24px;
}

.gap-l7 {
  gap: 32px;
}

.gap-l8 {
  gap: 40px;
}

.gap-l9 {
  gap: 48px;
}

.gap-x-l10 {
  -moz-column-gap: 56px;
       column-gap: 56px;
}

.gap-x-l14 {
  -moz-column-gap: 96px;
       column-gap: 96px;
}

.gap-x-l2 {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.gap-x-l3 {
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.gap-x-l4 {
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.gap-x-l5 {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.gap-x-l6 {
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.gap-x-l7 {
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.gap-x-l8 {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.gap-x-l9 {
  -moz-column-gap: 48px;
       column-gap: 48px;
}

.gap-y-l10 {
  row-gap: 56px;
}

.gap-y-l11 {
  row-gap: 64px;
}

.gap-y-l12 {
  row-gap: 72px;
}

.gap-y-l2 {
  row-gap: 8px;
}

.gap-y-l3 {
  row-gap: 12px;
}

.gap-y-l4 {
  row-gap: 16px;
}

.gap-y-l5 {
  row-gap: 20px;
}

.gap-y-l6 {
  row-gap: 24px;
}

.gap-y-l7 {
  row-gap: 32px;
}

.gap-y-l8 {
  row-gap: 40px;
}

.gap-y-l9 {
  row-gap: 48px;
}

.space-y-l1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4px * var(--tw-space-y-reverse));
}

.space-y-l11 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(64px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(64px * var(--tw-space-y-reverse));
}

.space-y-l6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}

.space-y-l8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(40px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(40px * var(--tw-space-y-reverse));
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-clip {
  overflow: clip;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-pretty {
  text-wrap: pretty;
}

.rounded {
  border-radius: 10px;
}

.rounded-button {
  border-radius: var(--border-radius-btn);
}

.rounded-card {
  border-radius: 10px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-sm {
  border-radius: 6px;
}

.rounded-b-card {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rounded-b-sm {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-r-\[6px\] {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-t-card {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.rounded-t-sm {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-\[6px\] {
  border-width: 6px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-b-\[1px\] {
  border-bottom-width: 1px;
}

.border-b-\[2px\] {
  border-bottom-width: 2px;
}

.border-r-\[10px\] {
  border-right-width: 10px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-\[1px\] {
  border-top-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-\[rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  border-color: rgba(0,0,0,0.25);
}

.border-btn-actionBorder {
  border-color: var(--color-btn-actionBorder);
}

.border-btn-basicBorder {
  border-color: var(--color-btn-basicBorder);
}

.border-btn-onBasicDisabled {
  border-color: var(--color-btn-onBasicDisabled);
}

.border-divider {
  border-color: var(--color-divider);
}

.border-error {
  --tw-border-opacity: 1;
  border-color: rgb(226 1 1 / var(--tw-border-opacity));
}

.border-highlight {
  border-color: var(--color-highlight);
}

.border-input-border {
  border-color: var(--color-black);
}

.border-link {
  border-color: var(--color-link);
}

.border-standard {
  border-color: var(--color-standard);
}

.border-transparent {
  border-color: transparent;
}

.border-b-divider {
  border-bottom-color: var(--color-divider);
}

.border-b-nav-linkActive {
  border-bottom-color: var(--nav-link-active);
}

.border-b-superNav-linkActive {
  border-bottom-color: var(--superNav-link-active);
}

.border-b-transparent {
  border-bottom-color: transparent;
}

.border-t-divider {
  border-top-color: var(--color-divider);
}

.bg-\[\#C9C9C9\]\/80 {
  background-color: rgb(201 201 201 / 0.8);
}

.bg-\[rgba\(0\2c 0\2c 0\2c 0\.55\)\] {
  background-color: rgba(0,0,0,0.55);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-attention {
  background-color: var(--color-attention);
}

.bg-btn-action {
  background-color: var(--color-btn-action);
}

.bg-btn-actionDisabled {
  background-color: var(--color-btn-actionDisabled);
}

.bg-btn-basic {
  background-color: var(--color-btn-basic);
}

.bg-btn-basicDisabled {
  background-color: var(--color-btn-basicDisabled);
}

.bg-default {
  background-color: var(--color-default);
}

.bg-divider {
  background-color: var(--color-divider);
}

.bg-heroContrast {
  background-color: var(--color-heroContrast);
}

.bg-impact {
  background-color: var(--color-impact);
}

.bg-soft {
  background-color: var(--color-soft);
}

.bg-softImpact {
  background-color: var(--color-softImpact);
}

.bg-subdued {
  background-color: var(--color-subdued);
}

.bg-subduedDim {
  background-color: var(--color-subduedDim);
}

.bg-success {
  --tw-bg-opacity: 1;
  background-color: rgb(0 117 74 / var(--tw-bg-opacity));
}

.bg-superNav-background {
  background-color: var(--superNav-background);
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-\[url\(\'\/images\/shared\/crown\.svg\'\)\] {
  background-image: url('/images/shared/crown.svg');
}

.bg-\[url\(\'\/images\/shared\/diamond\.svg\'\)\] {
  background-image: url('/images/shared/diamond.svg');
}

.bg-\[url\(\'\/images\/shared\/express\.svg\'\)\] {
  background-image: url('/images/shared/express.svg');
}

.bg-bistroBackground {
  background-image: linear-gradient(to bottom, #ffeec3 18.15%, #ffd372 89%);
}

.bg-bistroImageMobile {
  background-image: url('../images/on-the-run-ca/OnTheRun_Bistro_background_mobile.jpg');
}

.bg-emphasisGradient {
  background-image: var(--gradient-emphasis);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-journieGradient {
  background-image: linear-gradient(180deg, #ebf2fa 0%, #f4f9fd 75.5%);
}

.bg-locationSearchBlockImage {
  background-image: var(--image-locationSearchBlock);
}

.bg-navBackground {
  background-image: var(--nav-background);
}

.bg-navMobileBackground {
  background-image: var(--nav-mobileBackground);
}

.bg-showCaseBackgroundImage {
  background-image: var(--image-showcaseHeroBlock);
}

.bg-splitCtaBlockImage {
  background-image: var(--image-splitCtaBlock);
}

.from-\[\#0B0203\] {
  --tw-gradient-from: #0B0203 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(11 2 3 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.bg-\[length\:170\%\] {
  background-size: 170%;
}

.bg-contain {
  background-size: contain;
}

.bg-cover {
  background-size: cover;
}

.bg-\[center_70\%\] {
  background-position: center 70%;
}

.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-right-bottom {
  background-position: right bottom;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.fill-btn-onAction {
  fill: var(--color-btn-onAction);
}

.fill-btn-onBasic {
  fill: var(--color-btn-onBasic);
}

.fill-current {
  fill: currentColor;
}

.fill-error {
  fill: #E20101;
}

.fill-highlight {
  fill: var(--color-highlight);
}

.fill-icon {
  fill: var(--color-icon);
}

.fill-link {
  fill: var(--color-link);
}

.fill-rich {
  fill: var(--color-rich);
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.object-left {
  -o-object-position: left;
     object-position: left;
}

.object-right {
  -o-object-position: right;
     object-position: right;
}

.p-0 {
  padding: 0px;
}

.p-\[7px\] {
  padding: 7px;
}

.p-l1 {
  padding: 4px;
}

.p-l2 {
  padding: 8px;
}

.p-l4 {
  padding: 16px;
}

.p-l5 {
  padding: 20px;
}

.p-l6 {
  padding: 24px;
}

.p-l7 {
  padding: 32px;
}

.\!py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.px-l11 {
  padding-left: 64px;
  padding-right: 64px;
}

.px-l2 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-l3 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-l4 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-l5 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-l6 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-l7 {
  padding-left: 32px;
  padding-right: 32px;
}

.px-l8 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-l1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-l10 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.py-l11 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.py-l12 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.py-l13 {
  padding-top: 84px;
  padding-bottom: 84px;
}

.py-l2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-l3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-l4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-l5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-l6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-l7 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-l8 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-l9 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-l1 {
  padding-bottom: 4px;
}

.pb-l10 {
  padding-bottom: 56px;
}

.pb-l11 {
  padding-bottom: 64px;
}

.pb-l12 {
  padding-bottom: 72px;
}

.pb-l13 {
  padding-bottom: 84px;
}

.pb-l16 {
  padding-bottom: 140px;
}

.pb-l2 {
  padding-bottom: 8px;
}

.pb-l3 {
  padding-bottom: 12px;
}

.pb-l4 {
  padding-bottom: 16px;
}

.pb-l5 {
  padding-bottom: 20px;
}

.pb-l6 {
  padding-bottom: 24px;
}

.pb-l7 {
  padding-bottom: 32px;
}

.pb-l8 {
  padding-bottom: 40px;
}

.pb-l9 {
  padding-bottom: 48px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-l2 {
  padding-left: 8px;
}

.pl-l4 {
  padding-left: 16px;
}

.pl-l5 {
  padding-left: 20px;
}

.pl-l8 {
  padding-left: 40px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-l10 {
  padding-right: 56px;
}

.pr-l4 {
  padding-right: 16px;
}

.pr-l5 {
  padding-right: 20px;
}

.pr-l6 {
  padding-right: 24px;
}

.pr-l7 {
  padding-right: 32px;
}

.pr-l8 {
  padding-right: 40px;
}

.pt-\[1px\] {
  padding-top: 1px;
}

.pt-l1 {
  padding-top: 4px;
}

.pt-l12 {
  padding-top: 72px;
}

.pt-l2 {
  padding-top: 8px;
}

.pt-l5 {
  padding-top: 20px;
}

.pt-l6 {
  padding-top: 24px;
}

.pt-l7 {
  padding-top: 32px;
}

.pt-l8 {
  padding-top: 40px;
}

.pt-l9 {
  padding-top: 48px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[14px\] {
  font-size: 14px;
}

.font-\[500\] {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.lowercase {
  text-transform: lowercase;
}

.text-\[darkgrey\] {
  --tw-text-opacity: 1;
  color: rgb(169 169 169 / var(--tw-text-opacity));
}

.text-bright {
  color: var(--color-bright);
}

.text-btn-onAction {
  color: var(--color-btn-onAction);
}

.text-btn-onActionDisabled {
  color: var(--color-btn-onActionDisabled);
}

.text-btn-onBasic {
  color: var(--color-btn-onBasic);
}

.text-btn-onBasicDisabled {
  color: var(--color-btn-onBasicDisabled);
}

.text-error {
  --tw-text-opacity: 1;
  color: rgb(226 1 1 / var(--tw-text-opacity));
}

.text-highlight {
  color: var(--color-highlight);
}

.text-link {
  color: var(--color-link);
}

.text-rich {
  color: var(--color-rich);
}

.text-standard {
  color: var(--color-standard);
}

.text-subtle {
  color: var(--color-subtle);
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

.shadow-\[0_1px_8px_\#696969\] {
  --tw-shadow: 0 1px 8px #696969;
  --tw-shadow-colored: 0 1px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0px_-1px_8px_\#ddd\] {
  --tw-shadow: 0px -1px 8px #ddd;
  --tw-shadow-colored: 0px -1px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[2px_0px_8px_\#999\] {
  --tw-shadow: 2px 0px 8px #999;
  --tw-shadow-colored: 2px 0px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[4px_4px_20px_0_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-shadow: 4px 4px 20px 0 rgba(0,0,0,0.2);
  --tw-shadow-colored: 4px 4px 20px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-nav {
  --tw-shadow: var(--nav-shadow);
  --tw-shadow-colored: var(--nav-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline-offset-\[3px\] {
  outline-offset: 3px;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.saturate-0 {
  --tw-saturate: saturate(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.will-change-transform {
  will-change: transform;
}

.block-padding {
  padding-top: 72px;
}

@media (min-width: 900px) {
  .block-padding {
    padding-top: 96px;
  }
}

@media (min-width: 1294px) {
  .block-padding {
    padding-top: 140px;
  }
}

.block-padding {
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  .block-padding {
    padding-bottom: 96px;
  }
}

@media (min-width: 1294px) {
  .block-padding {
    padding-bottom: 140px;
  }
}

.block-padding-t {
  padding-top: 72px;
}

@media (min-width: 900px) {
  .block-padding-t {
    padding-top: 96px;
  }
}

@media (min-width: 1294px) {
  .block-padding-t {
    padding-top: 140px;
  }
}

.block-padding-b {
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  .block-padding-b {
    padding-bottom: 96px;
  }
}

@media (min-width: 1294px) {
  .block-padding-b {
    padding-bottom: 140px;
  }
}

/* TODO: this should be mapped w/ site theme configs */

section.bg-emphasisGradient + section.bg-accent {
  padding-top: 0px;
}

section.bg-soft + section.bg-soft {
  padding-top: 0px;
}

/*
    when the block after the hero has the same bg color,
    and it's not a banner-type hero,
    only strip out the padding for mobile
    since on desktop, the hero uses a background image
  */

section[data-block='hero']:not(.hero-banner).bg-default + section.bg-default {
  padding-top: 0px;
}

@media (min-width: 900px) {
  section[data-block='hero']:not(.hero-banner).bg-default + section.bg-default {
    padding-top: 72px;
  }

  @media (min-width: 900px) {
    section[data-block='hero']:not(.hero-banner).bg-default + section.bg-default {
      padding-top: 96px;
    }
  }

  @media (min-width: 1294px) {
    section[data-block='hero']:not(.hero-banner).bg-default + section.bg-default {
      padding-top: 140px;
    }
  }
}

/* for blocks that aren't the hero block */

section:not([data-block='hero']).bg-default + section.bg-default {
  padding-top: 0px;
}

/* select the section that is before the spotlight component */

/* padding numbers are 120px (overlap section) + block padding values */

section:has(+ section[data-block='spotlight']) {
  position: relative;
}

@media (min-width: 900px) {
  section:has(+ section[data-block='spotlight']) {
    padding-bottom: 216px;
  }
}

@media (min-width: 1294px) {
  section:has(+ section[data-block='spotlight']) {
    padding-bottom: 260px;
  }
}

/*
   * relative and z-surface so overlapping component is on top
   * negative margin to reduce space of component by shifted amount
   * translate to shift overlapping component down
   */

.overlap-down {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .overlap-down {
    margin-top: -90px;
    --tw-translate-y: 90px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}

/*
   * increase block padding to take into account the extra space by
   * shifted overlapping component (l14+90px or l16+90px)
   */

.overlap-down + section {
  position: relative;
}

@media (min-width: 900px) {
  .overlap-down + section {
    padding-top: 186px;
  }
}

@media (min-width: 1294px) {
  .overlap-down + section {
    padding-top: 230px;
  }
}

/*
   * relative and z-surface so overlapping component is on top
   * negative margin to reduce space of component by shifted amount
   * translate to shift overlapping component up
   */

/*
   * increase block padding to take into account the extra space by
   * shifted overlapping component (l14+90px or l16+90px)
   */

.interpolate {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.interpolate-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.layer-after::after {
  position: absolute;
  inset: 0px;
  --tw-content: "";
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

/* import journie styles (last) so that they can be embedded and override within elements with .journie css class */

@media (min-width: 900px) {
  .md\:journie {
    /* button border radius */
    --border-radius-btn: 4px;
  }

  .md\:journie .btn-small {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* fixme: fix when font weight added */
    line-height: var(--body-sm-mobile-line-height);
    font-size: var(--body-sm-mobile-text-size);
    font-weight: var(--body-sm-mobile-weight);
  }

  @media (min-width: 600px) {
    .md\:journie .btn-small {
      line-height: var(--body-sm-tablet-line-height);
      font-size: var(--body-sm-tablet-text-size);
      font-weight: var(--body-sm-tablet-weight);
    }
  }

  @media (min-width: 900px) {
    .md\:journie .btn-small {
      line-height: var(--body-sm-desktop-line-height);
      font-size: var(--body-sm-desktop-text-size);
      font-weight: var(--body-sm-desktop-weight);
    }
  }

  .md\:journie .btn-small.font-bold {
    font-weight: 600;
  }

  .md\:journie .btn-small {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 7px;
    padding-top: 6px;
    font-weight: 600;
    text-transform: none;
  }

  .md\:journie section[data-block='location-finder'] {
  }

  .md\:journie {
    --font-family-display: 'Anton', 'Helvetica', 'Arial', sans-serif;
    --font-family-other: 'Satoshi', 'Helvetica', 'Arial', sans-serif;
    font-family: var(--font-family-other);
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semi-bold: 600;
    --weight-bold: 700;
    --weight-extra-bold: 800;
    --weight-black: 900;
    /* display sizes */
    --display-lg-mobile-text-size: 48px;
    --display-lg-mobile-line-height: 113%;
    --display-lg-mobile-letter-spacing: normal;
    --display-lg-mobile-weight: var(--weight-regular);
    --display-lg-tablet-text-size: 62px;
    --display-lg-tablet-line-height: 113%;
    --display-lg-tablet-letter-spacing: normal;
    --display-lg-tablet-weight: var(--weight-regular);
    --display-lg-desktop-text-size: 72px;
    --display-lg-desktop-line-height: 113%;
    --display-lg-desktop-letter-spacing: normal;
    --display-lg-desktop-weight: var(--weight-regular);
    --display-md-mobile-text-size: 43px;
    --display-md-mobile-line-height: 113%;
    --display-md-mobile-letter-spacing: normal;
    --display-md-mobile-weight: var(--weight-regular);
    --display-md-tablet-text-size: 48px;
    --display-md-tablet-line-height: 113%;
    --display-md-tablet-letter-spacing: normal;
    --display-md-tablet-weight: var(--weight-regular);
    --display-md-desktop-text-size: 64px;
    --display-md-desktop-line-height: 113%;
    --display-md-desktop-letter-spacing: normal;
    --display-md-desktop-weight: var(--weight-regular);
    --display-sm-mobile-text-size: 28px;
    --display-sm-mobile-line-height: 113%;
    --display-sm-mobile-letter-spacing: normal;
    --display-sm-mobile-weight: var(--weight-regular);
    --display-sm-tablet-text-size: 32px;
    --display-sm-tablet-line-height: 113%;
    --display-sm-tablet-letter-spacing: normal;
    --display-sm-tablet-weight: var(--weight-regular);
    --display-sm-desktop-text-size: 48px;
    --display-sm-desktop-line-height: 113%;
    --display-sm-desktop-letter-spacing: normal;
    --display-sm-desktop-weight: var(--weight-regular);
    /* heading styles */
    --heading-md-xl-text-transform: none;
    --heading-xs-sm-text-transform: none;
    --heading-xl-mobile-text-size: 27px;
    --heading-xl-mobile-line-height: 33px;
    --heading-xl-mobile-letter-spacing: -0.20000000298023224;
    --heading-xl-mobile-weight: var(--weight-bold);
    --heading-xl-tablet-text-size: 30px;
    --heading-xl-tablet-line-height: 36px;
    --heading-xl-tablet-letter-spacing: -0.20000000298023224;
    --heading-xl-tablet-weight: var(--weight-bold);
    --heading-xl-desktop-text-size: 36px;
    --heading-xl-desktop-line-height: 43px;
    --heading-xl-desktop-letter-spacing: -0.20000000298023224;
    --heading-xl-desktop-weight: var(--weight-bold);
    --heading-lg-mobile-text-size: 24px;
    --heading-lg-mobile-line-height: 30px;
    --heading-lg-mobile-letter-spacing: normal;
    --heading-lg-mobile-weight: var(--weight-black);
    --heading-lg-tablet-text-size: 24px;
    --heading-lg-tablet-line-height: 30px;
    --heading-lg-tablet-letter-spacing: normal;
    --heading-lg-tablet-weight: var(--weight-black);
    --heading-lg-desktop-text-size: 30px;
    --heading-lg-desktop-line-height: 36px;
    --heading-lg-desktop-letter-spacing: normal;
    --heading-lg-desktop-weight: var(--weight-black);
    --heading-md-mobile-text-size: 20px;
    --heading-md-mobile-line-height: 23px;
    --heading-md-mobile-letter-spacing: normal;
    --heading-md-mobile-weight: var(--weight-bold);
    --heading-md-tablet-text-size: 20px;
    --heading-md-tablet-line-height: 23px;
    --heading-md-tablet-letter-spacing: normal;
    --heading-md-tablet-weight: var(--weight-bold);
    --heading-md-desktop-text-size: 24px;
    --heading-md-desktop-line-height: 30px;
    --heading-md-desktop-letter-spacing: normal;
    --heading-md-desktop-weight: var(--weight-bold);
    --heading-sm-mobile-text-size: 18px;
    --heading-sm-mobile-line-height: 26px;
    --heading-sm-mobile-letter-spacing: normal;
    --heading-sm-mobile-weight: var(--weight-bold);
    --heading-sm-tablet-text-size: 18px;
    --heading-sm-tablet-line-height: 26px;
    --heading-sm-tablet-letter-spacing: normal;
    --heading-sm-tablet-weight: var(--weight-bold);
    --heading-sm-desktop-text-size: 20px;
    --heading-sm-desktop-line-height: 25px;
    --heading-sm-desktop-letter-spacing: normal;
    --heading-sm-desktop-weight: var(--weight-bold);
    --heading-xs-mobile-text-size: 18px;
    --heading-xs-mobile-line-height: 26px;
    --heading-xs-mobile-letter-spacing: normal;
    --heading-xs-mobile-weight: var(--weight-bold);
    --heading-xs-tablet-text-size: 18px;
    --heading-xs-tablet-line-height: 26px;
    --heading-xs-tablet-letter-spacing: normal;
    --heading-xs-tablet-weight: var(--weight-semi-bold);
    --heading-xs-desktop-text-size: 18px;
    --heading-xs-desktop-line-height: 26px;
    --heading-xs-desktop-letter-spacing: normal;
    --heading-xs-desktop-weight: var(--weight-bold);
    /* body sizings */
    --body-lg-mobile-text-size: 19px;
    --body-lg-mobile-line-height: 26px;
    --body-lg-mobile-letter-spacing: normal;
    --body-lg-mobile-weight: var(--weight-regular);
    --body-lg-tablet-text-size: 22px;
    --body-lg-tablet-line-height: 30px;
    --body-lg-tablet-letter-spacing: normal;
    --body-lg-tablet-weight: var(--weight-regular);
    --body-lg-desktop-text-size: 22px;
    --body-lg-desktop-line-height: 30px;
    --body-lg-desktop-letter-spacing: normal;
    --body-lg-desktop-weight: var(--weight-regular);
    /* TODO: Add paragraph spacing properties for body styles - think of how we want to implement this in styling */
    --body-md-mobile-text-size: 19px;
    --body-md-mobile-line-height: 26px;
    --body-md-mobile-letter-spacing: normal;
    --body-md-mobile-weight: var(--weight-regular);
    --body-md-tablet-text-size: 19px;
    --body-md-tablet-line-height: 26px;
    --body-md-tablet-letter-spacing: normal;
    --body-md-tablet-weight: var(--weight-regular);
    --body-md-desktop-text-size: 19px;
    --body-md-desktop-line-height: 26px;
    --body-md-desktop-letter-spacing: normal;
    --body-md-desktop-weight: var(--weight-regular);
    --body-sm-mobile-text-size: 15px;
    --body-sm-mobile-line-height: 22px;
    --body-sm-mobile-letter-spacing: normal;
    --body-sm-mobile-weight: var(--weight-regular);
    --body-sm-tablet-text-size: 15px;
    --body-sm-tablet-line-height: 22px;
    --body-sm-tablet-letter-spacing: normal;
    --body-sm-tablet-weight: var(--weight-regular);
    --body-sm-desktop-text-size: 15px;
    --body-sm-desktop-line-height: 22px;
    --body-sm-desktop-letter-spacing: normal;
    --body-sm-desktop-weight: var(--weight-regular);
    --body-xs-mobile-text-size: 13px;
    --body-xs-mobile-line-height: 19px;
    --body-xs-mobile-letter-spacing: normal;
    --body-xs-mobile-weight: var(--weight-regular);
    --body-xs-tablet-text-size: 13px;
    --body-xs-tablet-line-height: 19px;
    --body-xs-tablet-letter-spacing: normal;
    --body-xs-tablet-weight: var(--weight-regular);
    --body-xs-desktop-text-size: 13px;
    --body-xs-desktop-line-height: 19px;
    --body-xs-desktop-letter-spacing: normal;
    --body-xs-desktop-weight: var(--weight-regular);
    /* eyebrow sizings */
    --eyebrow-mobile-text-size: 19px;
    --eyebrow-mobile-line-height: 24px;
    --eyebrow-mobile-letter-spacing: 0.800000011920929;
    --eyebrow-mobile-weight: var(--weight-bold);
    --eyebrow-tablet-text-size: 19px;
    --eyebrow-tablet-line-height: 24px;
    --eyebrow-tablet-letter-spacing: 0.800000011920929;
    --eyebrow-tablet-weight: var(--weight-bold);
    --eyebrow-desktop-text-size: 19px;
    --eyebrow-desktop-line-height: 24px;
    --eyebrow-desktop-letter-spacing: 0.800000011920929;
    --eyebrow-desktop-weight: var(--weight-bold);
    /* button styles */
    --button-text-transform: none;
    --button-mobile-text-size: 16px;
    --button-mobile-line-height: 20px;
    --button-mobile-letter-spacing: normal;
    --button-mobile-weight: var(--weight-bold);
    --button-tablet-text-size: 16px;
    --button-tablet-line-height: 20px;
    --button-tablet-letter-spacing: normal;
    --button-tablet-weight: var(--weight-bold);
    --button-desktop-text-size: 16px;
    --button-desktop-line-height: 20px;
    --button-desktop-letter-spacing: normal;
    --button-desktop-weight: var(--weight-bold);
    /* label styles */
    --label-text-transform: none;
    --label-mobile-text-size: 19px;
    --label-mobile-line-height: 24px;
    --label-mobile-letter-spacing: normal;
    --label-mobile-weight: var(--weight-bold);
    --label-tablet-text-size: 19px;
    --label-tablet-line-height: 24px;
    --label-tablet-letter-spacing: normal;
    --label-tablet-weight: var(--weight-bold);
    --label-desktop-text-size: 19px;
    --label-desktop-line-height: 24px;
    --label-desktop-letter-spacing: normal;
    --label-desktop-weight: var(--weight-bold);
    /* chevron link styles */
    --chevron-link-text-transform: none;
    --chevron-link-mobile-text-size: 19px;
    --chevron-link-mobile-line-height: 24px;
    --chevron-link-mobile-letter-spacing: normal;
    --chevron-link-mobile-weight: var(--weight-bold);
    --chevron-link-tablet-text-size: 19px;
    --chevron-link-tablet-line-height: 24px;
    --chevron-link-tablet-letter-spacing: normal;
    --chevron-link-tablet-weight: var(--weight-bold);
    --chevron-link-desktop-text-size: 19px;
    --chevron-link-desktop-line-height: 24px;
    --chevron-link-desktop-letter-spacing: normal;
    --chevron-link-desktop-weight: var(--weight-bold);
    /* colors */
    --color-journieNightShift: #00023c;
    --color-journieFountainFizz: #140090;
    --color-journieSlushieGum: #ff007a;
    --color-journieHighEnergy: #fff50c;
    --color-journieNightShift900: #000bb0;
    --color-journieNightShift600: #0018ff;
    --color-journieNightShift400: #3e67ff;
    --color-journieNightShift200: #a8c7ff;
    --color-journieNightShift50: #e4f0ff;
    --color-journieSlushieGum500: #ff27a0;
    --color-journieSlushieGum400: #ff58bd;
    --color-journieSlushieGum300: #ff98d9;
    --color-journieSlushieGum200: #ffc6eb;
    --color-journieSlushieGum50: #fff0f9;
    --color-journieBlack: #000000;
    --color-journieGrey400: #2b2b2b;
    --color-journieGrey300: #696969;
    --color-journieGrey200: #c7c7c7;
    --color-journieGrey100: #f2f2f2;
    --color-journieWhite: #ffffff;
    /* background colors */
    --color-default: var(--color-journieWhite);
    --color-heroContrast: var(--color-journieFountainFizz);
    --color-impact: var(--color-journieNightShift);
    --color-attention: var(--color-journieNightShift900);
    --color-subdued: var(--color-journieNightShift50);
    --color-subduedDim: var(--color-journieNightShift50);
    --color-soft: var(--color-journieHighEnergy);
    --color-softImpact: var(--color-journieSlushieGum50);
    --color-accent: var(--color-journieNightShift600);
    --color-emphasis: var(--color-journieSlushieGum);
    --gradient-emphasis: linear-gradient(to bottom, #0b2d71, #0b2d71);
    --image-locationSearchBlock: none;
    --image-showcaseHeroBlock: none;
    /* Supernav theme variables */
    --superNav-background: var(--color-journieWhite);
    --superNav-link-hover: rgba(0, 0, 0, 0.06);
    --superNav-link-active: var(--color-journieNightShift900);
    /* main nav variables */
    --nav-background: linear-gradient(var(--color-journieNightShift), var(--color-journieNightShift));
    --nav-mobileBackground: linear-gradient(var(--color-journieNightShift), var(--color-journieNightShift));
    --nav-onBackground: var(--color-journieWhite);
    --nav-link-active: var(--color-journieSlushieGum);
    /* button colors */
    --color-disabled: #d9d9d9;
    --color-onDisabled: #7d7d7d;
    --color-disabledContrast: #909090;
    --color-onDisabledContrast: #424242;
  }
}

@media not all and (min-width: 900px) {
  .max-md\:container-p {
    width: 100%;
  }

  @media (min-width: 600px) {
    .max-md\:container-p {
      max-width: 600px;
    }
  }

  @media (min-width: 900px) {
    .max-md\:container-p {
      max-width: 900px;
    }
  }

  @media (min-width: 1294px) {
    .max-md\:container-p {
      max-width: 1294px;
    }
  }

  .max-md\:container-p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1294px;
    padding-left: 24px;
  }

  @media (min-width: 600px) {
    .max-md\:container-p {
      padding-left: 40px;
    }
  }

  @media (min-width: 900px) {
    .max-md\:container-p {
      padding-left: 48px;
    }
  }

  @media (min-width: 1294px) {
    .max-md\:container-p {
      padding-left: 56px;
    }
  }

  .max-md\:container-p {
    padding-right: 24px;
  }

  @media (min-width: 600px) {
    .max-md\:container-p {
      padding-right: 40px;
    }
  }

  @media (min-width: 900px) {
    .max-md\:container-p {
      padding-right: 48px;
    }
  }

  @media (min-width: 1294px) {
    .max-md\:container-p {
      padding-right: 56px;
    }
  }
}

@media (min-width: 900px) {
  .md\:card {
    overflow: hidden;
    border-radius: 10px;
  }

  .md\:container-p {
    width: 100%;
  }

  @media (min-width: 600px) {
    .md\:container-p {
      max-width: 600px;
    }
  }

  @media (min-width: 900px) {
    .md\:container-p {
      max-width: 900px;
    }
  }

  @media (min-width: 1294px) {
    .md\:container-p {
      max-width: 1294px;
    }
  }

  .md\:container-p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1294px;
    padding-left: 24px;
  }

  @media (min-width: 600px) {
    .md\:container-p {
      padding-left: 40px;
    }
  }

  @media (min-width: 900px) {
    .md\:container-p {
      padding-left: 48px;
    }
  }

  @media (min-width: 1294px) {
    .md\:container-p {
      padding-left: 56px;
    }
  }

  .md\:container-p {
    padding-right: 24px;
  }

  @media (min-width: 600px) {
    .md\:container-p {
      padding-right: 40px;
    }
  }

  @media (min-width: 900px) {
    .md\:container-p {
      padding-right: 48px;
    }
  }

  @media (min-width: 1294px) {
    .md\:container-p {
      padding-right: 56px;
    }
  }

  main:has(> section.md\:bg-default:last-child:not([class*='bg-colored-'])) + footer > div.footer-t-border {
    border-top-width: 1px;
    border-style: solid;
    border-top-color: var(--color-divider);
  }

  main:has(> section.md\:bg-default:last-child.bg-colored-md-to-lg) + footer > div.footer-t-border {
    border-top-width: 1px;
    border-style: solid;
    border-top-color: var(--color-divider);
  }

  @media (min-width: 900px) {
    @media not all and (min-width: 1294px) {
      main:has(> section.md\:bg-default:last-child.bg-colored-md-to-lg) + footer > div.footer-t-border {
        border-top-color: transparent;
      }
    }
  }

  main:has(> div:last-child section.md\:bg-default:last-child:not([class*='bg-colored-'])) + footer > div.footer-t-border {
    border-top-width: 1px;
    border-style: solid;
    border-top-color: var(--color-divider);
  }

  section.md\:bg-default:not([class*='bg-colored-']) + section > ul.legal-block-border-top {
    border-top-width: 1px;
    border-style: solid;
    border-top-color: var(--color-divider);
  }

  section.md\:bg-default.bg-colored-md-to-lg + section > ul.legal-block-border-top {
    border-top-width: 1px;
    border-style: solid;
    border-top-color: var(--color-divider);
  }

  @media (min-width: 900px) {
    @media not all and (min-width: 1294px) {
      section.md\:bg-default.bg-colored-md-to-lg + section > ul.legal-block-border-top {
        border-top-color: transparent;
      }
    }
  }

  div:has(section.md\:bg-default:last-child:not([class*='bg-colored-'])) + section > ul.legal-block-border-top {
    border-top-width: 1px;
    border-style: solid;
    border-top-color: var(--color-divider);
  }

  .md\:headline-md {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: var(--heading-md-mobile-line-height);
    font-size: var(--heading-md-mobile-text-size);
    font-weight: var(--heading-md-mobile-weight);
    text-transform: var(--heading-md-xl-text-transform);
  }

  @media (min-width: 600px) {
    .md\:headline-md {
      line-height: var(--heading-md-tablet-line-height);
      font-size: var(--heading-md-tablet-text-size);
      font-weight: var(--heading-md-tablet-weight);
    }
  }

  @media (min-width: 900px) {
    .md\:headline-md {
      line-height: var(--heading-md-desktop-line-height);
      font-size: var(--heading-md-desktop-text-size);
      font-weight: var(--heading-md-desktop-weight);
    }
  }

  .md\:body-sm {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* fixme: fix when font weight added */
    line-height: var(--body-sm-mobile-line-height);
    font-size: var(--body-sm-mobile-text-size);
    font-weight: var(--body-sm-mobile-weight);
  }

  @media (min-width: 600px) {
    .md\:body-sm {
      line-height: var(--body-sm-tablet-line-height);
      font-size: var(--body-sm-tablet-text-size);
      font-weight: var(--body-sm-tablet-weight);
    }
  }

  @media (min-width: 900px) {
    .md\:body-sm {
      line-height: var(--body-sm-desktop-line-height);
      font-size: var(--body-sm-desktop-text-size);
      font-weight: var(--body-sm-desktop-weight);
    }
  }

  .md\:body-sm.font-bold {
    font-weight: 600;
  }

  .md\:body-md {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* fixme: fix when font weight added */
    line-height: var(--body-md-mobile-line-height);
    font-size: var(--body-md-mobile-text-size);
    font-weight: var(--body-md-mobile-weight);
  }

  @media (min-width: 600px) {
    .md\:body-md {
      line-height: var(--body-md-tablet-line-height);
      font-size: var(--body-md-tablet-text-size);
      font-weight: var(--body-md-tablet-weight);
    }
  }

  @media (min-width: 900px) {
    .md\:body-md {
      line-height: var(--body-md-desktop-line-height);
      font-size: var(--body-md-desktop-text-size);
      font-weight: var(--body-md-desktop-weight);
    }
  }

  .md\:body-md.font-bold {
    font-weight: 600;
  }

  .on-the-run-ca .md\:context-base,.md\:context-base
  .on-the-run-ca {
    --color-standard: var(--color-otrBlack);
    --color-subtle: var(--color-otrCharcoalDark);
    --color-rich: var(--color-otrBlue);
    --color-highlight: var(--color-otrBlue);
    --color-bright: var(--color-otrBlue);
    --color-display: var(--color-standard);
  }

  .on-the-run-ca .md\:context-contrast,.md\:context-contrast
  .on-the-run-ca {
    --color-standard: var(--color-otrWhite);
    --color-subtle: var(--color-otrWhite);
    --color-rich: var(--color-otrPaleBlue);
    --color-highlight: var(--color-otrYellow);
    --color-display: var(--color-standard);
  }

  .on-the-run-ca .md\:context-base,.md\:context-base
  .on-the-run-ca {
    /* for OTR showcase hero block with soft or soft-impact styles, the action button should be white */
    --color-btn-action: var(--color-otrYellow);
    --color-btn-onAction: var(--color-otrBlack);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-otrYellow);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    --color-btn-actionDisabled: var(--color-otrBlack-15);
    --color-btn-onActionDisabled: var(--color-otrCharcoalLight)
    /* for OTR showcase hero block with soft or soft-impact styles, the action button should be white */
  }

  .on-the-run-ca .md\:context-contrast,.md\:context-contrast
  .on-the-run-ca {
    --color-btn-action: var(--color-otrWhite);
    --color-btn-onAction: var(--color-otrBlack);
    --color-btn-actionOutline: var(--color-otrWhite);
    --color-btn-actionDisabled: var(--color-otrBlack-40);
    --color-btn-onActionDisabled: var(--color-otrCharcoalDark);
  }

  .on-the-run-ca .md\:context-base,.md\:context-base
  .on-the-run-ca {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-otrBlack);
    --color-btn-basicBorder: var(--color-otrBlack);
    --color-btn-basicOutline: var(--color-otrBlack);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: transparent;
    --color-btn-onBasicDisabled: var(--color-otrCharcoalLight);
  }

  .on-the-run-ca .md\:context-contrast,.md\:context-contrast
  .on-the-run-ca {
    --color-btn-onBasic: var(--color-otrWhite);
    --color-btn-basicBorder: var(--color-otrWhite);
    --color-btn-basicOutline: var(--color-otrWhite);
    --color-btn-basicDisabled: transparent;
    --color-btn-onBasicDisabled: var(--color-otrCharcoalDark);
  }

  .on-the-run-ca .md\:context-base,.md\:context-base
  .on-the-run-ca {
    --color-link: var(--color-otrBlue);
  }

  .on-the-run-ca .md\:context-contrast,.md\:context-contrast
  .on-the-run-ca {
    --color-link: var(--color-otrWhite);
  }

  .on-the-run-ca .md\:context-base,.md\:context-base
  .on-the-run-ca {
    --color-icon: var(--color-otrBlack);
  }

  .on-the-run-ca .md\:context-contrast,.md\:context-contrast
  .on-the-run-ca {
    --color-icon: var(--color-otrWhite);
  }

  .on-the-run-ca .md\:context-base,.md\:context-base
  .on-the-run-ca {
    --color-divider: rgba(0, 0, 0, 0.15);
  }

  .on-the-run-ca .md\:context-contrast,.md\:context-contrast
  .on-the-run-ca {
    --color-divider: rgba(255, 255, 255, 0.35);
  }

  .md\:journie {
    --nav-shadow: none;
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-standard: var(--color-journieBlack);
    --color-subtle: var(--color-journieGrey400);
    --color-rich: var(--color-journieNightShift);
    --color-highlight: var(--color-journieSlushieGum);
    --color-bright: var(--color-journieNightShift900);
    --color-display: var(--color-rich);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-standard: var(--color-journieBlack);
    --color-subtle: var(--color-journieGrey400);
    --color-rich: var(--color-journieNightShift);
    --color-highlight: var(--color-journieSlushieGum);
    --color-bright: var(--color-journieNightShift900);
    --color-display: var(--color-rich);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-standard: var(--color-journieBlack);
    --color-subtle: var(--color-journieGrey400);
    --color-rich: var(--color-journieNightShift);
    --color-highlight: var(--color-journieSlushieGum);
    --color-bright: var(--color-journieNightShift900);
    --color-display: var(--color-rich);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-standard: var(--color-journieBlack);
    --color-subtle: var(--color-journieGrey400);
    --color-rich: var(--color-journieNightShift);
    --color-highlight: var(--color-journieSlushieGum);
    --color-bright: var(--color-journieNightShift900);
    --color-display: var(--color-rich);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-standard: var(--color-journieWhite);
    --color-subtle: var(--color-journieWhite);
    --color-rich: var(--color-journieHighEnergy);
    --color-highlight: var(--color-journieSlushieGum);
    --color-display: var(--color-standard);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-standard: var(--color-journieWhite);
    --color-subtle: var(--color-journieWhite);
    --color-rich: var(--color-journieHighEnergy);
    --color-highlight: var(--color-journieSlushieGum);
    --color-display: var(--color-standard);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-standard: var(--color-journieWhite);
    --color-subtle: var(--color-journieWhite);
    --color-rich: var(--color-journieHighEnergy);
    --color-highlight: var(--color-journieSlushieGum);
    --color-display: var(--color-standard);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-standard: var(--color-journieWhite);
    --color-subtle: var(--color-journieWhite);
    --color-rich: var(--color-journieHighEnergy);
    --color-highlight: var(--color-journieSlushieGum);
    --color-display: var(--color-standard);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-btn-action: var(--color-journieFountainFizz);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieFountainFizz);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey200);
    --color-btn-onActionDisabled: var(--color-journieGrey300);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-btn-action: var(--color-journieFountainFizz);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieFountainFizz);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey200);
    --color-btn-onActionDisabled: var(--color-journieGrey300);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-btn-action: var(--color-journieFountainFizz);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieFountainFizz);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey200);
    --color-btn-onActionDisabled: var(--color-journieGrey300);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-btn-action: var(--color-journieFountainFizz);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieFountainFizz);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey200);
    --color-btn-onActionDisabled: var(--color-journieGrey300);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-btn-action: var(--color-journieSlushieGum);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieSlushieGum);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey300);
    --color-btn-onActionDisabled: var(--color-journieGrey400);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-btn-action: var(--color-journieSlushieGum);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieSlushieGum);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey300);
    --color-btn-onActionDisabled: var(--color-journieGrey400);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-btn-action: var(--color-journieSlushieGum);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieSlushieGum);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey300);
    --color-btn-onActionDisabled: var(--color-journieGrey400);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-btn-action: var(--color-journieSlushieGum);
    --color-btn-onAction: var(--color-journieWhite);
    --color-btn-actionBorder: transparent;
    --color-btn-actionOutline: var(--color-journieSlushieGum);
    --color-btn-actionTint: rgba(0, 0, 0, 0.06);
    /*TODO: get actual colors*/
    --color-btn-actionDisabled: var(--color-journieGrey300);
    --color-btn-onActionDisabled: var(--color-journieGrey400);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieFountainFizz);
    --color-btn-basicBorder: var(--color-journieFountainFizz);
    --color-btn-basicOutline: var(--color-journieFountainFizz);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey200);
    --color-btn-onBasicDisabled: var(--color-journieGrey300);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieFountainFizz);
    --color-btn-basicBorder: var(--color-journieFountainFizz);
    --color-btn-basicOutline: var(--color-journieFountainFizz);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey200);
    --color-btn-onBasicDisabled: var(--color-journieGrey300);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieFountainFizz);
    --color-btn-basicBorder: var(--color-journieFountainFizz);
    --color-btn-basicOutline: var(--color-journieFountainFizz);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey200);
    --color-btn-onBasicDisabled: var(--color-journieGrey300);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieFountainFizz);
    --color-btn-basicBorder: var(--color-journieFountainFizz);
    --color-btn-basicOutline: var(--color-journieFountainFizz);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey200);
    --color-btn-onBasicDisabled: var(--color-journieGrey300);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieWhite);
    --color-btn-basicBorder: var(--color-journieWhite);
    --color-btn-basicOutline: var(--color-journieWhite);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey300);
    --color-btn-onBasicDisabled: var(--color-journieGrey400);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieWhite);
    --color-btn-basicBorder: var(--color-journieWhite);
    --color-btn-basicOutline: var(--color-journieWhite);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey300);
    --color-btn-onBasicDisabled: var(--color-journieGrey400);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieWhite);
    --color-btn-basicBorder: var(--color-journieWhite);
    --color-btn-basicOutline: var(--color-journieWhite);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey300);
    --color-btn-onBasicDisabled: var(--color-journieGrey400);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-btn-basic: transparent;
    --color-btn-onBasic: var(--color-journieWhite);
    --color-btn-basicBorder: var(--color-journieWhite);
    --color-btn-basicOutline: var(--color-journieWhite);
    --color-btn-basicTint: rgba(0, 0, 0, 0.06);
    --color-btn-basicDisabled: var(--color-journieGrey300);
    --color-btn-onBasicDisabled: var(--color-journieGrey400);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-link: var(--color-journieNightShift600);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-link: var(--color-journieNightShift600);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-link: var(--color-journieNightShift600);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-link: var(--color-journieNightShift600);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-link: var(--color-journieHighEnergy);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-link: var(--color-journieHighEnergy);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-link: var(--color-journieHighEnergy);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-link: var(--color-journieHighEnergy);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-icon: var(--color-journieFountainFizz);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-icon: var(--color-journieFountainFizz);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-icon: var(--color-journieFountainFizz);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-icon: var(--color-journieFountainFizz);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-icon: var(--color-journieWhite);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-icon: var(--color-journieWhite);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-icon: var(--color-journieWhite);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-icon: var(--color-journieWhite);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-divider: rgba(0, 0, 0, 0.15);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-divider: rgba(0, 0, 0, 0.15);
  }

  .md\:journie .context-base,.md\:journie.context-base {
    --color-divider: rgba(0, 0, 0, 0.15);
  }

  .journie .md\:context-base,.md\:context-base
  .journie {
    --color-divider: rgba(0, 0, 0, 0.15);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-divider: rgba(255, 255, 255, 0.35);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-divider: rgba(255, 255, 255, 0.35);
  }

  .md\:journie .context-contrast,.md\:journie.context-contrast {
    --color-divider: rgba(255, 255, 255, 0.35);
  }

  .journie .md\:context-contrast,.md\:context-contrast
  .journie {
    --color-divider: rgba(255, 255, 255, 0.35);
  }
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:-bottom-2::after {
  content: var(--tw-content);
  bottom: -2px;
}

.after\:left-0::after {
  content: var(--tw-content);
  left: 0px;
}

.after\:h-2::after {
  content: var(--tw-content);
  height: 2px;
}

.after\:w-\[--_width\]::after {
  content: var(--tw-content);
  width: var(--_width);
}

.after\:translate-x-\[--_left\]::after {
  content: var(--tw-content);
  --tw-translate-x: var(--_left);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:rounded-button::after {
  content: var(--tw-content);
  border-radius: var(--border-radius-btn);
}

.after\:rounded-full::after {
  content: var(--tw-content);
  border-radius: 9999px;
}

.after\:bg-standard::after {
  content: var(--tw-content);
  background-color: var(--color-standard);
}

.after\:transition-transform::after {
  content: var(--tw-content);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:duration-200::after {
  content: var(--tw-content);
  transition-duration: 200ms;
}

.after\:ease-linear::after {
  content: var(--tw-content);
  transition-timing-function: linear;
}

.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}

.first\:pt-0:first-child {
  padding-top: 0px;
}

.last\:mb-0:last-child {
  margin-bottom: 0px;
}

.last\:border-none:last-child {
  border-style: none;
}

.last\:pb-0:last-child {
  padding-bottom: 0px;
}

.hover\:bg-btn-actionTint:hover {
  background-color: var(--color-btn-actionTint);
}

.hover\:bg-subdued:hover {
  background-color: var(--color-subdued);
}

.hover\:bg-superNav-linkHover:hover {
  background-color: var(--superNav-link-hover);
}

.hover\:text-highlight:hover {
  color: var(--color-highlight);
}

.hover\:text-standard:hover {
  color: var(--color-standard);
}

.hover\:text-subtle:hover {
  color: var(--color-subtle);
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:ring:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.hover\:ring-2:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.hover\:ring-input-hover:hover {
  --tw-ring-color: rgba(0,0,0,.15);
}

.hover\:after\:bg-btn-actionTint:hover::after {
  content: var(--tw-content);
  background-color: var(--color-btn-actionTint);
}

.hover\:after\:bg-btn-basicTint:hover::after {
  content: var(--tw-content);
  background-color: var(--color-btn-basicTint);
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus\:absolute:focus {
  position: absolute;
}

.focus\:inline-block:focus {
  display: inline-block;
}

.focus\:p-l2:focus {
  padding: 8px;
}

.focus\:outline:focus {
  outline-style: solid;
}

.focus\:outline-2:focus {
  outline-width: 2px;
}

.focus\:-outline-offset-2:focus {
  outline-offset: -2px;
}

.focus\:outline-rich:focus {
  outline-color: var(--color-rich);
}

.focus\:outline-superNav-linkActive:focus {
  outline-color: var(--superNav-link-active);
}

.focus-visible\:bg-subdued:focus-visible {
  background-color: var(--color-subdued);
}

.focus-visible\:outline-1:focus-visible {
  outline-width: 1px;
}

.focus-visible\:outline-btn-actionOutline:focus-visible {
  outline-color: var(--color-btn-actionOutline);
}

.focus-visible\:outline-btn-basicOutline:focus-visible {
  outline-color: var(--color-btn-basicOutline);
}

.focus-visible\:outline-current:focus-visible {
  outline-color: currentColor;
}

.focus-visible\:outline-link:focus-visible {
  outline-color: var(--color-link);
}

.focus-visible\:outline-standard:focus-visible {
  outline-color: var(--color-standard);
}

.focus-visible\:outline-superNav-linkActive:focus-visible {
  outline-color: var(--superNav-link-active);
}

.active\:border-b:active {
  border-bottom-width: 1px;
}

.active\:border-superNav-linkActive:active {
  border-color: var(--superNav-link-active);
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:border-input-disabled:disabled {
  border-color: rgba(0,0,0,.06);
}

.disabled\:bg-input-disabled:disabled {
  background-color: rgba(0,0,0,.06);
}

.group:hover .group-hover\:-translate-x-l1 {
  --tw-translate-x: -4px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-x-l1 {
  --tw-translate-x: 4px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media not all and (min-width: 900px) {
  .max-md\:block-padding-t {
    padding-top: 72px;
  }

  @media (min-width: 900px) {
    .max-md\:block-padding-t {
      padding-top: 96px;
    }
  }

  @media (min-width: 1294px) {
    .max-md\:block-padding-t {
      padding-top: 140px;
    }
  }
}

@media (min-width: 600px) {
  .sm\:w-3\/5 {
    width: 60%;
  }

  .sm\:w-\[unset\] {
    width: unset;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:gap-0 {
    gap: 0px;
  }

  .sm\:bg-\[length\:130\%\] {
    background-size: 130%;
  }

  .sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sm\:px-l7 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .sm\:py-l9 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (min-width: 900px) {
  .md\:static {
    position: static;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:inset-0 {
    inset: 0px;
  }

  .md\:-top-superNavHeightTablet {
    top: -74px;
  }

  .md\:bottom-\[72px\] {
    bottom: 72px;
  }

  .md\:bottom-l11 {
    bottom: 64px;
  }

  .md\:left-0 {
    left: 0px;
  }

  .md\:left-1\/2 {
    left: 50%;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:top-1\/2 {
    top: 50%;
  }

  .md\:top-\[50px\] {
    top: 50px;
  }

  .md\:order-none {
    order: 0;
  }

  .md\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-start-1 {
    grid-column-start: 1;
  }

  .md\:col-start-2 {
    grid-column-start: 2;
  }

  .md\:col-start-3 {
    grid-column-start: 3;
  }

  .md\:col-start-6 {
    grid-column-start: 6;
  }

  .md\:col-start-7 {
    grid-column-start: 7;
  }

  .md\:col-start-8 {
    grid-column-start: 8;
  }

  .md\:row-auto {
    grid-row: auto;
  }

  .md\:row-start-1 {
    grid-row-start: 1;
  }

  .md\:m-0 {
    margin: 0px;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:-mt-\[45px\] {
    margin-top: -45px;
  }

  .md\:-mt-\[90px\] {
    margin-top: -90px;
  }

  .md\:-mt-l15 {
    margin-top: -120px;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-l15 {
    margin-bottom: 120px;
  }

  .md\:mb-l16 {
    margin-bottom: 140px;
  }

  .md\:mb-l17 {
    margin-bottom: 160px;
  }

  .md\:mb-l4 {
    margin-bottom: 16px;
  }

  .md\:mb-l5 {
    margin-bottom: 20px;
  }

  .md\:mb-l7 {
    margin-bottom: 32px;
  }

  .md\:mb-l8 {
    margin-bottom: 40px;
  }

  .md\:mb-l9 {
    margin-bottom: 48px;
  }

  .md\:ml-l6 {
    margin-left: 24px;
  }

  .md\:mr-l8 {
    margin-right: 40px;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-l11 {
    margin-top: 64px;
  }

  .md\:mt-l13 {
    margin-top: 84px;
  }

  .md\:mt-l14 {
    margin-top: 96px;
  }

  .md\:mt-l3 {
    margin-top: 12px;
  }

  .md\:mt-l4 {
    margin-top: 16px;
  }

  .md\:mt-l6 {
    margin-top: 24px;
  }

  .md\:mt-l7 {
    margin-top: 32px;
  }

  .md\:mt-l8 {
    margin-top: 40px;
  }

  .md\:mt-l9 {
    margin-top: 48px;
  }

  .md\:block {
    display: block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:table {
    display: table;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[40vh\] {
    height: 40vh;
  }

  .md\:h-\[50vh\] {
    height: 50vh;
  }

  .md\:h-\[540px\] {
    height: 540px;
  }

  .md\:h-\[60px\] {
    height: 60px;
  }

  .md\:h-\[72px\] {
    height: 72px;
  }

  .md\:h-\[820px\] {
    height: 820px;
  }

  .md\:h-\[calc\(100vh-238px\)\] {
    height: calc(100vh - 238px);
  }

  .md\:h-\[unset\] {
    height: unset;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:h-l11 {
    height: 64px;
  }

  .md\:h-l12 {
    height: 72px;
  }

  .md\:h-l8 {
    height: 40px;
  }

  .md\:h-l9 {
    height: 48px;
  }

  .md\:max-h-\[600px\] {
    max-height: 600px;
  }

  .md\:max-h-\[85\%\] {
    max-height: 85%;
  }

  .md\:max-h-\[850px\] {
    max-height: 850px;
  }

  .md\:min-h-\[440px\] {
    min-height: 440px;
  }

  .md\:min-h-\[540px\] {
    min-height: 540px;
  }

  .md\:min-h-\[650px\] {
    min-height: 650px;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-4\/5 {
    width: 80%;
  }

  .md\:w-5\/12 {
    width: 41.666667%;
  }

  .md\:w-7\/12 {
    width: 58.333333%;
  }

  .md\:w-8\/12 {
    width: 66.666667%;
  }

  .md\:w-\[34\%\] {
    width: 34%;
  }

  .md\:w-\[45\%\] {
    width: 45%;
  }

  .md\:w-\[560px\] {
    width: 560px;
  }

  .md\:w-\[570px\] {
    width: 570px;
  }

  .md\:w-\[618px\] {
    width: 618px;
  }

  .md\:w-\[672px\] {
    width: 672px;
  }

  .md\:w-\[80\%\] {
    width: 80%;
  }

  .md\:w-\[unset\] {
    width: unset;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-l11 {
    width: 64px;
  }

  .md\:w-l9 {
    width: 48px;
  }

  .md\:max-w-\[2560px\] {
    max-width: 2560px;
  }

  .md\:max-w-\[490px\] {
    max-width: 490px;
  }

  .md\:max-w-\[600px\] {
    max-width: 600px;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:translate-y-\[-45px\] {
    --tw-translate-y: -45px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr);
  }

  .md\:grid-flow-col {
    grid-auto-flow: column;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-\[120px\2c _1fr\] {
    grid-template-columns: 120px 1fr;
  }

  .md\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-0 {
    gap: 0px;
  }

  .md\:gap-l10 {
    gap: 56px;
  }

  .md\:gap-l11 {
    gap: 64px;
  }

  .md\:gap-l13 {
    gap: 84px;
  }

  .md\:gap-l4 {
    gap: 16px;
  }

  .md\:gap-l6 {
    gap: 24px;
  }

  .md\:gap-l8 {
    gap: 40px;
  }

  .md\:gap-x-l12 {
    -moz-column-gap: 72px;
         column-gap: 72px;
  }

  .md\:gap-x-l13 {
    -moz-column-gap: 84px;
         column-gap: 84px;
  }

  .md\:gap-x-l14 {
    -moz-column-gap: 96px;
         column-gap: 96px;
  }

  .md\:gap-x-l3 {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }

  .md\:gap-x-l6 {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }

  .md\:gap-x-l7 {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }

  .md\:gap-x-l8 {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }

  .md\:gap-x-l9 {
    -moz-column-gap: 48px;
         column-gap: 48px;
  }

  .md\:gap-y-0 {
    row-gap: 0px;
  }

  .md\:gap-y-l10 {
    row-gap: 56px;
  }

  .md\:gap-y-l12 {
    row-gap: 72px;
  }

  .md\:gap-y-l13 {
    row-gap: 84px;
  }

  .md\:gap-y-l14 {
    row-gap: 96px;
  }

  .md\:gap-y-l16 {
    row-gap: 140px;
  }

  .md\:gap-y-l6 {
    row-gap: 24px;
  }

  .md\:gap-y-l8 {
    row-gap: 40px;
  }

  .md\:gap-y-l9 {
    row-gap: 48px;
  }

  .md\:space-y-l12 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(72px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(72px * var(--tw-space-y-reverse));
  }

  .md\:space-y-l9 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(48px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(48px * var(--tw-space-y-reverse));
  }

  .md\:self-end {
    align-self: flex-end;
  }

  .md\:self-center {
    align-self: center;
  }

  .md\:overflow-hidden {
    overflow: hidden;
  }

  .md\:rounded-\[4px\] {
    border-radius: 4px;
  }

  .md\:rounded-card {
    border-radius: 10px;
  }

  .md\:rounded-l-none {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .md\:rounded-r-none {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .md\:border-b {
    border-bottom-width: 1px;
  }

  .md\:border-none {
    border-style: none;
  }

  .md\:border-b-nav-linkActive {
    border-bottom-color: var(--nav-link-active);
  }

  .md\:border-t-transparent {
    border-top-color: transparent;
  }

  .md\:bg-accent {
    background-color: var(--color-accent);
  }

  .md\:bg-attention {
    background-color: var(--color-attention);
  }

  .md\:bg-default {
    background-color: var(--color-default);
  }

  .md\:bg-heroContrast {
    background-color: var(--color-heroContrast);
  }

  .md\:bg-impact {
    background-color: var(--color-impact);
  }

  .md\:bg-soft {
    background-color: var(--color-soft);
  }

  .md\:bg-softImpact {
    background-color: var(--color-softImpact);
  }

  .md\:bg-subdued {
    background-color: var(--color-subdued);
  }

  .md\:bg-subduedDim {
    background-color: var(--color-subduedDim);
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:bg-bistroImage {
    background-image: url('../images/on-the-run-ca/OnTheRun_Bistro_background.jpg');
  }

  .md\:bg-emphasisGradient {
    background-image: var(--gradient-emphasis);
  }

  .md\:bg-featureCardsBlockImage {
    background-image: var(--image-featureCardsBlock);
  }

  .md\:bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }

  .md\:bg-journieGradient {
    background-image: linear-gradient(180deg, #ebf2fa 0%, #f4f9fd 75.5%);
  }

  .md\:from-black\/35 {
    --tw-gradient-from: rgb(0 0 0 / 0.35) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }

  .md\:to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
  }

  .md\:bg-\[length\:704px\] {
    background-size: 704px;
  }

  .md\:bg-\[65\%_65\%\] {
    background-position: 65% 65%;
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:p-l10 {
    padding: 56px;
  }

  .md\:p-l7 {
    padding: 32px;
  }

  .md\:p-l8 {
    padding: 40px;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-l14 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .md\:px-l4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .md\:px-l6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .md\:px-l8 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .md\:px-l9 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-l10 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .md\:py-l12 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .md\:py-l13 {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .md\:py-l14 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .md\:py-l6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .md\:py-l8 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-\[310px\] {
    padding-bottom: 310px;
  }

  .md\:pb-l11 {
    padding-bottom: 64px;
  }

  .md\:pb-l12 {
    padding-bottom: 72px;
  }

  .md\:pb-l13 {
    padding-bottom: 84px;
  }

  .md\:pb-l14 {
    padding-bottom: 96px;
  }

  .md\:pb-l16 {
    padding-bottom: 140px;
  }

  .md\:pb-l6 {
    padding-bottom: 24px;
  }

  .md\:pl-l11 {
    padding-left: 64px;
  }

  .md\:pl-l7 {
    padding-left: 32px;
  }

  .md\:pl-l8 {
    padding-left: 40px;
  }

  .md\:pl-l9 {
    padding-left: 48px;
  }

  .md\:pr-0 {
    padding-right: 0px;
  }

  .md\:pr-l11 {
    padding-right: 64px;
  }

  .md\:pr-l7 {
    padding-right: 32px;
  }

  .md\:pr-l8 {
    padding-right: 40px;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-l12 {
    padding-top: 72px;
  }

  .md\:pt-l13 {
    padding-top: 84px;
  }

  .md\:pt-l7 {
    padding-top: 32px;
  }

  .md\:pt-l8 {
    padding-top: 40px;
  }

  .md\:pt-l9 {
    padding-top: 48px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:opacity-100 {
    opacity: 1;
  }

  .md\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .md\:block-padding {
    padding-top: 72px;
  }

  @media (min-width: 900px) {
    .md\:block-padding {
      padding-top: 96px;
    }
  }

  @media (min-width: 1294px) {
    .md\:block-padding {
      padding-top: 140px;
    }
  }

  .md\:block-padding {
    padding-bottom: 72px;
  }

  @media (min-width: 900px) {
    .md\:block-padding {
      padding-bottom: 96px;
    }
  }

  @media (min-width: 1294px) {
    .md\:block-padding {
      padding-bottom: 140px;
    }
  }

  section.md\:bg-emphasisGradient + section.bg-accent {
    padding-top: 0px;
  }

  section.bg-emphasisGradient + section.md\:bg-accent {
    padding-top: 0px;
  }

  section.md\:bg-soft + section.md\:bg-soft {
    padding-top: 0px;
  }

  section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
    padding-top: 0px;
  }

  @media (min-width: 900px) {
    section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
      padding-top: 72px;
    }

    @media (min-width: 900px) {
      section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
        padding-top: 96px;
      }
    }

    @media (min-width: 1294px) {
      section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
        padding-top: 140px;
      }
    }
  }

  section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
    padding-top: 0px;
  }

  @media (min-width: 900px) {
    section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
      padding-top: 72px;
    }

    @media (min-width: 900px) {
      section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
        padding-top: 96px;
      }
    }

    @media (min-width: 1294px) {
      section.md\:bg-default[data-block='hero']:not(.hero-banner) + section.md\:bg-default {
        padding-top: 140px;
      }
    }
  }

  section.md\:bg-default:not([data-block='hero']) + section.md\:bg-default {
    padding-top: 0px;
  }

  .md\:even\:flex-row:nth-child(even) {
    flex-direction: row;
  }

  .md\:even\:flex-row-reverse:nth-child(even) {
    flex-direction: row-reverse;
  }

  .md\:hover\:border-b-nav-linkActive:hover {
    border-bottom-color: var(--nav-link-active);
  }
}

@media (min-width: 1031px) {
  .min-\[1031px\]\:-top-superNavHeightDesktop {
    top: -52px;
  }
}

@media (min-width: 1294px) {
  .lg\:bottom-\[84px\] {
    bottom: 84px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:aspect-\[16\/8\] {
    aspect-ratio: 16/8;
  }

  .lg\:max-h-\[570px\] {
    max-height: 570px;
  }

  .lg\:min-h-\[400px\] {
    min-height: 400px;
  }

  .lg\:min-h-\[570px\] {
    min-height: 570px;
  }

  .lg\:w-\[71\%\] {
    width: 71%;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:gap-x-l11 {
    -moz-column-gap: 64px;
         column-gap: 64px;
  }

  .lg\:gap-x-l14 {
    -moz-column-gap: 96px;
         column-gap: 96px;
  }

  .lg\:gap-x-l8 {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }

  .lg\:rounded-card {
    border-radius: 10px;
  }

  .lg\:px-l11 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .lg\:pb-0 {
    padding-bottom: 0px;
  }

  .lg\:block-padding-b {
    padding-bottom: 72px;
  }

  @media (min-width: 900px) {
    .lg\:block-padding-b {
      padding-bottom: 96px;
    }
  }

  @media (min-width: 1294px) {
    .lg\:block-padding-b {
      padding-bottom: 140px;
    }
  }
}

.\[\&\>\.grecaptcha-badge\]\:invisible>.grecaptcha-badge {
  visibility: hidden;
}

.\[\&\>\.grecaptcha-badge\]\:z-fab>.grecaptcha-badge {
  z-index: 20;
}

.\[\&_div\]\:justify-center div {
  justify-content: center;
}

@media (min-width: 900px) {
  .\[\&_img\]\:md\:even\:float-right:nth-child(even) img {
    float: right;
  }

  .\[\&_img\]\:md\:even\:float-left:nth-child(even) img {
    float: left;
  }
}

.\[\&_li\:\:marker\]\:font-semibold li::marker {
  font-weight: 600;
}

.\[\&_li\:\:marker\]\:text-bright li::marker {
  color: var(--color-bright);
}

.\[\&_p\]\:mb-l2 p {
  margin-bottom: 8px;
}

.\[\&_td\]\:p-l4 td {
  padding: 16px;
}

.\[\&_td\]\:pb-l3 td {
  padding-bottom: 12px;
}

.\[\&_td\]\:align-top td {
  vertical-align: top;
}

@media(min-height:700px) {
  @media (min-width: 900px) {
    .\[\@media\(min-height\:700px\)\]\:md\:h-\[75vh\] {
      height: 75vh;
    }
  }
}
