/**
 * Styling for the pricing page features table inner table module.
 */

.table .heading {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-10) var(--spacing-5) var(--spacing-7);
}

.table .heading .icon-box {
    display: none;
}

/* Breakpoint S */
@media screen and (min-width: 0) and (max-width: 768px) {
    .table .heading {
        cursor: pointer;
    }

    .table .heading .icon-box {
        display: inherit;
    }

    .table .table-rows {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-7);
    }

    .table .heading {
        padding-left: 0;
        padding-right: 0;
    }
}
