.section-comparison-table{
    background: rgb(var(--color-background));
    color: rgba(var(--color-text));
}
.section-comparison-table .header {
    margin: 0px auto 30px;
}
.section-comparison-table .header .block-heading{
    text-align: center; 
}

.section-comparison-table table {
    max-width: 790px;
    margin: auto;
    width:100%;
    border-collapse: collapse;
}
.section-comparison-table  table td, table th {
  border: none; 
}
.section-comparison-table table tr {
    border-top: 1px solid rgb(var(--color-entry-line));
    border-bottom: 1px solid rgb(var(--color-entry-line));
}

.section-comparison-table table tr:last-child {
    border-bottom: 1px solid rgb(var(--color-entry-line));

}
.section-comparison-table table tr:first-child {
    border-top: 0px
}
tr.c-table-header td:nth-child(2), tr.compare-row td:nth-child(2) {
    background: rgb(var(--color-background));
    color: rgba(var(--color-text));
    text-align:center
}
tr.c-table-header td:nth-child(2), tr.c-table-header td:nth-child(3){
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
tr.c-table-header td:nth-child(3){
    color: rgba(var(--color-light-text));
}
tr.c-table-header td, tr.compare-row td{
    padding: 20px 10px;
}
tr.c-table-header td:nth-child(2){
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
tr.compare-row td:nth-child(1){
    font-size: 20px;
    font-weight: 600;
}
tr.compare-row td:nth-child(2) span{
    background: rgba(var(--color-button-background));
}
tr.compare-row td:nth-child(3) span{
    background: rgba(var(--color-button-secondary-background));
}
tr.compare-row td:nth-child(2) span, tr.compare-row td:nth-child(3) span{
    height: 32px;
    width: 32px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: auto;
    
}
tr.compare-row td:nth-child(2) span svg path{
    stroke: rgb(var(--color-button-text));
}
tr.compare-row td:nth-child(3) span svg path{
    stroke: rgb(var(--color-button-secondary-text));
}
@media screen and (max-width: 767px){
    .section-comparison-table .header *{
        font-size: 33px !important;
    }
}