.elementor-widget-cw_comparison_table,
.elementor-widget-cw_comparison_table .elementor-widget-container {
    width: 100%;
}

.cw-ct {
    --cw-ct-total-cols: 4;
    --cw-ct-gap: 6px;
    --cw-ct-cell-min-height: 42px;
    --cw-ct-status-icon-size: 24px;
    --cw-ct-status-border-width: 2px;
    width: 100%;
}

.cw-ct *,
.cw-ct *::before,
.cw-ct *::after {
    box-sizing: border-box;
}

.cw-ct__scroller {
    width: 100%;
    overflow-x: auto;
}

.cw-ct__grid {
    display: grid;
    grid-template-columns: repeat(var(--cw-ct-total-cols), minmax(150px, 1fr));
    grid-auto-rows: minmax(var(--cw-ct-cell-min-height), auto);
    gap: var(--cw-ct-gap);
    width: 100%;
    min-width: 720px;
}

.cw-ct__cell {
    display: flex;
    min-height: var(--cw-ct-cell-min-height);
    align-items: center;
    justify-content: center;
    background: var(--cw-ct-cell-bg, #f2f5f7);
    color: var(--cw-ct-cell-color, #2f3a4a);
    text-align: center;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cw-ct__head-cell,
.cw-ct__feature-head {
    font-weight: 700;
}

.cw-ct__data-cell:hover,
.cw-ct__data-cell:focus-within,
.cw-ct__feature-body:hover,
.cw-ct__feature-body:focus-within,
.cw-ct__feature-head:hover {
    background: var(--cw-ct-cell-hover-bg, var(--cw-ct-cell-bg, #f2f5f7));
    color: var(--cw-ct-cell-hover-color, var(--cw-ct-cell-color, #2f3a4a));
}

.cw-ct__cell-inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cw-ct__feature-cell .cw-ct__cell-inner {
    justify-content: center;
}

.cw-ct__cell-text {
    display: block;
    width: 100%;
    line-height: 1.6;
    word-break: break-word;
}

.cw-ct__status {
    display: inline-flex;
    width: var(--cw-ct-status-icon-size);
    min-width: var(--cw-ct-status-icon-size);
    height: var(--cw-ct-status-icon-size);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: var(--cw-ct-status-border-width) solid currentColor;
    border-radius: 50%;
    background: transparent;
    line-height: 1;
}

.cw-ct__status svg {
    display: block;
    width: 70%;
    height: 70%;
}

.cw-ct__icon-style-filled .cw-ct__status {
    background: currentColor;
}

.cw-ct__icon-style-filled .cw-ct__status svg {
    color: #fff;
}

.cw-ct__status--yes {
    color: #24b36b;
}

.cw-ct__status--no {
    color: #f05a55;
}

@media (max-width: 767px) {
    .cw-ct__grid {
        min-width: 620px;
        grid-template-columns: repeat(var(--cw-ct-total-cols), minmax(130px, 1fr));
    }
}
