@charset "UTF-8";
@media (max-width: 1023px) {
  [tripnav-section~=wrapper] {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--brand-silver-light);
    z-index: 100;
  }
  [tripnav-section~=bar] {
    color: var(--color-text-dark);
    font-weight: var(--font-weight-header);
    line-height: 3rem;
    padding-left: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 3rem;
    height: 3rem;
  }
  [tripnav-section~=menu] {
    text-align: right;
    color: var(--color-text-link-dark);
  }
  [tripnav-section~=text] {
    text-align: left;
    color: var(--color-text-dark);
  }
  [tripnav-section~=hamburger] {
    width: auto;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0.75rem;
  }
  [tripnav-section~=icon], [tripnav-section~=icon]::before, [tripnav-section~=icon]::after {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--color-text-link-dark);
    display: inline-block;
  }
  [tripnav-section~=icon]::before, [tripnav-section~=icon]::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s;
  }
  [tripnav-section~=icon]::before {
    top: -0.5rem;
  }
  [tripnav-section~=icon]::after {
    top: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [tripnav-section~=wrapper] {
    width: 100%;
  }
  [tripnav-section~=bar] {
    padding-left: 2rem;
    display: grid;
    grid-template-columns: 1fr 3rem;
  }
}
@media (min-width: 0) {
  [mobile-nav-section~=toggle] {
    position: fixed;
    left: -9999px;
    top: -9999px;
  }
  [mobile-nav-section~=wrapper] {
    position: -webkit-sticky;
    position: sticky;
    top: 3rem;
    width: 100%;
    overflow: hidden;
    display: grid;
    z-index: 999;
  }
  [mobile-nav-section~=stage] {
    transition: height 0.3s;
    transition-delay: 0.1s;
    height: 0;
    background-color: var(--color-bg-white);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] {
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=stage] {
    height: calc(100vh - 7rem);
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 5rem;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=arrow] {
    transform: rotate(0);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=icon] {
    background-color: transparent;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=icon]::before {
    top: 0;
    transform: rotate(135deg);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=icon]::after {
    top: 0;
    transform: rotate(-135deg);
  }
  [mobile-nav-section~=nav] ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  [mobile-nav-section~=nav] li {
    border-left: 1rem solid transparent;
    height: 2.75rem;
    border-bottom: 1px solid var(--brand-silver);
  }
  [mobile-nav-section~=nav] li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 1rem;
    color: var(--color-text-link-dark);
    font-weight: var(--font-weight-header);
  }
  [mobile-nav-section~=nav] li a[href*=-itin] {
    position: relative;
    margin-left: 0.25rem;
    font-size: 15px;
    line-height: 1;
  }
  [mobile-nav-section~=nav] li a[href*=-itin]::before {
    content: "‣";
    padding-right: 0.5rem;
  }
  [mobile-nav-section~=nav] li.active a {
    color: var(--color-text-dark);
  }
  [mobile-nav-section~=footer] {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--brand-color-gray--light);
    justify-items: center;
  }
  [mobile-nav-section~=button] {
    padding: 1rem 0.5rem;
    color: white;
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-header);
    text-align: center;
    text-transform: none;
    display: grid;
    place-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: var(--button-or-input-max-height);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding: var(--space-s) var(--space-m);
    color: var(--color-cta-primary-text);
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
    letter-spacing: 0.5px;
    filter: brightness(110%);
    cursor: pointer;
    border-radius: var(--border-radius-small);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [mobile-nav-section~=wrapper] {
    position: absolute;
    right: 0;
    top: 3rem;
    width: 33.33%;
  }
  [mobile-nav-section~=stage] {
    box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.18);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=wrapper] {
    overflow: visible;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=stage] {
    height: auto;
    max-height: calc(100vh - 7rem);
  }
  [mobile-nav-section~=footer] {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
}
@media (min-width: 350px) {
  [tripnav-section=text] span:after {
    content: ", Dates & Pricing";
  }
}
@media (min-width: 768px) {
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] {
    overflow: visible;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=stage] {
    padding-bottom: unset;
  }
}
@media (min-width: 768px) {
  [tripnav=wrapper] {
    position: -webkit-sticky;
    position: sticky;
    top: 3rem;
    grid-area: subnav;
    justify-self: end;
    left: 0;
  }
  [masthead].js-masthead-show ~ [main~=wrapper] [tripnav~=wrapper] {
    transition: top 0.25s ease-in-out;
    top: 9rem;
  }
  [tripnav=nav] li a {
    display: block;
    line-height: var(--line-height-header);
    padding: 1rem;
    font-weight: 500;
    color: var(--color-nav-left-text);
    white-space: nowrap;
    transition: all 150ms ease-out;
    position: relative;
  }
  [tripnav=nav] li:not(.active):hover a {
    color: var(--color-nav-left-text-hover);
    background-image: var(--gradient-silver-reverse);
    border-radius: 6px;
  }
  [tripnav=nav] li.active a {
    font-weight: var(--font-weight-header);
    color: var(--color-bg-white);
    background-image: var(--color-cta-primary-bg-gradient);
    border-radius: 6px;
    filter: brightness(110%);
    z-index: 1;
  }
  [tripnav=nav] li.active {
    border-top: 1px solid var(--color-bg-white);
  }
  [tripnav=nav] li a[href*=-itin] {
    position: relative;
    display: grid;
    align-content: center;
    justify-content: start;
    padding-left: 0.75rem;
    height: 30px;
    margin-left: 2rem;
    font-size: 15px;
    line-height: 1;
  }
  [tripnav=nav] li a[href*=-itin]::before {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: -15px;
    height: 100%;
    width: 1px;
    background-color: lightgray;
    text-align: left;
    z-index: -1;
    filter: brightness(90%);
  }
  [tripnav=nav] li a[href*=-itin]::after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: lightgray;
    left: -12px;
    top: 12px;
    filter: brightness(90%);
  }
  [tripnav=nav] li:not(.active):hover a[href*=-itin] {
    background-image: var(--gradient-silver-reverse);
    border-radius: 6px;
  }
  [tripnav=nav] li.active a[href*=-itin] {
    z-index: -1;
  }
  [tripnav=nav] li.active a[href*=-itin]::after {
    filter: brightness(80%);
    z-index: -1;
  }
  [tripnav=nav] li:not(.active):not(:nth-of-type(1))::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    background-image: var(--gradient-silver-reverse);
    z-index: -1;
  }
  [tripnav=nav] li.active + li.active {
    background-image: none !important;
    margin-top: 1px;
  }
  .removeSubSub.removeSubSub.removeSubSub:not(.active)::before {
    background-image: none;
  }
  [tripnav=nav] li.removeSubSub:not(:last-child) + li.removeSubSub {
    margin-bottom: 0.75rem;
  }
}
[hero~=wrapper] {
  position: relative;
  margin-top: calc(var(--masthead-height) * -1);
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  width: 100%;
  height: 90vh;
  color: var(--color-text-light);
  overflow: hidden;
  z-index: 0;
}

@media (min-width: 768px) {
  [gradient] [hero~=wrapper]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--hero-gradient-height);
    background: none;
    pointer-events: none;
    animation-name: slow-gradient-fade-in;
    animation-duration: 5s;
    animation-delay: 2s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    z-index: 12;
  }
  [gradient~=light] [hero~=wrapper]::before {
    background: var(--gradient-hero-light);
  }
  [gradient~=dark] [hero~=wrapper]::before {
    background: var(--gradient-hero-dark);
  }
}
[gradient] [hero~=wrapper]::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  height: var(--hero-gradient-height);
  background: none;
  pointer-events: none;
  z-index: 1;
}

[gradient~=dark] [hero~=wrapper]::after {
  background: var(--gradient-hero-dark-bottom);
}

[hero-video~=wrapper] {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}

[hero-video~=landscape],
[hero-video~=portrait] {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

[hero-video] video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

@media (orientation: portrait) and (max-width: 768px) {
  [hero~=wrapper] {
    height: 80vh;
  }
  [hero-video~=portrait] {
    display: block;
  }
}
@media (orientation: portrait) and (min-width: 769px) {
  [hero~=wrapper] {
    height: 50vh;
  }
  [hero-video~=landscape] {
    display: block;
  }
}
@media (orientation: landscape) and (min-width: 769px) {
  [hero-video~=landscape] {
    display: block;
  }
  [hero~=wrapper] {
    height: 80vh;
  }
}
[hero~=name] {
  display: grid;
  grid-template-columns: 1fr;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  width: min(95vw, 1600px);
  font-size: calc(var(--font-size-h1-fallback) + 0.75rem);
  font-size: calc(var(--font-size-h1) + 0.75rem);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  line-height: var(--line-height-header);
  letter-spacing: 1px;
  text-shadow: var(--shadow-text-hero);
  color: var(--color-bg-white);
  max-width: clamp(600px, 95vw, 1600px);
  margin: 0 auto;
  z-index: 5;
}

[hero~=photo-credit-placeholder] {
  display: none;
}

@media (min-width: 1024px) {
  [hero~=photo-credit-placeholder] {
    display: grid;
    grid-template-columns: 1fr;
    height: 1.5rem;
    color: var(--brand-black);
    background-color: var(--brand-silver-light);
    font-size: var(--font-size-body-smallest);
    font-weight: var(--font-weight-header);
  }
  [hero~=photo-credit] {
    justify-self: end;
    align-self: center;
    color: var(--brand-black);
    font-size: var(--font-size-body-smallest);
    font-weight: var(--font-weight-header);
    padding-right: 0.75rem;
  }
}
[subpage~=middle] {
  grid-area: middle;
}

[subpage~=subpage-slideshow] [content~=wrapper] {
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  [subpage~=wrapper] {
    display: grid;
    grid-template-areas: "middle";
    grid-template-columns: 100%;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
    max-width: 90vw;
    margin: 0 auto;
  }
  [subpage~=accommodation-landing] {
    margin-top: 10rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [subpage~=wrapper] {
    display: grid;
    grid-template-areas: "vert 	middle";
    grid-template-columns: 1fr 85%;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
    justify-content: space-around;
    max-width: 90vw;
    margin: 0 auto;
    padding: 2rem 0;
  }
  [subpage~=trip] {
    grid-template-areas: "ctas	middle";
  }
  [subpage~=search] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1920px);
    padding: 2rem 5vw;
    padding-top: 5rem;
  }
  [subpage~=accommodation-landing] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1920px);
    padding: 2rem 6.25vw;
  }
  [subpage~="404"] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(80vw, 1920px);
    padding: 2rem 40vw;
  }
  [subpage~=destination] {
    grid-template-areas: "middle";
    grid-template-columns: min(100%, 1600px);
    justify-content: space-between;
    -moz-column-gap: min(5rem, 2.5vw);
         column-gap: min(5rem, 2.5vw);
    padding: var(--space-s);
  }
  [subpage~=sitemap] {
    grid-template-areas: "vert middle";
    grid-template-columns: min(5vw, 5rem) minmax(80vw, 1920px);
    justify-content: space-between;
    -moz-column-gap: min(5rem, 2.5vw);
         column-gap: min(5rem, 2.5vw);
    padding: 2rem min(5rem, 2.5vw);
  }
  [subpage~=blog] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(80vw, 1920px);
    padding: 2rem 40vw;
  }
}
@media (min-width: 1024px) {
  [subpage~=wrapper] {
    display: grid;
    grid-template-areas: "subnav middle vert";
    grid-template-columns: auto minmax(50%, 1280px) auto;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    align-items: start;
    justify-content: space-around;
    max-width: min(95vw, 1600px);
    margin: 0 auto;
    padding: 3rem 0;
  }
  [subpage~=trip] {
    grid-template-areas: "subnav 	middle 		ctas";
  }
  [subpage*=subpage] {
    grid-template-areas: "subnav 	middle 		vert";
  }
  [subpage~=search] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1920px);
    padding: 2rem 6.25vw;
  }
  [subpage~=accommodation-landing] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1200px);
    padding: 2rem 6.25vw;
  }
  [subpage~="404"] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(50vw, 1920px);
    padding: 2rem 25vw;
  }
  [subpage~=destination] {
    grid-template-areas: "vert middle";
    justify-content: space-between;
    -moz-column-gap: min(5rem, 10vw);
         column-gap: min(5rem, 10vw);
    padding: 2rem min(5rem, 10vw);
  }
  [subpage~=destination] [trip-name-vert] {
    display: block;
  }
  [subpage~=destination-w-repeater] {
    grid-template-areas: "subnav 	middle 		vert";
  }
  [subpage~=sitemap] {
    grid-template-areas: "middle vert";
    grid-template-columns: minmax(60vw, 1920px) min(20vw, 5rem);
    justify-content: space-between;
    -moz-column-gap: min(5rem, 10vw);
         column-gap: min(5rem, 10vw);
    padding: 2rem min(5rem, 10vw);
  }
  [subpage~=blog] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(50vw, 1920px);
    padding: 2rem 25vw;
  }
  [subpage~=subpage-slideshow] {
    grid-template-areas: "subnav middle vert";
    grid-template-columns: auto minmax(50%, 1240px) auto;
  }
}
[ctas~=sticky] {
  display: none;
}
[ctas~=sticky] [custom~=button] {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background-color: var(--brand-color-orange);
  border-radius: var(--border-radius--rounded);
}
[ctas~=sticky] [custom~=button][custom~=button] a {
  color: var(--white);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: 700;
  border-bottom: none;
}
[ctas~=sticky] [custom~=button]:hover {
  background-color: var(--brand-color-orange--hover);
}
[ctas~=sticky] [custom~=button][custom~=button] a:hover {
  border-bottom: none;
}
[ctas~=sticky] [custom~=button] {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background-color: var(--brand-color-orange);
  border-radius: var(--border-radius--rounded);
  color: var(--white);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: 700;
}
[ctas~=sticky] [custom~=button]:hover {
  background-color: var(--brand-color-orange--hover);
}

@media (min-width: 768px) {
  [ctas~=sticky] {
    grid-area: ctas;
    position: -webkit-sticky;
    position: sticky;
    top: 10rem;
    display: grid;
    grid-gap: 1rem;
    justify-self: start;
    z-index: 20;
  }
  [masthead].js-masthead-show ~ [main~=wrapper] [ctas~=sticky] {
    transition: top 0.25s ease-in-out;
    top: 9rem;
  }
  [ctas~=cta] {
    width: 6rem;
    height: 6rem;
    display: block;
    color: var(--color-cta-secondary-text-trip);
    text-align: center;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-header);
    line-height: var(--line-height-1);
    cursor: pointer;
    border-radius: 6px;
  }
  [ctas~=center] {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin-top: 0.25rem;
  }
  [ctas~=primary] {
    color: var(--color-cta-primary-text);
    background-image: var(--color-cta-primary-bg-gradient);
    filter: brightness(110%);
  }
  [ctas~=primary] .cta-icon-full {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.3rem;
  }
  [ctas~=primary] .cta-icon-path {
    fill: var(--color-cta-primary-text);
  }
  [ctas~=primary] .book-static {
    fill: var(--color-cta-primary-text);
  }
  [ctas~=primary] #book-clip-path {
    fill: none;
    stroke: var(--color-cta-primary-text);
    stroke-width: 8px;
    stroke-linecap: round;
    stroke-dasharray: 720;
    stroke-dashoffset: 720;
    -webkit-clip-path: url(#book-clip);
            clip-path: url(#book-clip);
  }
  [ctas~=primary] .cta-text {
    color: var(--color-cta-primary-text);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
    padding: 0 0.25rem;
    text-transform: none;
    line-height: var(--line-height-header);
  }
  [ctas~=secondary] .cta-icon-full {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.3rem;
  }
  [ctas~=secondary] .cta-icon-path {
    fill: var(--color-cta-secondary-text-trip);
  }
  [ctas~=secondary] .cta-text {
    color: var(--color-cta-secondary-text-trip);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
    padding: 0;
    text-transform: none;
    line-height: var(--line-height-header);
  }
  [ctas~=secondary] .ask-animate .cta-icon-path {
    transition: fill 0.25s ease;
  }
  [ctas~=secondary] .ask-animate .ask-animate-circle {
    stroke-width: 3px;
    stroke: var(--color-cta-secondary-text-trip);
    fill: none;
    transition: fill 0.25s ease;
  }
}
@media (min-width: 1024px) {
  [ctas~=sticky] {
    margin: 4.5rem 0 1.25rem 0 !important;
    top: 3rem;
  }
  [subpage~=trip] [ctas~=sticky] {
    margin-top: 4.65rem;
  }
  [ctas~=primary]:hover {
    background-color: var(--color-cta-primary-bg-hover);
    filter: brightness(120%);
  }
  [ctas~=primary]:hover #book-clip-path {
    transition: stroke-dashoffset 6s linear 0.25s;
    stroke-dashoffset: 0;
  }
  [ctas~=primary]:hover .book-static {
    opacity: 0;
  }
  [ctas~=primary]:hover .book-clip path {
    fill: none;
    pointer-events: all;
  }
  [ctas~=secondary]:hover .ask-animate .cta-icon-path {
    fill: var(--color-cta-primary-text);
  }
  [ctas~=secondary]:hover .ask-animate .ask-animate-circle {
    stroke: var(--color-cta-secondary-text-trip);
    fill: var(--color-cta-secondary-text-trip);
  }
  [ctas~=secondary]:hover .ask-icon-full {
    width: 75%;
    height: auto;
  }
  [ctas~=secondary]:hover .pdf-animate {
    animation: bounce 1.25s infinite;
  }
  [ctas~=secondary]:hover .share-animate {
    transform: translate(3px, -3px);
    transform-origin: 55%, 55%;
  }
  [ctas~=secondary]:hover .share-animate .share-animate-expand {
    opacity: 1;
  }
}
.booknowoff {
  display: none;
}

.disallow-book-now {
  display: none !important;
}

@keyframes bounce {
  0%, 25%, 50%, 75%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}
@media (min-width: 0) {
  [tagline~=wrapper] {
    grid-area: name;
    padding: 1.5rem 0;
    padding-right: 1rem;
    font-family: var(--font-family-body);
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
    text-wrap: balance;
  }
}
@media (min-width: 768px) {
  [tagline~=wrapper] {
    width: 100%;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  [tagline~=wrapper] {
    width: 100%;
  }
}
@media (min-width: 0) {
  [intro~=wrapper] {
    grid-area: content;
    line-height: var(--line-height-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding-bottom: 2rem;
  }
  [intro~=wrapper] strong span {
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
    color: var(--color-text-dark);
  }
  [intro~=wrapper] strong span:hover {
    border-bottom: 1px solid var(--color-bg-red);
  }
  [intro~=wrapper] a {
    font-weight: var(--font-weight-header);
    color: var(--color-text-link-dark);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
  }
  [intro~=wrapper] a:hover {
    border-bottom: 1px solid var(--color-text-link-dark);
  }
}
@media (min-width: 768px) {
  [intro~=wrapper] {
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    padding: 0 3rem 2rem 0;
  }
}
@media (min-width: 1024px) {
  [intro~=wrapper],
  [intro~=wrapper] .enso-overlay-content {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    line-height: var(--line-height-body);
  }
}
@media only screen and (min-width: 0) {
  [pricing~=wrapper] {
    grid-area: pricing;
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-text-link-dark);
    padding-bottom: 0.5rem;
  }
  [pricing~=wrapper] a {
    color: var(--color-text-link-dark);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
    font-weight: var(--font-weight-header);
  }
  [pricing~=first-group] {
    display: grid;
    grid-template-areas: "icon text";
    grid-template-columns: 25px auto;
    align-items: start;
    justify-items: start;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  [pricing~=group] {
    display: block;
  }
  [pricing~=row] {
    display: block;
  }
  [pricing~=row]:last-of-type {
    margin-bottom: 0.5rem;
  }
  [pricing~=days] {
    font-weight: var(--font-weight-header);
  }
  [pricing~=travelers],
  [pricing~=cost],
  [pricing~=suffix] {
    font-weight: 600;
  }
  [pricing~=travelers]:before {
    content: "Limited to ";
  }
  [pricing~=travelers]:after {
    content: " Travelers";
  }
  [pricing~=suffix] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
  [pricing~=item] {
    grid-area: text;
    margin-bottom: 0.5rem;
  }
  [link~=trip-details] {
    margin-right: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  [link~=make-it-private],
  [link~=photo-departure],
  [link~=carbon] {
    display: grid;
    grid-template-areas: "icon text";
    align-items: center;
    justify-items: start;
    font-weight: 600;
  }
  [link~=make-it-private]:not(.show),
  [link~=photo-departure]:not(.show),
  [link~=carbon]:not(.show) {
    display: none;
  }
  [link~=make-it-private] {
    grid-template-columns: 28px auto;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    margin-right: 1rem;
  }
  [link~=photo-departure] {
    grid-template-columns: 28px auto;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    margin-right: 1rem;
  }
  [link~=carbon] {
    grid-template-columns: 28px auto;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    margin-right: 1rem;
  }
  [icon~=calendar] {
    width: 28px;
    grid-area: icon;
    fill: var(--color-text-link-dark);
  }
  [icon~=location] {
    width: 22px;
    grid-area: icon;
    justify-self: center;
    stroke: var(--color-text-link-dark);
  }
  [icon~=camera] {
    width: 30px;
    grid-area: icon;
    justify-self: start;
    stroke: var(--color-text-link-dark);
  }
  [icon~=carbon] {
    width: 24px;
    grid-area: icon;
    justify-self: start;
    fill: var(--color-text-link-dark);
  }
}
@media only screen and (min-width: 768px) {
  [pricing~=days],
  [pricing~=travelers],
  [pricing~=cost],
  [pricing~=suffix],
  [link~=make-it-private],
  [link~=photo-departure] {
    font-weight: unset;
  }
  [pricing~=wrapper] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    font-weight: 700;
  }
  [pricing~=wrapper] a:hover {
    border-bottom: 1px solid var(--color-text-link-dark);
  }
  [pricing~=group] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  [pricing~=days]:after {
    content: " / ";
  }
  [pricing~=travelers]:after {
    content: " Travelers / ";
  }
  [pricing~=row] {
    display: inline;
  }
  [pricing~=row]:last-of-type {
    margin-bottom: 0;
  }
}
[slideshow-new=outer] {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  overflow: hidden;
}
[slideshow-new=outer] [slideshow-new=wrapper] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: start;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
}
[slideshow-new=outer] [slideshow=thumbnail] {
  min-width: 5rem;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 720px) {
  [slideshow-new=outer] [slideshow=thumbnail] {
    min-width: 9.5rem;
  }
}
[slideshow-new=outer] [slideshow=thumbnail].image-active [slideshow=thumbnail-image] {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
[slideshow-new=outer] [slideshow=thumbnail] [slideshow=thumbnail-image] {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 18/9;
  border-radius: 4px;
}
@media (min-width: 0) and (max-width: 767px) {
  [slideshow-new=outer] [js-arrows=wrapper] {
    display: none;
  }
}
@media (min-width: 768px) {
  [slideshow-new=outer] [js-arrows=wrapper] {
    position: absolute;
    width: 100%;
    top: 0;
    height: calc(100% - 1.5rem);
  }
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=previous],
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=next] {
    position: absolute;
    cursor: pointer;
    width: 5rem;
    stroke: black;
    stroke-width: 0.5rem;
    height: 100%;
    transition: all 500ms;
    transform-origin: 50% 50%;
    display: flex;
    z-index: 10;
  }
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=previous] svg,
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=next] svg {
    width: 4rem;
    margin: 0 auto;
  }
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=previous] {
    left: 0;
  }
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=next] {
    right: 0;
  }
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=previous]:hover:not(.disabled),
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=next]:hover:not(.disabled) {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
  }
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=next].disabled,
  [slideshow-new=outer] [js-arrows=wrapper] [js-arrow=previous].disabled {
    opacity: 0.3;
    cursor: auto;
  }
  [slideshow-new=outer] [js-arrows=wrapper] svg {
    top: 50%;
    transform: translateY(-50%);
  }
}
[slideshow-new=outer] [slideshow-new=navigation] {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 0.5rem;
  -webkit-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  width: 100%;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
}
[slideshow-new=outer] [slideshow-new=slides] {
  display: flex;
  overflow-x: auto;
  -webkit-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 720px) {
  [slideshow-new=outer] [slideshow-new=slides] {
    overflow-x: hidden;
  }
}
[slideshow-new=outer] [slideshow-new=slides]::-webkit-scrollbar {
  display: none;
}
[slideshow-new=outer] [slideshow-new=slides]::-webkit-scrollbar-track {
  background: transparent;
}
[slideshow-new=outer] [slide-new~=wrapper] {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  margin-right: 16px;
  aspect-ratio: 18/9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  [slideshow-new=outer] [slide-new~=wrapper] {
    margin-bottom: 2.5rem;
  }
}
[slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] {
  position: absolute;
  bottom: -1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (min-width: 768px) {
  [slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] {
    bottom: -2rem;
  }
}
[slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] [slide=credit] {
  font-weight: normal;
  font-style: italic;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  [slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] [slide=credit] {
    font-size: var(--font-size-body-small);
  }
}
[slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] [slide=credit]:not(:empty):before {
  content: "©";
  margin-right: 2px;
  font-weight: bold;
}
[slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] [slide=caption] {
  display: none;
  justify-self: end;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media (min-width: 768px) {
  [slideshow-new=outer] [slide-new~=wrapper] [slide=text-wrapper] [slide=caption] {
    display: block;
    width: auto;
  }
}
[slideshow-new=outer] [slide=image] {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 100%;
  border-radius: 4px;
}

[subpage~=accommodation-landing] [slideshow-new~=outer] [slide=image] {
  -o-object-fit: contain;
     object-fit: contain;
}

[slideshow-settings]:not([slideshow-settings=old]) ~ [slideshow~=wrapper]:not(.js-show-for-admin) {
  display: none;
}

[slideshow-settings]:not([slideshow-settings=new]) ~ [slideshow-new=outer]:not(.js-show-for-admin) {
  display: none;
}

@media (min-width: 0) {
  [highlights~=wrapper] {
    grid-area: highlights;
    padding: 2rem 0;
    line-height: var(--line-height-body);
    background-color: var(--color-bg-white);
    z-index: 50;
  }
  [highlights~=title] {
    padding: 1rem 0;
    line-height: var(--line-height-header);
    text-align: center;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
    font-family: var(--font-family-body);
  }
  [highlights~=list] ul {
    list-style: none;
    list-style-position: inside;
  }
  [highlights~=list] li,
  [hightlight~=new] {
    padding: 1rem 0;
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    border-radius: var(--border-radius-small);
  }
  [wwf~=link] {
    padding: 1rem 0;
    display: grid;
  }
  [highlights~=list] li em,
  [highlights~=list] li i,
  [wwf~=link] em,
  [wwf~=link] i {
    display: none;
  }
  [highlights~=list] li:last-of-type,
  [wwf~=link] {
    margin-bottom: 0;
    border-radius: var(--border-radius-small);
  }
  [highlight=title],
  [highlights~=list] li > strong:first-of-type {
    display: block;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
  }
  [trip-highlight-toggle~=old] ~ [highlights~=new-list],
  [trip-highlight-toggle~=new] ~ [highlights=list] {
    display: none !important;
  }
  [wwf~=title] {
    display: block;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [wwf~=logo] {
    justify-self: center;
    max-width: 72px;
  }
  [wwf~=text] {
    color: var(--color-text-dark);
  }
  [wwf~=underline] {
    color: var(--color-text-link-dark);
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  [wwf~=logo-title] {
    display: grid;
    grid-auto-flow: row;
  }
  [highlights~=title] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 768px) {
  [highlights~=wrapper] {
    line-height: var(--line-height-body);
    padding: 2rem;
  }
  [highlights~=title] {
    padding-bottom: 3rem;
  }
  [highlights~=list] li,
  [hightlight~=new] {
    display: grid;
    grid-template-columns: 30% 1fr;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    padding: 2rem 7.5%;
    margin-bottom: 1rem;
    background-image: var(--gradient-silver);
  }
  [wwf~=link] {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-column-gap: 2rem;
    align-items: center;
    padding: 2rem 7.5%;
    margin-top: 1rem;
    background-image: var(--color-cta-primary-bg-gradient);
    color: var(--color-text-light);
    margin-bottom: 0;
    filter: brightness(110%);
    transition: all 200ms ease-out;
  }
  [wwf~=link]:hover {
    filter: brightness(120%);
    transform: scale3d(1.03, 1.03, 1.03);
    cursor: pointer;
  }
  [highlight=title],
  [highlights~=list] li > strong:first-of-type {
    display: grid;
    align-content: center;
    border-right: 1px solid var(--color-bg-gray);
    text-align: right;
    min-height: 100%;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    padding-right: 2rem;
  }
  [wwf~=logo-title] {
    display: grid;
    row-gap: 0.75rem;
    align-items: center;
    justify-items: center;
    border-right: 1px solid var(--brand-silver);
  }
  [wwf~=logo] {
    max-width: 35px;
  }
  [wwf~=title] {
    display: grid;
    align-content: center;
    text-align: right;
    min-height: 100%;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    padding-right: 2rem;
  }
  [wwf~=text] {
    color: var(--color-text-light);
  }
  [wwf~=underline] {
    border-bottom: 1px solid var(--color-bg-white);
    color: var(--color-text-light);
  }
}
@media (min-width: 768px) {
  [highlights~=wrapper] {
    line-height: var(--line-height-body);
    padding: 1.5rem;
  }
  [wwf~=logo-title] {
    display: grid;
    row-gap: 0.75rem;
    align-items: center;
    justify-items: center;
    border-right: 1px solid var(--color-bg-white-light);
  }
  [wwf~=logo] {
    max-width: 40px;
    justify-self: center;
  }
  [wwf~=title] {
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  [highlights~=wrapper] {
    padding: 2rem 0;
  }
}
@media (min-width: 1600px) {
  [wwf~=logo-title] {
    display: grid;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: center;
  }
  [wwf~=logo] {
    max-width: 60px;
    justify-self: end;
  }
  [wwf~=title] {
    padding-right: 2rem;
  }
}
[highlight~=description] a {
  font-weight: var(--font-weight-header);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.25s ease-in-out;
}

[highlight~=description] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (min-width: 0) {
  [photo-tours~=wrapper] {
    display: grid;
    margin-bottom: 1rem;
  }
  [photo-tours~=title] {
    padding: 2rem 0;
    line-height: var(--line-height-header);
    text-align: center;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
    font-family: var(--font-family-body);
  }
  [photo-tours~=link] {
    display: grid;
    place-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: var(--button-or-input-max-height);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding: var(--space-s) var(--space-m);
    color: var(--color-cta-primary-text);
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
    letter-spacing: 0.5px;
    filter: brightness(110%);
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--color-bg-white);
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    justify-self: center;
    padding: 0 1.5rem;
    margin-top: var(--space-2xs);
  }
  [photo-tours~=link]:hover {
    animation: cta-primary-hover 250ms ease-out;
    animation-fill-mode: both;
    opacity: 1;
  }
  [photo-tours~=photo-primary] {
    width: 100%;
  }
  [photo-tours~=photo-primary-img],
  [photo-tours~=photo-secondary-img] {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    width: 100%;
  }
  [video~=headline] {
    grid-column: 1/-1;
    padding: 3rem 0 2rem 0;
    line-height: var(--line-height-header);
    text-align: center;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
    font-family: var(--font-family-body);
  }
}
@media (max-width: 767px) {
  [photo-tours~=wrapper] {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  [photo-tours~=title] {
    padding: 1rem 0;
  }
  [photo-tours~=text] {
    display: grid;
  }
  [photo-tours~=intro] {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  [photo-tours~=photo-primary] {
    grid-row: 2;
    width: 100%;
  }
  [photo-tours~=photo-primary-img] {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-small);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  [photo-tours~=photo-secondary] {
    display: none;
  }
  [photo-tours~=link] {
    display: grid;
    place-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: var(--button-or-input-max-height);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding: var(--space-s) var(--space-m);
    color: var(--color-cta-primary-text);
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
    letter-spacing: 0.5px;
    filter: brightness(110%);
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--color-bg-white);
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    justify-self: center;
    padding: 0 1.5rem;
    margin-top: var(--space-2xs);
  }
}
@media (min-width: 768px) {
  [photo-tours~=wrapper] {
    grid-template-columns: 40% 1fr;
    row-gap: 1rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  [photo-tours~=title] {
    grid-column: 1/-1;
  }
  [photo-tours~=text] {
    display: grid;
    justify-content: center;
    align-content: start;
    gap: 1rem;
  }
  [photo-tours~=intro] {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    font-family: var(--font-family-body);
  }
  [photo-tours~=link] {
    align-self: end;
  }
  [photo-tours~=photo-primary] {
    grid-column: 2/-1;
  }
  [photo-tours~=photo-primary-img] {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-small);
    -o-object-fit: cover;
       object-fit: cover;
  }
  [photo-tours~=photo-secondary] {
    width: 100%;
    display: grid;
    grid-column: 1/-1;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  [photo-tours~=photo-secondary-img] {
    width: 100%;
    border-radius: var(--border-radius-small);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  [photo-tours~=text] {
    grid-row: 2;
    width: 100%;
  }
  [photo-tours~=photo-primary] {
    display: none;
  }
  [photo-tours~=photo-secondary] {
    width: 100%;
    display: grid;
    grid-column: 2;
    grid-row: 2;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 0) {
  [video~=wrapper] {
    overflow: hidden;
    z-index: 50;
  }
  .wistia_responsive_padding {
    padding: 56.25% 0 0 0;
    position: relative;
  }
  .wistia_responsive_wrapper iframe {
    border-radius: var(--border-radius-small);
  }
  .wistia_responsive_wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  iframe[src="https://fast.wistia.net/embed/iframe/?videoFoam=true"] {
    display: none;
  }
  [video~=cover] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 75;
  }
  [video~=title] {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 14%;
    color: var(--color-bg-white);
    font-family: var(--font-family-header);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
  }
  [title~=primary] {
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
  }
  [title~=secondary] {
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
}
@media (min-width: 768px) {
  [video~=title] {
    bottom: 16%;
  }
  [title~=primary] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
  [title~=secondary] {
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
  }
  [subpage~=videos] [video~=wrapper] [title~=primary],
  [subpage~=trip] [video~=wrapper] [title~=primary] {
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
  [subpage~=videos] [video~=wrapper] [title~=secondary],
  [subpage~=trip] [video~=wrapper] [title~=secondary] {
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-body);
  }
}
@media (min-width: 1024px) {
  [video~=title] {
    bottom: 22%;
  }
  [title~=primary] {
    font-size: var(--font-size-h1-fallback);
    font-size: var(--font-size-h1);
  }
  [title~=secondary] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 2560px) {
  [title~=primary] {
    font-size: 5rem;
  }
  [title~=secondary] {
    font-size: 3.5rem;
  }
}
@media (min-width: 0) {
  [reasons~=wrapper] {
    grid-area: reasons;
    line-height: var(--line-height-body);
    padding: 2rem 0;
  }
  [reasons~=wrapper] a,
  [reasons~=wrapper] strong a,
  [reasons~=wrapper] a strong {
    font-weight: var(--font-weight-header);
    color: var(--color-text-link-dark);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
    transform: translate3D(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  [reasons~=wrapper] a:hover,
  [reasons~=wrapper] a strong:hover,
  [reasons~=wrapper] strong a:hover {
    border-bottom: solid 1px var(--color-text-link-dark);
  }
  [reasons~=wrapper] iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    padding: 1rem 0;
  }
  [reasons=anchor-link] {
    position: absolute;
    top: -50px;
    left: 0;
  }
  [reasons~=title] {
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
  }
  [reasons~=text] ol {
    position: relative;
    list-style: none;
    list-style-position: outside;
    counter-reset: reasons;
  }
  [reasons~=text] li {
    margin-bottom: 2rem;
  }
  [reasons~=text] li {
    margin-top: 0.5rem;
    padding-left: 3.5rem;
  }
  [reasons~=text] li:before {
    counter-increment: reasons;
    content: counter(reasons, decimal);
    position: absolute;
    left: 0;
    color: var(--black--transparent-6);
    background-image: var(--gradient-silver-radial);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    border-radius: var(--border-radius-small);
    text-align: center;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  [reasons~=text] li > strong:first-of-type {
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-header);
    padding-bottom: 1rem;
  }
  [reasons~=text] li > a,
  [reasons~=text] li > a strong,
  [reasons~=text] li > strong a {
    font-weight: var(--font-weight-header);
    color: var(--color-text-link-dark);
  }
  [reasons~=text] li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [reasons=anchor-link] {
    top: -135px;
  }
  [reasons~=title] {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [reasons~=text] {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
  }
  [reasons~=text] li {
    padding-left: 4rem;
  }
}
@media (min-width: 1024px) {
  [reasons=anchor-link] {
    top: -100px;
  }
  [reasons~=text] li {
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  [reviews~=wrapper] h3 {
    padding-bottom: 1rem;
  }
}
[reviews~=wrapper] {
  grid-area: reviews;
  line-height: var(--line-height-body);
}
[reviews~=wrapper] h1::after {
  border: 3px solid red;
  content: "Content Error: h1 tags are not allowed.";
}
[reviews~=wrapper] h2,
[reviews~=wrapper] h3,
[reviews~=wrapper] h4,
[reviews~=wrapper] h5,
[reviews~=wrapper] h6 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-header);
}
[reviews~=wrapper] h2 {
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
}
[reviews~=wrapper] h3 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}
[reviews~=wrapper] h4 {
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
}
[reviews~=wrapper] h5 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
}
[reviews~=wrapper] h6 {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
}

@media (min-width: 0) {
  [repeater~=title] {
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    line-height: var(--line-height-header);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
  }
  [repeater~=wrapper] {
    width: 100%;
    grid-area: repeater;
    display: grid;
    grid-template-columns: 100%;
    line-height: var(--line-height-body);
    z-index: 0;
  }
  [repeater~=trips] {
    width: 100%;
    max-width: min(90vw, 1600px);
    display: grid;
    grid-template-columns: 100%;
    position: relative;
    row-gap: 1rem;
  }
  [repeater~=trip] {
    position: relative;
    display: block;
  }
  [repeater~=photo] {
    z-index: 1;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-small);
    border-top-right-radius: var(--border-radius-small);
  }
  [repeater~=img] {
    width: 100%;
    height: 100%;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -10;
    transition: all 0.75s ease;
    vertical-align: bottom;
  }
  [repeater~=badge] {
    position: absolute;
    top: 4.5%;
    right: 2.5%;
    width: 25%;
    max-width: 236px;
    height: auto;
    z-index: 1;
  }
  [repeater~=text] {
    position: relative;
    z-index: 2;
    border-left: 1px solid var(--brand-silver);
    border-right: 1px solid var(--brand-silver);
    padding-top: 1rem;
  }
  [repeater~=tag-vert] {
    display: none;
  }
  [repeater~=tag] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: table;
    width: auto;
    padding: 0.3em 0.8em;
    color: var(--color-bg-white);
    background-color: var(--brand-tundra);
    text-shadow: var(--shadow-text-1);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-smallest-fallback);
    font-size: var(--font-size-body-smallest);
    filter: saturate(120%);
    z-index: 3;
  }
  [repeater~=name] {
    padding: 1rem 1.75rem 0.25rem 1.75rem;
    width: 100%;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
    color: var(--color-text-link-dark);
  }
  [repeater~=details] {
    padding: 0 1.75rem 1.5rem 1.75rem;
    width: 100%;
    border-bottom-left-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
  }
  [repeater~=description] {
    padding: 0 0 1rem 0;
  }
  [repeater~=pricing] {
    font-weight: var(--font-weight-header);
    padding-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  [repeater~=title]:not(:first-of-type) {
    padding-top: var(--space-2xl);
  }
}
@media (min-width: 768px) {
  [repeater~=title]:not(:first-of-type) {
    line-height: var(--line-height-double);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    padding-top: var(--space-sm);
  }
  [repeater~=title]:first-of-type {
    line-height: var(--line-height-double);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    padding-top: var(--space-s);
  }
  [repeater~=title]:not(:first-of-type):empty {
    padding-top: 0;
    margin-bottom: 0;
  }
  [repeater~=name] {
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    width: 100%;
  }
  [repeater~=img] {
    border-bottom: none;
  }
  [repeater~=tag] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: table;
    width: auto;
    padding: 0.3em 0.8em;
    color: var(--color-bg-white);
    background-color: var(--brand-tundra);
    text-shadow: var(--shadow-text-1);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-smallest-fallback);
    font-size: var(--font-size-body-smallest);
    filter: saturate(120%);
    z-index: 3;
  }
  [repeater~=details] {
    width: 95%;
  }
}
@media (min-width: 768px) {
  [settings~=horizontal],
  [settings~=default] {
    grid-template-columns: minmax(auto, 100%);
  }
  [settings~=horizontal] [repeater~=title],
  [settings~=default] [repeater~=title] {
    width: 100%;
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
  }
  [settings~=horizontal] [repeater~=trip],
  [settings~=default] [repeater~=trip] {
    position: relative;
    display: grid;
    grid-gap: 0;
    margin-bottom: 1rem;
  }
  [settings~=horizontal] [repeater~=photo],
  [settings~=default] [repeater~=photo] {
    padding-top: 0;
  }
  [settings~=horizontal] [repeater~=img],
  [settings~=default] [repeater~=img] {
    position: relative;
  }
  [settings~=horizontal] [repeater~=text],
  [settings~=default] [repeater~=text] {
    padding: 2rem;
    align-self: center;
    border-left: 1px solid var(--brand-silver);
    border-right: 1px solid var(--brand-silver);
  }
  [settings~=horizontal] [repeater~=text]:before,
  [settings~=default] [repeater~=text]:before {
    content: none;
  }
  [settings~=horizontal] [repeater~=name],
  [settings~=default] [repeater~=name] {
    padding: 0;
    width: 100%;
  }
  [settings~=horizontal] [repeater~=details],
  [settings~=default] [repeater~=details] {
    padding: 0;
    width: 100%;
  }
  [settings~=horizontal] [repeater~=description],
  [settings~=default] [repeater~=description] {
    padding: 1rem 0;
  }
  [settings~=horizontal] [repeater~=pricing],
  [settings~=default] [repeater~=pricing] {
    font-weight: var(--font-weight-header);
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  [settings~=horizontal] {
    width: 100%;
    grid-template-rows: 100%;
  }
  [settings~=horizontal] [repeater~=trips] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(570px, 1fr));
    grid-gap: 2rem;
    position: relative;
  }
  [settings~=horizontal] [repeater~=trip] {
    grid-template-columns: 50% 1fr;
    grid-template-rows: 100%;
    border-top: 1px solid var(--brand-silver);
    border-left: 1px solid var(--brand-silver);
    border-right: 1px solid var(--brand-silver);
    border-bottom: 1px solid var(--brand-silver);
    border-top-left-radius: var(--border-radius-small);
  }
  [settings~=horizontal] [repeater~=photo] {
    border-bottom: 0;
  }
  [settings~=horizontal] [repeater~=text] {
    border: none;
  }
  [subpage~=accommodations] [settings~=horizontal] [repeater~=trips] {
    max-width: min(73vw, 1600px);
  }
  [subpage~=accommodations] [settings~=horizontal] [repeater~=trip] {
    grid-template-columns: 50% 1fr;
  }
  [subpage~=accommodations] [settings~=horizontal] [repeater~=tag] {
    top: 0;
    bottom: unset;
  }
}
@media (min-width: 768px) {
  [settings~=vertical] [repeater~=title],
  [settings~=vertical-2up] [repeater~=title],
  [settings~=vertical-3up] [repeater~=title] {
    width: 90%;
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [settings~=vertical] [repeater~=trip],
  [settings~=vertical-2up] [repeater~=trip],
  [settings~=vertical-3up] [repeater~=trip] {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    align-content: start;
    border-radius: var(--border-radius-small);
  }
  [settings~=vertical] [repeater~=description],
  [settings~=vertical-2up] [repeater~=description],
  [settings~=vertical-3up] [repeater~=description] {
    font-size: var(--font-size-body);
    grid-gap: 0;
    align-content: start;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 600px;
  }
  [settings~=vertical] [repeater~=img],
  [settings~=vertical-2up] [repeater~=img],
  [settings~=vertical-3up] [repeater~=img] {
    position: relative;
  }
}
@media (min-width: 1024px) {
  [settings~=vertical] [repeater~=trips],
  [settings~=vertical-2up] [repeater~=trips],
  [settings~=vertical-3up] [repeater~=trips] {
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 1.5rem;
    margin-bottom: var(--space-2xl);
  }
}
@media (min-width: 0) {
  [settings~=guide] {
    grid-template-columns: minmax(auto, 100%);
  }
  [settings~=guide] [repeater~=trips] {
    max-width: unset;
  }
  [settings~=guide] [repeater~=title] {
    width: 100%;
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [settings~=guide] [repeater~=trip] {
    position: relative;
    display: grid;
    grid-template-columns: 109px 1fr;
    grid-gap: 0;
    align-content: start;
    margin-bottom: 1rem;
  }
  [settings~=guide] [repeater~=photo] {
    padding-top: 0;
    border-radius: var(--border-radius-small);
    align-self: start;
  }
  [settings~=guide] [repeater~=img] {
    position: relative;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: var(--border-radius-small);
  }
  [settings~=guide] [repeater~=text] {
    padding: 0 1.5rem;
    border: none;
  }
  [settings~=guide] [repeater~=text]:before {
    content: none;
  }
  [settings~=guide] [repeater~=tag] {
    top: 0;
  }
  [settings~=guide] [repeater~=name] {
    padding: 0;
    width: 100%;
    line-height: var(--line-height-header);
  }
  [settings~=guide] [repeater~=details] {
    padding: 0;
    width: 100%;
  }
  [settings~=guide] [repeater~=description] {
    padding: 0;
  }
  [settings~=guide] [repeater~=pricing] {
    font-weight: var(--font-weight-header);
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  [settings~=guide] [repeater~=trips] {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 2rem;
  }
  [settings~=guide] [repeater~=trip] {
    padding: 1rem;
    border-top: 1px solid var(--brand-silver);
    border-left: 1px solid var(--brand-silver);
    border-right: 1px solid var(--brand-silver);
    border-bottom: 1px solid var(--brand-silver);
    border-radius: var(--border-radius-small);
    margin-bottom: 0;
  }
  [settings~=guide] [repeater~=text] {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  [repeater~=trip]:hover [repeater~=img] {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  [repeater~=trip]:hover {
    box-shadow: var(--shadow-5);
    cursor: pointer;
  }
  [repeater~=trip]:hover [repeater~=text] {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  [regions~=wrapper] [repeater~=trips] {
    width: 100%;
  }
  [settings~=guide] [repeater~=trip]:hover [repeater~=img] {
    width: 100%;
    height: auto;
  }
  [settings~=guide] [repeater~=trip]:hover {
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: none;
  }
}
@media (min-width: 0) {
  input[acc-lightbox~=toggle] {
    position: fixed;
    left: -9999px;
  }
  [acc-lightbox~=wrapper] {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    z-index: 5000;
    pointer-events: none;
  }
  [acc-lightbox~=wrapper]:after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  [acc-lightbox~=stage] {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(4rem, auto) 1fr;
    background-color: var(--color-bg-white);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.9);
    z-index: 5000;
  }
  input[acc-lightbox~=toggle]:checked + [acc-lightbox~=wrapper] {
    opacity: 1;
    transition: opacity;
    transition-duration: 0.25s;
    pointer-events: all;
  }
  input[acc-lightbox~=toggle]:checked + [acc-lightbox~=wrapper] [acc-lightbox~=stage] {
    transition-delay: 0.35s;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
  }
  [acc-lightbox~=overlay] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 4999;
    opacity: 0;
    transition: opacity 0.5s;
  }
  input[acc-lightbox~=toggle]:checked ~ [acc-lightbox~=wrapper] [acc-lightbox~=overlay] {
    opacity: 1;
    transition-delay: 0.5s;
  }
  [acc-lightbox~=close] {
    position: absolute;
    padding: 1rem;
    background-size: 0.75rem 0.75rem;
    top: 0.5rem;
    right: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    cursor: pointer;
    background-image: url("/templates/-all/icons/close.png"), url("/templates/-all/icons/close--hover.png");
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.25s ease-in-out;
    z-index: 5500;
  }
  [acc-lightbox~=close]:hover {
    background-image: url("/templates/-all/icons/close--hover.png");
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
  }
  [acc-lightbox~=header] {
    display: flex;
    align-items: center;
    padding: var(--padding);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    color: var(--color-bg-white);
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [acc-lightbox~=slideshow] {
    position: relative;
    overflow: hidden;
  }
  [acc-lightbox~=text] {
    display: none;
  }
}
@media (min-width: 768px) {
  [acc-lightbox~=slideshow] {
    aspect-ratio: 800/682;
  }
  [acc-lightbox~=text] {
    aspect-ratio: 800/682;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  [acc-lightbox~=wrapper] {
    min-width: 300px;
    max-width: min(90vw, 1920px);
    margin: auto;
    height: auto;
  }
  [acc-lightbox~=stage] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(4rem, auto) auto;
    border-radius: var(--border-radius-medium);
    border-bottom: 6px solid var(--color-bg-white);
    overflow: hidden;
  }
  [acc-lightbox~=header] {
    grid-column: 1/-1;
    padding-left: 1rem;
  }
  [acc-lightbox~=slideshow] {
    overflow: hidden;
  }
  [acc-lightbox~=text] {
    display: block;
    padding: 2rem;
    line-height: var(--line-height-body);
    overflow-y: auto;
  }
}
@media (min-width: 1025px) {
  [acc-lightbox~=wrapper] {
    min-width: 300px;
    max-width: min(90vw, 1600px);
    margin: auto;
    height: auto;
  }
  [acc-lightbox~=stage] {
    max-height: 100vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(4rem, auto) auto;
    border-radius: var(--border-radius-medium);
    overflow-y: auto;
  }
  [acc-lightbox~=header] {
    grid-column: 1/-1;
    padding-left: 1rem;
  }
  [acc-lightbox~=slideshow] {
    overflow: hidden;
  }
  [acc-lightbox~=text] {
    display: block;
    padding: 2rem;
    line-height: var(--line-height-body);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (min-width: 0) {
  [slideshow~=wrapper] {
    overflow: hidden;
  }
  [slideshow~=outer] {
    max-width: 100%;
  }
  [slideshow~=wrapper] ul {
    list-style: none outside none;
    padding: 0;
    margin: 0;
  }
  [slideshow~=wrapper] li {
    display: block;
    float: left;
  }
  [slideshow~=wrapper] img {
    display: block;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 0) {
  :root {
    --slider-header-padding: 2rem;
    --slider-wrapper-padding: 0;
    --slide-width: 80vw;
    --slide-photo-height: 40vh;
    --slide-border: 0;
    --slide-margin: calc((100vw - var(--slide-width)) / 2);
    --slide-gap: calc(var(--slide-margin) / 2);
    --slide-left: calc(var(--slide-gap) / 2);
    --slide-offset: calc(var(--slide-left) * 3);
    --slide-initial: calc(var(--slide-offset) - (var(--slide-width) + var(--slide-gap)));
    --slide-amount: calc((var(--slide-width) + var(--slide-gap)) * 0);
    --slide-amount-js: calc((var(--slide-width) + var(--slide-gap)) * 1);
    --slide-duration: 330ms;
    --slide-easing: ease-in-out;
    --slide-delay: 0;
  }
  [slider=header] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-header);
    text-align: center;
    padding: var(--slider-header-padding);
    line-height: var(--line-height-header);
    letter-spacing: -0.5px;
    background-color: white;
  }
  [slider=wrapper] {
    overflow: hidden;
    position: relative;
    display: grid;
    grid-auto-flow: column;
    justify-items: start;
    padding: var(--slider-wrapper-padding);
    padding-left: var(--slide-offset);
    line-height: var(--line-height-body);
    background: linear-gradient(to top, var(--brand-silver), var(--brand-silver) var(--slide-border), var(--white) var(--slide-border), var(--white) 100%);
  }
  [slider=set] {
    display: grid;
    grid-auto-flow: column;
    justify-items: start;
    transition-duration: var(--slide-duration);
    transition-timing-function: var(--slide-easing);
    transition-delay: var(--slide-delay);
  }
  [slider=slide] {
    position: relative;
    width: var(--slide-width);
    display: grid;
    align-content: start;
    align-items: start;
    margin-left: var(--slide-left);
    margin-right: var(--slide-left);
  }
  .js-active-slide:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 70%;
    background-color: var(--color-bg-white);
    box-shadow: 0 1rem 1rem 0 var(--brand-gray-dark--transparent);
    transition-property: opacity;
    transition-duration: var(--slide-duration);
    transition-timing-function: var(--slide-easing);
    transition-delay: var(--slide-delay);
  }
  [slider=slide]:not(.js-active-slide) {
    pointer-events: none;
  }
  [slider=slide]:not(.js-active-slide) [slider~=text],
  [slider=slide]:not(.js-active-slide) [slider~=tag],
  [slider=slide]:not(.js-active-slide) [slider~=tag-vert] {
    opacity: 0;
  }
  [slider=link] {
    display: grid;
    grid-template-rows: auto minmax(3rem, auto) 1fr;
  }
  [slider=trip][active]:before {
    opacity: 1;
    pointer-events: all;
  }
  [slider=photo] {
    position: relative;
    height: var(--slide-photo-height);
    z-index: 1;
  }
  [slider=img] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
  }
  [slider=tag-vert] {
    display: none;
    max-width: auto;
  }
  [slider=tag] {
    position: relative;
    top: -3rem;
    height: 3rem;
    display: inline-flex;
    flex-grow: 0;
    justify-self: start;
    align-items: center;
    padding: 0 1rem;
    color: var(--color-bg-white);
    background-color: var(--color-cta-primary-bg);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-smallest-fallback);
    font-size: var(--font-size-body-smallest);
    z-index: 20;
  }
  [slider=tag-vert].hide,
  [slider=tag].hide {
    display: block !important;
    opacity: 0;
  }
  [slider=text] {
    position: relative;
    display: grid;
    top: -3rem;
    grid-template-columns: 100%;
    align-content: start;
    padding: 0 1.5rem;
    transition-property: opacity;
    transition-duration: var(--slide-duration);
    transition-timing-function: var(--slide-easing);
    transition-delay: var(--slide-delay);
    z-index: 10;
    background-color: var(--color-bg-white);
    padding-top: 1.5rem;
    border-top: 0.5rem solid var(--brand-silver);
  }
  [slider=trip]:not([active]) [slider=text],
  [slider=trip]:not([active]) [slider=tag],
  [slider=trip]:not([active]) [slider=tag-vert] {
    opacity: 0;
  }
  [slider=name] {
    width: 100%;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
    font-family: var(--font-family-header);
    color: var(--color-text-link-dark);
  }
  [slider~=description] {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
  }
  [slider=pricing] {
    font-weight: var(--font-weight-header);
    color: var(--color-text-dark);
  }
  .js-slide-amount {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: var(--slide-amount-js);
    height: 50vh;
    background: black;
    z-index: 9999999;
    display: none;
    opacity: 0.2;
    pointer-events: none;
  }
}
@media (min-width: 768px) {
  :root {
    --slider-header-padding: 2rem 0 2rem 0;
    --slide-width: 80vw;
    --slide-photo-height: 40vh;
    --slide-border: 7rem;
  }
  .js-active-slide:before {
    height: 100%;
  }
  .js-active-slide:hover:before {
    transition: all 0.25s;
    box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.4);
  }
  [slider=text]:before {
    content: "";
    position: absolute;
    top: -2rem;
    left: -1px;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-white);
    box-shadow: 0 -0.5rem 0.5rem 0 var(--black--transparent);
    z-index: -1;
  }
  [slider=text] {
    width: 90%;
    margin: auto;
    border-top: none;
    padding: 0 2rem;
  }
  [slider=img] {
    border-bottom: none;
  }
  [slider=tag] {
    opacity: 0;
  }
  [slider=tag-vert] {
    position: absolute;
    top: -2rem;
    left: -3rem;
    opacity: 1;
    display: inline-grid;
    align-content: center;
    justify-content: center;
    width: 3rem;
    padding: 1rem 0;
    -webkit-text-orientation: sideways;
            text-orientation: sideways;
    -webkit-writing-mode: vertical-lr;
            writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: var(--color-bg-white);
    background-color: var(--color-cta-primary-bg);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-smallest-fallback);
    font-size: var(--font-size-body-smallest);
    z-index: 10;
  }
  [slider~=prev] {
    left: 0;
    transform: scaleX(-1);
  }
  [slider~=next] {
    right: 0;
  }
}
@media (min-width: 1024px) {
  [slider=text]:before {
    width: 100%;
    height: 100%;
    box-shadow: 0 -0.5rem 0.5rem 0 var(--black--transparent);
  }
  [slider=text] {
    width: 80%;
  }
  [slider~=arrow] {
    position: absolute;
    top: 0;
    width: var(--slide-gap);
    height: calc(var(--slide-photo-height) + 4rem);
    background-image: url(/templates/-all/icons/arrow.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    cursor: pointer;
    z-index: 80;
    filter: grayscale(100%);
  }
  [slider~=arrow]:hover {
    background-position: 1rem bottom;
  }
  [slider~=prev] {
    left: 0;
    transform: scaleX(-1);
  }
  [slider~=next] {
    right: 0;
  }
}
@media (min-width: 1680px) {
  :root {
    --slider-header-padding: 2rem 0 2rem 0;
    --slide-width: 60vw;
    --slide-photo-height: 50vh;
    --slide-border: 7rem;
  }
}
.js-slider-active {
  display: block;
}

@media (min-width: 768px) {
  [repeater~=options] {
    justify-self: start;
    align-self: flex-start;
    padding: 0.5rem 1rem 0.5rem 2rem;
    color: var(--color-text-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--brand-color-gray--light);
    background-color: var(--color-bg-white);
    background-image: url("/templates/-all/icons/wrench.png");
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 1rem;
  }
  [repeater~=options]:hover:after {
    content: " ... Use editor to change";
  }
}
[modal-stage~=physical] {
  opacity: inherit;
  position: fixed;
  margin: auto;
  top: -9999px;
  bottom: 0;
  left: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(80vw, 1080px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: min(80vh, 1080px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(3rem, auto) minmax(auto, 1fr);
  border-radius: var(--border-radius-small);
  overflow: hidden;
  z-index: 6002;
}

[modal-stage~=show][modal-stage~=physical] {
  max-width: min(80vw, 1920px);
}

[modal-toggle]:checked + [modal] [modal-stage~=physical] {
  top: 0;
  pointer-events: all;
}

@media (max-width: 767px) {
  [modal-stage~=physical] {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100%;
    height: calc(100% - 4.5rem);
    max-height: 100vh;
    border-radius: 0;
  }
}
[modal-physical-header] {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  grid-template-rows: 4rem;
  place-items: center left;
}

@media (max-width: 767px) {
  [modal-physical-header~=blue] {
    display: grid;
    grid-template-columns: 1rem 1fr 4rem;
    grid-template-rows: 3rem;
    place-items: center left;
    background: unset;
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
}
[modal-physical-header-text] {
  color: var(--color-bg-white);
  letter-spacing: 0.5px;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
}

[modal-physical-header]::before {
  content: "";
}

[modal-physical-header~=blue] {
  background-color: var(--color-cta-primary-bg);
}

[modal-physical-header~=brown] {
  background: var(--brand-gradient-brown);
}

[modal-physical-header~=wwf] {
  background-color: #050708;
}

[modal-physical-close] {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  cursor: pointer;
  background-image: url("/templates/-all/icons/close.png"), url("/templates/-all/icons/close--hover.png");
  background-repeat: no-repeat;
  background-size: 0.65rem 0.65rem;
  background-position: center center;
}
[modal-physical-close]:hover {
  background-image: url("/templates/-all/icons/close--hover.png");
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
}

@media (max-width: 767px) {
  [modal-physical-close] {
    top: 0;
    right: 0;
    padding: 0;
    width: 3rem;
    height: 3rem;
    filter: grayscale(10%);
    background-size: 0.75rem 0.75rem;
    border-left: solid 1px rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
  [modal-physical-close]:hover {
    background-image: url("/templates/-all/icons/close.png");
    background-color: transparent;
  }
}
[modal-physical-body] {
  display: grid;
  grid-template-columns: minmax(50%, 1fr) 1fr;
  grid-template-areas: "content figure";
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg-white);
  min-height: 400px;
}
[modal-physical-body] a,
[modal-physical-body] a strong {
  font-weight: var(--font-weight-header);
  color: var(--color-text-dark);
  transition: border 0.5s ease-in-out;
  border-bottom: 1px transparent var(--color-text-link-hover);
}
[modal-physical-body] a:hover {
  color: var(--color-text-link-dark-hover);
  border-bottom: 1px solid var(--color-text-link-hover);
}
[modal-physical-body] h2,
[modal-physical-body] h3,
[modal-physical-body] h4,
[modal-physical-body] h5,
[modal-physical-body] h6 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-header);
  font-weight: var(--font-weight-header);
  margin-bottom: 1rem;
}

[modal-physical-body~=hide] {
  grid-template-columns: 1fr;
  grid-template-areas: "content";
}

@media (min-width: 0) and (max-width: 1080px), (min-height: 0) and (max-height: 600px) {
  [modal-physical-body~=hide] {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
  }
}
@media (min-width: 0) and (max-width: 1280px), (min-height: 0) and (max-height: 600px) {
  [modal-physical-body~=show] {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
    min-height: unset;
  }
}
[modal-stage~=physical] [modal-physical-figure] {
  display: none;
  grid-area: figure;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  z-index: 0;
}
[modal-stage~=physical] [modal-physical-body~=show] [modal-physical-figure] {
  display: block;
  position: absolute;
  height: 100%;
}
[modal-stage~=physical] [figure-logo~=blue],
[modal-stage~=physical] [figure-logo~=brown] {
  display: none;
}
[modal-stage~=physical] [figure-logo~=wwf] {
  display: block;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: clamp(4rem, 2vw, 5rem);
  max-width: 100px;
  height: auto;
  z-index: 10;
}
[modal-stage~=physical] [figure-image] {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--brand-silver);
  z-index: 5;
}
[modal-stage~=physical] [figure-caption]:not(:empty) {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-weight: 600;
  text-align: right;
  background-color: var(--color-bg-silver);
  z-index: 6;
}
[modal-stage~=physical] [modal-physical-content] {
  grid-area: content;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: min(80vh, 1080px);
  background-color: var(--color-bg-white);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: 2rem 2.5rem;
  line-height: var(--line-height-body);
  z-index: 0;
}
[modal-stage~=physical] [modal-physical-content] ul {
  padding-right: clamp(1rem, 2vw, 4rem);
  padding-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(25ch, 1fr));
  place-content: start;
}
[modal-stage~=physical] [modal-physical-content] ul li {
  list-style-image: url(/templates/-all/icons/chevron-right--updated.png);
  list-style-position: outside;
  padding-left: 0.5rem;
  margin-left: 1.5rem;
}
[modal-stage~=physical] [modal-physical-content] ul li strong:first-of-type {
  font-family: var(--font-family-header);
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-header);
}
[modal-stage~=physical] [modal-physical-content] ol {
  counter-reset: bullets;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
[modal-stage~=physical] [modal-physical-content] ol li {
  list-style-position: inside;
  padding-left: 0.5rem;
  margin-left: 0.75rem;
  counter-increment: bullets;
}
[modal-stage~=physical] [modal-physical-content] ol li::before {
  content: counter(bullets) ") ";
  position: absolute;
  left: -15px;
  font-weight: var(--font-weight-header);
}
[modal-stage~=physical] [modal-physical-content] ol li + li {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  [modal-physical-content] {
    padding: 1rem 1.25rem 8rem 1.25rem;
  }
  [modal-physical-content] img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  [modal~=custom] {
    --custom-stage-border-radius: 0;
    --custom-stage-z-index: 6002;
    --custom-body-columns: 1fr;
    --custom-body-width: 100vw;
    --custom-body-width-max: 100vw;
    --custom-body-height: 100vh;
    --custom-body-height-max: 100vh;
    --custom-body-rows: minmax(3rem, auto) 1fr;
    --custom-aside-placement: start;
    --custom-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [custom-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [custom-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
}
@media (min-width: 768px) {
  [modal~=custom] {
    --custom-stage-border-radius: var(--border-radius-small);
    --custom-stage-z-index: 5002;
    --custom-body-columns: 0.8fr 1fr;
    --custom-body-width: fit-content;
    --custom-body-width-max: min(95vw, 1440px);
    --custom-body-height: fit-content;
    --custom-body-height-max: min(100vh, 1080px);
    --custom-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --custom-aside-placement: center;
    --custom-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --custom-aside-headline-sm-fallback: 1.5rem;
    --custom-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --custom-aside-headline-lg-fallback: 2.125rem;
    --custom-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --custom-aside-text-fallback: 1.125rem;
    --custom-aside-logos-display: grid;
    --custom-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=custom] {
    --custom-aside-placement: start;
    --custom-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=custom] {
    --custom-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 860px) and (min-height: 700px) {
  [modal~=custom] {
    --custom-aside-placement: center;
  }
}
[custom-stage] {
  opacity: inherit;
  border-radius: var(--custom-stage-border-radius);
  overflow: hidden;
  z-index: var(--custom-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [custom-stage] {
  pointer-events: all;
}

[custom-body] {
  display: grid;
  grid-template-columns: var(--custom-body-columns);
  grid-template-rows: var(--custom-body-rows, auto);
  width: var(--custom-body-width);
  max-width: var(--custom-body-width-max);
  height: var(--custom-body-height);
  max-height: var(--custom-body-height-max);
  line-height: var(--line-height-body);
}

[custom-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[custom-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[custom-header-title] a,
[custom-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[custom-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[custom-aside] {
  height: 100%;
  max-height: var(--custom-body-height-max);
  padding: var(--custom-aside-and-form-padding);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "custom-aside-headlines" "custom-aside-content";
  place-content: var(--custom-aside-placement);
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[custom-aside-headlines] {
  grid-area: custom-aside-headlines;
}

[custom-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[custom-aside-headline~=small] {
  grid-area: custom-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--custom-aside-headline-sm-fallback);
  font-size: var(--custom-aside-headline-sm);
}

[custom-aside-headline~=large] {
  grid-area: custom-aside-headline-large;
  justify-self: start;
  font-size: var(--custom-aside-headline-lg-fallback);
  font-size: var(--custom-aside-headline-lg);
}

[custom-aside-image-container] {
  grid-area: custom-aside-image-container;
  align-self: start;
}

[custom-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [custom-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
[custom-aside-content] {
  grid-area: custom-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[custom-aside-text] {
  font-size: var(--custom-aside-text-fallback);
  font-size: var(--custom-aside-text);
  line-height: var(--line-height-body);
}

[custom-aside-text] a[href^="tel:"] {
  white-space: nowrap;
}

[custom-aside-logos] {
  width: 100%;
  display: var(--custom-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[custom-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[custom-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[custom-form] {
  display: grid;
  height: 100%;
  max-height: var(--custom-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[custom-form] form {
  display: block;
}

[custom-form-required],
[custom-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--custom-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--custom-aside-and-form-padding);
}
[custom-form-required] a,
[custom-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[custom-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[custom-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[custom-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[custom-form-close] {
  position: absolute;
  top: var(--custom-form-close-offset);
  right: var(--custom-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/close--hover.png"), url("/templates/-all/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[custom-form-close]:hover {
  background-image: url("/templates/-all/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[custom-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[custom-form-field~=start] {
  align-content: start;
}

[custom-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[custom-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[custom-form-field~="1/2"],
[custom-form-field~="50%"],
[custom-form-field~=half] {
  grid-column: auto/span 2;
}

[custom-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[custom-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [custom-form-field~="1/4"],
  [custom-form-field~="1/2"],
  [custom-form-field~="50%"],
  [custom-form-field~=half],
  [custom-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [custom-form-field~="1/4"],
  [custom-form-field~="1/2"],
  [custom-form-field~="50%"],
  [custom-form-field~=half],
  [custom-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[custom-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[custom-form-field~=checkbox] {
  display: flex;
  justify-items: start;
  align-items: center;
  line-height: var(--line-height-header);
}

[custom-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[custom-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[custom-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[custom-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[custom-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[custom-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[custom-form-field-list~=radio][custom-form-field-list~="4-column"] {
  display: flex;
  justify-content: start;
}

@media (max-width: 767px) {
  [custom-form-field-list] {
    row-gap: 0.5rem;
  }
  [custom-form-field-list~="2-column"],
  [custom-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [custom-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[custom-form-field-list~=checkbox] [custom-form-label~=checkbox],
[custom-form-field-list~=radio] [custom-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [custom-form-field-list~=radio][custom-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[custom-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[custom-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[custom-form-label~=optin] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[custom-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[custom-form-input] {
  border-radius: 8px;
}

[custom-form-input~=text],
[custom-form-input~=tel],
[custom-form-input~=date],
[custom-form-input~=email],
[custom-form-input~=textarea],
[custom-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[custom-form-input~=textarea] {
  min-height: min(8.25rem, 15vh);
  line-height: var(--line-height-body);
}

[custom-form-input~=checkbox] {
  grid-row: 2;
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[custom-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[custom-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[custom-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[custom-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[custom-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[custom-form-button]:disabled,
[custom-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[custom-form-button]:disabled:after,
[custom-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[custom-form-button]:disabled:before,
[custom-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[custom-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[custom-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[custom-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[custom-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
  font-weight: var(--font-weight-header);
}

[custom-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[custom-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[custom-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[custom-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (max-width: 767px) {
  [modal~=private] {
    --private-stage-border-radius: 0;
    --private-stage-z-index: 6002;
    --private-body-columns: 1fr;
    --private-body-width: 100vw;
    --private-body-width-max: 100vw;
    --private-body-height: 100vh;
    --private-body-height-max: 100vh;
    --private-body-rows: minmax(3rem, auto) 1fr;
    --private-aside-placement: start;
    --private-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [private-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [private-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
}
@media (min-width: 768px) {
  [modal~=private] {
    --private-stage-border-radius: var(--border-radius-small);
    --private-stage-z-index: 5002;
    --private-body-columns: 0.8fr 1fr;
    --private-body-width: fit-content;
    --private-body-width-max: min(95vw, 1440px);
    --private-body-height: fit-content;
    --private-body-height-max: min(100vh, 1080px);
    --private-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --private-aside-placement: center;
    --private-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --private-aside-headline-sm-fallback: 1.5rem;
    --private-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --private-aside-headline-lg-fallback: 2.125rem;
    --private-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --private-aside-text-fallback: 1.125rem;
    --private-aside-logos-display: grid;
    --private-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=private] {
    --private-aside-placement: start;
    --private-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=private] {
    --private-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 860px) and (min-height: 700px) {
  [modal~=private] {
    --private-aside-placement: center;
  }
}
[private-stage] {
  opacity: inherit;
  border-radius: var(--private-stage-border-radius);
  overflow: hidden;
  z-index: var(--private-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [private-stage] {
  pointer-events: all;
}

[private-body] {
  display: grid;
  grid-template-columns: var(--private-body-columns);
  grid-template-rows: var(--private-body-rows, auto);
  width: var(--private-body-width);
  max-width: var(--private-body-width-max);
  height: var(--private-body-height);
  max-height: var(--private-body-height-max);
  line-height: var(--line-height-body);
}

[private-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[private-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[private-header-title] a,
[private-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[private-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[private-aside] {
  height: 100%;
  max-height: var(--private-body-height-max);
  padding: var(--private-aside-and-form-padding);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "private-aside-headlines" "private-aside-content";
  place-content: var(--private-aside-placement);
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[private-aside-headlines] {
  grid-area: private-aside-headlines;
}

[private-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[private-aside-headline~=small] {
  grid-area: private-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--private-aside-headline-sm-fallback);
  font-size: var(--private-aside-headline-sm);
}

[private-aside-headline~=large] {
  grid-area: private-aside-headline-large;
  justify-self: start;
  font-size: var(--private-aside-headline-lg-fallback);
  font-size: var(--private-aside-headline-lg);
}

[private-aside-image-container] {
  grid-area: private-aside-image-container;
  align-self: start;
}

[private-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [private-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
[private-aside-content] {
  grid-area: private-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[private-aside-text] {
  font-size: var(--private-aside-text-fallback);
  font-size: var(--private-aside-text);
  line-height: var(--line-height-body);
}

[private-aside-text] a[href^="tel:"] {
  white-space: nowrap;
}

[private-aside-logos] {
  width: 100%;
  display: var(--private-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[private-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[private-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[private-form] {
  display: grid;
  height: 100%;
  max-height: var(--private-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[private-form] form {
  display: block;
}

[private-form-required],
[private-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--private-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--private-aside-and-form-padding);
}
[private-form-required] a,
[private-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[private-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[private-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[private-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[private-form-close] {
  position: absolute;
  top: var(--private-form-close-offset);
  right: var(--private-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/close--hover.png"), url("/templates/-all/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[private-form-close]:hover {
  background-image: url("/templates/-all/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[private-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[private-form-field~=start] {
  align-content: start;
}

[private-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[private-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[private-form-field~="1/2"],
[private-form-field~="50%"],
[private-form-field~=half] {
  grid-column: auto/span 2;
}

[private-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[private-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [private-form-field~="1/4"],
  [private-form-field~="1/2"],
  [private-form-field~="50%"],
  [private-form-field~=half],
  [private-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [private-form-field~="1/4"],
  [private-form-field~="1/2"],
  [private-form-field~="50%"],
  [private-form-field~=half],
  [private-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[private-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[private-form-field~=checkbox] {
  display: flex;
  justify-items: start;
  align-items: center;
  line-height: var(--line-height-header);
}

[private-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[private-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[private-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[private-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[private-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[private-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[private-form-field-list~=radio][private-form-field-list~="4-column"] {
  display: flex;
  justify-content: start;
}

@media (max-width: 767px) {
  [private-form-field-list] {
    row-gap: 0.5rem;
  }
  [private-form-field-list~="2-column"],
  [private-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [private-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[private-form-field-list~=checkbox] [private-form-label~=checkbox],
[private-form-field-list~=radio] [private-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [private-form-field-list~=radio][private-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[private-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[private-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[private-form-label~=optin] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[private-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[private-form-input] {
  border-radius: 8px;
}

[private-form-input~=text],
[private-form-input~=tel],
[private-form-input~=date],
[private-form-input~=email],
[private-form-input~=textarea],
[private-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[private-form-input~=textarea] {
  min-height: min(8.25rem, 15vh);
  line-height: var(--line-height-body);
}

[private-form-input~=checkbox] {
  grid-row: 2;
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[private-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[private-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[private-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[private-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[private-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[private-form-button]:disabled,
[private-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[private-form-button]:disabled:after,
[private-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[private-form-button]:disabled:before,
[private-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[private-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[private-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[private-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[private-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
  font-weight: var(--font-weight-header);
}

[private-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[private-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[private-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[private-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (max-width: 767px) {
  [modal~=pdf] {
    --pdf-stage-border-radius: 0;
    --pdf-stage-z-index: 6002;
    --pdf-body-columns: 1fr;
    --pdf-body-width: 100vw;
    --pdf-body-width-max: 100vw;
    --pdf-body-height: 100vh;
    --pdf-body-height-max: 100vh;
    --pdf-body-rows: minmax(3rem, auto) 1fr;
    --pdf-aside-placement: start;
    --pdf-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [pdf-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [pdf-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
}
@media (min-width: 768px) {
  [modal~=pdf] {
    --pdf-stage-border-radius: var(--border-radius-small);
    --pdf-stage-z-index: 5002;
    --pdf-body-columns: 0.8fr 1fr;
    --pdf-body-width: fit-content;
    --pdf-body-width-max: min(95vw, 1440px);
    --pdf-body-height: fit-content;
    --pdf-body-height-max: min(100vh, 1080px);
    --pdf-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --pdf-aside-placement: center;
    --pdf-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --pdf-aside-headline-sm-fallback: 1.5rem;
    --pdf-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --pdf-aside-headline-lg-fallback: 2.125rem;
    --pdf-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --pdf-aside-text-fallback: 1.125rem;
    --pdf-aside-logos-display: grid;
    --pdf-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=pdf] {
    --pdf-aside-placement: start;
    --pdf-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=pdf] {
    --pdf-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 890px) and (min-height: 685px) {
  [modal~=pdf] {
    --pdf-aside-placement: center;
  }
}
[pdf-stage] {
  opacity: inherit;
  border-radius: var(--pdf-stage-border-radius);
  overflow: hidden;
  z-index: var(--pdf-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [pdf-stage] {
  pointer-events: all;
}

[pdf-body] {
  display: grid;
  grid-template-columns: var(--pdf-body-columns);
  grid-template-rows: var(--pdf-body-rows, auto);
  width: var(--pdf-body-width);
  max-width: var(--pdf-body-width-max);
  height: var(--pdf-body-height);
  max-height: var(--pdf-body-height-max);
  line-height: var(--line-height-body);
}

[pdf-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[pdf-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[pdf-header-title] a,
[pdf-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[pdf-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[pdf-aside] {
  height: 100%;
  max-height: var(--pdf-body-height-max);
  padding: var(--pdf-aside-and-form-padding);
  display: grid;
  grid-template-columns: clamp(5rem, 9vw, 9rem) 1fr;
  grid-template-areas: "pdf-aside-headlines 			pdf-aside-headlines" "pdf-aside-image-container 		pdf-aside-content";
  place-content: var(--pdf-aside-placement);
  -moz-column-gap: min(1.75vw, 1.5rem);
       column-gap: min(1.75vw, 1.5rem);
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[pdf-aside-headlines] {
  grid-area: pdf-aside-headlines;
}

[pdf-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[pdf-aside-headline~=small] {
  grid-area: pdf-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--pdf-aside-headline-sm-fallback);
  font-size: var(--pdf-aside-headline-sm);
}

[pdf-aside-headline~=large] {
  grid-area: pdf-aside-headline-large;
  justify-self: start;
  font-size: var(--pdf-aside-headline-lg-fallback);
  font-size: var(--pdf-aside-headline-lg);
}

[pdf-aside-image-container] {
  grid-area: pdf-aside-image-container;
  align-self: start;
}

[pdf-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [pdf-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
.icon-pdf {
  position: absolute;
  left: -1.9rem;
  top: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 4px solid var(--color-bg-white);
  border-radius: var(--border-radius);
  display: flex;
  place-items: center;
}

.icon-pdf::after {
  --badge-text: "PDF";
  content: var(--badge-text);
  color: var(--color-bg-white);
  font-weight: 800;
  text-align: center;
  background-color: var(--color-cta-primary-bg);
  border-radius: 3px;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0.7rem;
  display: block;
}

@media (max-width: 1050px) {
  .icon-pdf {
    top: unset;
    bottom: -0.8rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4vw;
  }
}
[pdf-aside-content] {
  grid-area: pdf-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[pdf-aside-text] {
  font-size: var(--pdf-aside-text-fallback);
  font-size: var(--pdf-aside-text);
  line-height: var(--line-height-body);
}

[pdf-aside-logos] {
  width: 100%;
  display: var(--pdf-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[pdf-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[pdf-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[pdf-form] {
  display: grid;
  height: 100%;
  max-height: var(--pdf-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[pdf-form] form {
  display: block;
}

[pdf-form-required],
[pdf-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--pdf-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--pdf-aside-and-form-padding);
}
[pdf-form-required] a,
[pdf-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[pdf-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[pdf-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[pdf-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[pdf-form-close] {
  position: absolute;
  top: var(--pdf-form-close-offset);
  right: var(--pdf-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/close--hover.png"), url("/templates/-all/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[pdf-form-close]:hover {
  background-image: url("/templates/-all/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[pdf-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[pdf-form-field~=start] {
  align-content: start;
}

[pdf-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[pdf-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[pdf-form-field~="1/2"],
[pdf-form-field~="50%"],
[pdf-form-field~=half] {
  grid-column: auto/span 2;
}

[pdf-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[pdf-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [pdf-form-field~="1/4"],
  [pdf-form-field~="1/2"],
  [pdf-form-field~="50%"],
  [pdf-form-field~=half],
  [pdf-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [pdf-form-field~="1/4"],
  [pdf-form-field~="1/2"],
  [pdf-form-field~="50%"],
  [pdf-form-field~=half],
  [pdf-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[pdf-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[pdf-form-field~=checkbox] {
  display: flex;
  justify-items: start;
  align-items: center;
  line-height: var(--line-height-header);
}

[pdf-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[pdf-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[pdf-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[pdf-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[pdf-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[pdf-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[pdf-form-field-list~=radio][pdf-form-field-list~="4-column"] {
  display: flex;
  justify-content: start;
}

@media (max-width: 767px) {
  [pdf-form-field-list] {
    row-gap: 0.5rem;
  }
  [pdf-form-field-list~="2-column"],
  [pdf-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [pdf-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[pdf-form-field-list~=checkbox] [pdf-form-label~=checkbox],
[pdf-form-field-list~=radio] [pdf-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [pdf-form-field-list~=radio][pdf-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[pdf-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[pdf-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[pdf-form-label~=optin] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[pdf-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[pdf-form-input] {
  border-radius: 8px;
}

[pdf-form-input~=text],
[pdf-form-input~=tel],
[pdf-form-input~=date],
[pdf-form-input~=email],
[pdf-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[pdf-form-input~=checkbox] {
  grid-row: 2;
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--brand-ocean);
  accent-color: var(--brand-ocean);
}

[pdf-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--brand-ocean);
  accent-color: var(--brand-ocean);
}

[pdf-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[pdf-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[pdf-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[pdf-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[pdf-form-button]:disabled,
[pdf-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[pdf-form-button]:disabled:after,
[pdf-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[pdf-form-button]:disabled:before,
[pdf-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[pdf-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[pdf-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[pdf-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[pdf-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
  font-weight: var(--font-weight-header);
}

[pdf-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[pdf-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[pdf-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[pdf-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (max-width: 767px) {
  [modal~=ask] {
    --ask-stage-border-radius: 0;
    --ask-stage-z-index: 6002;
    --ask-body-columns: 1fr;
    --ask-body-width: 100vw;
    --ask-body-width-max: 100vw;
    --ask-body-height: 100vh;
    --ask-body-height-max: 100vh;
    --ask-body-rows: minmax(3rem, auto) 1fr;
    --ask-aside-placement: start;
    --ask-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [ask-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [ask-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
  [ask-form-field~=submit] {
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  [modal~=ask] {
    --ask-stage-border-radius: var(--border-radius-small);
    --ask-stage-z-index: 5002;
    --ask-body-columns: 0.8fr 1fr;
    --ask-body-width: fit-content;
    --ask-body-width-max: min(95vw, 1440px);
    --ask-body-height: fit-content;
    --ask-body-height-max: min(100vh, 1080px);
    --ask-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --ask-aside-placement: center;
    --ask-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --ask-aside-headline-sm-fallback: 1.5rem;
    --ask-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --ask-aside-headline-lg-fallback: 2.125rem;
    --ask-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --ask-aside-text-fallback: 1.125rem;
    --ask-aside-logos-display: grid;
    --ask-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=ask] {
    --ask-aside-placement: start;
    --ask-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=ask] {
    --ask-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 860px) and (min-height: 700px) {
  [modal~=ask] {
    --ask-aside-placement: center;
  }
}
[ask-stage] {
  opacity: inherit;
  border-radius: var(--ask-stage-border-radius);
  overflow: hidden;
  z-index: var(--ask-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [ask-stage] {
  pointer-events: all;
}

[ask-body] {
  display: grid;
  grid-template-columns: var(--ask-body-columns);
  grid-template-rows: var(--ask-body-rows, auto);
  width: var(--ask-body-width);
  max-width: var(--ask-body-width-max);
  height: var(--ask-body-height);
  max-height: var(--ask-body-height-max);
  line-height: var(--line-height-body);
}

[ask-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[ask-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[ask-header-title] a,
[ask-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[ask-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[ask-aside] {
  height: 100%;
  max-height: var(--ask-body-height-max);
  padding: var(--ask-aside-and-form-padding);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "ask-aside-headlines" "ask-aside-content";
  place-content: var(--ask-aside-placement);
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[ask-aside-headlines] {
  grid-area: ask-aside-headlines;
}

[ask-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[ask-aside-headline~=small] {
  grid-area: ask-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--ask-aside-headline-sm-fallback);
  font-size: var(--ask-aside-headline-sm);
}

[ask-aside-headline~=large] {
  grid-area: ask-aside-headline-large;
  justify-self: start;
  font-size: var(--ask-aside-headline-lg-fallback);
  font-size: var(--ask-aside-headline-lg);
}

[ask-aside-image-container] {
  grid-area: ask-aside-image-container;
  align-self: start;
}

[ask-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [ask-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
[ask-aside-content] {
  grid-area: ask-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[ask-aside-text] {
  font-size: var(--ask-aside-text-fallback);
  font-size: var(--ask-aside-text);
  line-height: var(--line-height-body);
}

[ask-aside-text] a[href^="tel:"] {
  white-space: nowrap;
}

[ask-aside-logos] {
  width: 100%;
  display: var(--ask-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[ask-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[ask-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[ask-form] {
  display: grid;
  height: 100%;
  max-height: var(--ask-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[ask-form] form {
  display: block;
}

[ask-form-required],
[ask-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--ask-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--ask-aside-and-form-padding);
}
[ask-form-required] a,
[ask-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[ask-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[ask-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[ask-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[ask-form-close] {
  position: absolute;
  top: var(--ask-form-close-offset);
  right: var(--ask-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/templates/-all/icons/close--hover.png"), url("/templates/-all/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[ask-form-close]:hover {
  background-image: url("/templates/-all/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[ask-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[ask-form-field~=start] {
  align-content: start;
}

[ask-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[ask-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[ask-form-field~="1/2"],
[ask-form-field~="50%"],
[ask-form-field~=half] {
  grid-column: auto/span 2;
}

[ask-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[ask-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [ask-form-field~="1/4"],
  [ask-form-field~="1/2"],
  [ask-form-field~="50%"],
  [ask-form-field~=half],
  [ask-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [ask-form-field~="1/4"],
  [ask-form-field~="1/2"],
  [ask-form-field~="50%"],
  [ask-form-field~=half],
  [ask-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[ask-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[ask-form-field~=checkbox] {
  display: flex;
  justify-items: start;
  align-items: center;
  line-height: var(--line-height-header);
}

[ask-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[ask-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[ask-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[ask-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[ask-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[ask-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[ask-form-field-list~=radio][ask-form-field-list~="4-column"] {
  display: flex;
  justify-content: start;
}

@media (max-width: 767px) {
  [ask-form-field-list] {
    row-gap: 0.5rem;
  }
  [ask-form-field-list~="2-column"],
  [ask-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [ask-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[ask-form-field-list~=checkbox] [ask-form-label~=checkbox],
[ask-form-field-list~=radio] [ask-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [ask-form-field-list~=radio][ask-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[ask-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[ask-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[ask-form-label~=enews] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[ask-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[ask-form-input] {
  border-radius: 8px;
}

[ask-form-input~=text],
[ask-form-input~=tel],
[ask-form-input~=date],
[ask-form-input~=email],
[ask-form-input~=textarea],
[ask-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[ask-form-input~=textarea] {
  min-height: min(8.25rem, 15vh);
  line-height: var(--line-height-body);
}

[ask-form-input~=checkbox] {
  grid-row: 2;
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[ask-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[ask-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[ask-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[ask-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[ask-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[ask-form-button]:disabled,
[ask-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[ask-form-button]:disabled:after,
[ask-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[ask-form-button]:disabled:before,
[ask-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[ask-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[ask-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[ask-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[ask-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
}

[ask-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[ask-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[ask-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[ask-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[modal~=carbon] {
  display: grid;
  place-items: center;
}

[modal-stage~=carbon] {
  opacity: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(80vw, 1080px);
  overflow: hidden;
  z-index: 6002;
}

[modal-toggle]:checked + [modal] [modal-stage~=carbon] {
  pointer-events: all;
}

[modal-carbon-header] {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  grid-template-rows: 4rem;
  place-items: center left;
  border-radius: 0;
  background: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
}

[modal-carbon-header-text] {
  color: var(--color-bg-white);
  letter-spacing: 0.5px;
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
}

[modal-carbon-header]::before {
  content: "";
}

[modal-carbon-close] {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  cursor: pointer;
  background-image: url("/templates/-all/icons/close.png"), url("/templates/-all/icons/close--hover.png");
  background-repeat: no-repeat;
  background-size: 0.65rem 0.65rem;
  background-position: center center;
}
[modal-carbon-close]:hover {
  background-image: url("/templates/-all/icons/close--hover.png");
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
}

[modal-carbon-body] {
  display: grid;
  grid-template-columns: 450px 1fr;
  grid-template-areas: "figure content";
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg-white);
  border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
}

[modal-carbon-image] {
  grid-area: figure;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: grid;
  align-items: start;
}

[carbon-image] {
  max-width: 100%;
}

[modal-carbon-content] {
  grid-area: content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 550px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--gradient-silver);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: 2rem 2.5rem;
  line-height: var(--line-height-body);
  z-index: 0;
}
[modal-carbon-content] a,
[modal-carbon-content] a strong {
  font-weight: var(--font-weight-header);
  color: var(--color-text-link-dark);
  transition: border 0.5s ease-in-out;
  border-bottom: 1px transparent var(--color-text-link-dark);
}
[modal-carbon-content] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}
[modal-carbon-content] strong {
  font-size: inherit;
}

@media (min-width: 768px) and (max-width: 1024px) {
  [modal-carbon-body] {
    grid-template-columns: 1fr 1fr;
    max-height: 450px;
  }
}
@media (max-width: 767px) {
  [modal-stage~=carbon] {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100svh;
    border-radius: 0;
  }
  [modal-carbon-header] {
    display: grid;
    grid-template-columns: 1rem 1fr 4rem;
    grid-template-rows: 3rem;
    place-items: center left;
    border-radius: unset;
  }
  [modal-carbon-close] {
    top: 0;
    right: 0;
    padding: 0;
    width: 3rem;
    height: 3rem;
    filter: grayscale(10%);
    background-size: 0.75rem 0.75rem;
    border-left: solid 1px rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
  [modal-carbon-close]:hover {
    background-image: url("/templates/-all/icons/close.png");
    background-color: transparent;
  }
  [modal-carbon-body] {
    grid-template-columns: 1fr;
    grid-template-areas: "figure" "content";
    min-height: 100%;
    max-height: unset;
    overflow-y: auto;
    height: 100vh;
    height: 100svh;
    border-radius: unset;
  }
  [modal-carbon-content] {
    padding: 1rem 1.25rem 10rem 1.25rem;
    max-height: unset;
  }
}
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-header);
}

h2 {
  font-size: var(--font-size-h2-fallback);
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
}

[trip-360-modal] {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: visible;
  z-index: 99999;
  aspect-ratio: 16/9;
}

@media (orientation: portrait) {
  [trip-360-modal] {
    width: min(80vw, 1920px);
  }
}
@media (orientation: landscape) {
  [trip-360-modal] {
    height: min(55vh, 1080px);
  }
}
dialog[open] {
  display: block;
}

[trip-360-modal]::backdrop {
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
}

[trip-360-toggle]:checked + [trip-360-modal] {
  pointer-events: all;
  opacity: 1;
}

[trip-360-modal-iframe] {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
}

@media (orientation: portrait) {
  [trip-360-modal-iframe] {
    width: 100%;
  }
}
@media (orientation: landscape) {
  [trip-360-modal-iframe] {
    height: 100%;
  }
}
[trip-360-modal-close] {
  all: unset;
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  color: var(--brand-black);
  background-color: rgb(255, 255, 255);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  z-index: 99999;
  cursor: pointer;
}

@media (max-width: 1024px) and (orientation: portrait) {
  [trip-360-modal-close] {
    top: auto;
    bottom: -4rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
[trip-360-modal-close]:hover {
  background-color: var(--color-cta-primary-bg);
  color: var(--brand-white);
}

@supports not (aspect-ratio: 16/9) {
  [trip-360-modal] {
    min-width: 80vw;
    max-width: 1920px;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
  dialog[open]::after {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-color: rgba(0, 0, 0, 0.85);
  }
  [trip-360-modal-iframe] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
[cta-questions] {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 5rem 0;
  font-weight: var(--font-weight-body);
  font-family: var(--font-family-body);
  line-height: var(--line-height-header);
  color: var(--color-text-dark);
  background-color: var(--brand-silver-end);
  row-gap: var(--space-s-m);
}

[cta-questions-title] {
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  text-transform: uppercase;
}

[cta-questions-title-sub] {
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
}

[cta-questions-text] {
  max-width: 350px;
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
}

[cta-questions-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[cta-questions-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@media (min-width: 768px) {
  [cta-questions-text] {
    max-width: 400px;
  }
}
[youtube-modal] {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: visible;
  z-index: 99999;
  aspect-ratio: 16/9;
}

@media (orientation: portrait) {
  [youtube-modal] {
    width: min(80vw, 1920px);
  }
}
@media (orientation: landscape) {
  [youtube-modal] {
    height: min(55vh, 1080px);
  }
}
dialog[open] {
  display: block;
}

[youtube-modal]::backdrop {
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
}

[youtube-toggle]:checked + [youtube-modal] {
  pointer-events: all;
  opacity: 1;
}

[youtube-modal-iframe] {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
}

@media (orientation: portrait) {
  [youtube-modal-iframe] {
    width: 100%;
  }
}
@media (orientation: landscape) {
  [youtube-modal-iframe] {
    height: 100%;
  }
}
[youtube-modal-close] {
  all: unset;
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  color: var(--brand-black);
  background-color: rgb(255, 255, 255);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  z-index: 99999;
  cursor: pointer;
}

@media (max-width: 1024px) and (orientation: portrait) {
  [youtube-modal-close] {
    top: auto;
    bottom: -4rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
[youtube-modal-close]:hover {
  background-color: var(--color-cta-primary-bg);
  color: var(--brand-white);
}

@supports not (aspect-ratio: 16/9) {
  [youtube-modal] {
    min-width: 80vw;
    max-width: 1920px;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
  dialog[open]::after {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-color: rgba(0, 0, 0, 0.85);
  }
  [youtube-modal-iframe] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
[style*=font]:not([id^=om-]) {
  all: unset !important;
}

a a {
  display: none;
}

.dolly-in-slow {
  animation: dolly-in-slow 10s ease-out both;
}

.invisible {
  opacity: 0;
}

.hide-off-canvas {
  position: fixed;
  top: -9999px;
}

.hide,
[hide~=all] {
  display: none;
}

[hide~="all!"] {
  display: none !important;
}

@media (max-width: 767px) {
  [hide~=sm] {
    display: none;
  }
  [hide~="sm!"] {
    display: none !important;
  }
}
@media (min-width: 0) {
  [hide~="sm+"] {
    display: none;
  }
  [hide~="sm!+"],
  [hide~="sm+!"] {
    display: none !important;
  }
  [src$="www.nathab.com"] {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [hide~=md] {
    display: none;
  }
  [hide~="md!"] {
    display: none !important;
  }
}
@media (min-width: 768px) {
  [hide~="md+"] {
    display: none;
  }
  [hide~="md!+"],
  [hide~="md+!"] {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  [hide~=lg],
  [hide~="lg+"] {
    display: none;
  }
  [hide~="lg!"],
  [hide~="lg!+"],
  [hide~="lg+!"] {
    display: none !important;
  }
}
[divider] {
  border-top: 1px solid var(--brand-gray-dark--transparent);
  height: 1px;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */