.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  line-height: 150%;
}
.button.primary {
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.primary.outline {
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button.primary:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.primary:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.primary:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.button.primary.ghost {
  color: #0c66e1;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.primary.ghost .button__label {
  position: relative;
}
.button.primary.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #0c66e1;
}
.button.primary.ghost:hover {
  border-color: transparent;
  color: #0c66e1;
  background-color: transparent;
}
.button.primary.ghost:hover .button__label::after {
  width: 100%;
}
.button.primary.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.primary.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  line-height: 150%;
}
.button.dark {
  background-color: #000835;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.dark.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button.dark:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.dark:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.dark:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
.button.dark.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.dark.ghost .button__label {
  position: relative;
}
.button.dark.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.button.dark.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.button.dark.ghost:hover .button__label::after {
  width: 100%;
}
.button.dark.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.dark.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  line-height: 150%;
}
.button.inverse {
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.button.inverse.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.button.inverse:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #9fc6ff;
}
.button.inverse:focus-visible {
  color: #ffffff;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.button.inverse:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.button.inverse.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.inverse.ghost .button__label {
  position: relative;
}
.button.inverse.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.button.inverse.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.button.inverse.ghost:hover .button__label::after {
  width: 100%;
}
.button.inverse.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.inverse.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button.big {
  padding: 16px;
  font-size: 22px;
}
.button.small {
  padding: 10px 16px;
  font-size: 18px;
}

.mdc-button {
  font-weight: 700 !important;
  font-size: 18px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  min-height: 48px;
  transition: all 0.3s ease-in-out;
  padding: 0 24px!important;
  border-radius: 8px!important;
  transition-duration: 0.3s!important;
  background-clip: padding-box !important;
  border: 2px solid transparent !important;
}
.mdc-button.mdc-button-link {
  height: 52px;
  display: inline-flex !important;
  flex-direction: row!important;
  justify-content: center!important;
  align-items: center!important;
  min-height: 1.5rem;
  font-weight: 600;
}
.mdc-button.mdc-button-link.mdc-button-small {
  height: 36px;
}
.mdc-button.mdc-button-link.mdc-button-small:after {
  bottom: 6px!important;
}
.mdc-button.mdc-button-link.mdc-button-large {
  height: 65px;
}
.mdc-button.mdc-button-link:hover {
  background: none!important;
}
.mdc-button.mdc-button-link.mdc-button-primary:after {
  background: #0c66e1 !important;
}
.mdc-button.mdc-button-link.mdc-button-primary:hover {
  color: #0a2f62;
}
.mdc-button.mdc-button-link.mdc-button-link-icon:after {
  width: calc(72%) !important;
}
.mdc-button.mdc-icon {
  display: inline-flex;
  padding: 0 16px!important;
}
.mdc-button.mdc-button-small,
.mdc-button.button-small {
  line-height: 150%;
  min-height: 36px;
}
.mdc-button.mdc-button--outlined {
  background: white;
}
.mdc-button:focus {
  box-shadow: none !important;
  outline: 2px solid #0a2f62 !important;
}
.mdc-button.mdc-button--raised:hover,
.mdc-button.mdc-button--unelevated:hover {
  background: #0a2f62;
}
.mdc-button.mdc-button-primary {
  color: #0c66e1;
}
.mdc-button.mdc-button-primary:focus {
  box-shadow: none !important;
  outline: 2px solid #0a2f62 !important;
}
.mdc-button.mdc-button-primary.mdc-button--raised,
.mdc-button.mdc-button-primary.mdc-button--unelevated {
  border-color: #0c66e1;
  background: #0c66e1;
  color: white;
}
.mdc-button.mdc-button-primary.mdc-button--raised:hover,
.mdc-button.mdc-button-primary.mdc-button--unelevated:hover {
  background: #0a2f62;
}
.mdc-button.mdc-button-primary.mdc-button--raised:focus,
.mdc-button.mdc-button-primary.mdc-button--unelevated:focus {
  background: #0a2f62;
  box-shadow: none !important;
  outline: 2px solid #0a2f62 !important;
}
.mdc-button.mdc-button-primary.mdc-button--outlined {
  border-color: #0c66e1;
  color: #0c66e1;
}
.mdc-button.mdc-button-primary.mdc-button--outlined .mdc-button__ripple:after,
.mdc-button.mdc-button-primary.mdc-button--outlined .mdc-button__ripple:before {
  background: none;
}
.mdc-button.mdc-button-primary.mdc-button--outlined:hover {
  background: #ebf3ff !important;
}
.mdc-button:disabled {
  border: none;
  opacity: 1!important;
}
.mdc-button:disabled.mdc-button--outlined {
  border: 1px solid;
}
.button-link {
  color: #0c66e1;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}
@media (max-width: 992px) {
  .button-link {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .button-link {
    font-size: 14px;
  }
}
.button-link:hover {
  border-bottom: 1px solid #0c66e1;
}
.button-link:focus {
  outline: 0;
  border-radius: 3px;
}
.button-link:disabled {
  border: none;
  padding: 0;
  background: none;
  cursor: default;
}
.button-link.small {
  font-size: 16px;
}
@media (max-width: 992px) {
  .button-link.small {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .button-link.small {
    font-size: 12px;
  }
}


.cmp-base {
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (max-width: 991px) {
  .cmp-base {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.default-padding-top {
  padding-top: 72px;
}
@media (max-width: 991px) {
  .default-padding-top {
    padding-top: 64px;
  }
}
@media (max-width: 767px) {
  .default-padding-top {
    padding-top: 48px;
  }
}
.default-padding-bottom {
  padding-bottom: 72px;
}
@media (max-width: 991px) {
  .default-padding-bottom {
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 48px;
  }
}
.large-padding-top {
  padding-top: 72px;
}
@media (max-width: 991px) {
  .large-padding-top {
    padding-top: 64px;
  }
}
@media (max-width: 767px) {
  .large-padding-top {
    padding-top: 48px;
  }
}
.large-padding-bottom {
  padding-bottom: 72px;
}
@media (max-width: 991px) {
  .large-padding-bottom {
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .large-padding-bottom {
    padding-bottom: 48px;
  }
}
.medium-padding-top {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .medium-padding-top {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .medium-padding-top {
    padding-top: 24px;
  }
}
.medium-padding-bottom {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .medium-padding-bottom {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .medium-padding-bottom {
    padding-bottom: 24px;
  }
}
.small-padding-top {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .small-padding-top {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .small-padding-top {
    padding-top: 24px;
  }
}
.small-padding-bottom {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .small-padding-bottom {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .small-padding-bottom {
    padding-bottom: 24px;
  }
}
.none-padding-top {
  padding-top: 0;
}
@media (max-width: 991px) {
  .none-padding-top {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .none-padding-top {
    padding-top: 0;
  }
}
.none-padding-bottom {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .none-padding-bottom {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .none-padding-bottom {
    padding-bottom: 0;
  }
}

.cmp-modal {
  position: absolute;
  display: grid;
  place-content: center;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cmp-modal .modal-content {
  border-radius: 0;
}
.cmp-modal iframe {
  min-height: 300px;
  aspect-ratio: 2;
}

@media (max-width: 767px) {
  body:has(.cmp-resgallery__filters--active),
  body:has(.cmp-resgallery__filters--sort--active),
  body.overlay--active {
    overflow: hidden;
  }
}
*,
html {
  scroll-behavior: smooth;
}
html,
body {
  font-family: 'Amadeus Neue', sans-serif;
  font-weight: 400;
}
html {
  scroll-padding: 72px;
}
html:has(.sub-navigation),
html:has(.inPage-Navigation) {
  scroll-padding: 128px;
}
@media (max-width: 767px) {
  html {
    scroll-padding: 56px;
  }
  html:has(.sidebar-module),
  html:has(.inPage-Navigation),
  html:has(.sub-navigation) {
    scroll-padding: 112px;
  }
}
body {
  position: relative;
  --header-height: 56px;
  --max-width: calc(100vw - var(--bs-gutter-x, 0.75rem) * 2);
  --container-padding: calc((100vw - var(--max-width)) / 2);
  --column-width: calc(var(--max-width) / 12);
  /* hide icons that are empty */
}
body .cmp-experiencefragment--header {
  z-index: 12;
  position: fixed;
  width: 100%;
}
body header {
  margin-bottom: var(--header-height);
}
body header:has(.sub-navigation) {
  --header-height: 112px;
}
body span.nav-active-page-quilt:before {
  z-index: 2;
  pointer-events: none;
  content: "";
  height: 100vh;
  display: block;
  opacity: 0;
  position: absolute;
  background: #1A1A1A;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: opacity 400ms;
}
body.overlay--active {
  max-height: 100%;
}
body.overlay--active span.nav-active-page-quilt:before {
  opacity: 0.5;
  pointer-events: unset;
}
body.overlay--active .cmp-experiencefragment--header {
  height: 100%;
}
body span.coral3-Icon--custom_:empty {
  display: none;
}
@media (min-width: 576px) {
  body {
    --max-width: 540px;
  }
}
@media (min-width: 768px) {
  body {
    --max-width: 720px;
    --header-height: 72px;
  }
  body header:has(.sub-navigation) {
    --header-height: 128px;
  }
}
@media (min-width: 992px) {
  body {
    --max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body {
    --max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  body {
    --max-width: 1320px;
  }
}

@font-face {
  font-family: 'AmadeusIconFont';
  src: url('clientlib-base/resources/icons/AmadeusIconFont.ttf') format('truetype'), url('clientlib-base/resources/icons/AmadeusIconFont.woff') format('woff'), url('clientlib-base/resources/icons/AmadeusIconFont.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="coral3-Icon--custom_"],
[class*=" coral3-Icon--custom_"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'AmadeusIconFont' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.coral3-Icon--custom_amadeus-quote-icon:before {
  content: "\e9f6";
}
.coral3-Icon--custom_chevron-up:before {
  content: "\e9f4";
}
.coral3-Icon--custom_chevron-down:before {
  content: "\e9f5";
}
.coral3-Icon--custom_info-bold:before {
  content: "\e9d8";
}
.coral3-Icon--custom_info:before {
  content: "\e9d9";
}
.coral3-Icon--custom_kebab:before {
  content: "\e9da";
}
.coral3-Icon--custom_Cytric_Logo .path1:before {
  content: "\e9ea";
  color: #10069f;
}
.coral3-Icon--custom_Cytric_Logo .path2:before {
  content: "\e9eb";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path3:before {
  content: "\e9ec";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path4:before {
  content: "\e9ed";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path5:before {
  content: "\e9ee";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path6:before {
  content: "\e9ef";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path7:before {
  content: "\e9f0";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path8:before {
  content: "\e9f1";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path9:before {
  content: "\e9f2";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_Cytric_Logo .path10:before {
  content: "\e9f3";
  margin-left: -3.58984375em;
  color: #000000;
}
.coral3-Icon--custom_expand:before {
  content: "\e9db";
}
.coral3-Icon--custom_amadeus-one-9:before {
  content: "\e9dc";
}
.coral3-Icon--custom_amadeus-one-1:before {
  content: "\e9dd";
}
.coral3-Icon--custom_amadeus-one-2:before {
  content: "\e9de";
}
.coral3-Icon--custom_amadeus-one-3:before {
  content: "\e9df";
}
.coral3-Icon--custom_amadeus-one-4:before {
  content: "\e9e0";
}
.coral3-Icon--custom_amadeus-one-5:before {
  content: "\e9e1";
}
.coral3-Icon--custom_amadeus-one-6:before {
  content: "\e9e2";
}
.coral3-Icon--custom_amadeus-one-7:before {
  content: "\e9e3";
}
.coral3-Icon--custom_amadeus-one-8:before {
  content: "\e9e4";
}
.coral3-Icon--custom_amadeus-one-0:before {
  content: "\e9e5";
}
.coral3-Icon--custom_blockchain:before {
  content: "\e9e6";
}
.coral3-Icon--custom_productivity:before {
  content: "\e9e7";
}
.coral3-Icon--custom_productivity-coin:before {
  content: "\e9e8";
}
.coral3-Icon--custom_conversion:before {
  content: "\e9e9";
}
.coral3-Icon--custom_share-circle:before {
  content: "\e9d7";
}
.coral3-Icon--custom_Slide-XL:before {
  content: "\e900";
}
.coral3-Icon--custom_Slide-M:before {
  content: "\e901";
}
.coral3-Icon--custom_Slide-XS:before {
  content: "\e902";
}
.coral3-Icon--custom_Eclipse-XS:before {
  content: "\e903";
}
.coral3-Icon--custom_Eclipse-M:before {
  content: "\e904";
}
.coral3-Icon--custom_Eclipse-XL:before {
  content: "\e905";
}
.coral3-Icon--custom_Crystal-XL:before {
  content: "\e906";
}
.coral3-Icon--custom_Crystal-M:before {
  content: "\e907";
}
.coral3-Icon--custom_Crystal-XS:before {
  content: "\e908";
}
.coral3-Icon--custom_quote-testimonial-2:before {
  content: "\e909";
}
.coral3-Icon--custom_quote-testimonial-1:before {
  content: "\e90a";
  color: #C5D5F9;
}
.coral3-Icon--custom_hero-mask-slide:before {
  content: "\e90b";
  color: #fff;
}
.coral3-Icon--custom_hero-mask-eclipse:before {
  content: "\e90c";
  color: #fff;
}
.coral3-Icon--custom_hero-mask-crystal:before {
  content: "\e90d";
  color: #fff;
}
.coral3-Icon--custom_airlines-brush:before {
  content: "\e90e";
}
.coral3-Icon--custom_t3ch-logo-color .path1:before {
  content: "\e90f";
  color: #00a9e0;
}
.coral3-Icon--custom_t3ch-logo-color .path2:before {
  content: "\e910";
  margin-left: -1em;
  color: #005eb8;
}
.coral3-Icon--custom_t3ch-logo:before {
  content: "\e911";
}
.coral3-Icon--custom_amadeus-logo:before {
  content: "\e912";
}
.coral3-Icon--custom_amadeus-symbol-inverse .path1:before {
  content: "\e913";
  color: #ffffff;
}
.coral3-Icon--custom_amadeus-symbol-inverse .path2:before {
  content: "\e914";
  margin-left: -1em;
  color: #005eb8;
}
.coral3-Icon--custom_amadeus-symbol .path1:before {
  content: "\e915";
  color: #005eb8;
}
.coral3-Icon--custom_amadeus-symbol .path2:before {
  content: "\e916";
  margin-left: -1em;
  color: #ffffff;
}
.coral3-Icon--custom_confidential:before {
  content: "\e917";
}
.coral3-Icon--custom_more-actions:before {
  content: "\e918";
}
.coral3-Icon--custom_preview:before {
  content: "\e919";
}
.coral3-Icon--custom_danger:before {
  content: "\e91a";
}
.coral3-Icon--custom_link:before {
  content: "\e91b";
}
.coral3-Icon--custom_copy:before {
  content: "\e91c";
}
.coral3-Icon--custom_drag-handle:before {
  content: "\e91d";
}
.coral3-Icon--custom_register:before {
  content: "\e91e";
}
.coral3-Icon--custom_pause-circle:before {
  content: "\e91f";
}
.coral3-Icon--custom_keyboard-select:before {
  content: "\e920";
}
.coral3-Icon--custom_keyboard-left:before {
  content: "\e921";
}
.coral3-Icon--custom_keyboard-down:before {
  content: "\e922";
}
.coral3-Icon--custom_keyboard-right:before {
  content: "\e923";
}
.coral3-Icon--custom_keyboard-up:before {
  content: "\e924";
}
.coral3-Icon--custom_vertical-bar:before {
  content: "\e925";
}
.coral3-Icon--custom_phone:before {
  content: "\e926";
}
.coral3-Icon--custom_profile:before {
  content: "\e927";
}
.coral3-Icon--custom_home:before {
  content: "\e928";
}
.coral3-Icon--custom_notifications:before {
  content: "\e929";
}
.coral3-Icon--custom_feedback:before {
  content: "\e92a";
}
.coral3-Icon--custom_bookmark:before {
  content: "\e92b";
}
.coral3-Icon--custom_remove:before {
  content: "\e92c";
}
.coral3-Icon--custom_new-window:before {
  content: "\e92d";
}
.coral3-Icon--custom_sort:before {
  content: "\e92e";
}
.coral3-Icon--custom_reset:before {
  content: "\e92f";
}
.coral3-Icon--custom_menu:before {
  content: "\e930";
}
.coral3-Icon--custom_check:before {
  content: "\e931";
}
.coral3-Icon--custom_filter:before {
  content: "\e932";
}
.coral3-Icon--custom_add:before {
  content: "\e933";
}
.coral3-Icon--custom_external-link:before {
  content: "\e934";
}
.coral3-Icon--custom_share:before {
  content: "\e935";
}
.coral3-Icon--custom_search-grow:before {
  content: "\e936";
}
.coral3-Icon--custom_search:before {
  content: "\e937";
}
.coral3-Icon--custom_send-mail:before {
  content: "\e938";
}
.coral3-Icon--custom_print:before {
  content: "\e939";
}
.coral3-Icon--custom_download:before {
  content: "\e93a";
}
.coral3-Icon--custom_play-arrow:before {
  content: "\e93b";
}
.coral3-Icon--custom_play-circle:before {
  content: "\e93c";
}
.coral3-Icon--custom_edit:before {
  content: "\e93d";
}
.coral3-Icon--custom_close-circle:before {
  content: "\e93e";
}
.coral3-Icon--custom_close:before {
  content: "\e93f";
}
.coral3-Icon--custom_arrow-left:before {
  content: "\e940";
}
.coral3-Icon--custom_settings:before {
  content: "\e941";
}
.coral3-Icon--custom_arrow-down:before {
  content: "\e942";
}
.coral3-Icon--custom_arrow-up:before {
  content: "\e943";
}
.coral3-Icon--custom_arrow-forward:before {
  content: "\e944";
}
.coral3-Icon--custom_smart-cities:before {
  content: "\e945";
}
.coral3-Icon--custom_gds:before {
  content: "\e946";
}
.coral3-Icon--custom_version-history:before {
  content: "\e947";
}
.coral3-Icon--custom_code:before {
  content: "\e948";
}
.coral3-Icon--custom_browser:before {
  content: "\e949";
}
.coral3-Icon--custom_connected:before {
  content: "\e94a";
}
.coral3-Icon--custom_robot:before {
  content: "\e94b";
}
.coral3-Icon--custom_sitemap:before {
  content: "\e94c";
}
.coral3-Icon--custom_private-network:before {
  content: "\e94d";
}
.coral3-Icon--custom_security:before {
  content: "\e94e";
}
.coral3-Icon--custom_network:before {
  content: "\e94f";
}
.coral3-Icon--custom_artificial-intelligence:before {
  content: "\e950";
}
.coral3-Icon--custom_microchip:before {
  content: "\e951";
}
.coral3-Icon--custom_modular:before {
  content: "\e952";
}
.coral3-Icon--custom_open:before {
  content: "\e953";
}
.coral3-Icon--custom_strategy:before {
  content: "\e954";
}
.coral3-Icon--custom_consistency:before {
  content: "\e955";
}
.coral3-Icon--custom_questions:before {
  content: "\e956";
}
.coral3-Icon--custom_bonus:before {
  content: "\e957";
}
.coral3-Icon--custom_route:before {
  content: "\e958";
}
.coral3-Icon--custom_unicorn:before {
  content: "\e959";
}
.coral3-Icon--custom_fingerprint:before {
  content: "\e95a";
}
.coral3-Icon--custom_ventures:before {
  content: "\e95b";
}
.coral3-Icon--custom_goal:before {
  content: "\e95c";
}
.coral3-Icon--custom_torch:before {
  content: "\e95d";
}
.coral3-Icon--custom_wellbeing:before {
  content: "\e95e";
}
.coral3-Icon--custom_collaboration:before {
  content: "\e95f";
}
.coral3-Icon--custom_insights:before {
  content: "\e960";
}
.coral3-Icon--custom_eco:before {
  content: "\e961";
}
.coral3-Icon--custom_dynamic:before {
  content: "\e962";
}
.coral3-Icon--custom_innovation:before {
  content: "\e963";
}
.coral3-Icon--custom_industry-update:before {
  content: "\e964";
}
.coral3-Icon--custom_webinar:before {
  content: "\e965";
}
.coral3-Icon--custom_consultancy:before {
  content: "\e966";
}
.coral3-Icon--custom_doc-properties:before {
  content: "\e967";
}
.coral3-Icon--custom_doc-other:before {
  content: "\e968";
}
.coral3-Icon--custom_ranking:before {
  content: "\e969";
}
.coral3-Icon--custom_award:before {
  content: "\e96a";
}
.coral3-Icon--custom_role-students:before {
  content: "\e96b";
}
.coral3-Icon--custom_employees:before {
  content: "\e96c";
}
.coral3-Icon--custom_support:before {
  content: "\e96d";
}
.coral3-Icon--custom_marketing:before {
  content: "\e96e";
}
.coral3-Icon--custom_general-meeting:before {
  content: "\e96f";
}
.coral3-Icon--custom_newsroom:before {
  content: "\e970";
}
.coral3-Icon--custom_content:before {
  content: "\e971";
}
.coral3-Icon--custom_business-management:before {
  content: "\e972";
}
.coral3-Icon--custom_research:before {
  content: "\e973";
}
.coral3-Icon--custom_board-meeting:before {
  content: "\e974";
}
.coral3-Icon--custom_script:before {
  content: "\e975";
}
.coral3-Icon--custom_fillings:before {
  content: "\e976";
}
.coral3-Icon--custom_online-training:before {
  content: "\e977";
}
.coral3-Icon--custom_flexible-workspace:before {
  content: "\e978";
}
.coral3-Icon--custom_doc-audio:before {
  content: "\e979";
}
.coral3-Icon--custom_doc-video:before {
  content: "\e97a";
}
.coral3-Icon--custom_doc-excel:before {
  content: "\e97b";
}
.coral3-Icon--custom_doc-infographic:before {
  content: "\e97c";
}
.coral3-Icon--custom_checklist:before {
  content: "\e97d";
}
.coral3-Icon--custom_doc-graph:before {
  content: "\e97e";
}
.coral3-Icon--custom_doc-photo:before {
  content: "\e97f";
}
.coral3-Icon--custom_doc-pdf:before {
  content: "\e980";
}
.coral3-Icon--custom_desk:before {
  content: "\e981";
}
.coral3-Icon--custom_add-calendar:before {
  content: "\e982";
}
.coral3-Icon--custom_photo:before {
  content: "\e983";
}
.coral3-Icon--custom_doc:before {
  content: "\e984";
}
.coral3-Icon--custom_email:before {
  content: "\e985";
}
.coral3-Icon--custom_email-bold:before {
  content: "\e986";
}
.coral3-Icon--custom_pinterest-bold:before {
  content: "\e987";
}
.coral3-Icon--custom_glassdoor-bold:before {
  content: "\e988";
}
.coral3-Icon--custom_whatsapp:before {
  content: "\e989";
}
.coral3-Icon--custom_whatsapp-bold:before {
  content: "\e98a";
}
.coral3-Icon--custom_linkedin:before {
  content: "\e98b";
}
.coral3-Icon--custom_linkedin-bold:before {
  content: "\e98c";
}
.coral3-Icon--custom_instagram:before {
  content: "\e98d";
}
.coral3-Icon--custom_instagram-bold:before {
  content: "\e98e";
}
.coral3-Icon--custom_twitter:before {
  content: "\e98f";
}
.coral3-Icon--custom_twitter-bold:before {
  content: "\e990";
}
.coral3-Icon--custom_youtube:before {
  content: "\e991";
}
.coral3-Icon--custom_youtube-bold:before {
  content: "\e992";
}
.coral3-Icon--custom_facebook-bold:before {
  content: "\e993";
}
.coral3-Icon--custom_facebook:before {
  content: "\e994";
}
.coral3-Icon--custom_travel-agencies:before {
  content: "\e995";
}
.coral3-Icon--custom_hotel:before {
  content: "\e996";
}
.coral3-Icon--custom_world-bold:before {
  content: "\e997";
}
.coral3-Icon--custom_world:before {
  content: "\e998";
}
.coral3-Icon--custom_location-pin:before {
  content: "\e999";
}
.coral3-Icon--custom_nationalities:before {
  content: "\e99a";
}
.coral3-Icon--custom_bus:before {
  content: "\e99b";
}
.coral3-Icon--custom_weather:before {
  content: "\e99c";
}
.coral3-Icon--custom_visa:before {
  content: "\e99d";
}
.coral3-Icon--custom_buildings:before {
  content: "\e99e";
}
.coral3-Icon--custom_tag:before {
  content: "\e99f";
}
.coral3-Icon--custom_bike:before {
  content: "\e9a0";
}
.coral3-Icon--custom_ticket:before {
  content: "\e9a1";
}
.coral3-Icon--custom_time:before {
  content: "\e9a2";
}
.coral3-Icon--custom_location:before {
  content: "\e9a3";
}
.coral3-Icon--custom_review:before {
  content: "\e9a4";
}
.coral3-Icon--custom_advert:before {
  content: "\e9a5";
}
.coral3-Icon--custom_banner-click:before {
  content: "\e9a6";
}
.coral3-Icon--custom_bars:before {
  content: "\e9a7";
}
.coral3-Icon--custom_financial-info:before {
  content: "\e9a8";
}
.coral3-Icon--custom_partners:before {
  content: "\e9a9";
}
.coral3-Icon--custom_bank:before {
  content: "\e9aa";
}
.coral3-Icon--custom_investors:before {
  content: "\e9ab";
}
.coral3-Icon--custom_stock-volume:before {
  content: "\e9ac";
}
.coral3-Icon--custom_revenue:before {
  content: "\e9ad";
}
.coral3-Icon--custom_equity:before {
  content: "\e9ae";
}
.coral3-Icon--custom_share-info:before {
  content: "\e9af";
}
.coral3-Icon--custom_stock-high:before {
  content: "\e9b0";
}
.coral3-Icon--custom_stock-low:before {
  content: "\e9b1";
}
.coral3-Icon--custom_analytics-intelligence:before {
  content: "\e9b2";
}
.coral3-Icon--custom_travel-advertising:before {
  content: "\e9b3";
}
.coral3-Icon--custom_payments:before {
  content: "\e9b4";
}
.coral3-Icon--custom_operations:before {
  content: "\e9b5";
}
.coral3-Icon--custom_customer-guest-traveler:before {
  content: "\e9b6";
}
.coral3-Icon--custom_business-management1:before {
  content: "\e9b7";
}
.coral3-Icon--custom_corporate:before {
  content: "\e9b8";
}
.coral3-Icon--custom_commercial:before {
  content: "\e9b9";
}
.coral3-Icon--custom_developers:before {
  content: "\e9ba";
}
.coral3-Icon--custom_careers:before {
  content: "\e9bb";
}
.coral3-Icon--custom_research1:before {
  content: "\e9bc";
}
.coral3-Icon--custom_travel-platform:before {
  content: "\e9bd";
}
.coral3-Icon--custom_safe-trave-ecosystem:before {
  content: "\e9be";
}
.coral3-Icon--custom_open-source:before {
  content: "\e9bf";
}
.coral3-Icon--custom_ndc:before {
  content: "\e9c0";
}
.coral3-Icon--custom_mobile:before {
  content: "\e9c1";
}
.coral3-Icon--custom_cloud:before {
  content: "\e9c2";
}
.coral3-Icon--custom_big-data:before {
  content: "\e9c3";
}
.coral3-Icon--custom_advanced-travel-platforms:before {
  content: "\e9c4";
}
.coral3-Icon--custom_api:before {
  content: "\e9c5";
}
.coral3-Icon--custom_travel-insurance:before {
  content: "\e9c6";
}
.coral3-Icon--custom_tour-operators:before {
  content: "\e9c7";
}
.coral3-Icon--custom_small-medium-travel-agencies:before {
  content: "\e9c8";
}
.coral3-Icon--custom_retail-travel-agencies:before {
  content: "\e9c9";
}
.coral3-Icon--custom_rail:before {
  content: "\e9ca";
}
.coral3-Icon--custom_online-travel-agencies:before {
  content: "\e9cb";
}
.coral3-Icon--custom_car-transfers:before {
  content: "\e9cc";
}
.coral3-Icon--custom_metasearch-travel-media:before {
  content: "\e9cd";
}
.coral3-Icon--custom_hospitality:before {
  content: "\e9ce";
}
.coral3-Icon--custom_ground-handlers:before {
  content: "\e9cf";
}
.coral3-Icon--custom_destinations-dmo:before {
  content: "\e9d0";
}
.coral3-Icon--custom_cruise:before {
  content: "\e9d1";
}
.coral3-Icon--custom_corporations:before {
  content: "\e9d2";
}
.coral3-Icon--custom_consolidators-networks:before {
  content: "\e9d3";
}
.coral3-Icon--custom_business-travel-agencies:before {
  content: "\e9d4";
}
.coral3-Icon--custom_airports:before {
  content: "\e9d5";
}
.coral3-Icon--custom_airlines:before {
  content: "\e9d6";
}
.coral3-Icon--custom_small-arrow:before {
  content: "\e9ea";
}
.coral3-Icon--custom_twitter-x:before {
  content: "\e9ec";
}
.coral3-Icon--custom_threads-bold:before {
  content: "\e9eb";
}
.coral3-Icon--custom_pause2:before {
  content: "\e9f5";
}
.coral3-Icon--custom_radio-unchecked:before {
  content: "\e9f6";
}
.coral3-Icon--custom_keyboard-start:before {
  content: "\e9f8";
}
.coral3-Icon--custom_keyboard-end:before {
  content: "\e9f7";
}
.coral3-Icon--custom_icon-doc:before {
  content: "\e994";
}
.coral3-Icon--custom_icon-pdf:before {
  content: "\e9f9";
}
.coral3-Icon--custom_icon-ppt:before {
  content: "\e9fa";
}
.coral3-Icon--custom_icon-xls:before {
  content: "\e9fb";
}
.coral3-Icon--custom_icon-default:before {
  content: "\e9fc";
}
.coral3-Icon--custom_icon-xhtml:before {
  content: "\e9fd";
}
.coral3-Icon--custom_icon-zip:before {
  content: "\e9fe";
}
.coral3-Icon--custom_money-bag-icon:before {
  content: "\e9ff";
}
.coral3-Icon--custom_positive-trend-graph-icon:before {
  content: "\ea00";
}
.coral3-Icon--custom_leaf-icon:before {
  content: "\ea01";
}

@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 300;
  font-style: normal;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Light.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Light.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-Light.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-Light.ttf') format('ttf"');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 400;
  font-style: normal;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Regular.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Regular.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-Regular.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-Regular.ttf') format('ttf');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 500;
  font-style: normal;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Medium.otf') format("embedded-opentype"), url('clientlib-base/resources/fonts/AmadeusNeue-Medium.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-Medium.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-Medium.ttf') format('ttf');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 700;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Bold.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-Bold.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-Bold.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-Bold.ttf') format('ttf');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 300;
  font-style: italic;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-LightItalic.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-LightItalic.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-LightItalic.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-LightItalic.ttf') format('ttf');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 400;
  font-style: italic;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-RegularItalic.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-RegularItalic.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-RegularItalic.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-RegularItalic.ttf') format('ttf');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 500;
  font-style: italic;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-MediumItalic.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-MediumItalic.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-MediumItalic.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-MediumItalic.ttf') format('ttf');
}
@font-face {
  font-display: swap;
  font-family: 'Amadeus Neue';
  font-weight: 700;
  font-style: italic;
  src: url('clientlib-base/resources/fonts/AmadeusNeue-BoldItalic.otf');
  src: url('clientlib-base/resources/fonts/AmadeusNeue-BoldItalic.woff2') format('woff2'), url('clientlib-base/resources/fonts/AmadeusNeue-BoldItalic.woff') format('woff'), url('clientlib-base/resources/fonts/AmadeusNeue-BoldItalic.ttf') format('ttf');
}

/* This is legacy css needed for EVERY SINGLE PAGE on the website to work. 
Basically, without this in, the main container in every page would act as a 
bootstrap container, meaning it would always mantain a max width smaller than the 
actual viewport, while it needs to be full width - hence the name of this
*/
.full-width .root.container {
  max-width: unset;
  padding-right: unset;
  padding-left: unset;
  margin-right: unset;
  margin-left: unset;
}
.full-width .root header ~ .container {
  max-width: unset;
  padding-right: unset;
  padding-left: unset;
  margin-right: unset;
  margin-left: unset;
}
.full-width .root header ~ .container > .cmp-container > .aem-Grid > .container {
  max-width: unset;
  padding-right: unset;
  padding-left: unset;
  margin-right: unset;
  margin-left: unset;
}
.full-width .root .next-steps-container.container {
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}

.fontSize-1 {
  font-size: 8px;
}
.fontSize-2 {
  font-size: 16px;
}
.fontSize-3 {
  font-size: 24px;
}
.fontSize-4 {
  font-size: 32px;
}
.fontSize-5 {
  font-size: 40px;
}
.fontSize-6 {
  font-size: 48px;
}
.fontSize-7 {
  font-size: 56px;
}
.fontSize-8 {
  font-size: 64px;
}
.fontSize-9 {
  font-size: 72px;
}
.fontSize-10 {
  font-size: 80px;
}
.fontSize-11 {
  font-size: 88px;
}
.fontSize-12 {
  font-size: 96px;
}
.fontSize-13 {
  font-size: 104px;
}
.fontSize-14 {
  font-size: 112px;
}
.fontSize-15 {
  font-size: 120px;
}
.headingFont,
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-style: normal;
  margin: 0;
  line-height: 130%;
  letter-spacing: 0px;
}
.leadRegularFont,
p,
.paragraph {
  font-style: normal;
  font-weight: 400;
  margin: 0;
}
.h1,
h1 {
  font-size: 56px;
}
.h2,
h2 {
  font-size: 40px;
}
.h3,
h3 {
  font-size: 32px;
}
.h4,
h4 {
  font-size: 24px;
}
.h5,
h5 {
  font-size: 20px;
}
.h6,
h6 {
  font-size: 18px;
}
p {
  line-height: var(--md-sys-typescale-paragraph-line-height);
  letter-spacing: var(--md-sys-typescale-paragraph-tracking);
}
p.small-paragraph {
  font-size: 14px;
}
.blockquote {
  line-height: 2.875rem;
}
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 32px;
  }
  .h2,
  h2 {
    font-size: 28px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .h1,
  h1 {
    font-size: 48px;
  }
  .h2,
  h2 {
    font-size: 32px;
  }
  .h3,
  h3 {
    font-size: 28px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 18px;
  }
}
.label {
  font-style: normal !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px;
  color: #0C66E1;
}
.label.small {
  font-size: 14px !important;
}
.label.big {
  font-size: 20px !important;
  font-weight: 400 !important;
}
.label.semibold {
  font-weight: 500 !important;
}

