/** Shopify CDN: Minification failed

Line 31:21 Expected identifier but found whitespace
Line 31:23 Unexpected "{"
Line 31:32 Expected ":"
Line 55:19 Expected identifier but found whitespace
Line 55:21 Unexpected "{"
Line 55:30 Expected ":"
Line 86:13 Expected identifier but found "{"
Line 86:14 Unexpected "{"
Line 86:23 Expected ":"

**/
.comparison-table {
  width: 100%;
  max-width: 600px;
  margin: auto;
  border-spacing: 0;

}

.block_text_add {
    max-width: 500px;
}
.comparison-table th, .comparison-table td {
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    background-color: {{ section.settings.bg_color }};
}
.comparison-table tr:nth-child(1) td:last-child {
  border-top-right-radius: 10px;
}
.comparison-table tr:nth-child(1) td:first-child {
  border-top-left-radius: 10px;
}
.comparison-table th, .comparison-table th:first-child {
  border: none;
  border-radius: 15px 15px 0px 0px;
  background: none;
}

.comparison-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
  border-bottom: 1px solid #ddd;
}
.comparison-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #ddd;
}
  
.comparison-table .highlight {
  background-color: {{ section.settings.highlight_color }};
  font-weight: bold;
  border: none;
  color: white;
}
.check-mark::before {
  content: "\2713";
    color: #007d4d;
    background: #fff;
    border-radius: 50%;
    padding: 3px 5px;
}
.cross-mark::before {
  content: "\2717";
  color: #fff;
  background: #007d4d;
  border-radius: 50%;
  padding: 3px 5px;
}
.comparison-table tr:last-child td:nth-child(2) {
  position: relative;
}

.comparison-table tr:last-child td:nth-child(2)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
  background:{{ section.settings.highlight_color }};
  border-radius: 0px 0px 15px 15px;
}

  