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

.cells-freeze{
    /*box*/
    max-width: 100%;
    overflow-x:auto;
	margin-bottom:20px;
}

/*--------------------------------------------------------------------------*\
        scrollbar
\*--------------------------------------------------------------------------*/

.cells-freeze::-webkit-scrollbar {
	/*box*/
	height: 9px;

	/*background*/
	background-size: 9px;
	background-color: transparent;
}

.cells-freeze::-webkit-scrollbar-thumb {
	/*border*/
	border-radius: 2px;

	/*background*/
	background-color: var(--c-primary-4);
}

.cells-freeze::-webkit-scrollbar-thumb:hover {
	/*background*/
	background-color: var(--c-primary-3);
}