@import "https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
:root {
  --icon-font: var(--fa-style-family, "Font Awesome 5 Pro");
  --icon-weight: var(--fa-style, 100);
  --icon-arrow-right: "";
  --icon-search: "";
  --icon-chevron-down: "";
  --icon-calendar: "";
  --icon-circle-info: "";
  --icon-check: "";
}

:root {
  --font-roboto: Roboto, sans-serif;
  --font-arvo: Arvo, serif;
  --text-extra-small: .75rem;
  --text-small: .875rem;
  --text-normal: 1rem;
  --text-large: 1.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-arvo);
  font-weight: 100;
}

p {
  margin-block: 0;
}

:root, ::backdrop {
  --white: #fff;
  --black: #000;
  --grey: #999;
  --grey-semitransparent: #0006;
  --blue-inactive: #f2f6f8;
  --blue-active: #e1f2fb;
  --blue-shade: #e5e5e5;
  --button-primary: #009de0;
  --button-primary-hover: #004673;
  --button-primary-disabled: #99e0ff;
  --dialog-backdrop: #004673cc;
  --button-orange: #f18b02;
  --button-orange-hover: #f2a541;
  --button-orange-disabled: #fed197;
  --text-grey: #707070;
}

a.ot-btn, button.ot-btn, button.ot-btn:focus {
  text-transform: none;
  font-size: var(--text-normal);
  align-items: center;
  column-gap: .5rem;
  height: auto;
  padding: .75rem 1.25rem;
  display: flex;
  border-radius: 100rem !important;
}

button.ot-btn:focus {
  outline: none;
}

a.ot-btn:hover, button.ot-btn:hover {
  text-decoration: none;
}

a.ot-btn--icon:before, button.ot-btn--icon:before {
  font-family: var(--icon-font);
  font-weight: var(--icon-weight);
}

a.ot-btn--primary, button.ot-btn--primary, button.ot-btn--primary:focus {
  color: var(--white);
  background-color: var(--button-primary);
}

a.ot-btn--primary:hover, button.ot-btn--primary:hover {
  background-color: var(--button-primary-hover);
}

a.ot-btn--primary:disabled, button.ot-btn--primary:disabled {
  background-color: var(--button-primary-disabled);
}

a.ot-btn--secondary, button.ot-btn--secondary, button.ot-btn--secondary:focus {
  color: var(--button-primary);
  border: 1px solid var(--button-primary);
  background-color: var(--white);
}

a.ot-btn--secondary:hover, button.ot-btn--secondary:hover {
  color: var(--button-primary);
  border-color: var(--button-primary);
  background-color: var(--blue-inactive);
}

a.ot-btn--secondary:disabled, button.ot-btn--secondary:disabled {
  color: var(--button-primary-disabled);
  border-color: var(--button-primary-disabled);
  background-color: var(--blue-inactive);
}

a.ot-btn--orange, button.ot-btn--orange, button.ot-btn--orange:focus {
  color: var(--white);
  background-color: var(--button-orange);
}

a.ot-btn--orange:hover, button.ot-btn--orange:hover {
  background-color: var(--button-orange-hover);
  color: var(--white) !important;
}

a.ot-btn--orange:disabled, button.ot-btn--orange:disabled {
  background-color: var(--button-orange-disabled);
}

.deal-card {
  --border-radius: .75rem;
  background-color: var(--blue-inactive);
  border-radius: var(--border-radius);
  width: 48.375rem;
  min-height: 13.75rem;
  list-style-type: none;
  display: flex;
}

.deal-card__wrapper {
  flex-direction: column;
  row-gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 0;
  display: flex;
}

.deal-card__meta {
  flex-direction: column;
  width: 100%;
  margin-inline: 1.5rem 1rem;
  display: flex;
}

.deal-card .deal-card__image {
  border-bottom-right-radius: 8rem;
  border-top-left-radius: var(--border-radius);
  background-size: cover;
  min-width: 22.75rem;
  height: 13.75rem;
}

.deal-card__pill {
  float: right;
  margin-top: 1rem;
}

.deal-card .deal-card__title {
  color: var(--black);
  font-family: var(--font-arvo);
  font-size: var(--text-large);
  max-width: 75%;
  margin-block: 1rem .75rem;
  font-weight: 300;
}

.deal-card .deal-card__title a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

.deal-card .deal-card__description {
  color: var(--text-grey);
  font-size: var(--text-normal);
  font-family: var(--font-roboto);
}

.deal-card .deal-card__button {
  align-self: end;
  margin-block: auto 1.5rem;
}

.deal-card--spotlight {
  background-color: var(--blue-active);
}

.pill {
  color: var(--grey);
  border: 1px solid var(--grey);
  font-size: var(--text-small);
  border-radius: 100rem;
  padding: .25rem .5rem;
  font-weight: 300;
  line-height: 1;
}

.ot-input-pill {
  column-gap: .5rem;
  width: 15.625rem;
  display: flex;
  position: relative;
}

.ot-input-pill__input, input.ot-input-pill__input, select.ot-input-pill__input {
  background: var(--blue-inactive);
  color: var(--grey-semitransparent);
  font-size: var(--text-normal);
  border: none;
  border-radius: 100rem;
  outline: none;
  width: 100%;
  padding: .75rem 1.25rem;
}

.ot-input-pill:before, .ot-input-pill:after {
  font-family: var(--icon-font);
  font-weight: var(--icon-weight);
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ot-input-pill:before {
  color: var(--grey-semitransparent);
  left: 1.25rem;
}

.ot-input-pill:after {
  color: var(--black);
  right: 1.25rem;
}

.ot-input-pill__input:focus {
  background: var(--blue-active);
}

.ot-input-pill.ot-input-pill--search .ot-input-pill__input {
  padding-right: 2.5rem;
}

.ot-input-pill.ot-input-pill--search:after {
  content: var(--icon-search);
  font-size: var(--text-small);
}

.ot-input-pill.ot-input-pill--select .ot-input-pill__input {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
}

.ot-input-pill.ot-input-pill--select:after {
  content: var(--icon-chevron-down);
  font-size: var(--text-normal);
  font-weight: 100;
}

.ot-input-pill.ot-input-pill--icon {
  font-size: var(--text-normal);
  font-weight: 100;
}

.ot-input-pill.ot-input-pill--icon .ot-input-pill__input {
  padding-left: 2.75rem;
}

.ot-table-new {
  --body-border-radius: .625rem;
  border-spacing: 0;
  font-weight: inherit;
  width: 100%;
}

.ot-table-new__head {
  color: var(--grey);
  fonts-size: var(--text-normal);
  font-weight: 300;
}

.ot-table-new__header {
  font-weight: inherit;
  text-align: left;
  padding-block: .5rem;
  border: none !important;
}

.ot-table-new__body {
  border-radius: .5rem;
  overflow: hidden;
}

.ot-table-new__body .ot-table-new__row:nth-child(2n-1) .ot-table-new__datacell {
  background-color: var(--blue-inactive);
}

.ot-table-new__body .ot-table-new__row:nth-child(2n-2) .ot-table-new__datacell {
  background-color: #0000;
}

.ot-table-new__body .ot-table-new__row:first-child .ot-table-new__datacell:first-child {
  border-top-left-radius: var(--body-border-radius);
}

.ot-table-new__body .ot-table-new__row:first-child .ot-table-new__datacell:last-child {
  border-top-right-radius: var(--body-border-radius);
}

.ot-table-new__body .ot-table-new__row:last-child .ot-table-new__datacell:first-child {
  border-bottom-left-radius: var(--body-border-radius);
}

.ot-table-new__body .ot-table-new__row:last-child .ot-table-new__datacell:last-child {
  border-bottom-right-radius: var(--body-border-radius);
}

.ot-table-new__datacell {
  vertical-align: middle;
  border: none;
  padding: 1rem 0;
  padding-inline: .75rem;
}

.ot-table-new__datacell:first-child {
  padding-left: 1.75rem;
}

.ot-table-new__datacell:last-child {
  padding-right: 1.75rem;
}

.ot-form-field, input.ot-form-field, select.ot-form-field, textarea.ot-form-field {
  background: var(--white);
  border: 1px solid var(--blue-shade);
  outline-offset: 1px;
  font-family: inherit;
  font-size: var(--text-normal);
  border-radius: .25rem;
  width: 15.625rem;
  height: 3rem;
  padding: .625rem;
  font-weight: 300;
}

.ot-form-field::placeholder {
  opacity: 1;
  color: var(--grey-semitransparent);
}

.ot-form-field__field {
  font-family: inherit;
  font-weight: inherit;
}

input.ot-form-field--long, select.ot-form-field--long, textarea.ot-form-field--long {
  width: 24.375rem;
}

input.ot-form-field--small, select.ot-form-field--small, textarea.ot-form-field--small {
  width: 5.875rem;
}

textarea.ot-form-field--textarea {
  resize: vertical;
  height: 6.25rem;
  min-height: 3rem;
  max-height: 30rem;
}

.ot-form-field--select {
  padding: 0;
  position: relative;
}

.ot-form-field--select .ot-form-field__field {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  background-color: #0000;
  border: none;
  width: 15.625rem;
  height: 3rem;
  padding: .625rem 2.5rem .625rem .625rem;
}

.ot-form-field--select:after {
  content: var(--icon-chevron-down);
  font-family: var(--icon-font);
  font-size: var(--text-extra-small);
  font-weight: var(--icon-weight);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.ot-form-field--radio {
  background-color: #0000;
  border: none;
  width: auto;
  height: auto;
  margin: .225em 0 0;
  padding: 0;
}

.ot-form-field--checkbox {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--blue-inactive);
  border: none;
  border: 1px solid var(--button-primary);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: .125em 0 0;
  padding: .125rem;
}

.ot-form-field--radio, .ot-form-field--radio .ot-form-field__field, .ot-form-field--radio + .ot-form-field__label, .ot-form-field--checkbox, .ot-form-field--checkbox .ot-form-field__field, .ot-form-field--checkbox + .ot-form-field__label {
  cursor: inherit;
}

.ot-form-field--radio + .ot-form-field__label, .ot-form-field--checkbox + .ot-form-field__label {
  padding-left: .325rem;
}

.ot-form-field--radio .ot-form-field__field, .ot-form-field--checkbox .ot-form-field__field {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  color: currentColor;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 50%;
  place-content: center;
  width: 1rem;
  height: 1rem;
  margin: 0;
  display: grid;
}

.ot-form-field--checkbox .ot-form-field__field {
  border: none;
  border-radius: .25rem;
  width: 1.125rem;
  height: 1.125rem;
}

.ot-form-field--radio .ot-form-field__field {
  border-color: var(--black);
}

.ot-form-field--radio .ot-form-field__field:before {
  content: none;
  background: var(--black);
  border-radius: 50%;
  width: .375rem;
  height: .375rem;
  display: block;
}

.ot-form-field--radio .ot-form-field__field:checked:before {
  content: "";
}

.ot-form-field--checkbox:has( > .ot-form-field__field:checked) {
  background-color: var(--button-primary);
}

.ot-form-field--checkbox .ot-form-field__field:before {
  content: none;
  font-family: var(--icon-font);
  font-weight: var(--icon-weight);
  color: var(--white);
  display: block;
}

.ot-form-field--checkbox .ot-form-field__field:checked:before {
  content: var(--icon-check);
}

.ot-form-group {
  flex-direction: column;
  display: flex;
}

.ot-form-group.ot-form-group--inline {
  flex-direction: row;
  column-gap: .625rem;
}

.ot-form-group.ot-form-group--row {
  flex-direction: row;
}

.ot-form-group.ot-form-group--radio-wrapper {
  flex-direction: row;
  column-gap: 1.5rem;
}

.ot-form-group.ot-form-group--radio, .ot-form-group.ot-form-group--checkbox {
  cursor: pointer;
  flex-direction: row;
  height: -moz-fit-content;
  height: fit-content;
}

.ot-form-group.ot-form-group--radio > .ot-form-group, .ot-form-group.ot-form-group--checkbox > .ot-form-group {
  flex-direction: row;
  column-gap: .325rem;
  height: -moz-fit-content;
  height: fit-content;
}

.ot-form {
  font-family: var(--font-roboto);
  flex-direction: column;
  row-gap: 1rem;
  margin: 0;
  display: flex;
}

.ot-form__tooltip {
  cursor: pointer;
  color: var(--button-primary);
  font-size: var(--text-small);
}

.ot-form__tooltip span {
  pointer-events: none;
  text-decoration: underline;
}

.ot-form__tooltip:before {
  font-family: var(--icon-font);
  content: var(--icon-circle-info);
  margin-right: .125rem;
  text-decoration: none;
}

.ot-dialog {
  background: var(--blue-inactive);
  border: none;
  border-radius: .75rem;
  flex-direction: column;
  row-gap: .75rem;
  min-width: 48.4375rem;
  min-height: 28.125rem;
  padding: 1.5rem;
  display: flex;
}

.ot-dialog:not([open]) {
  display: none;
}

.ot-dialog::backdrop {
  background-color: var(--dialog-backdrop);
}

.ot-dialog .ot-dialog__header {
  justify-content: space-between;
  display: flex;
}

.ot-dialog .ot-dialog__title {
  font-size: var(--text-large);
  align-self: flex-end;
  margin: 0;
}

.ot-dialog .ot-dialog__close, .ot-dialog .ot-dialog__close:hover, .ot-dialog .ot-dialog__close:focus {
  font-size: var(--text-large);
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: .25rem .5rem;
  line-height: 1;
}

.ot-dialog .ot-dialog__body {
  flex: 1;
}

.ot-dialog .ot-dialog__footer {
  justify-content: flex-end;
  display: flex;
}

.ot-alert {
  border-radius: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.5rem .75rem 2.5rem;
  display: flex;
}

.ot-alert--orange {
  color: var(--button-orange);
  border: 1px solid var(--button-orange);
}

.ot-data-list__table-body {
  border-spacing: 4rem 0;
}

.ot-data-list__name, .ot-data-list__value, .ot-data-list__table-body tr, .ot-data-list__table-body td {
  padding: 0;
  padding-block: .65rem;
}

.ot-data-list__name, .ot-data-list__table-body td:nth-child(2n-1) {
  white-space: nowrap;
  width: 1%;
  font-weight: 500;
}

.ot-data-list__value, .ot-data-list__table-body td:nth-child(2n) {
  margin-left: 4rem;
  font-weight: 300;
  display: block;
}

.ot-card {
  --x-padding: 2.5rem;
  grid-template-columns: [breakout-start] var(--x-padding) [content-start] calc(100% - (var(--x-padding) * 2)) [content-end] var(--x-padding) [breakout-end];
  background-color: var(--blue-inactive);
  border-radius: .75rem;
  padding-block: 1.5rem;
  display: grid;
  overflow: hidden;
}

.ot-card > * {
  grid-column: content;
}

.ot-card__breakout {
  grid-column: breakout;
}

.ot-wizard-step {
  color: var(--grey-semitransparent);
  align-items: center;
  column-gap: .875rem;
  display: flex;
}

.ot-wizard-step__wrapper {
  counter-reset: li;
  column-gap: 4.75rem;
  margin: 0;
  padding: 0;
  display: flex;
}

.ot-wizard-step:before {
  counter-increment: li;
  content: counter(li);
  color: var(--button-primary);
  background: var(--blue-inactive);
  font-family: var(--font-arvo);
  font-size: var(--text-large);
  border-radius: 50%;
  place-items: center;
  width: 3.125rem;
  height: 3.125rem;
  display: grid;
}

.ot-wizard-step--active {
  color: var(--black);
}

.ot-wizard-step--active:before {
  color: var(--white);
  background: var(--button-primary-hover);
}

.ot-wizard-step--active ~ .ot-wizard-step:before {
  color: var(--grey-grey);
}

.breadcrumb, .breadcrumb a {
  color: var(--black);
}

.breadcrumb:not(:last-child):after {
  content: "/";
  margin: 0 .25rem;
  display: inline-block;
}

.breadcrumb__wrapper {
  font-size: var(--text-small);
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}



.nowrap {
  white-space: nowrap;
}

.table-nostretch {
  width: 1%;
}

.max-w-100px {
  width: 100px;
}

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

.bg-blue-active {
  background: var(--blue-active);
}

.flex {
  display: flex;
}

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

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

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

.gap-4 {
  gap: 1rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.py-6 {
  padding-block: 1rem;
}

.my-0 {
  margin-block: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

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

.font-roboto {
  font-family: var(--font-roboto);
}

.font-arvo {
  font-family: var(--font-arvo);
}

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

.italic {
  font-style: italic;
}

.text-small {
  font-size: var(--text-small);
}

.text-normal {
  font-size: var(--text-normal);
}

.text-large {
  font-size: var(--text-large);
}

.text-primary {
  color: var(--button-primary);
}

.text-muted {
  color: var(--text-grey);
}

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

#dealListWrapper {
  font-family: var(--font-roboto);
  font-weight: 300;
  line-height: 1.625rem;
}

#dealListWrapper a {
  color: var(--button-primary);
  text-decoration: none !important;
}

#dealListWrapper a:hover, #dealListWrapper a:focus {
  text-decoration: underline;
  color: var(--button-primary) !important;
}

strong {
  font-weight: 500;
}

#dealListWrapper sub, sup, #cart sub, sup {
  position: initial;
  line-height: normal;
  font-size: var(--text-extra-small);
}

#dealListWrapper label, #cart label {
  line-height: inherit;
}

#dealListWrapper .bookingsForm {
  background-color: inherit;
  padding-inline: 0 !important;
}

#dealListWrapper .ot-card__breakout, #cart .ot-card__breakout {
  padding-inline: var(--x-padding, 2.5rem);
}

#dealListWrapper .ot-card__breakout table, #cart .ot-card__breakout table {
  margin-inline: 0;
}

#dealListWrapper .datepicker.dropdown-menu, .datepicker.dropdown-menu {
  z-index: 199 !important;
}

#dealListWrapper {
  position: static;
}

:where(#dealListWrapper table), #cart {
  font-size: inherit;
}

:where(#dealListWrapper table td, #dealListWrapper table th), #cart td, #cart th {
  padding: inherit;
  line-height: inherit;
  vertical-align: inherit;
  border: inherit;
}

:where(#dealListWrapper table tbody tr:hover > td), :where(#dealListWrapper table tbody tr:hover > th), #cart tbody tr:hover > td, #cart tbody tr:hover > th, :where(#dealListWrapper table tbody > tr:nth-child(odd) > td), :where(#dealListWrapper table tbody > tr:nth-child(odd) > th), #cart tbody > tr:nth-child(odd) > td, #cart tbody > tr:nth-child(odd) > th {
  background-color: inherit;
}

