.algert-comparison-table-widget table {
  --table-primary-color: var(--color-primary);
}
.algert-comparison-table-widget table > :not(caption) > * > *, .algert-comparison-table-widget table > :not(:first-child) {
  border: none;
}
.algert-comparison-table-widget table thead tr td {
  padding: 3rem 1.5rem 2rem;
  vertical-align: top;
  text-align: center;
}
.algert-comparison-table-widget table thead tr td:nth-child(2) {
  border-top: 4px solid var(--table-primary-color);
  border-left: 4px solid var(--table-primary-color);
  border-right: 4px solid var(--table-primary-color);
}
.algert-comparison-table-widget table thead tr td:nth-child(3) {
  position: relative;
  background-color: var(--table-primary-color);
}
.algert-comparison-table-widget table thead tr td:nth-child(3):before {
  --height: 24px;
  content: "";
  width: calc(100% + 4px);
  height: var(--height);
  position: absolute;
  background-color: var(--table-primary-color);
  display: block;
  left: -4px;
  top: calc(var(--height) * -1);
}
.algert-comparison-table-widget table tbody tr td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.algert-comparison-table-widget table tbody tr td:nth-child(1) {
  padding-left: 0;
  padding-right: 2rem;
}
.algert-comparison-table-widget table tbody tr td:not(:first-child) {
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.algert-comparison-table-widget table tbody tr td:nth-child(2) {
  border-left: 4px solid var(--table-primary-color);
  border-right: 4px solid var(--table-primary-color);
}
.algert-comparison-table-widget table tbody tr td:nth-child(3) {
  background-color: var(--table-primary-color);
}
.algert-comparison-table-widget table tbody tr:last-child td {
  padding-bottom: 2rem;
}
.algert-comparison-table-widget table tbody tr:last-child td:nth-child(2) {
  border-bottom: 4px solid var(--table-primary-color);
}
.algert-comparison-table-widget table tbody tr:last-child td:nth-child(3) {
  position: relative;
}
.algert-comparison-table-widget table tbody tr:last-child td:nth-child(3):after {
  --height: 24px;
  content: "";
  width: calc(100% + 4px);
  height: var(--height);
  position: absolute;
  background-color: var(--table-primary-color);
  display: block;
  left: -4px;
  bottom: calc(var(--height) * -1);
}
.algert-comparison-table-widget .mobile-vs-table .header {
  padding-top: 1em;
  padding-bottom: 1em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2em;
  align-items: center;
  position: sticky;
  top: 70px;
  background-color: #1b2064;
}
.algert-comparison-table-widget .mobile-vs-table .header span {
  text-align: center;
}
.algert-comparison-table-widget .mobile-vs-table .header + div {
  margin-top: 1em;
}
.algert-comparison-table-widget .mobile-vs-table .item {
  padding: 1.5em;
  box-shadow: var(--box-shadow);
  text-align: center;
  background-color: rgba(120, 43, 247, 0.4);
}
.algert-comparison-table-widget .mobile-vs-table .item:not(:last-child) {
  margin-bottom: 1.5em;
}
.algert-comparison-table-widget .mobile-vs-table .item .content-wrapper {
  margin-top: 1em;
  display: flex;
  column-gap: 0.75em;
}
.algert-comparison-table-widget .mobile-vs-table .item .content-wrapper .divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}
.algert-comparison-table-widget .mobile-vs-table .item .content-wrapper .content {
  flex: 1;
}
