.edc-app {
  --edc-accent: #1912d5;
  --edc-accent-dark: #1009aa;
  --edc-accent-soft: #efefff;
  --edc-ink: #171827;
  --edc-muted: #686b7c;
  --edc-line: #dedfec;
  --edc-soft: #f7f6fc;
  --edc-card: #fff;
  --edc-max-width: 1180px;
  color: var(--edc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.edc-app *,
.edc-app *::before,
.edc-app *::after {
  box-sizing: border-box;
}

.edc-app.edc-full-bleed {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-right: 0 !important;
  margin-left: -50vw !important;
}

.edc-background-soft .edc-shell { background: var(--edc-soft); }
.edc-background-white .edc-shell { background: #fff; }
.edc-background-transparent .edc-shell { background: transparent; }

.edc-shell {
  padding: 16px 0 40px;
}

.edc-container {
  width: min(var(--edc-max-width), calc(100% - 40px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

.edc-heading {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}

.edc-heading h2,
.edc-destination h3,
.edc-days h3,
.edc-activities h3,
.edc-result h3,
.edc-activity h4,
.edc-breakdown h4 {
  font-family: inherit;
}

.edc-heading h2 {
  margin: 0;
  color: var(--edc-ink);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: -.035em;
}

.edc-heading p {
  max-width: 680px;
  margin: 6px auto 0;
  color: var(--edc-muted);
  font-size: 16px;
  line-height: 1.5;
}

.edc-section-label {
  margin-bottom: 12px;
  color: #393b4d;
  font-size: 14px;
  font-weight: 700;
}

.edc-profile-section {
  margin-bottom: 24px;
}

.edc-profile-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.edc-profile {
  display: flex;
  width: 100%;
  min-height: 112px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--edc-line);
  border-radius: 14px;
  padding: 0;
  background: #fff;
  color: var(--edc-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(29, 31, 64, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.edc-profile:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--edc-accent) 35%, var(--edc-line));
  box-shadow: 0 12px 28px rgba(29, 31, 64, .08);
}

.edc-profile[aria-pressed="true"] {
  border-color: var(--edc-accent);
  background: color-mix(in srgb, var(--edc-accent) 5%, #fff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--edc-accent) 12%, transparent);
}

.edc-profile__icon,
.edc-activity__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--edc-accent) 8%, #fff);
  color: var(--edc-accent);
}

.edc-profile__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--edc-line) 88%, transparent);
  background: #f0f1f8;
  pointer-events: none;
}

.edc-profile__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

.edc-profile__body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 18px;
}

.edc-profile__title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.edc-profile__icon {
  width: 44px;
  height: 44px;
}

.edc-profile__title-row strong {
  min-width: 0;
  font-size: 16px;
  line-height: 1.25;
}

.edc-profile__body small {
  display: block;
  color: var(--edc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.edc-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.58fr) minmax(330px, .76fr);
  gap: 24px;
  align-items: start;
}

.edc-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.edc-destination,
.edc-days,
.edc-activities,
.edc-result__inner {
  border: 1px solid var(--edc-line);
  border-radius: 16px;
  background: var(--edc-card);
  box-shadow: 0 12px 34px rgba(29, 31, 64, .06);
}

.edc-destination,
.edc-days,
.edc-activities {
  padding: 24px;
}

.edc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.edc-section-head h3,
.edc-result h3 {
  margin: 0;
  color: var(--edc-ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: -.02em;
}

.edc-section-head p {
  margin: 5px 0 0;
  color: var(--edc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.edc-section-head--destination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
}

.edc-section-head--destination > div:first-child {
  min-width: 0;
}

.edc-destination-field {
  display: block;
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.edc-destination-search {
  position: relative;
  width: 100%;
}

.edc-destination-search__icon {
  position: absolute;
  left: 13px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #686a7d;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.edc-destination-field input[type="search"] {
  width: 100% !important;
  height: 52px;
  min-height: 52px;
  margin: 0 !important;
  border: 1px solid #d7d9e8 !important;
  border-radius: 10px !important;
  padding: 0 40px 0 44px !important;
  background-color: #fff !important;
  color: var(--edc-ink) !important;
  font: inherit !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  outline: 0 !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.edc-destination-field input[type="search"]:focus {
  border-color: var(--edc-accent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--edc-accent) 12%, transparent) !important;
}

.edc-destination-field input[type="search"]::-webkit-search-cancel-button {
  cursor: pointer;
}

.edc-custom-days {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444657;
  font-size: 13px;
  font-weight: 650;
}

.edc-custom-days input {
  width: 76px;
  height: 42px;
  margin: 0;
  border: 1px solid #d7d9e8;
  border-radius: 9px;
  padding: 0 10px;
  background: #fff;
  color: var(--edc-ink);
  font: inherit;
  text-align: center;
  outline: 0;
}

.edc-custom-days input:focus,
.edc-hour-input input:focus {
  border-color: var(--edc-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--edc-accent) 12%, transparent);
}

.edc-day-chips,
.edc-hour-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.edc-day-chips button,
.edc-hour-controls > button {
  min-height: 38px;
  margin: 0;
  border: 1px solid #d9daea;
  border-radius: 9px;
  padding: 7px 12px;
  background: #fff;
  color: #4c4f61;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease, transform .16s ease;
}

.edc-day-chips button:hover,
.edc-hour-controls > button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--edc-accent) 40%, #d9daea);
}

.edc-day-chips button[aria-pressed="true"],
.edc-hour-controls > button[aria-pressed="true"] {
  border-color: var(--edc-accent);
  background: var(--edc-accent);
  color: #fff;
}

.edc-section-head--activities {
  align-items: flex-start;
}

.edc-text-button {
  flex: 0 0 auto;
  margin: 0;
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--edc-accent);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.edc-activity-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.edc-activity {
  --edc-activity-color: var(--edc-accent);
  min-width: 0;
  border: 1px solid #e4e5ef;
  border-radius: 13px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(34, 39, 78, .035);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.edc-app:not(.edc-colorful) .edc-activity {
  --edc-activity-color: var(--edc-accent) !important;
}

.edc-activity:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--edc-activity-color) 28%, #e4e5ef);
  box-shadow: 0 10px 25px rgba(34, 39, 78, .065);
}

.edc-activity__top {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.edc-activity__icon {
  width: 38px;
  height: 38px;
  background: color-mix(in srgb, var(--edc-activity-color) 12%, #fff);
  color: var(--edc-activity-color);
}

.edc-activity__icon svg {
  width: 20px;
  height: 20px;
}

.edc-activity h4 {
  margin: 1px 0 3px;
  color: #242638;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 730;
}

.edc-activity p {
  margin: 0;
  color: var(--edc-muted);
  font-size: 12px;
  line-height: 1.42;
}

.edc-activity__rate {
  margin: 11px 0 10px;
  color: color-mix(in srgb, var(--edc-activity-color) 88%, #202438);
  font-size: 12px;
  font-weight: 760;
}

.edc-hour-controls {
  align-items: center;
  gap: 6px;
}

.edc-hour-controls > button {
  min-width: 38px;
  min-height: 34px;
  padding: 5px 7px;
  font-size: 12px;
}

.edc-activity .edc-hour-controls > button:hover {
  border-color: color-mix(in srgb, var(--edc-activity-color) 45%, #d9daea);
  color: var(--edc-activity-color);
}

.edc-activity .edc-hour-controls > button[aria-pressed="true"] {
  border-color: var(--edc-activity-color);
  background: var(--edc-activity-color);
  color: #fff;
  box-shadow: 0 5px 13px color-mix(in srgb, var(--edc-activity-color) 20%, transparent);
}

.edc-hour-input {
  display: flex;
  min-width: 98px;
  flex: 1 1 98px;
  align-items: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--edc-activity-color) 18%, #d9daea);
  border-radius: 9px;
  padding: 0 8px;
  background: color-mix(in srgb, var(--edc-activity-color) 3%, #fff);
}

.edc-hour-input:focus-within {
  border-color: var(--edc-activity-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--edc-activity-color) 11%, transparent);
}

.edc-hour-input input {
  width: 48px;
  height: 32px;
  min-width: 0;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--edc-ink);
  font: inherit;
  font-size: 12px;
  outline: 0;
  box-shadow: none !important;
}

.edc-hour-input small {
  margin-left: auto;
  color: var(--edc-muted);
  font-size: 10px;
  white-space: nowrap;
}

.edc-result {
  min-width: 0;
}

.edc-result__inner {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border-top: 4px solid color-mix(in srgb, var(--edc-accent) 62%, #9a7cff);
  padding: 24px;
  background: #fff;
}

.edc-result__kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--edc-accent);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.edc-result h3 {
  text-align: center;
}

.edc-app .edc-donut {
  --edc-donut: conic-gradient(#dfe4f8 0deg 360deg);
  position: relative;
  display: block;
  width: min(220px, 78%);
  aspect-ratio: 1;
  margin: 20px auto 22px;
  overflow: visible;
  isolation: isolate;
  border-radius: 50%;
  background: var(--edc-donut);
  box-shadow: inset 0 0 0 1px rgba(58, 63, 101, .03);
}

.edc-app .edc-donut::before {
  position: absolute;
  inset: 16%;
  z-index: 0;
  border-radius: 50%;
  background: #fff;
  content: "";
  box-shadow: 0 0 0 1px rgba(58, 63, 101, .02), 0 8px 25px rgba(45, 49, 88, .04);
}

.edc-app .edc-result .edc-donut > .edc-donut__center {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  transform: none !important;
}

.edc-app .edc-result .edc-donut > .edc-donut__center > .edc-donut__value {
  position: absolute !important;
  inset: auto !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  display: inline-flex !important;
  width: max-content !important;
  max-width: 86% !important;
  height: auto !important;
  align-items: baseline !important;
  align-self: auto !important;
  justify-content: center !important;
  justify-self: auto !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  translate: none !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: 50% 50% !important;
}

.edc-app .edc-result .edc-donut > .edc-donut__center > .edc-donut__value > strong {
  position: static !important;
  display: block !important;
  flex: 0 0 auto !important;
  align-self: baseline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--edc-accent);
  font-size: clamp(38px, 4.4vw, 48px);
  line-height: 1 !important;
  font-weight: 650;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
  translate: none !important;
  transform: none !important;
}

.edc-app .edc-result .edc-donut > .edc-donut__center > .edc-donut__value > span {
  position: static !important;
  display: block !important;
  flex: 0 0 auto !important;
  align-self: baseline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #4d5062;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1 !important;
  font-weight: 520;
  letter-spacing: -.01em;
  translate: none !important;
  transform: none !important;
}

.edc-summary {
  display: grid;
  gap: 0;
  margin: 0;
}

.edc-summary > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
}

.edc-summary dt,
.edc-summary dd {
  min-width: 0;
  margin: 0;
}

.edc-summary dd {
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.edc-summary__daily {
  border-bottom: 1px solid #e3e7f4;
  padding: 13px 2px 16px;
}

.edc-summary__daily dt {
  color: #4f5264;
  font-size: 15px;
  line-height: 1.35;
}

.edc-summary__daily dd {
  color: #222638;
  font-size: 17px;
  font-weight: 780;
}

.edc-summary__buffer {
  margin-top: 14px;
  border: 1px solid color-mix(in srgb, var(--edc-accent) 12%, #dfe4f4);
  border-radius: 12px;
  padding: 13px 14px;
  background: color-mix(in srgb, var(--edc-accent) 5%, #fff);
}

.edc-summary__buffer dt {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #515467;
  font-size: 14px;
  line-height: 1.3;
}

.edc-buffer-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--edc-accent) 10%, #fff);
  color: var(--edc-accent);
  font-size: 15px;
  font-weight: 800;
}

.edc-summary__buffer dd {
  color: #087ca6;
  font-size: 16px;
  font-weight: 800;
}

.edc-summary__total {
  margin-top: 14px;
  border: 1px solid color-mix(in srgb, var(--edc-accent) 12%, #e0e4f3);
  border-radius: 12px;
  padding: 15px 14px;
  background: color-mix(in srgb, var(--edc-accent) 6%, #fff);
}

.edc-summary__total dt {
  color: var(--edc-accent);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 710;
}

.edc-summary__total dd {
  color: var(--edc-accent);
  font-size: 23px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.025em;
}

.edc-summary__tier {
  margin-top: 14px;
  border-top: 1px solid #e5e8f2;
  padding: 14px 2px 3px;
}

.edc-summary__tier dt {
  color: var(--edc-muted);
  font-size: 13px;
}

.edc-summary__tier dd {
  border-radius: 999px;
  padding: 6px 11px;
  background: color-mix(in srgb, var(--edc-accent) 9%, #fff);
  color: var(--edc-accent);
  font-size: 12px;
  font-weight: 780;
}

.edc-breakdown {
  margin-top: 19px;
  border-top: 1px solid #e5e8f2;
  padding-top: 16px;
}

.edc-breakdown h4 {
  margin: 0 0 12px;
  color: #343648;
  font-size: 13px;
  font-weight: 750;
}

.edc-breakdown__row {
  margin-top: 10px;
}

.edc-breakdown__line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
  color: var(--edc-muted);
  font-size: 11px;
}

.edc-breakdown__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.edc-breakdown__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
}

.edc-breakdown__line strong {
  color: #3d3f50;
  font-weight: 700;
}

.edc-breakdown__track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #eceff7;
}

.edc-breakdown__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--edc-accent);
}

.edc-result__actions {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.edc-primary-button,
.edc-secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 9px;
  padding: 10px 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: transform .16s ease, opacity .16s ease, background-color .16s ease;
}

.edc-primary-button {
  border: 1px solid var(--edc-accent);
  background: var(--edc-accent);
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--edc-accent) 22%, transparent);
}

.edc-primary-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--edc-accent) 86%, #000);
}

.edc-primary-button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.edc-secondary-button {
  border: 1px solid #d7d9e8;
  background: #fff;
  color: #3d3f50;
}

.edc-secondary-button:hover {
  transform: translateY(-1px);
  background: #f7f7fb;
}

.edc-status {
  min-height: 18px;
  margin: 11px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.edc-status.is-success { color: #177044; }
.edc-status.is-error { color: #b42318; }

.edc-disclaimer {
  margin: 14px 0 0;
  color: #858797;
  font-size: 10px;
  line-height: 1.5;
}

.edc-app .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  .edc-layout {
    grid-template-columns: 1fr;
  }

  .edc-result__inner {
    position: static;
  }

  .edc-result__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .edc-shell {
    padding: 14px 0 32px;
  }

  .edc-container {
    width: min(var(--edc-max-width), calc(100% - 24px));
  }

  .edc-profile-grid,
  .edc-activity-grid {
    grid-template-columns: 1fr;
  }

  .edc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .edc-section-head--destination {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .edc-destination-field {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .edc-custom-days {
    width: 100%;
    justify-content: space-between;
  }

  .edc-custom-days input {
    width: 96px;
  }
}

@media (max-width: 520px) {
  .edc-heading {
    margin-bottom: 12px;
    text-align: left;
  }

  .edc-heading p {
    margin-left: 0;
  }

  .edc-destination,
  .edc-days,
  .edc-activities,
  .edc-result__inner {
    border-radius: 13px;
    padding: 18px;
  }

  .edc-profile {
    min-height: 82px;
    padding: 13px;
  }

  .edc-day-chips button {
    flex: 1 1 calc(33.333% - 8px);
  }

  .edc-result__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edc-app *,
  .edc-app *::before,
  .edc-app *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Theme isolation: prevent global theme styles from rearranging the calculator. */
.edc-app {
  display: block !important;
  position: relative !important;
  clear: both !important;
  isolation: isolate;
  width: auto;
  max-width: none;
  margin-block: 0 !important;
  padding: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  text-indent: 0;
  text-transform: none;
  letter-spacing: normal;
}

.edc-app :where(section, article, aside, header, div, h1, h2, h3, h4, p, span, label, dl, dt, dd) {
  min-width: 0;
  float: none;
}

.edc-app :where(h1, h2, h3, h4, p, dl) {
  margin-block-start: 0;
}

.edc-app :where(button, input, select, textarea, a) {
  font-family: inherit !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.edc-app button,
.edc-app [type="button"],
.edc-app [type="submit"],
.edc-app [type="reset"] {
  width: auto !important;
  max-width: 100% !important;
  appearance: none;
  -webkit-appearance: none;
}

.edc-app input,
.edc-app select,
.edc-app textarea {
  max-width: 100% !important;
}

.edc-app .edc-shell,
.edc-app .edc-container,
.edc-app .edc-profile-section,
.edc-app .edc-layout,
.edc-app .edc-main {
  float: none !important;
}

.edc-app .edc-profile,
.edc-app .edc-primary-button,
.edc-app .edc-secondary-button {
  text-decoration: none !important;
}

.edc-app .edc-heading h2,
.edc-app .edc-section-head h3,
.edc-app .edc-result h3,
.edc-app .edc-activity h4 {
  font-family: inherit !important;
}

@supports (width: 100dvw) {
  .edc-app.edc-full-bleed {
    width: 100dvw !important;
    max-width: 100dvw !important;
    margin-left: -50dvw !important;
  }
}

@media (min-width: 761px) {
  .edc-app .edc-profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .edc-app .edc-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .edc-app .edc-profile-grid,
  .edc-app .edc-activity-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .edc-app.edc-full-bleed {
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Layout refinement 1.1.3: use flexbox so theme grid placement cannot move the third card. */
.edc-app .edc-profile-grid {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  gap: 14px !important;
  width: 100% !important;
}

.edc-app .edc-profile-grid > .edc-profile {
  position: relative !important;
  inset: auto !important;
  float: none !important;
  clear: none !important;
  order: 0 !important;
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 104px !important;
  align-self: stretch !important;
  margin: 0 !important;
  text-align: left !important;
}

@media (max-width: 760px) {
  .edc-app .edc-profile-grid {
    flex-direction: column !important;
  }

  .edc-app .edc-profile-grid > .edc-profile {
    flex: 0 0 auto !important;
    width: 100% !important;
  }
}

/* Color-only activity refinement and balanced summary 1.2.1. */
@media (max-width: 620px) {
  .edc-donut {
    width: min(208px, 78vw);
  }

  .edc-summary__daily dt,
  .edc-summary__buffer dt {
    font-size: 13px;
  }

  .edc-summary__total dt {
    font-size: 16px;
  }

  .edc-summary__total dd {
    font-size: 21px;
  }
}

@media (max-width: 390px) {
  .edc-activity {
    padding: 15px;
  }

  .edc-hour-controls > button {
    min-width: 34px;
    padding-inline: 6px;
  }

  .edc-hour-input {
    flex-basis: 90px;
    min-width: 90px;
  }

  .edc-summary__buffer,
  .edc-summary__total {
    padding-inline: 12px;
  }
}

/* Absolute center lock for the donut value 1.2.4. */
@media (max-width: 620px) {
  .edc-app .edc-result .edc-donut > .edc-donut__center > .edc-donut__value {
    max-width: 88% !important;
    gap: 6px !important;
  }

  .edc-app .edc-result .edc-donut > .edc-donut__center > .edc-donut__value > strong {
    font-size: clamp(36px, 12vw, 46px);
  }

  .edc-app .edc-result .edc-donut > .edc-donut__center > .edc-donut__value > span {
    font-size: 16px;
  }
}


/* Searchable optional destination integration 1.3.1. */
.edc-app .edc-destination-field .edc-destination-search input[type="search"] {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
}


/* Destination layout refinement 1.3.2: visible label/helper removed; search aligned as a single field. */
.edc-app .edc-section-head--destination .edc-destination-field {
  align-self: center;
}

/* Dynamic SKYSIMHUB recommendation 1.4.0. */
.edc-app .edc-provider-recommendation[hidden] {
  display: none !important;
}

.edc-app .edc-provider-recommendation {
  margin-top: 14px;
}

.edc-app .edc-provider-recommendation__content {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--edc-accent) 16%, #dfe4f4);
  border-radius: 13px;
  padding: 15px;
  background: color-mix(in srgb, var(--edc-accent) 5%, #fff);
  box-shadow: 0 10px 26px rgba(44, 47, 82, .05);
}

.edc-app .edc-provider-recommendation__header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222638;
  font-size: 13px;
  line-height: 1.3;
}

.edc-app .edc-provider-recommendation__check {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: #18a957;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.edc-app .edc-provider-recommendation__title {
  margin-top: 11px;
  color: #181b2d;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -.01em;
}

.edc-app .edc-provider-recommendation__context {
  margin-top: 4px;
  color: #6b6e80;
  font-size: 11px;
  line-height: 1.45;
}

.edc-app .edc-provider-recommendation__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.edc-app .edc-provider-recommendation__meta > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid #e2e5f2;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, .82);
  color: #4e5164;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 680;
}

.edc-app .edc-provider-recommendation__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
  border-top: 1px solid color-mix(in srgb, var(--edc-accent) 10%, #e5e8f2);
  padding-top: 12px;
}

.edc-app .edc-provider-recommendation__price {
  min-width: 0;
  color: var(--edc-accent);
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}

.edc-app .edc-provider-recommendation__buy {
  display: inline-flex !important;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--edc-accent);
  border-radius: 9px;
  padding: 7px 12px;
  background: var(--edc-accent);
  color: #fff !important;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
  text-decoration: none !important;
  transition: transform .16s ease, background-color .16s ease;
}

.edc-app .edc-provider-recommendation__buy:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--edc-accent) 86%, #000);
}

.edc-app .edc-provider-recommendation__message {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: #666a7c;
  font-size: 11px;
  line-height: 1.5;
}

.edc-app .edc-provider-recommendation[data-state="empty"] .edc-provider-recommendation__content,
.edc-app .edc-provider-recommendation[data-state="error"] .edc-provider-recommendation__content {
  background: #fff;
}

.edc-app .edc-provider-recommendation[data-state="error"] .edc-provider-recommendation__message {
  color: #a63a32;
}

.edc-app .edc-provider-recommendation__spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid color-mix(in srgb, var(--edc-accent) 18%, #e1e4f0);
  border-top-color: var(--edc-accent);
  border-radius: 50%;
  animation: edc-provider-spin .7s linear infinite;
}

@keyframes edc-provider-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 420px) {
  .edc-app .edc-provider-recommendation__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .edc-app .edc-provider-recommendation__buy {
    width: 100%;
  }
}

/* Result action stack hardening 1.4.2.
 * Force the two calculator actions into a compact vertical flex stack.
 * This resets theme/grid spacing that can otherwise create a large blank gap. */
.edc-app .edc-result .edc-result__inner .edc-result__actions {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  align-content: flex-start !important;
  gap: 0 !important;
  row-gap: 0 !important;
  column-gap: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
}

.edc-app .edc-result .edc-result__inner .edc-result__actions > button.edc-primary-button,
.edc-app .edc-result .edc-result__inner .edc-result__actions > button.edc-secondary-button {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  margin-block: 0 !important;
}

.edc-app .edc-result .edc-result__inner .edc-result__actions > button.edc-secondary-button {
  margin-top: 10px !important;
}

/* Profile imagery and compact icon-title row 1.5.0. */
.edc-app .edc-profile-grid > .edc-profile {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.edc-app .edc-profile__media {
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.edc-app .edc-profile__media > img.edc-profile__image {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.edc-app .edc-profile__body {
  display: flex !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 16px 18px 18px !important;
}

.edc-app .edc-profile__title-row {
  display: flex !important;
  min-width: 0 !important;
  align-items: center !important;
  gap: 12px !important;
}

.edc-app .edc-profile__title-row > .edc-profile__icon {
  flex: 0 0 44px !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
}

.edc-app .edc-profile__title-row > strong {
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.edc-app .edc-profile__body > small {
  display: block !important;
  margin: 0 !important;
}


/* Compact profile cards and colorful introduction 1.5.1. */
.edc-app.edc-heading-colorful .edc-heading h2 {
  color: var(--edc-ink) !important;
  background: linear-gradient(100deg, var(--edc-ink) 0%, var(--edc-accent) 38%, #7c3aed 67%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.edc-app .edc-profile-section {
  margin-bottom: 20px !important;
}

.edc-app .edc-profile-section > .edc-section-label {
  margin-bottom: 10px !important;
}

.edc-app .edc-profile-grid {
  align-items: flex-start !important;
}

.edc-app .edc-profile-grid > .edc-profile {
  min-height: 0 !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.edc-app .edc-profile-grid > .edc-profile::before,
.edc-app .edc-profile-grid > .edc-profile::after {
  content: none !important;
  display: none !important;
}

.edc-app .edc-profile__media {
  position: relative !important;
  inset: auto !important;
  height: clamp(150px, 12vw, 205px) !important;
  min-height: 0 !important;
  max-height: 205px !important;
  aspect-ratio: auto !important;
  border-bottom: 1px solid color-mix(in srgb, var(--edc-line) 88%, transparent) !important;
  background: #f0f1f8 !important;
}

.edc-app .edc-profile__body {
  flex: 0 0 auto !important;
  justify-content: flex-start !important;
  align-content: flex-start !important;
  min-height: 0 !important;
  gap: 8px !important;
  padding: 14px 16px 16px !important;
}

.edc-app .edc-profile__title-row {
  flex: 0 0 auto !important;
  gap: 10px !important;
  min-height: 40px !important;
}

.edc-app .edc-profile__title-row > .edc-profile__icon {
  flex-basis: 40px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 11px !important;
  background: color-mix(in srgb, var(--edc-profile-color, var(--edc-accent)) 10%, #fff) !important;
  color: var(--edc-profile-color, var(--edc-accent)) !important;
}

.edc-app .edc-profile__title-row > .edc-profile__icon svg {
  width: 23px !important;
  height: 23px !important;
}

.edc-app .edc-profile__title-row > strong {
  color: var(--edc-ink) !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.edc-app .edc-profile__body > small {
  flex: 0 0 auto !important;
  color: var(--edc-muted) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.edc-app .edc-profile:hover .edc-profile__title-row > .edc-profile__icon,
.edc-app .edc-profile[aria-pressed="true"] .edc-profile__title-row > .edc-profile__icon {
  background: color-mix(in srgb, var(--edc-profile-color, var(--edc-accent)) 16%, #fff) !important;
}

@media (max-width: 980px) and (min-width: 761px) {
  .edc-app .edc-profile__media {
    height: 155px !important;
  }
}

@media (max-width: 760px) {
  .edc-app .edc-profile-grid {
    align-items: stretch !important;
  }

  .edc-app .edc-profile__media {
    height: clamp(170px, 48vw, 245px) !important;
    max-height: 245px !important;
  }
}

@media (max-width: 520px) {
  .edc-app.edc-heading-colorful .edc-heading h2 {
    background: linear-gradient(100deg, var(--edc-ink) 0%, var(--edc-accent) 55%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .edc-app .edc-profile__body {
    padding: 13px 14px 15px !important;
  }
}

@media (forced-colors: active) {
  .edc-app.edc-heading-colorful .edc-heading h2 {
    background: none !important;
    color: var(--edc-ink) !important;
    -webkit-text-fill-color: currentColor !important;
  }
}


/* True content-fit preset cards 1.5.2.
 * The shortcode also ships a high-specificity critical flex layout. These rules
 * intentionally make each card size itself from its real content instead of
 * stretching to the tallest available row. */
.edc-app .edc-profile-grid {
  align-items: flex-start !important;
}

.edc-app .edc-profile-grid > button.edc-profile {
  display: block !important;
  flex: 1 1 0 !important;
  align-self: flex-start !important;
  height: fit-content !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: clamp(145px, 9.25vw, 175px) !important;
  min-height: 0 !important;
  max-height: 175px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
}

.edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media > img.edc-profile__image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body {
  display: block !important;
  flex: none !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 12px 14px 14px !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row {
  display: flex !important;
  align-items: center !important;
  min-height: 0 !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  gap: 9px !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row > .edc-profile__icon {
  flex: 0 0 36px !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
  border-radius: 10px !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row > .edc-profile__icon svg {
  width: 21px !important;
  height: 21px !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row > strong {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15.5px !important;
  line-height: 1.2 !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > small {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 12.75px !important;
  line-height: 1.38 !important;
}

@media (max-width: 980px) and (min-width: 761px) {
  .edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media {
    height: 140px !important;
    max-height: 140px !important;
  }
}

@media (max-width: 760px) {
  .edc-app .edc-profile-grid > button.edc-profile {
    width: 100% !important;
    align-self: stretch !important;
  }

  .edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media {
    height: clamp(165px, 45vw, 230px) !important;
    max-height: 230px !important;
  }
}


/* Compact text body + restored 16:9 media 1.5.3.
 * Keep the illustration at its natural large 16:9 ratio and compact only the
 * content body. These rules mirror the shortcode critical CSS so LiteSpeed/UCSS
 * cannot leave the media and text body on different layout generations. */
.edc-app .edc-profile-grid > button.edc-profile {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  white-space: normal !important;
}

.edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
}

.edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media > img.edc-profile__image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex: 0 0 auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: 5px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 12px 14px 13px !important;
  transform: none !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 9px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row > .edc-profile__icon {
  flex: 0 0 36px !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > .edc-profile__title-row > strong {
  position: static !important;
  inset: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-size: 15.5px !important;
  line-height: 1.2 !important;
}

.edc-app .edc-profile-grid > button.edc-profile > .edc-profile__body > small {
  position: static !important;
  inset: auto !important;
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-size: 12.75px !important;
  line-height: 1.38 !important;
}

@media (max-width: 760px) {
  .edc-app .edc-profile-grid > button.edc-profile.edc-profile--has-image > .edc-profile__media {
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
  }
}
