.TabSwitcher {
  display: flex;
}

.TabSwitcher__tab {
  border: none;
  background: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  align-self: center;
  cursor: pointer;
  color: #626262;
  padding: 0;
}

.TabSwitcher__tab--active {
  color: #45a3ac;
}

.TabSwitcher__lineDivider {
  opacity: 0.5;
  height: 15px;
  margin: 0 0.5rem;
  width: 1px;
  align-self: center;
  background: #45a3ac;
}

@media screen and (max-width: 39.9375em) {
  .TabSwitcher {
    flex-wrap: wrap;
  }
  .TabSwitcher__tab {
    flex: 1 1;
    text-align: center;
    margin: 0.25rem auto;
  }
  .TabSwitcher__lineDivider {
    width: 100%;
    height: 1px;
  }
}

.Button.ctc-button {
  font-family: inherit;
}

.Button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.Button.ctc-button--secondary {
  border: 1px solid currentColor;
  color: #333;
  box-shadow: none;
}

.Button.ctc-button--secondary:hover {
  box-shadow: inset 0 0 0 1px currentColor;
}

.Button:focus,
.Button.ctc-button--secondary:focus {
  box-shadow: rgba(255, 255, 255, 1) 0px 0px 0px 2px, rgb(132, 132, 132) 0px 0px 0px 4px;
  outline: none;
  transition: box-shadow 0.2s ease 0s;
}

.Button:active {
  outline: none;
}

.LoadingDots {
  display: block;
  position: relative;
  width: 100%;
  height: 10px;
  max-width: 200px;
}
.LoadingDots:after {
  content: "";
  display: block;
  clear: both;
}
.LoadingDots div {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cccccc;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.LoadingDots div:nth-child(1) {
  left: 0;
  animation: LoadingDot1 0.7s infinite;
}
.LoadingDots div:nth-child(2) {
  left: 0;
  animation: LoadingDot2 0.7s infinite;
}
.LoadingDots div:nth-child(3) {
  left: 40%;
  animation: LoadingDot3 0.7s infinite;
}
.LoadingDots div:nth-child(4) {
  left: 80%;
  animation: LoadingDot4 0.7s infinite;
}
@keyframes LoadingDot1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes LoadingDot2 {
  0% {
    left: 0%;
  }
  100% {
    left: 40%;
  }
}
@keyframes LoadingDot3 {
  0% {
    left: 40%;
  }
  100% {
    left: 80%;
  }
}
@keyframes LoadingDot4 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.TabSwitcherWithCTA {
  display: flex;
  position: relative;
}

.TabSwitcherWithCTA__heading {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.1rem;
  align-self: center;
  color: #626262;
  padding-right: 0.4rem;
}

.TabSwitcherWithCTA__button {
  align-self: center;
  display: flex;
  margin-left: auto;
}

.TabSwitcherWithCTA__button > .ctc-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.TabSwitcherWithCTA__label {
  font-weight: 600;
}

.TabSwitcherWithCTA__loading {
  width: 55px;
  height: 10px;
  position: absolute;
}

.ctc-button:disabled > .TabSwitcherWithCTA__label,
.ctc-button:not(:disabled) > .TabSwitcherWithCTA__loading {
  opacity: 0;
}

@media screen and (max-width: 39.9375em) {
  .TabSwitcherWithCTA {
    display: block;
  }
  .TabSwitcherWithCTA__heading {
    text-align: center;
  }
  .TabSwitcherWithCTA__button {
    margin-top: 1rem;
  }

  .TabSwitcherWithCTA__button > .ctc-button {
    width: 100%;
  }
}

.WidgetDemo {
  background-color: #3e3e3e;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  font-family: "Arial", sans-serif;
  justify-content: center;
  overflow: auto;
}

/* Header */

.WidgetDemo__header {
  background-color: #545454;
  display: flex;
  flex: 1 1;
  flex-direction: row;
  padding: 2rem 2rem;
}

.WidgetDemo__header-title {
  color: #00ebff;
  display: flex;
  flex: 1 1;
  flex-direction: row;
  font-size: 1.5rem;
}

.WidgetDemo__header-title--partner-name {
  font-weight: bold;
  margin-right: 1rem;
}

a.WidgetDemo__header-link {
  color: #ffffff;
  line-height: 1.6rem;
}

/* Integration type */

.WidgetDemo__integration-type {
  padding: 1.5rem 2rem;
}

/* Tab Switcher with CTA */

.WidgetDemo__tab-switcher {
  padding: 0.75rem 2rem;
}

.WidgetDemo__tab-switcher--ace-editor {
  background-color: #000000;
}

.WidgetDemo__tab-switcher--widget-preview {
  background-color: #ffffff;
}

/* Widget preview */

.WidgetDemo__widget-preview {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  height: 806px;
  justify-content: center;
  position: relative;
}

.WidgetDemo__widget-preview .LoadingDots {
  max-width: 150px;
  position: absolute;
  top: 110px;
}

.WidgetDemo__widget-preview iframe {
  border: none;
  display: block;
  height: 100%;
  margin: -8px 0 0;
  position: relative;
  width: 100%;
}

/* Footer */

.WidgetDemo__footer {
  width: 100%;
  text-align: center;
  align-self: center;
  padding: 3rem 2rem;
  background: #efefef;
}

.WidgetDemo__footer img {
  width: 200px;
}

@media screen and (max-width: 39.9375em) {
  .WidgetDemo__header {
    flex-direction: column;
  }

  .WidgetDemo__header-title {
    flex-direction: column;
    margin-bottom: 0.5rem;
  }

  .WidgetDemo__header-title--partner-name {
    margin-bottom: 0.5rem;
  }
}

.ContentBox {
  border: 1px solid #cbcbcb;
  margin: 0 0 1.5em;
  padding: 1em;
}
  @media screen and (max-width: 450px) {.ContentBox {
    border: none;
    padding: 0
}
  }

.ContentBox__holder {
  background: #f8f8f8;
  margin-top: 1em;
  padding: 2em;
}

@media screen and (max-width: 450px) {

.ContentBox__holder {
    padding: 0.75em
}
  }

.ContentBox__title {
  font-size: 1.5em;
  font-weight: bold;
}

.ContentBox__box {
  background: white;
  border: 1px solid #979797;
  display: flex;
  padding: 0.875em;
}

@media screen and (min-width: 451px) {
    .ContentBox__box:last-child {
      border-top: none;
    }
  }

@media screen and (max-width: 450px) {
    .ContentBox__box:first-child {
      margin-bottom: 0.5em;
    }
  }

.ContentBox__box svg {
    height: 1.5em;
    margin: 0.75em 1em 0 0;
    width: 1.5em;
  }

.ContentBox__box .ContentBox__description {
    font-size: 0.875em;
    font-weight: bold;
  }

.ContentBox__box .ContentBox__content-title {
    font-size: 1.25em;
    font-weight: bold;
  }

.ContentBox__box .ContentBox__text,
    .ContentBox__box .ContentBox__text span {
      color: #333333;
      font-size: 0.875em;
    }

.ContentBox__box-content {
  width: calc(100% - 1.5em);
}

.ContentBox__box-content span {
    font-size: 0.875em;
  }

.ContentBox__box-content span:not(:last-child) {
      margin-right: 2em;
    }

@media screen and (max-width: 450px) {
    .ContentBox__box-content span {
      display: block;
      margin: 0;
    }
  }

.ImgixImage {
  max-width: 100%;
  max-height: 100%;
}

.ImgixImage--background {
  background-size: cover;
  background-position: center;
}

.ManageTrip__title {
  font-size: 2.25em;
}
  @media screen and (max-width: 450px) {.ManageTrip__title {
    font-size: 2em
}
  }

.ManageTrip__boxes-holder {
  display: flex;
  justify-content: space-between;
  margin: 1.5em 0;
}

@media screen and (max-width: 450px) {

.ManageTrip__boxes-holder {
    flex-wrap: wrap
}
  }

.ManageTrip__box {
  align-items: center;
  border: 1px solid #cbcbcb;
  display: flex;
  height: 90px;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  width: 17%;
}

@media screen and (max-width: 450px) {

.ManageTrip__box {
    width: 47.5%
}
    .ManageTrip__box:not(:last-child) {
      margin-bottom: 1em;
    }
  }

.ManageTrip__box svg {
    height: 1.5em;
    fill: #cbcbcb;
    width: 1.5em;
  }

.PartnerPage--Confirmation .PartnerPage__banner {
    background: #f8f8f8;
    margin-bottom: 2em;
  }
    .PartnerPage--Confirmation .PartnerPage__banner:not(.PartnerPage__banner--with-content) {
      height: 350px;
    }
    @media screen and (max-width: 450px) {
    .PartnerPage--Confirmation .PartnerPage__banner:not(.PartnerPage__banner--with-content) {
        height: 450px
    }
      }
    .PartnerPage--Confirmation .PartnerPage__banner-img {
      align-items: center;
      display: flex;
      height: 100%;
      justify-content: center;
      padding: 4em 0;
    }
    .PartnerPage--Confirmation .PartnerPage__banner-content {
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 1.5em;
      text-align: center;
    }
    .PartnerPage--Confirmation .PartnerPage__banner-title {
      font-size: 2.125em;
    }
    @media screen and (max-width: 450px) {
    .PartnerPage--Confirmation .PartnerPage__banner-title {
        font-size: 1.5em
    }
      }
    .PartnerPage--Confirmation .PartnerPage__banner-text {
      margin: 1.5em;
    }
    .PartnerPage--Confirmation .PartnerPage__banner-button {
      display: inline-block;
      padding: 1em 2em;
    }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder {
      padding: 0;
    }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box {
        background: none;
        border: none;
      }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box:last-child {
          background: #222222;
        }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box:last-child,
          .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box:last-child span {
            color: white;
          }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box .ContentBox__box-content {
          align-items: center;
          display: flex;
          width: 100%;
        }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box .ContentBox__box-content .ContentBox__contentTitle,
          .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box .ContentBox__box-content span {
            font-size: 1em;
            font-weight: normal;
          }
  @media screen and (max-width: 450px) {
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box .ContentBox__box-content .ContentBox__contentTitle,
          .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box .ContentBox__box-content span {
              font-size: 0.8em
          }
            }
  .PartnerPage--Confirmation .PartnerPage__booking-summary .ContentBox__holder .ContentBox__box .ContentBox__box-content .ContentBox__text {
            margin-left: auto;
          }
  @media screen and (max-width: 875px) {
  .PartnerPage--Confirmation .ManageTrip__boxes-holder {
        flex-wrap: wrap
    }
      }
  .PartnerPage--Confirmation .ManageTrip__box {
      height: 290px;
      justify-content: space-around;
      padding: 1em 2em;
      width: 31%;
    }
  @media screen and (max-width: 875px) {
  .PartnerPage--Confirmation .ManageTrip__box {
        margin-bottom: 1.5em;
        width: 100%
    }
      }
  @media screen and (max-width: 450px) {
  .PartnerPage--Confirmation .ManageTrip__box {
        padding: 1em
    }
      }
  .PartnerPage--Confirmation .ManageTrip__box svg {
        height: 1.75em;
        width: 1.75em;
      }
  .PartnerPage--Confirmation .ManageTrip__text {
      font-size: 1.75em;
    }
  .PartnerPage--Confirmation .ManageTrip__usps {
      list-style: none;
      margin: 0 auto 0 0;
      padding: 0;
      text-align: left;
    }
  @media screen and (min-width: 876px) {
  .PartnerPage--Confirmation .ManageTrip__usps {
        align-self: flex-start
    }
      }
  .PartnerPage--Confirmation .ManageTrip__button {
      color: white;
      padding: 0.75em 1em;
    }
  @media screen and (max-width: 450px) {
  .PartnerPage--Confirmation .ManageTrip__button {
        width: 100%
    }
      }

.PartnerPage--MMB .ManageTrip {
    margin-top: 3em;
  }

.PartnerPage {
  color: #202020;
}

  .PartnerPage__content-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: calc(1010px + 4em);
    padding: 0 2em;
    width: 100%;
  }

  @media screen and (max-width: 450px) {

  .PartnerPage__content-wrapper {
      padding: 0 1em
  }
    }

  .PartnerPage__header .PartnerPage__content-wrapper {
      align-items: center;
      flex-direction: row;
    }

  .PartnerPage__header {
    border-bottom: 1px solid #cbcbcb;
    border-top: 7px solid #cbcbcb;
    padding: 0.75em 0;
  }

  .PartnerPage__partner-logo {
    max-width: 190px;
  }

  .PartnerPage__flag {
    height: 20px;
    margin-left: auto;
    width: 30px;
  }

  .PartnerPage__content-box-placeholder:not(.PartnerPage__content-box-placeholder--with-content) {
      border: 1px solid #cbcbcb;
      margin: 0 0 1.5em;
      height: 320px;
    }

  .PartnerPage__footer {
    margin-top: 3em;
  }

  .PartnerPage__footer-helpful-links {
      background: #f8f8f8;
      padding: 2em 0;
    }

  .PartnerPage__footer-title {
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 0.5em;
    }

  .Footer__partner .PartnerPage__footer-title {
        margin-bottom: 0.25em;
      }

  .PartnerPage__footer-links-holder {
      display: flex;
      flex-wrap: wrap;
    }

  .PartnerPage__footer-link-holder {
      font-size: 0.875em;
      padding: 0.25em 0;
      width: 33%;
    }

  @media screen and (max-width: 450px) {

  .PartnerPage__footer-link-holder {
        width: 46%
    }
      }

  .PartnerPage__footer-link {
      border-bottom: 1px solid;
    }

  .PartnerPage__footer-partner {
      color: white;
      background: #222222;
      padding: 3em 0;
    }

  @media screen and (max-width: 450px) {

  .PartnerPage__footer-partner {
        text-align: center
    }
      }

  .PartnerPage__footer-copyright {
      font-size: 0.875em;
    }

.Table {
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  width: 100%;
}

  .Table thead {
    text-align: left;
  }

  .Table tr:nth-of-type(2n) {
    background-color: rgba(#ccc, 0.2);
  }

  .Table tr:hover {
    background-color: rgba(#ccc, 0.3);
  }

  .Table th,
  .Table td {
    padding: 0.5em 0.25em;
  }

