:root {
  /* paddings of touchscreen devices with a notch */
  --safe-area-top: env(safe-area-inset-top);
  --safe-area-right: env(safe-area-inset-right);
  --safe-area-bottom: env(safe-area-inset-bottom);
  --safe-area-left: env(safe-area-inset-left);

  /* Sizes */
  --max-width: 1280px;
  --max-width-narrow: 770px;
  --horizontal-padding: 16px;
  --padding-no-full-width: 56px;
  --button-margin-bottom: 16px;

  /* Carousel */
  --slide-width: 318px;
  --slide-width-mobile: 314px;
  --thumbnail-size: 80px;

  /* Mosaic section grid */
  --grid-row: 2;
  --grid-auto-flow: dense;

  /* Colors */
  --color-azureish-white: #D7E2FF;
  --color-begonia: #FF6E6E;
  --color-black: #0B1A26;
  --color-black-08: #0B1A2614;
  --color-green: #51C234;
  --color-red: #C23434;
  --color-red-light: #F5CFCF;
  --color-white: #FFF;
  --color-white-90: #FFFFFFE6;

  /* Font weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 900;

  /* Line heights */
  --line-height-xs: 1;
  --line-height-sm: 1.2;
  --line-height-md: 1.3333;
  --line-height-lg: 1.5;
  --line-height-xl: 2;

  /* Transitions */
  --animation-duration: 200ms;
  --transition-function-linear: linear;
  --transition-function-ease: ease;
  --transition-function-ease-in: ease-in;
  --transition-function-ease-out: ease-out;
  --transition-function-ease-in-out: ease-in-out;

  /* Shadows */
  --shadow-xxs: 0px 1px 2px rgb(0 0 0 / 0.05%);
  --shadow-xs: 0px 1px 3px rgb(0 0 0 / 10%), 0px 1px 2px rgb(0 0 0 / 6%);
  --shadow-sm: 0px 4px 8px -2px rgb(0 0 0 / 10%), 0px 2px 4px -2px rgb(0 0 0 / 6%);
  --shadow-md: 0px 12px 16px -4px rgb(0 0 0 / 8%), 0px 4px 6px -2px rgb(0 0 0 / 3%);
  --shadow-lg: 0px 20px 24px -4px rgb(0 0 0 / 8%), 0px 8px 8px -4px rgb(0 0 0 / 3%);
  --shadow-xl: 0px 24px 48px -12px rgb(0 0 0 / 18%);
  --shadow-xxl: 0px 32px 64px -12px rgb(0 0 0 / 14%);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:not(i),
*:not(i)::before,
*:not(i)::after {
  font-family: var(--font-body, sans-serif);
}


html {
  overflow-x: hidden;
  height: 100%;
  padding: env(safe-area-inset);
}

html:has(div[data-tid="Modal"][class*="Container-"]) {
  overflow: hidden;
}

.touch {
  text-size-adjust: 100%;
}

body {
  background: var(--background-primary, #FFF);
  color: var(--color-primary, #0B1A26);
  font-size: 16px;
  line-height: var(--line-height-lg, 1.5);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  overflow-x: clip;
  overflow-wrap: anywhere;
}

body > * {
  flex: 0 0 auto;
}

#main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

#main > * {
  width: 100%;
}

#main > section:first-child:is(.text-image) .text-image__holder,
#main > .text-image:first-child .text-image__holder {
  max-height: none;
}

#main > section:last-child {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#main > section:last-child > [class*="__wrapper"],
#main > section:last-child > [class^="__wrapper"] {
  flex-grow: 1;
}

.preview-app #main:has(section:only-child) {
  display: block;
}

.header--sticky ~ #main {
  padding-top: calc(var(--header-height) - 2px);
}

.preview-bar__container ~ .header--sticky ~ #main {
  padding-top: calc(var(--header-height) - 4px);
}

.header--not-sticky.header--menu-opened ~ #main {
  margin-top: var(--preview-height);
  padding-top: calc(var(--header-height) - 1px);
}

.preview-bar__container {
  z-index: 10000000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading, sans-serif);
  margin-bottom: 1.5625rem;
  font-weight: var(--font-weight-headers, 700);
}

.palette-one h1,
.palette-one h2,
.palette-one h3,
.palette-one h4,
.palette-one h5,
.palette-one h6,
.palette-one .h1,
.palette-one .h2,
.palette-one .h3,
.palette-one .h4,
.palette-one .h5,
.palette-one .h6 {
  color: var(--color-primary, #0B1A26);
}

.palette-two h1,
.palette-two h2,
.palette-two h3,
.palette-two h4,
.palette-two h5,
.palette-two h6,
.palette-two .h1,
.palette-two .h2,
.palette-two .h3,
.palette-two .h4,
.palette-two .h5,
.palette-two .h6 {
  color: var(--color-primary-2, #FFF);
}

.palette-three h1,
.palette-three h2,
.palette-three h3,
.palette-three h4,
.palette-three h5,
.palette-three h6,
.palette-three .h1,
.palette-three .h2,
.palette-three .h3,
.palette-three .h4,
.palette-three .h5,
.palette-three .h6 {
  color: var(--color-primary-3, #0B1A26);
}

h1,
.h1 {
  font-size: var(--font-size-h1, 56px);
  font-weight: var(--font-weight-h1, 700);
  line-height: var(--line-height-sm, 1.2);
}

h2,
.h2 {
  font-size: var(--font-size-h2, 48px);
  font-weight: var(--font-weight-h2, 700);
  line-height: var(--line-height-sm, 1.2);
}

h3,
.h3 {
  font-size: var(--font-size-h3, 40px);
  font-weight: var(--font-weight-h3, 700);
  line-height: var(--line-height-sm, 1.2);
}

h4,
.h4 {
  font-size: 32px;
  line-height: var(--line-height-md, 1.3);
}

h5,
.h5{
  font-size: 24px;
  line-height: 1.4;
}

h6,
.h6 {
  font-size: 20px;
  line-height: 1.4;
}

a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
  text-decoration: none;
  transition: all var(--animation-duration, 200ms) var(--transition-function-ease-in-out);
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul{
  list-style: none;
}

input,
textarea {
  font-family: var(--font-body, sans-serif);
  border-radius: var(--border-radius-rounded);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px transparent inset !important;
  background-clip: text !important;
}

.palette-one input:-webkit-autofill,
.palette-one input:-webkit-autofill:hover,
.palette-one input:-webkit-autofill:focus
.palette-one input:-webkit-autofill:active,
.palette-one textarea:-webkit-autofill,
.palette-one textarea:-webkit-autofill:hover
.palette-one textarea:-webkit-autofill:focus,
.palette-one textarea:-webkit-autofill:active {
  color: var(--color-primary, #0B1A26) !important;
  -webkit-text-fill-color: var(--color-primary, #0B1A26) !important;
}

.palette-two input:-webkit-autofill,
.palette-two input:-webkit-autofill:hover,
.palette-two input:-webkit-autofill:focus
.palette-two input:-webkit-autofill:active,
.palette-two textarea:-webkit-autofill,
.palette-two textarea:-webkit-autofill:hover
.palette-two textarea:-webkit-autofill:focus,
.palette-two textarea:-webkit-autofill:active {
  color: var(--color-primary-2, #FFF) !important;
  -webkit-text-fill-color: var(--color-primary-2, #FFF) !important;
}

.palette-three input:-webkit-autofill,
.palette-three input:-webkit-autofill:hover,
.palette-three input:-webkit-autofill:focus
.palette-three input:-webkit-autofill:active,
.palette-three textarea:-webkit-autofill,
.palette-three textarea:-webkit-autofill:hover
.palette-three textarea:-webkit-autofill:focus,
.palette-three textarea:-webkit-autofill:active {
  color: var(--color-primary-3, #0B1A26) !important;
  -webkit-text-fill-color: var(--color-primary-3, #0B1A26) !important;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.text-large {
  font-size: 1.25rem;
  line-height: var(--line-height-lg, 1.5);
}

.text-medium {
  font-size: 1.125rem;
  line-height: var(--line-height-lg, 1.5);
}

.text-regular {
  font-size: 1rem;
  line-height: var(--line-height-lg, 1.5);
}

.text-small {
  font-size: 0.875rem;
  line-height: var(--line-height-lg, 1.5);
}

.text-tiny {
  font-size: 0.75rem;
  line-height: var(--line-height-lg, 1.5);
}

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

.text-weight--light {
  font-weight: var(--font-weight-light, 300);
}

.text-weight--regular {
  font-weight: var(--font-weight-regular, 400);
}

.text-weight--medium {
  font-weight: var(--font-weight-medium, 500);
}

.text-weight--semibold {
  font-weight: var(--font-weight-semibold, 600);
}

.text-weight--bold {
  font-weight: var(--font-weight-bold, 700);
}

.text-weight--extrabold {
  font-weight: var(--font-weight-extrabold, 900);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--line-height-sm, 1.2);
  color: currentcolor;
  border: 1px solid transparent;
  border-radius: var(--border-radius-dynamic);
  background: none;
  cursor: pointer;
  margin-bottom: var(--button-margin-bottom, 16px);
  transition: all var(--animation-duration, 200ms) var(--transition-function-ease-in-out);
}

.button.button--secondary svg {
  margin-left: 17px;
}

.button.button--secondary path {
  transition: all var(--animation-duration, 200ms) var(--transition-function-ease-in-out);
}

.button.button--secondary:hover {
  text-decoration: none;
}

.button.button--small {
  padding: 8px 18px;
}

.button.button--large {
  padding: 14px 24px;
}

.palette-one .button.button--primary {
  color: var(--color-accent, #0B1A26);
  background: var(--background-accent, #F4B841);
  border-color: var(--background-accent, #F4B841);
}

.palette-one .button.button--primary:hover {
  background: var(--background-accent-hover, #F4B841CC);
  border-color: var(--background-accent-hover, #F4B841CC);
}

.palette-one .button.button--primary:active {
  background: var(--background-accent-active, #F4B841BA);
  border-color: var(--background-accent-active, #F4B841BA);
}

.palette-one .button.button--secondary {
  color: var(--color-outline, #F4B841);
}

.palette-one .button.button--secondary path {
  fill: var(--color-outline, #F4B841);
}

.palette-one .button.button--secondary:hover {
  text-shadow: 0.5px 0 var(--color-outline, #F4B841);
}

.palette-one .button.button--outlined {
  color: currentcolor;
  border-color: var(--background-accent, #F4B841);
}

.palette-one .button.button--outlined:hover {
  background: var(--background-accent-secondary-hover, #F4B84152);
}

.palette-one .button.button--outlined:active {
  background: var(--background-accent-secondary-active, #F4B8418F);
}

.palette-two .button.button--primary {
  color: var(--color-accent-2, #0B1A26);
  background: var(--background-accent-2, #F4B841);
  border-color: var(--background-accent-2, #F4B841);
}

.palette-two .button.button--primary:hover {
  background: var(--background-accent-2-hover, #F4B841CC);
  border-color: var(--background-accent-2-hover, #F4B841CC);
}

.palette-two .button.button--primary:active {
  background: var(--background-accent-2-active, #F4B841BA);
  border-color: var(--background-accent-2-active, #F4B841BA);
}

.palette-two .button.button--secondary {
  color: var(--color-outline-2, #F4B841);
}

.palette-two .button.button--secondary path {
  fill: var(--color-outline-2, #F4B841);
}

.palette-two .button.button--secondary:hover {
  text-shadow: 0.5px 0 var(--color-outline-2, #F4B841);
}

.palette-two .button.button--outlined {
  color: currentcolor;
  border-color: var(--background-accent-2, #F4B841);
}

.palette-two .button.button--outlined:hover {
  background: var(--background-accent-secondary-2-hover, #F4B84152);
}

.palette-two .button.button--outlined:active {
  background: var(--background-accent-secondary-2-active, #F4B8418F);
}

.palette-three .button.button--primary {
  color: var(--color-accent-3, #FFF);
  background: var(--background-accent-3, #0B1A26);
  border-color: var(--background-accent-3, #0B1A26);
}

.palette-three .button.button--primary:hover {
  background: var(--background-accent-3-hover, #0B1A26CC);
  border-color: var(--background-accent-3-hover, #0B1A26CC);
}

.palette-three .button.button--primary:active {
  background: var(--background-accent-3-active, #0B1A26BA);
  border-color: var(--background-accent-3-active, #0B1A26BA);
}

.palette-three .button.button--secondary {
  color: var(--color-outline-3, #0B1A26);
}

.palette-three .button.button--secondary path {
  fill: var(--color-outline-3, #0B1A26);
}

.palette-three .button.button--secondary:hover {
  text-shadow: 0.5px 0 var(--color-outline-3, #0B1A26);
}

.palette-three .button.button--outlined {
  color: currentcolor;
  border-color: var(--background-accent-3, #0B1A26);
}

.palette-three .button.button--outlined:hover {
  background: var(--background-accent-secondary-3-hover, #0B1A2652);
}

.palette-three .button.button--outlined:active {
  background: var(--background-accent-secondary-3-active, #0B1A268F);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--horizontal-padding, 16px);
}

.touch[data-orientation='landscape'] .container {
  padding-left: calc(44px + var(--horizontal-padding, 16px));
  padding-right: calc(44px + var(--horizontal-padding, 16px));
}

.overflow-hidden {
  overflow: hidden;
}

.fa, .far {
  color: currentcolor;
}

.palette-one .fa, .palette-one .far {
  color: var(--color-primary, #0B1A26);
}

.palette-two .fa, .palette-two .far {
  color: var(--color-primary-2, #FFF);
}

.palette-three .fa, .palette-three .far {
  color: var(--color-primary-3, #0B1A26);
}

.tagline {
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-tagline, sans-serif);
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--line-height-lg, 1.5);
  font-size: var(--font-size-tagline, 14px);
  letter-spacing: 0.03em;
  margin: 0 0 20px;
}

.palette-one .tagline {
  color: var(--color-outline, #F4B841);
}

.palette-two .tagline {
  color: var(--color-outline-2, #F4B841);
}

.palette-three .tagline {
  color: var(--color-outline-3, #0B1A26);
}

@media (width >= 1100px) {
  .tagline {
    margin: 0 0 16px;
  }
}

div[data-tid="Modal"][class*="Container-"]:has([class*="DatePickerInput"] > div) [class*="DatePickerInput"] > div,
div[data-tippy-root]:has([data-tid="Mini cart"] [class*="DetailContainer-"] > [class*="Quantity-"]) [class*="QuantityButton"]:first-child {
  border-top-left-radius: var(--border-radius-rounded) !important;
  border-bottom-left-radius: var(--border-radius-rounded) !important;
}

div[data-tippy-root]:has([data-tid="Mini cart"] [class*="DetailContainer-"] > [class*="Quantity-"]) [class*="QuantityButton"]:last-child {
  border-top-right-radius: var(--border-radius-rounded) !important;
  border-bottom-right-radius: var(--border-radius-rounded) !important;
}

div[data-tippy-root]:has([class*="tippy-content"] [class*="DayPicker-wrapper"] [class*="DayPicker-NavBar"]) [class*="tippy-content"] > div > [class*="Content"] > [class*="Inner"] [class*="AvailabilityLegend"] {
  border-bottom-right-radius: var(--border-radius-rounded) !important;
  border-bottom-left-radius: var(--border-radius-rounded) !important;
}

div[data-tid="Modal"][class*="Container-"],
div[data-tid="Modal"][class*="Container-"]:has([class*="Select__control"]) [class*="Select__control"],
div[data-tid="Modal"]:has(> div[class*="Body-"] form > div > div) div[class*="Body-"] form > div > div,
div[data-tid="Modal"] div[data-tid="Start and stop location dropdown"][class*="Container-"] [class*="Select__control"],
div[data-tippy-root]:has([data-tid="Mini cart"] [data-tid*="Select dates"] > [class*="DatesBase-"] > [class*="Dates"]) [class*="DatesBase-"] > [class*="Dates"],
div[data-tippy-root]:has([class*="tippy-content"] [class*="DayPicker-wrapper"] [class*="DayPicker-NavBar"]) [class*="tippy-content"] > div > [class*="Content"] > [class*="Inner"] {
  border-radius: var(--border-radius-rounded) !important;
}

div[data-tid="Modal actions"] button {
  border-radius: var(--border-radius-dynamic) !important;
}

@media (width >= 576px) {
  div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: var(--header-height) !important;
    right: var(--horizontal-padding) !important;
    transform: translate(0, 0) !important;
    transition: top var(--animation-duration, 200ms) var(--transition-function-ease-in-out);
  }

  div[data-tippy-root] div[data-tid="Mini cart"] {
    height: auto;
    max-height: calc(100vh - var(--header-height));
  }

  div[data-tid="Mini cart"] div[class*="Summary"] div[class*="Services"] {
    max-height: 84px;
  }

  body:has(.header--sticky) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    position: fixed !important;
  }

  .scrolled-down:has(.header--sticky) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) + var(--header-transform, 0)) !important;
  }

  body:has(.preview-bar__container) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) + var(--preview-height, 0)) !important;
  }

  body:has(.preview-bar__container) div[data-tippy-root] [data-tid="Mini cart"] {
    max-height: calc(100vh - var(--header-height) - var(--preview-height, 0) / 2);
  }

  body:has(.preview-bar__container):has(.header--sticky) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height)) !important;
  }

  .scrolled-down:has(.preview-bar__container):has(.header--sticky) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) + var(--header-transform, 0)) !important;
  }
}

@media (width >= 1100px) {
  body:has(.header-menu-bottom) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) - var(--menu-position)) !important;
  }

  body:has(.header-menu-bottom) div[data-tippy-root] div[data-tid="Mini cart"] {
    max-height: calc(100vh - var(--header-height) + var(--menu-position));
  }

  .scrolled-down:has(.header--sticky):has(.header-menu-bottom) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) - var(--menu-position) + var(--header-transform, 0)) !important;
  }

  body:has(.preview-bar__container):has(.header-menu-bottom) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) - var(--menu-position) + var(--preview-height, 0)) !important;
  }

  body:has(.preview-bar__container):has(.header-menu-bottom) div[data-tippy-root] [data-tid="Mini cart"] {
    max-height: calc(100vh - var(--header-height) + var(--menu-position) - var(--preview-height, 0) / 2);
  }

  body:has(.preview-bar__container):has(.header--sticky) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height)) !important;
  }

  body:has(.preview-bar__container):has(.header--sticky):has(.header-menu-bottom) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) - var(--menu-position)) !important;
  }

  .scrolled-down:has(.preview-bar__container):has(.header--sticky) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) + var(--header-transform, 0)) !important;
  }

  .scrolled-down:has(.preview-bar__container):has(.header--sticky):has(.header-menu-bottom) div[data-tippy-root]:has([data-tid="Mini cart"]) {
    top: calc(var(--header-height) - var(--menu-position) + var(--header-transform, 0)) !important;
  }
}

@media (width >= 1280px) {
  div[data-tippy-root]:has([data-tid="Mini cart"]) {
    right: calc(50% - var(--max-width) / 2 + var(--horizontal-padding)) !important;
  }
}

@media (height >= 964px) {
  div[data-tid="Mini cart"] div[class*="Summary"] div[class*="Services"] {
    max-height: none;
  }
}

.title__wrapper--padding-top {
  padding-top: var(--padding-top-mobile, 24px);
}

.title__wrapper--padding-bottom {
  padding-bottom: var(--padding-bottom-mobile, 0);
}

.title__title {
  margin-bottom: 16px;
}

.title__bg-text {
  display: none;
  pointer-events: none;
  margin: 0;
  padding: 0 0 0 43px;
  font-size: 100px;
  line-height: .7;
  text-transform: uppercase;
  opacity: .5;
  transform: translate(0, -32px);
  white-space: nowrap;
}

.title__button-show {
  margin: 30px 0 15px;
  width: 100%;
}

.palette-one.title__wrapper {
  background: var(--background-primary, #FFF);
  color: var(--color-secondary, #4E5D78);
}

.palette-one .title__title {
  color: var(--color-primary, #0B1A26);
}

.palette-one .title__bg-text {
  color: var(--color-fourth, #0B1A2626);
}

.palette-two.title__wrapper {
  background: var(--background-primary-2, #0B1A26);
  color: var(--color-secondary-2, #E1E4E8);
}

.palette-two .title__title {
  color: var(--color-primary-2, #FFF);
}

.palette-two .title__bg-text {
  color: var(--color-fourth-2, #FFFFFF47);
}

.palette-three.title__wrapper {
  background: var(--background-primary-3, #F4B841);
  color: var(--color-secondary-3, #FFF);
}

.palette-three .title__title {
  color: var(--color-primary-3, #0B1A26);
}

.palette-three .title__bg-text {
  color: var(--color-fourth-3, #0B1A2626);
}

@media (width >= 768px) {
  .title__top {
    display: flex;
    justify-content: space-between;
    margin: 0 calc(-1 * var(--horizontal-padding, 16px));
  }

  .title__col {
    padding: 0 var(--horizontal-padding, 16px);
  }

  .title__col:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .title__button-show {
    margin-top: 5px;
    margin-bottom: 5px;
    align-self: flex-end;
    width: auto;
  }
}

@media (width >= 992px) {
  .title__wrapper--padding-top {
    padding-top: var(--padding-top, 37px);
  }

  .title__wrapper--padding-bottom {
    padding-bottom: var(--padding-bottom, 0);
  }

  .title__col {
    width: 50%;
  }

  .title__bg-text {
    display: block;
  }
}

@media (width >= 1100px) {
  .title__bg-text {
    font-size: 142px;
  }

  .title__bg-text:not(:only-child) {
    margin-top: -35px;
  }
}

