.plan-feature {
    &.style1 {
        .plan-feature__list {
            list-style: none;
            margin-left: 0;
            margin-bottom: 0;
            li {
                display: flex;
                justify-content: space-between;
                align-items: center;
                .text-icon {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    line-height: 1.3;
                    font-size: 15px;
                    color: var(--titleColor);
                    svg {
                        width: 14px;
                        height: 10px;
                    }
                    i {
                        font-size: 14px;
                    }
                }
                .tolltip {
                    font-size: 16px;
                    cursor: pointer;
                }
            }
        }
    }
    &.style2 {
        .plan-feature__list {
            list-style: none;
            margin-left: 0;
            li {
                display: flex;
                justify-content: space-between;
                align-items: center;
                .text-icon {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    line-height: 1.2;
                    font-weight: 600;
                    font-family: var(--titleFont);
                    svg {
                        width: 16px;
                        height: 12px;
                    }
                    i {
                        font-size: 16px;
                    }
                }
                .tolltip {
                    font-size: 16px;
                    cursor: pointer;
                }
            }
        }
    }
}