.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading {
	align-items: center;
	background: var(--app-backgound);
	color: var(--app-body-text);
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	max-width: 100%;
	z-index: 1000;
	transition: visibility 0s, opacity 0.15s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.open {
	visibility: visible;
	opacity: 1;
	margin-bottom: -30px !important;
	position: absolute;
	height: 40px !important;
}

.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot,
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after,
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
	content: "";
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-name: loading;
	background: var(--app-body-text) ;
	color: var(--app-body-text);
	border-radius: 50%;
	display: block;
	height: 5px;
	margin: 0 4px;
	opacity: 0;
	width: 5px;
}

.list-view {
	--bs-table-color: var(--md-sys-color-on-background);
	--bs-table-bg: var(--md-sys-color-background);
	--bs-table-border-color: var(--md-sys-color-outline);
	--bs-table-accent-bg: transparent;
	--bs-table-striped-color: var(--bs-body-color);
	--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-color: var(--bs-body-color);
	--bs-table-active-bg: rgba(0, 0, 0, 0.1);
	--bs-table-hover-color: var(--bs-body-color);
	--bs-table-hover-bg: rgba(0, 0, 0, 0.075);

	background-color: var(--bs-table-bg);
	width: 100%;
	margin-bottom: 1rem;
	color: var(--bs-table-color);
	vertical-align: top;
	border: none;
}

.list-view tbody td {
	border-radius: 8px !important;
	padding: 8px;
	box-shadow: 0 0 5px 5px #4f4e4e73;
	display: flex;
}

.list-view tbody tr {
	padding: 8px;
	border-radius: 8px;
}

.list-view tbody tr.no-records-found td {
	border: none;
	padding: 0px;
	box-shadow: none;
	display: flex;
	justify-content: center;
	color: var(--md-sys-color-error);
}