/** Shopify CDN: Minification failed

Line 18:13 Expected identifier but found whitespace
Line 18:15 Unexpected "{"
Line 18:24 Expected ":"
Line 58:13 Expected identifier but found whitespace
Line 58:15 Unexpected "{"
Line 58:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:compare-table (INDEX:4) */
.compare-table-section {
  padding: 60px 20px;
  background: {{ section.settings.bg_color }};
}

.compare-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 700px;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 22px 18px;
  text-align: center;
  font-size: 28px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  width: 33%;
  font-size: 18px;
}

.compare-highlight {
  background: {{ section.settings.highlight_bg }};
  color: #fff;
}

.compare-table th {
  font-weight: 600;
}

.compare-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.compare-check {
  color: #27c93f;
  font-size: 34px;
  font-weight: bold;
}

.compare-cross {
  color: #a11717;
  font-size: 34px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {

  .compare-table-title {
    font-size: 28px;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px 12px;
    font-size: 22px;
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    font-size: 15px;
    width: 45%;
  }

  .compare-logo {
    max-width: 120px;
  }

  .compare-check,
  .compare-cross {
    font-size: 28px;
  }
}
/* END_SECTION:compare-table */