/*--------------------------------------------------------------------------*\
	Table in table wrapper to freeze first column
\*--------------------------------------------------------------------------*/

.cells-freeze tr>*:first-child{
    /*box*/
    position: -webkit-sticky;
    position: sticky;
    left:0;
    z-index: 2;

    /*border*/
    border-right:1px solid var(--c-tertiary-2);
}