:root {
  --tb-text: #2f3747;
  --tb-muted: #7d8592;
  --tb-line: #cfd4db;
  --tb-line-strong: #aeb4bd;
  --tb-head: #2b3444;
  --tb-accent: #cf2b1e;
  --tb-bg: #ffffff;
  --tb-alt: #f7f8fa;
  --tb-radius: 14px;
}

.disto-comparison {
  margin: 28px 0;
}

.disto-comparison__intro h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
  color: var(--tb-text);
}

.disto-comparison__intro p {
  margin: 0 0 18px;
  font-size: 16px;
  color: #5f6672;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--tb-line);
  border-radius: var(--tb-radius);
  background: var(--tb-bg);
}

.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--tb-text);
  background: var(--tb-bg);
}

.comparison-table th,
.comparison-table td {
  padding: 10px 12px;
  border-right: 1px solid var(--tb-line);
  border-bottom: 1px solid var(--tb-line);
  vertical-align: top;
  background: var(--tb-bg);
}

.comparison-table tr > *:first-child {
  border-left: 1px solid var(--tb-line);
}

.comparison-table thead th {
  background: var(--tb-head);
  color: #fff;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.comparison-table thead th.col-group,
.comparison-table thead th.col-feature {
  text-align: left;
}

.comparison-table tbody th[scope="rowgroup"] {
  width: 18%;
  color: var(--tb-accent);
  font-weight: 700;
  text-align: left;
  background: #fff;
}

.comparison-table tbody th[scope="row"] {
  width: 34%;
  font-weight: 400;
  text-align: left;
  background: #fff;
}

.comparison-table tbody td {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.comparison-table tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) th[scope="row"] {
  background: var(--tb-alt);
}

.comparison-table tbody tr.section-row > * {
  border-top: 2px solid var(--tb-line-strong);
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  vertical-align: middle;
}

.dot--yes {
  background: var(--tb-text);
}

.dot--no {
  background: var(--tb-muted);
}

.cell-note {
  margin-left: 2px;
  font-weight: 700;
  color: var(--tb-text);
}

.comparison-notes {
  margin-top: 8px;
  font-size: 12px;
  color: #5f6672;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .disto-comparison__intro h2 {
    font-size: 22px;
  }

  .disto-comparison__intro p {
    font-size: 15px;
  }

  .comparison-table {
    min-width: 680px;
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 9px;
  }

  .comparison-table tbody th[scope="rowgroup"] {
    width: 24%;
  }

  .comparison-table tbody th[scope="row"] {
    width: 38%;
  }
}