table {
	border-spacing: 0;
	border-collapse: collapse;
}

.table-wrapper {
	overflow: auto;
	padding-bottom: 10px;
	box-sizing: border-box;
}

.table-wrapper.with-pagination {
	margin-bottom: 16px;
}

.table-wrapper .table-ui {
	border-collapse: collapse;
	box-sizing: border-box;
	text-align: left;
	width: 100%;
}

.table-wrapper .table-ui thead th {
	padding: 10px 16px;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	background: #f4f9fd;
	color: #2188d9;
	height: unset;
}

.table-wrapper .table-ui thead th .sort-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.table-wrapper .table-ui tbody tr {
	cursor: pointer;
	z-index: 0;
	position: relative;
}

.table-wrapper .table-ui tbody tr:hover {
	z-index: 1;
	box-shadow: 0 4px 10px rgba(6, 12, 27, 0.15);
}

.table-wrapper .table-ui tbody tr.with-action td:last-of-type {
	padding-right: 36px;
}

.table-wrapper .table-ui tbody tr.with-action:hover td:last-of-type::after {
	font-family: 'Material Icons';
	content: "keyboard_arrow_right";
	line-height: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #828282;
	position: absolute;
	width: 20px;
	height: 20px;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 10px;
	background: #f2f2f2;
	text-align: center;
}

.table-wrapper .table-ui tbody tr td {
	padding: 8px 16px;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	background: #fff;
	color: #828282;
	height: unset;
	box-shadow: inset 0px -1px 0px #ececed;
}

.table-wrapper .table-ui tbody tr td .additional-groups {
	color: #2188d9;
}

.table-wrapper .table-ui.sticky-header thead th {
	position: sticky;
	z-index: 1;
	top: 0;
}