html {
	position: relative;
	min-height: 100%;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
}

body {
	padding-top: 0;
	font-family: "Roboto", sans-serif;
}

ul {
	list-style: none;
	padding: 0;
}

.no-select {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.vi-status-block-container {
	display: grid;
	justify-content: space-evenly;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.vi-status-block {
	display: inline-block;
	text-align: center;
}

.vi-status-value {
	font-size: 3em;
	color: #582c83;
	font-weight: bold;
}

.vi-status-value .percent-sign {
	font-size: .7em;
}

.vi-status-label {
	font-size: 1em;
}

.vi-status-block-container.text-dark .vi-status-value, .vi-status-block-container.text-dark .vi-status-block > a {
	color: var(--dark);
}

.vi-status-block-container.text-secondary .vi-status-value, .vi-status-block-container.text-secondary .vi-status-block > a {
	color: var(--secondary);
}

.vi-status-block-container.text-success .vi-status-value, .vi-status-block-container.text-success .vi-status-block > a {
	color: var(--success);
}

.vi-status-block-container.text-danger .vi-status-value, .vi-status-block-container.text-danger .vi-status-block > a {
	color: var(--danger);
}

.vi-status-block > a .vi-status-label {
	border-bottom-style: inset;
	border-bottom-width: thin;
}

.vi-status-block-container.text-small .vi-status-value {
	font-size: 2em;
}

.vi-status-block-container.text-large .vi-status-value {
	font-size: 3em;
}

.vi-status-block-container.text-large .vi-status-label {
	font-size: 1.2em;
}

.vi-fs-small {
	font-size: .8em;
}

div.vi-status-block-container::before, div.vi-status-block-container::after {
	display: none;
}

a.disabled {
	pointer-events: none;
	cursor: default;
}

::placeholder {
	color: var(--light);
	font-style: italic;
}

table.dataTable thead > tr > th {
	padding-left: 15px !important;
	padding-right: 5px !important;
	line-height: 1em;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after {
	left: 0 !important;
	right: auto !important;
	font-size: 0.9em;
}

.table, .table-responsive {
	margin-bottom: 30px;
}

.hidden {
	display: none;
}

.pointer {
	cursor: pointer;
}

.dataTables_info {
	font-size: 12px;
}

.smallTable {
	font-size: 12px;
}

.dataTables_filter input {
	height: 25px;
}

.highcharts-credits {
	display: none;
}

/* Customize DataTable Sorting Icons */
@font-face {
	font-family: "FontAwesome";
	font-weight: normal;
	font-style : normal;
	src : url("libraries/fa_5.12.0.webfonts/fa-solid-900.eot");
	src : url("libraries/fa_5.12.0.webfonts/fa-solid-900.eot") format("embedded-opentype"),
	url("libraries/fa_5.12.0.webfonts/fa-solid-900.woff2") format("woff2"),
	url("libraries/fa_5.12.0.webfonts/fa-solid-900.woff") format("woff"),
	url("libraries/fa_5.12.0.webfonts/fa-solid-900.ttf") format("truetype"),
	url("libraries/fa_5.12.0.webfonts/fa-solid-900.svg#fontawesomeregular") format("svg");
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
	content: '';
	display: none;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
	font-family: FontAwesome;
	content: '\f338';
}

table.dataTable thead .sorting_asc:after {
	content: '\f15e';
	opacity: 1.0;
}

table.dataTable thead .sorting_desc:after {
	content: '\f881';
	opacity: 1.0;
}

table.dataTable.table-sm .sorting:after, table.dataTable.table-sm .sorting_asc:after, table.dataTable.table-sm .sorting_desc:after {
	top: unset;
	bottom: 4px;
}

.dropdown-item:focus, .dropdown-item:hover {
	background-color: #dcdcdc;
}

/*Bootstrap dialog overrides*/
.bootstrap-dialog.type-warning .modal-header {
	background-color: var(--warning);
}

.bootstrap-dialog.type-danger .modal-header {
	background-color: var(--danger);
}

.bootstrap-dialog.type-success .modal-header {
	background-color: var(--success);
}

.bootstrap-dialog.type-info .modal-header {
	background-color: var(--info);
}

.bootstrap-dialog.type-primary .modal-header {
	background-color: var(--primary);
}

.bootstrap-dialog.type-secondary .modal-header {
	background-color: var(--secondary);
}