:root {
	/* 	--simbol-color: #21724cf0; */
	/* 	--simbol-hover-color: #21724ca3; */
}

.responsive-table {
	width: var(--table-width);
	margin-bottom: 1.5em;
	font-size: var(--font-size-bsm) !important;
}

.responsive-table thead {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
	font-size: var(--font-size-bsm) !important;
	font-weight: bold !important;
}

.responsive-table thead th {
	background-color: var(--simbol-color);
	border: 1px solid var(--simbol-color);
	font-weight: normal;
	text-align: center;
	color: white;
	position: relative;
}

.responsive-table thead th:first-of-type {
	/* 	text-align: left; */
}

.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
	display: block;
	padding: 0;
	text-align: left;
	white-space: normal;
}

.responsive-table th,
.responsive-table td {
	padding: .5em;
	vertical-align: middle;
}

.responsive-table caption {
	margin-bottom: 1em;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

.responsive-table tfoot {
	font-size: .8em;
	font-style: italic;
}

.responsive-table tbody tr {
	margin-bottom: 1em;
	border: 2px solid var(--simbol-color);
	pointer-events: none;
}

.responsive-table tbody tr.me {
	background-color: var(--simbol-hover-color) !important;
}

.responsive-table tbody tr:last-of-type {
	margin-bottom: 0;
}

.responsive-table tbody th[scope="row"] {
	background-color: var(--simbol-color);
	color: white;
	text-align: right;
}

.responsive-table tbody th[scope="row"]>div {
	display: block;
	pointer-events: auto;
}

.responsive-table tbody th[scope="row"]>div:hover {
	opacity: 0.9;
	cursor: pointer;
}


.responsive-table tbody td[data-type=currency] {
	text-align: right;
}

.responsive-table tbody td[data-title]::before {
	content: attr(data-title);
	float: left;
	font-size: .8em;
	color: rgba(94, 93, 82, 0.75);
}

.responsive-table tbody td {
	text-align: right;
	border-bottom: 1px solid var(--simbol-color);
}


.responsive-table tbody th[scope="row"]>div {
	display: none;
}

.responsive-table {
	font-size: .9em;
	border-collapse: collapse;
}

.responsive-table thead {
	position: relative;
	clip: auto;
	height: auto;
	width: auto;
	overflow: auto;
}

.responsive-table tr {
	display: table-row;
}

.responsive-table th,
.responsive-table td {
	display: table-cell;
	padding: .5em;
}

.responsive-table caption {
	font-size: 1.5em;
}

.responsive-table tbody {
	display: table-row-group;
}

.responsive-table tbody tr {
	display: table-row;
	border-width: 1px;
	pointer-events: auto;
}

.responsive-table tbody tr:nth-of-type(even) {
	background-color: rgba(94, 93, 82, 0.1);
}

.responsive-table tbody th[scope="row"] {
	background-color: transparent;
	color: #5e5d52;
	text-align: left;
}

.responsive-table tbody td {
	text-align: center;
	border-bottom: none;
}

.responsive-table tbody td[data-title]::before {
	content: none;
}

.responsive-table tbody tr:not(.nohover):hover {
	cursor: pointer;
	background-color: var(--simbol-hover-color) !important;
}

.pagging {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pagging>div:hover {
	cursor: pointer;
}

.pagging>div {
	color: black;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
}

.pagging>div.pagingSelected {
	background-color: var(--simbol-color);
	color: white;
	border-radius: 5px;
}

.pagging>div:hover:not(.pagingSelected) {
	background-color: #ddd;
	border-radius: 5px;
}



/* list sort */
.responsive-table .sort {
	--opacity-up: 0.25;
	--opacity-dn: 0.25;

	padding-right: 12px !important;
	cursor: pointer;
}

.responsive-table .sort.asc {
	--opacity-up: 0.25;
	--opacity-dn: 1;
}

.responsive-table .sort.desc {
	--opacity-up: 1;
	--opacity-dn: 0.25;
}

.responsive-table .sort::before,
.responsive-table .sort::after {
	position: absolute;

	content: "";
	right: 5px;
	width: 0px;
	height: 0px;
	border-color: inherit;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.responsive-table .sort::before {
	border-bottom: 5px solid;
	opacity: var(--opacity-up);
	margin-bottom: 8px;
}

.responsive-table .sort::after {
	border-top: 5px solid;
	opacity: var(--opacity-dn);
	margin-top: 10px;
}