
.rTable-table>tbody {
    display:block;
    height:100%;
    overflow:auto;
	overflow-y:scroll;
}
.rTable-table>tbody>tr>td{
	word-break:break-word;
}
.rTable-table>thead>th{
	white-space: nowrap;
}
.rTable-table>tbody>tr>td,.rTable-table>thead>th{
	background-color: white;
}
.rTable-table>tbody>tr>td.frozen-left,.rTable-table>thead>th.frozen-left{
	position: absolute;
	left: 0;
	background-color: #eee;
    border-right: 1px solid #ddd;
}
.rTable-table>tbody>tr>td.frozen-right,.rTable-table>thead>th.frozen-right{
	position: absolute;
	right: 0;
	background-color: #eee;
    border-left: 1px solid #ddd;
}
.rTable-table>thead, .rTable-table>tbody tr {
    display:table;
    width:100%;
    table-layout:fixed;
}
.rTable-table{
	vertical-align: middle;
}
.rTable-table>thead {
    width: calc( 100% - 1em )
}

.rTable-labelsmallscreen{
	display:none;
	font-weight: bold;
}

/* Small Screens */
@media (max-width: 992px) {/*768*/
	.rTable-table>thead {
		display: none;
	}
	.rTable-table>tbody>tr>td.frozen-left,.rTable-table>thead>th.frozen-left,.rTable-table>tbody>tr>td.frozen-right,.rTable-table>thead>th.frozen-right{
		position: static;
	}
	
	.rTable-table>tbody>tr>td {
		display: table;
		table-layout: fixed;
		width: 100%!important;
		white-space: normal;
		text-align:left;
	}
	.rTable-table>tbody>tr>td:nth-child(1) {
		border-top: none;
	}
	.rTable-table>tbody>tr>td>*{
		display:table-cell;
		margin:2px;
	}
	.rTable-table>tbody>tr{
		border-bottom: 1px solid black;
		padding:0.5rem;
		display: block;
	}
	.rTable-table>tbody>tr:last-child {
		border:none;
	}
}