.root {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-40);
}

.table {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.headers {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: var(--border-width-sm) solid var(--border-color-light);
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: var(--spacing-24) 0;
    gap: var(--spacing-16);
    border-bottom: var(--border-width-sm) solid var(--border-color-light);
}

.row {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: var(--spacing-8);
}

.cell {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cellHighlighted {
    padding: var(--spacing-24) var(--spacing-8) var(--spacing-16);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    background:
        linear-gradient(180deg, rgba(143, 161, 205, 0) 0%, rgba(143, 161, 205, 0.4) 100%), var(--color-bg-fill-primary);
}

.companyLogo {
    height: 20px;
}

.iconCell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: var(--border-radius-full);
}

.iconCellHighlighted {
    color: var(--color-text-primary-inverted);
    background:
        linear-gradient(180deg, rgba(143, 161, 205, 0.3) 0%, rgba(143, 161, 205, 0) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%),
        var(--color-bg-fill-primary);
}

.icon {
    width: 20px;
    height: 20px;
}

@media screen and (width <= 768px) {
    .root {
        display: flex;
    }
}
