.whippet-comparison-table {
  --standard-background-color: transparent;
  --standard-text-color: inherit;
  --standard-border-color: #CCD4E0;
  --highlight-background-color: var(--e-global-color-19e200, #E5E9EF);
  --highlight-text-color: inherit;
  --highlight-border-color: #CCD4E0;
  /**
   * Overflow
   */
}
.whippet-comparison-table table {
  /**
   * Reset Elementor styles
   */
  margin: 0;
  font-size: 1rem;
  table-layout: fixed;
  width: 100%;
  min-width: 100%;
  /**
   * Highlight
   */
  /**
   * Borders
   */
}
.whippet-comparison-table table td,
.whippet-comparison-table table th {
  border: none;
  border-block-start: none !important;
  padding: 10px;
  vertical-align: middle;
}
.whippet-comparison-table table thead tr th {
  min-width: 150px;
}
.whippet-comparison-table table tbody tr td,
.whippet-comparison-table table tbody tr th {
  background: none;
  text-align: center;
}
.whippet-comparison-table table tbody tr th.highlight,
.whippet-comparison-table table tbody tr td.highlight,
.whippet-comparison-table table thead tr th.highlight,
.whippet-comparison-table table thead tr td.highlight {
  background: var(--highlight-background-color);
  color: var(--highlight-text-color);
  border-color: var(--highlight-border-color) !important;
}
.whippet-comparison-table table thead th {
  border-radius: 4px 4px 0 0;
}
.whippet-comparison-table table tbody tr:last-child td {
  border-radius: 0 0 4px 4px;
}
.whippet-comparison-table table tbody tr td,
.whippet-comparison-table table tbody tr th,
.whippet-comparison-table table thead tr td,
.whippet-comparison-table table thead tr th {
  background: var(--standard-background-color);
  color: var(--standard-text-color);
}
.whippet-comparison-table table tbody tr td {
  border-top: 1px solid var(--standard-border-color) !important;
}
.whippet-comparison-table .table-scroller {
  overflow-y: hidden;
}
.whippet-comparison-table .sentinel {
  position: absolute;
  top: 0;
  right: 50%;
  width: 1px;
  height: 1px;
}
.whippet-comparison-table th:has(.sentinel) {
  position: relative;
}
.whippet-comparison-table:after {
  content: "";
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, white 100%);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.whippet-comparison-table .instruction {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}
.whippet-comparison-table.overflow:not(.scrolled):after {
  opacity: 1;
  visibility: visible;
}
.whippet-comparison-table.overflow .instruction {
  display: block;
}
