/* BOTOVACATION_CLIENT_REDESIGN_START */
:root {
  --bv-ink: #171614;
  --bv-deep: #082c34;
  --bv-deep-2: #041d23;
  --bv-sea: #167985;
  --bv-paper: #fffdf8;
  --bv-canvas: #f2eee6;
  --bv-gold: #b98748;
  --bv-sand: #e7c996;
  --bv-muted: #6f685f;
  --bv-line: rgba(78, 65, 48, .18);
  --bv-shadow: 0 28px 80px rgba(20, 16, 11, .10);
}

body {
  background: var(--bv-canvas);
}

body.bv-plan-active {
  scroll-behavior: smooth;
}

.bv-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background-color: var(--bv-deep-2);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bv-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3,22,27,.14) 0%,
      rgba(3,22,27,.07) 45%,
      rgba(3,22,27,.01) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3,22,27,.22) 0%,
      rgba(3,22,27,.03) 60%,
      transparent 100%
    );
}

.bv-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 160px) clamp(18px, 6vw, 92px) clamp(58px, 8vw, 96px);
}

.bv-hero-copy {
  max-width: 800px;
}

.bv-kicker {
  margin: 0;
  color: var(--bv-sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.bv-hero h1 {
  max-width: 790px;
  margin: 18px 0 22px;
  font-family: "Italiana", serif;
  font-size: clamp(62px, 8.5vw, 118px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.035em;
}

.bv-hero-copy > p:not(.bv-kicker) {
  max-width: 690px;
  margin: 0;
  color: #cfdddd;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.75;
}

.bv-hero-actions,
.bv-plan-actions,
.bv-request-actions,
.bv-response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bv-hero-actions {
  margin-top: 30px;
}

.bv-primary,
.bv-secondary,
.bv-text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.bv-primary {
  border: 1px solid var(--bv-sand);
  background: linear-gradient(135deg, #eed39f, #b98748);
  color: #112d32;
}

.bv-secondary {
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.bv-text-button {
  min-height: 42px;
  border: 1px solid var(--bv-line);
  background: transparent;
  color: var(--bv-ink);
}

.bv-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 970px;
  gap: 10px;
  margin-top: 42px;
}

.bv-hero-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #d6e0df;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.bv-planner-section,
.bv-requests-section {
  padding: clamp(64px, 8vw, 104px) clamp(16px, 6vw, 92px);
}

.bv-planner-section {
  background: var(--bv-canvas);
}

.bv-section-head,
.bv-requests-head {
  width: min(1440px, 100%);
  margin: 0 auto 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.bv-section-head h2,
.bv-requests-head h2 {
  max-width: 930px;
  margin: 10px 0 12px;
  font-family: "Italiana", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: .95;
}

.bv-section-head p:last-child,
.bv-requests-head p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--bv-muted);
  line-height: 1.75;
}

.bv-identity {
  width: min(1440px, 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--bv-line);
  border-radius: 18px;
  background: var(--bv-paper);
}

.bv-identity strong,
.bv-identity small {
  display: block;
}

.bv-identity strong {
  font-size: 13px;
}

.bv-identity small {
  margin-top: 4px;
  color: var(--bv-muted);
  font-size: 10px;
}

.bv-planner-layout {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 22px;
  align-items: start;
}

.bv-planner-card,
.bv-plan-summary,
.bv-request-card {
  border: 1px solid var(--bv-line);
  border-radius: 26px;
  background: var(--bv-paper);
  box-shadow: var(--bv-shadow);
}

.bv-planner-card {
  overflow: hidden;
}

.bv-step-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--bv-line);
}

.bv-step-tab {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 0;
  background: #f7f3ec;
  color: var(--bv-muted);
  text-align: left;
  cursor: pointer;
}

.bv-step-tab b,
.bv-step-tab span {
  display: block;
}

.bv-step-tab b {
  color: var(--bv-gold);
  font-size: 9px;
  letter-spacing: .12em;
}

.bv-step-tab span {
  font-size: 11px;
  font-weight: 700;
}

.bv-step-tab.active {
  background: var(--bv-deep-2);
  color: #fff;
}

.bv-step-panel {
  display: none;
  padding: clamp(22px, 4vw, 42px);
}

.bv-step-panel.active {
  display: block;
}

.bv-step-panel > header {
  margin-bottom: 22px;
}

.bv-step-panel h3 {
  margin: 7px 0 9px;
  font-family: "Italiana", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.bv-step-panel > header p {
  margin: 0;
  color: var(--bv-muted);
  font-size: 12px;
  line-height: 1.65;
}

.bv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.bv-form-grid .full {
  grid-column: 1 / -1;
}

.bv-field {
  display: block;
  margin: 0;
}

.bv-field > span {
  display: block;
  margin-bottom: 7px;
  color: #39342e;
  font-size: 10px;
  font-weight: 700;
}

.bv-field input,
.bv-field select,
.bv-field textarea {
  width: 100%;
  border: 1px solid var(--bv-line);
  border-radius: 12px;
  background: #fff;
  color: var(--bv-ink);
  outline: 0;
}

.bv-field input,
.bv-field select {
  height: 48px;
  padding: 0 13px;
}

.bv-field textarea {
  min-height: 104px;
  padding: 13px;
  resize: vertical;
}

.bv-field input:focus,
.bv-field select:focus,
.bv-field textarea:focus {
  border-color: var(--bv-sea);
  box-shadow: 0 0 0 3px rgba(22, 121, 133, .12);
}

.bv-counter-field {
  padding: 12px;
  border: 1px solid var(--bv-line);
  border-radius: 14px;
  background: #fff;
}

.bv-counter-field > span {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 700;
}

.bv-counter {
  display: grid;
  grid-template-columns: 42px minmax(46px, 1fr) 42px;
  align-items: center;
  max-width: 180px;
  overflow: hidden;
  border: 1px solid var(--bv-line);
  border-radius: 999px;
}

.bv-counter button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #f1ece3;
  color: var(--bv-ink);
  font-size: 20px;
  cursor: pointer;
}

.bv-counter input {
  width: 100%;
  height: 42px;
  padding: 0;
  border: 0;
  background: #fff;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
}

.bv-counter input::-webkit-inner-spin-button,
.bv-counter input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.bv-switch-grid,
.bv-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bv-choice-grid {
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.bv-choice-card,
.bv-switch-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--bv-line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
}

.bv-choice-card input,
.bv-switch-card input,
.bv-consent input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.bv-choice-card strong,
.bv-choice-card small,
.bv-switch-card strong,
.bv-switch-card small {
  display: block;
}

.bv-choice-card strong,
.bv-switch-card strong {
  font-size: 12px;
}

.bv-choice-card small,
.bv-switch-card small {
  margin-top: 5px;
  color: var(--bv-muted);
  font-size: 10px;
  line-height: 1.5;
}

.bv-choice-card:has(input:checked),
.bv-switch-card:has(input:checked) {
  border-color: var(--bv-deep-2);
  background: #f1ece3;
  box-shadow: inset 0 0 0 1px var(--bv-deep-2);
}

.bv-choice-detail {
  display: block;
  margin-top: 7px;
  color: var(--bv-sea);
  font-size: 9px;
  font-weight: 700;
}

.bv-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bv-review-block {
  padding: 16px;
  border: 1px solid var(--bv-line);
  border-radius: 16px;
  background: #f7f3ec;
}

.bv-review-block h4 {
  margin: 0 0 10px;
  font-size: 11px;
}

.bv-review-block p,
.bv-review-block li {
  color: var(--bv-muted);
  font-size: 10px;
  line-height: 1.65;
}

.bv-review-block p {
  margin: 0;
}

.bv-review-block ul {
  margin: 0;
  padding-left: 18px;
}

.bv-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--bv-muted);
  font-size: 10px;
  line-height: 1.6;
}

.bv-plan-actions {
  justify-content: space-between;
  padding: 18px clamp(22px, 4vw, 42px);
  border-top: 1px solid var(--bv-line);
  background: #faf7f1;
}

.bv-plan-actions .right {
  display: flex;
  gap: 9px;
  margin-left: auto;
}

.bv-plan-actions button {
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.bv-plan-actions .back,
.bv-plan-actions .save {
  border: 1px solid var(--bv-line);
  background: transparent;
  color: var(--bv-ink);
}

.bv-plan-actions .next,
.bv-plan-actions .submit {
  border: 1px solid var(--bv-deep-2);
  background: var(--bv-deep-2);
  color: #fff;
}

.bv-plan-actions button[hidden] {
  display: none !important;
}

.bv-plan-summary {
  position: sticky;
  top: 86px;
  padding: 24px;
}

.bv-plan-summary h3 {
  margin: 8px 0 20px;
  font-family: "Italiana", serif;
  font-size: 38px;
  font-weight: 400;
}

.bv-summary-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--bv-line);
  border-radius: 15px;
  background: var(--bv-line);
}

.bv-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 14px;
  background: #fff;
}

.bv-summary-row span {
  color: var(--bv-muted);
  font-size: 10px;
}

.bv-summary-row strong {
  max-width: 60%;
  font-size: 11px;
  text-align: right;
}

.bv-summary-price {
  margin-top: 14px;
  padding: 16px;
  border-radius: 15px;
  background: var(--bv-deep-2);
  color: #fff;
}

.bv-summary-price small,
.bv-summary-price strong {
  display: block;
}

.bv-summary-price small {
  color: #9fb3b4;
  font-size: 9px;
}

.bv-summary-price strong {
  margin-top: 6px;
  font-size: 14px;
}

.bv-trips-intro {
  max-width: 700px;
  margin-top: 8px;
  color: var(--bv-muted);
  font-size: 12px;
  line-height: 1.65;
}

.trip-bottom {
  align-items: flex-end;
}

.trip-actions {
  display: flex;
  gap: 7px;
}

.trip-actions button {
  min-height: 38px;
}

.trip-actions .trip-view {
  border-color: var(--bv-line);
  background: transparent;
  color: var(--bv-ink);
}

.trip-actions .trip-add {
  border-color: var(--bv-deep-2);
  background: var(--bv-deep-2);
  color: #fff;
}

.bv-requests-section {
  background: #e9e3d9;
}

.bv-requests-list {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.bv-request-card {
  padding: clamp(18px, 3vw, 28px);
}

.bv-request-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bv-line);
}

.bv-request-card-head small,
.bv-request-card-head h3,
.bv-request-card-head p {
  display: block;
  margin: 0;
}

.bv-request-card-head small {
  color: var(--bv-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bv-request-card-head h3 {
  margin-top: 7px;
  font-family: "Italiana", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
}

.bv-request-card-head p {
  margin-top: 6px;
  color: var(--bv-muted);
  font-size: 11px;
}

.bv-request-status {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: #efe7da;
  color: #6b583c;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.bv-request-status.quoted,
.bv-request-status.confirmed,
.bv-request-status.paid,
.bv-request-status.completed {
  background: #dfece5;
  color: #356348;
}

.bv-request-status.cancelled,
.bv-request-status.rejected {
  background: #f1dfdc;
  color: #8b4139;
}

.bv-request-summary,
.bv-proposal-grid,
.bv-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.bv-request-summary > div,
.bv-proposal-grid > div,
.bv-price-grid > div {
  padding: 13px;
  border: 1px solid var(--bv-line);
  border-radius: 13px;
  background: #faf7f1;
}

.bv-request-summary small,
.bv-request-summary strong,
.bv-proposal-grid small,
.bv-proposal-grid strong,
.bv-price-grid small,
.bv-price-grid strong {
  display: block;
}

.bv-request-summary small,
.bv-proposal-grid small,
.bv-price-grid small {
  color: var(--bv-muted);
  font-size: 8px;
  text-transform: uppercase;
}

.bv-request-summary strong,
.bv-proposal-grid strong,
.bv-price-grid strong {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.4;
}

.bv-request-details {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.bv-request-details[hidden] {
  display: none !important;
}

.bv-request-details section {
  padding: 16px;
  border: 1px solid var(--bv-line);
  border-radius: 15px;
  background: #fff;
}

.bv-request-details h4 {
  margin: 0 0 10px;
  font-size: 11px;
}

.bv-request-details p,
.bv-request-details li {
  color: var(--bv-muted);
  font-size: 10px;
  line-height: 1.65;
}

.bv-request-actions {
  justify-content: flex-end;
  margin-top: 15px;
}

.bv-request-action,
.bv-response-actions button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--bv-deep-2);
  border-radius: 999px;
  background: var(--bv-deep-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.bv-request-action.secondary,
.bv-response-actions button.secondary {
  border-color: var(--bv-line);
  background: transparent;
  color: var(--bv-ink);
}

.bv-client-response {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--bv-line);
  border-radius: 15px;
  background: #faf7f1;
}

.bv-client-response textarea {
  width: 100%;
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--bv-line);
  border-radius: 12px;
  resize: vertical;
}

.bv-response-actions {
  margin-top: 10px;
}

.bv-empty-requests,
.bv-request-loading {
  padding: 42px 20px;
  border: 1px dashed var(--bv-line);
  border-radius: 20px;
  background: var(--bv-paper);
  color: var(--bv-muted);
  text-align: center;
}

.bv-planner-dialog,
.vacation-drawer,
.mobile-cart,
.trip-cart-button {
  display: none !important;
}

.add-trip-form {
  background: #f2ede4;
}

.add-trip-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1050px) {
  .bv-hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bv-planner-layout {
    grid-template-columns: 1fr;
  }

  .bv-plan-summary {
    position: static;
  }

  .bv-request-summary,
  .bv-proposal-grid,
  .bv-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0 !important;
  }

  .bv-hero {
    min-height: 660px;
  }



  .bv-hero-inner {
    padding: 104px 16px 44px;
  }

  .bv-hero h1 {
    font-size: clamp(58px, 17vw, 78px);
  }

  .bv-hero-actions,
  .bv-plan-actions,
  .bv-response-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bv-primary,
  .bv-secondary,
  .bv-plan-actions button,
  .bv-response-actions button {
    width: 100%;
  }

  .bv-hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .bv-section-head,
  .bv-requests-head,
  .bv-identity,
  .bv-request-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bv-step-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .bv-step-nav::-webkit-scrollbar {
    display: none;
  }

  .bv-step-tab {
    flex: 0 0 132px;
    min-height: 64px;
  }

  .bv-step-panel {
    padding: 22px 15px;
  }

  .bv-form-grid,
  .bv-switch-grid,
  .bv-choice-grid,
  .bv-review-grid,
  .bv-request-summary,
  .bv-proposal-grid,
  .bv-price-grid,
  .add-trip-form .form-grid {
    grid-template-columns: 1fr;
  }

  .bv-choice-grid {
    max-height: none;
  }

  .bv-plan-actions {
    padding: 15px;
  }

  .bv-plan-actions .right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
  }

  .bv-plan-summary {
    padding: 18px;
  }

  .trip-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trip-actions button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .bv-hero-points {
    grid-template-columns: 1fr;
  }

  .bv-counter {
    max-width: none;
  }
}
/* BOTOVACATION_CLIENT_REDESIGN_END */

/* BOTOVACATION_PRICED_TREATMENTS_START */
#bvTreatmentChoices.bv-treatment-catalog {
  display: grid;
  gap: 10px;
  max-height: 560px;
  overflow: auto;
  padding-right: 5px;
}

.bv-treatment-group {
  overflow: hidden;
  border: 1px solid var(--bv-line);
  border-radius: 16px;
  background: #fff;
}

.bv-treatment-group.has-selection {
  border-color: rgba(22, 121, 133, .42);
  box-shadow: 0 0 0 2px rgba(22, 121, 133, .07);
}

.bv-treatment-group-toggle {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  border: 0;
  background: #fff;
  color: var(--bv-ink);
  text-align: left;
  cursor: pointer;
}

.bv-treatment-group.open .bv-treatment-group-toggle {
  background: #f8f4ed;
  border-bottom: 1px solid var(--bv-line);
}

.bv-treatment-group-copy {
  min-width: 0;
}

.bv-treatment-group-copy strong,
.bv-treatment-group-copy small {
  display: block;
}

.bv-treatment-group-copy strong {
  font-size: 15px;
}

.bv-treatment-group-copy small {
  max-width: 660px;
  margin-top: 5px;
  color: var(--bv-muted);
  font-size: 10px;
  line-height: 1.45;
}

.bv-treatment-group-meta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.bv-treatment-group-meta em {
  color: var(--bv-gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.bv-treatment-group-meta b {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--bv-sea);
  color: #fff;
  font-size: 9px;
}

.bv-treatment-group-meta i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bv-line);
  border-radius: 50%;
  color: var(--bv-ink);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  transition: transform .18s ease;
}

.bv-treatment-group.open .bv-treatment-group-meta i {
  transform: rotate(45deg);
}

.bv-treatment-options {
  display: grid;
  gap: 1px;
  background: var(--bv-line);
}

.bv-treatment-options[hidden] {
  display: none !important;
}

.bv-treatment-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 12px 16px;
  background: #fff;
  cursor: pointer;
}

.bv-treatment-option:hover {
  background: #fcfaf6;
}

.bv-treatment-option:has(input:checked) {
  background: #edf7f7;
}

.bv-treatment-option input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.bv-treatment-option-copy strong,
.bv-treatment-option-copy small {
  display: block;
}

.bv-treatment-option-copy strong {
  font-size: 12px;
  line-height: 1.35;
}

.bv-treatment-option-copy small {
  margin-top: 3px;
  color: var(--bv-muted);
  font-size: 9px;
}

.bv-treatment-option > em {
  color: var(--bv-ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.bv-treatment-draft-note {
  margin: 0;
  padding: 11px 16px;
  background: #fff8dc;
  color: #6a5420;
  font-size: 10px;
  line-height: 1.5;
}

.bv-treatment-empty {
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--bv-line);
  border-radius: 15px;
  color: var(--bv-muted);
  text-align: center;
}

.bv-selected-treatments {
  display: grid;
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--bv-line);
  border-radius: 15px;
  background: var(--bv-line);
}

.bv-selected-treatments[hidden] {
  display: none !important;
}

.bv-selected-treatment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  background: #fff;
}

.bv-selected-treatment-row span,
.bv-selected-treatment-row strong,
.bv-selected-treatment-row small {
  display: block;
}

.bv-selected-treatment-row strong {
  font-size: 10px;
}

.bv-selected-treatment-row small {
  margin-top: 3px;
  color: var(--bv-muted);
  font-size: 8px;
}

.bv-selected-treatment-row em {
  flex: 0 0 auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.bv-review-treatment-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bv-review-treatment-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bv-line);
}

.bv-review-treatment-list span,
.bv-review-treatment-list strong,
.bv-review-treatment-list small {
  display: block;
}

.bv-review-treatment-list small {
  margin-top: 3px;
  color: var(--bv-muted);
  font-size: 9px;
}

.bv-review-treatment-list em {
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.bv-review-estimate {
  margin-top: 12px !important;
  padding: 11px 12px;
  border-radius: 10px;
  background: #f3eee6;
}

@media (max-width: 700px) {
  #bvTreatmentChoices.bv-treatment-catalog {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .bv-treatment-group-toggle {
    min-height: 72px;
    padding: 13px 14px;
    gap: 10px;
  }

  .bv-treatment-group-copy small {
    display: none;
  }

  .bv-treatment-group-meta em {
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bv-treatment-option {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
  }

  .bv-treatment-option > em {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
    color: var(--bv-gold);
  }
}
/* BOTOVACATION_PRICED_TREATMENTS_END */


/* BOTOVACATION_HERO_IMAGE_CLARITY */
.bv-hero-copy {
  text-shadow: 0 2px 18px rgba(0,0,0,.48);
}

.bv-hero-copy > p:not(.bv-kicker) {
  color: rgba(255,255,255,.92);
}

.bv-hero-points span {
  background: rgba(3,22,27,.26);
  backdrop-filter: blur(3px);
}

@media (max-width: 700px) {
  .bv-hero {
    min-height: calc(100svh - 70px);
  }



  .bv-hero-inner {
    padding-top: 76px;
    padding-bottom: 36px;
  }
}
