.hayden-comparison-table {
  max-width: var(--site-max-width, 90rem);
  margin-inline: auto;
  margin-top: var(--section-space-mobile);
  margin-bottom: var(--section-space-mobile);
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
  padding-left: var(--block-padding-x);
  padding-right: var(--block-padding-x);
  background: var(--hb-bg-color, var(--card-bg));
  color: var(--color-body);
  border-radius: var(--radius-2xl);
}

@media (min-width: 768px) {
  .hayden-comparison-table:not([data-margin-top]):not([data-margin-bottom]) {
    margin-top: var(--section-space-desktop);
    margin-bottom: var(--section-space-desktop);
  }
}

.hayden-comparison-table.alignfull {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-sizing: border-box;
  padding-left: max(1.5rem, calc((100vw - var(--site-max-width, 90rem)) / 1.9));
  padding-right: max(1.5rem, calc((100vw - var(--site-max-width, 90rem)) / 1.9));
}

.hayden-comparison-table__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hayden-comparison-table__heading {
  margin: 0;
  color: var(--color-headings);
  line-height: 1.1;
}

.hayden-comparison-table__intro {
  margin: 0;
  color: var(--color-body);
}

.hayden-comparison-table[data-content-align="center"] .hayden-comparison-table__heading,
.hayden-comparison-table[data-content-align="center"] .hayden-comparison-table__intro {
  text-align: center;
}

.hayden-comparison-table[data-content-align="right"] .hayden-comparison-table__heading,
.hayden-comparison-table[data-content-align="right"] .hayden-comparison-table__intro {
  text-align: right;
}

.hayden-comparison-table[data-padding-y="small"] {
  padding-top: var(--block-padding-y-small);
  padding-bottom: var(--block-padding-y-small);
}

.hayden-comparison-table[data-padding-y="medium"] {
  padding-top: var(--block-padding-y-medium);
  padding-bottom: var(--block-padding-y-medium);
}

.hayden-comparison-table[data-padding-y="large"] {
  padding-top: var(--block-padding-y-large);
  padding-bottom: var(--block-padding-y-large);
}

.hayden-comparison-table:not(.alignfull)[data-padding-x="small"] {
  padding-left: var(--block-padding-x-small);
  padding-right: var(--block-padding-x-small);
}

.hayden-comparison-table:not(.alignfull)[data-padding-x="medium"] {
  padding-left: var(--block-padding-x-medium);
  padding-right: var(--block-padding-x-medium);
}

.hayden-comparison-table:not(.alignfull)[data-padding-x="large"] {
  padding-left: var(--block-padding-x-large);
  padding-right: var(--block-padding-x-large);
}

.hayden-comparison-table[data-margin-top="none"] { margin-top: 0 !important; }
.hayden-comparison-table[data-margin-top="small"] { margin-top: 4rem !important; }
.hayden-comparison-table[data-margin-top="medium"] { margin-top: 6rem !important; }
.hayden-comparison-table[data-margin-top="large"] { margin-top: 8rem !important; }

.hayden-comparison-table[data-margin-bottom="none"] { margin-bottom: 0 !important; }
.hayden-comparison-table[data-margin-bottom="small"] { margin-bottom: 4rem !important; }
.hayden-comparison-table[data-margin-bottom="medium"] { margin-bottom: 6rem !important; }
.hayden-comparison-table[data-margin-bottom="large"] { margin-bottom: 8rem !important; }

.hayden-comparison-table__desktop-wrap {
  overflow-x: auto;
}

.hayden-comparison-table__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--comparison-border, #c9d0d5);
  background: var(--comparison-table-bg, var(--hb-bg-color, #f6f7f8));
}

.hayden-comparison-table[data-equal-columns="true"] .hayden-comparison-table__table {
  table-layout: fixed;
}

.hayden-comparison-table__table th,
.hayden-comparison-table__table td {
  border: 1px solid var(--comparison-border, #c9d0d5);
  padding: 0.85rem 1rem;
  vertical-align: top;
}

.hayden-comparison-table__table tbody td {
  color: var(--comparison-table-body, var(--color-body));
}

.hayden-comparison-table__table thead th {
  text-align: center;
  font-weight: 700;
  color: var(--comparison-table-heading, var(--color-headings));
}

.hayden-comparison-table__table thead th:first-child {
  text-align: left;
}

.hayden-comparison-table__plan-title {
  font-weight: 700;
  color: var(--comparison-table-heading, var(--color-headings));
}

.hayden-comparison-table__plan-price {
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--comparison-table-heading, var(--color-headings));
}

.hayden-comparison-table__plan-head-editor {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hayden-comparison-table__table tbody tr:nth-child(odd) td {
  background: var(--comparison-stripe, #b9dddd);
}

.hayden-comparison-table__service {
  text-align: left;
  width: 40%;
}

.hayden-comparison-table[data-equal-columns="true"] .hayden-comparison-table__service {
  width: auto;
}

.hayden-comparison-table__service-label {
  display: inline;
}

.hayden-comparison-table__service-preview-link {
  appearance: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.35rem;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  padding: 0;
}

.hayden-comparison-table__service-preview-link:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.hayden-comparison-table__service-preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.72rem;
  height: 0.72rem;
}

.hayden-comparison-table__service-preview-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hayden-comparison-table__service-preview-badge {
  position: absolute;
  right: -0.36rem;
  bottom: -0.36rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--comparison-border, #c9d0d5);
  background: var(--hb-bg-color, #f6f7f8);
  color: var(--color-body);
  font-size: 0.42rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hayden-comparison-table__preview-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hayden-comparison-table__preview-modal[hidden] {
  display: none !important;
}

.hayden-comparison-table__preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
}

.hayden-comparison-table__preview-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  max-height: 86vh;
  background: var(--hb-bg-color, #f6f7f8);
  border: 1px solid var(--comparison-border, #c9d0d5);
  border-radius: 0.6rem;
  overflow: hidden;
}

.hayden-comparison-table__preview-close {
  appearance: none;
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--comparison-border, #c9d0d5);
  border-radius: 999px;
  background: var(--hb-bg-color, #f6f7f8);
  color: var(--color-body);
  cursor: pointer;
  line-height: 1;
  font-size: 1.25rem;
}

.hayden-comparison-table__preview-nav {
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--comparison-border, #c9d0d5);
  border-radius: 999px;
  background: var(--hb-bg-color, #f6f7f8);
  color: var(--color-body);
  cursor: pointer;
  line-height: 1;
  font-size: 1.25rem;
}

.hayden-comparison-table__preview-nav.is-prev {
  left: 0.5rem;
}

.hayden-comparison-table__preview-nav.is-next {
  right: 0.5rem;
}

.hayden-comparison-table__preview-counter {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--comparison-border, #c9d0d5);
  border-radius: 999px;
  background: var(--hb-bg-color, #f6f7f8);
  color: var(--color-body);
  font-size: 0.7rem;
  line-height: 1;
}

.hayden-comparison-table__preview-caption {
  margin: 0;
  padding: 0.75rem 3rem 0.65rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--comparison-table-body, var(--color-body));
  border-bottom: 1px solid var(--comparison-border, #c9d0d5);
  background: var(--hb-bg-color, #f6f7f8);
}

.hayden-comparison-table__preview-caption[hidden] {
  display: none !important;
}

.hayden-comparison-table__preview-image {
  display: block;
  width: 100%;
  max-height: calc(86vh - 3rem);
  height: auto;
  object-fit: contain;
}

.hayden-comparison-table__preview-video {
  display: block;
  width: 100%;
  max-height: calc(86vh - 3rem);
  height: auto;
  background: #000;
}

html.hayden-comparison-preview-open {
  overflow: hidden;
}

.hayden-comparison-table__value {
  text-align: center;
  font-size: inherit;
  line-height: 1;
  color: var(--comparison-check, currentColor);
}

.hayden-comparison-table__value .components-base-control,
.hayden-comparison-table__value .components-text-control__input {
  margin-bottom: 0;
}

.hayden-comparison-table__cell-state,
.hayden-comparison-table__cell-label,
.hayden-comparison-table__cell-details {
  margin: 0;
}

.hayden-comparison-table__cell-label {
  margin-top: 0.4rem;
}

.hayden-comparison-table__cell-details {
  margin-top: 0.35rem;
}

.hayden-comparison-table__cell-details textarea {
  min-height: 72px !important;
}

.hayden-comparison-table__value-icon,
.hayden-comparison-table__value-limited,
.hayden-comparison-table__value-none {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.hayden-comparison-table__value-icon {
  color: var(--comparison-check, currentColor);
}

.hayden-comparison-table__value-limited {
  color: var(--comparison-check, currentColor);
}

.hayden-comparison-table__value-none {
  opacity: 0.45;
}

.hayden-comparison-table__value-label {
  display: block;
  margin-top: 0.25rem;
  font-size: inherit;
  line-height: 1.25;
  font-weight: 600;
}

.hayden-comparison-table__value-details {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  text-align: left;
  list-style: disc;
  font-size: inherit;
  line-height: 1.25;
}

.hayden-comparison-table__value-details li + li {
  margin-top: 0.2rem;
}

.hayden-comparison-table__value-details a {
  text-decoration: underline;
}

.hayden-comparison-table__service-editor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hayden-comparison-table__tooltip-input {
  margin-top: 0.5rem;
}

.hayden-comparison-table__editor-tips {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
  opacity: 0.85;
}

.hayden-comparison-table__tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.35rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  position: relative;
}

.hayden-comparison-table__tooltip-trigger:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.hayden-comparison-table__tooltip-trigger[data-tooltip]:hover::after,
.hayden-comparison-table__tooltip-trigger[data-tooltip]:focus::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 30;
  left: 0;
  bottom: calc(100% + 8px);
  transform: none;
  min-width: 140px;
  max-width: min(260px, calc(100vw - 2rem));
  padding: 0.45rem 0.6rem;
  border-radius: 0.35rem;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.hayden-comparison-table__tooltip-trigger[data-tooltip]:hover::before,
.hayden-comparison-table__tooltip-trigger[data-tooltip]:focus::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  bottom: calc(100% + 2px);
  transform: none;
  border: 6px solid transparent;
  border-top-color: #111;
}

.hayden-comparison-table__check {
  color: var(--comparison-check, currentColor);
  font-weight: 700;
}

.hayden-comparison-table__empty {
  opacity: 0.45;
}

.hayden-comparison-table__cards {
  display: none;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hayden-comparison-table__card {
  border: 1px solid var(--comparison-border, #c9d0d5);
  background: var(--comparison-table-bg, var(--hb-bg-color, transparent));
}

.hayden-comparison-table__card-title {
  margin: 0;
  padding: 1.5rem 1rem 0.5rem;
  text-align: center;
  color: var(--comparison-table-heading, var(--color-headings));
}

.hayden-comparison-table__card-price {
  margin: 0;
  padding: 0 1rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--comparison-table-heading, var(--color-headings));
}

.hayden-comparison-table__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--comparison-table-body, var(--color-body));
}

.hayden-comparison-table__card-list > li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--comparison-border, #c9d0d5);
}

.hayden-comparison-table__card-list > li .hayden-comparison-table__value-label,
.hayden-comparison-table__card-list > li .hayden-comparison-table__value-details {
  flex: 0 0 100%;
  width: 100%;
}

.hayden-comparison-table__card-list > li:nth-child(odd) {
  background: var(--comparison-stripe, #b9dddd);
}

@media (max-width: 900px) {
  .hayden-comparison-table__desktop-wrap {
    display: none;
  }

  .hayden-comparison-table__cards {
    display: grid;
  }
}

.hayden-comparison-table__heading {
  font-size: var(--h2-font-size-mobile);
}

.hayden-comparison-table h1.hayden-comparison-table__heading {
  font-size: var(--h1-font-size-mobile);
}

.hayden-comparison-table h2.hayden-comparison-table__heading {
  font-size: var(--h2-font-size-mobile);
}

.hayden-comparison-table h3.hayden-comparison-table__heading {
  font-size: var(--h3-font-size-mobile);
}

.hayden-comparison-table__intro,
.hayden-comparison-table__table,
.hayden-comparison-table__card-list {
  font-size: var(--body-font-size-mobile);
}

.hayden-comparison-table.hayden-type--heading-sm .hayden-comparison-table__heading { font-size: var(--text-sm); }
.hayden-comparison-table.hayden-type--heading-base .hayden-comparison-table__heading { font-size: var(--text-sm); }
.hayden-comparison-table.hayden-type--heading-lg .hayden-comparison-table__heading { font-size: var(--text-base); }
.hayden-comparison-table.hayden-type--heading-xl .hayden-comparison-table__heading { font-size: var(--text-lg); }
.hayden-comparison-table.hayden-type--heading-2xl .hayden-comparison-table__heading { font-size: var(--text-xl); }
.hayden-comparison-table.hayden-type--heading-3xl .hayden-comparison-table__heading { font-size: var(--text-2xl); }
.hayden-comparison-table.hayden-type--heading-4xl .hayden-comparison-table__heading { font-size: var(--text-3xl); }

.hayden-comparison-table.hayden-type--body-sm .hayden-comparison-table__intro { font-size: var(--text-sm); }
.hayden-comparison-table.hayden-type--body-base .hayden-comparison-table__intro { font-size: var(--text-sm); }
.hayden-comparison-table.hayden-type--body-lg .hayden-comparison-table__intro { font-size: var(--text-base); }
.hayden-comparison-table.hayden-type--body-xl .hayden-comparison-table__intro { font-size: var(--text-lg); }
.hayden-comparison-table.hayden-type--body-2xl .hayden-comparison-table__intro { font-size: var(--text-xl); }
.hayden-comparison-table.hayden-type--body-3xl .hayden-comparison-table__intro { font-size: var(--text-2xl); }
.hayden-comparison-table.hayden-type--body-4xl .hayden-comparison-table__intro { font-size: var(--text-3xl); }

.hayden-comparison-table.hayden-type--table-sm .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-sm .hayden-comparison-table__card-list { font-size: var(--text-sm); }

.hayden-comparison-table.hayden-type--table-base .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-base .hayden-comparison-table__card-list { font-size: var(--text-sm); }

.hayden-comparison-table.hayden-type--table-lg .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-lg .hayden-comparison-table__card-list { font-size: var(--text-base); }

.hayden-comparison-table.hayden-type--table-xl .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-xl .hayden-comparison-table__card-list { font-size: var(--text-lg); }

.hayden-comparison-table.hayden-type--table-2xl .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-2xl .hayden-comparison-table__card-list { font-size: var(--text-xl); }

.hayden-comparison-table.hayden-type--table-3xl .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-3xl .hayden-comparison-table__card-list { font-size: var(--text-2xl); }

.hayden-comparison-table.hayden-type--table-4xl .hayden-comparison-table__table,
.hayden-comparison-table.hayden-type--table-4xl .hayden-comparison-table__card-list { font-size: var(--text-3xl); }

@media (min-width: 768px) {
  .hayden-comparison-table h1.hayden-comparison-table__heading {
    font-size: var(--h1-font-size-desktop);
  }

  .hayden-comparison-table h2.hayden-comparison-table__heading {
    font-size: var(--h2-font-size-desktop);
  }

  .hayden-comparison-table h3.hayden-comparison-table__heading {
    font-size: var(--h3-font-size-desktop);
  }

  .hayden-comparison-table__intro,
  .hayden-comparison-table__table,
  .hayden-comparison-table__card-list {
    font-size: var(--body-font-size-desktop);
  }

  .hayden-comparison-table.hayden-type--heading-sm .hayden-comparison-table__heading { font-size: var(--text-sm); }
  .hayden-comparison-table.hayden-type--heading-base .hayden-comparison-table__heading { font-size: var(--text-base); }
  .hayden-comparison-table.hayden-type--heading-lg .hayden-comparison-table__heading { font-size: var(--text-lg); }
  .hayden-comparison-table.hayden-type--heading-xl .hayden-comparison-table__heading { font-size: var(--text-xl); }
  .hayden-comparison-table.hayden-type--heading-2xl .hayden-comparison-table__heading { font-size: var(--text-2xl); }
  .hayden-comparison-table.hayden-type--heading-3xl .hayden-comparison-table__heading { font-size: var(--text-3xl); }
  .hayden-comparison-table.hayden-type--heading-4xl .hayden-comparison-table__heading { font-size: var(--text-4xl); }

  .hayden-comparison-table.hayden-type--body-sm .hayden-comparison-table__intro { font-size: var(--text-sm); }
  .hayden-comparison-table.hayden-type--body-base .hayden-comparison-table__intro { font-size: var(--text-base); }
  .hayden-comparison-table.hayden-type--body-lg .hayden-comparison-table__intro { font-size: var(--text-lg); }
  .hayden-comparison-table.hayden-type--body-xl .hayden-comparison-table__intro { font-size: var(--text-xl); }
  .hayden-comparison-table.hayden-type--body-2xl .hayden-comparison-table__intro { font-size: var(--text-2xl); }
  .hayden-comparison-table.hayden-type--body-3xl .hayden-comparison-table__intro { font-size: var(--text-3xl); }
  .hayden-comparison-table.hayden-type--body-4xl .hayden-comparison-table__intro { font-size: var(--text-4xl); }

  .hayden-comparison-table.hayden-type--table-sm .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-sm .hayden-comparison-table__card-list { font-size: var(--text-sm); }

  .hayden-comparison-table.hayden-type--table-base .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-base .hayden-comparison-table__card-list { font-size: var(--text-base); }

  .hayden-comparison-table.hayden-type--table-lg .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-lg .hayden-comparison-table__card-list { font-size: var(--text-lg); }

  .hayden-comparison-table.hayden-type--table-xl .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-xl .hayden-comparison-table__card-list { font-size: var(--text-xl); }

  .hayden-comparison-table.hayden-type--table-2xl .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-2xl .hayden-comparison-table__card-list { font-size: var(--text-2xl); }

  .hayden-comparison-table.hayden-type--table-3xl .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-3xl .hayden-comparison-table__card-list { font-size: var(--text-3xl); }

  .hayden-comparison-table.hayden-type--table-4xl .hayden-comparison-table__table,
  .hayden-comparison-table.hayden-type--table-4xl .hayden-comparison-table__card-list { font-size: var(--text-4xl); }
}
