table.comp-table {
    border-collapse: collapse;
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow:hidden;
}

tr.table-row {
    border: 1px solid #fff;
    border-radius: 50px !important;
    display: block;
    width: 99%;
    transition: 0.2s linear all;
    margin: 10px auto;
    padding:10px 0px;
}

thead, tbody {
  width: 100%;
  display: block;
}

tr.table-row.highlight {
    background: #fff;
}

tr.table-row.highlight td {
    color: #164193;
}

td.info-value p {
    font-size: 18px;
    margin: 0 auto;
}

td.info-value p span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px;
    line-height: 1em;
}

table.comp-table th, table.comp-table td {
    color: #fff;
    font-size: 13px;
    padding: 0px 0px;
    text-align: center;
    line-height: 1.3em;
    font-weight: 700;
    min-width: 100px;
}

table.comp-table th span svg, table.comp-table td span svg {
    fill: #333;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
}

.comparative-table 
    width: 100%;
}

table.comp-table tr.highlight td span svg {
    fill: #fff;
    background: #44E5A2;
}

/* Define a largura da primeira coluna */
table.comp-table th:first-child, table.comp-table td:first-child {
  width: 40%;
  text-align:left;
}

/* Define a largura das outras colunas */
table.comp-table th:not(:first-child), table.comp-table td:not(:first-child) {
    width: 20%;
    text-align: center;
}

tr.table-row.highlight td:first-child, tr.table-row td:first-child {
    text-align: left !important;
    padding-left:20px;
}

img.icon-table {
    max-width: 50px;
    width: fit-content;
    display: flex;
    margin: 0 auto;
}

p.legend-table {
    color: #ffffff70;
    font-size: 11px;
    width: 300px;
    line-height: 1.2em !important;
    position: relative;
    margin: 10px 50px;
}

table.comp-table td img {
    max-width: 120px;
}

/* Torna a tabela responsiva */
@media screen and (max-width: 900px) {
  tr.table-row {
    padding: 10px 20px;
  }
  
  table.comp-table th:first-child, table.comp-table td:first-child {
  width: 100px;
  text-align:left;
}
  
    table.comp-table {
        width: 100%;
      overflow:hidden;
    }
    
  td.info-value p {
    font-size: 16px;
    margin: 0 auto;
}
  
  .comparative-table {
    /*overflow-x: scroll;*/
    width: 100%;
}
  
  p.legend-table {
    margin: 10px 20px;
}
  
td.mobile-none, th.mobile-none {
    display: none !important;
}
  
  table.comp-table td img {
    max-width: 80px;
}
  
  thead, tbody {
    width: calc(100% - 42px);
    display: block;
}
}
