/* Minification failed. Returning unminified contents.
(39,25): run-time error CSS1039: Token not allowed after unary operator: '-bs-gray-600'
(54,25): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-bg'
(58,15): run-time error CSS1039: Token not allowed after unary operator: '-bs-secondary-color'
 */
/* Bootstrap Overrides */
body:not(.modal-open) {
	padding-right: 0 !important;
}

.col-form-label {
	text-align: right;
	font-weight: bold;
}

/* Select2 Overrides */
/*.select2-selection__choice {
	background-color: whitesmoke;
}
*/
.select2-container .select2-search__field {
	width: 100% !important;
}

/* Select 2 bootstrap-5 theme override */
html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection {
	background-color: transparent !important;
	border: 1px solid #495057;
}

html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

	html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
		color: #dee2e6 !important;
	}

html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
	color: #dee2e6 !important;
}

html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
	border: 1px solid var(--bs-gray-600);
}

html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
	color: #dee2e6 !important;
}

html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
	background-color: transparent !important;
	color: #dee2e6 !important;
}

html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown {
	color: #dee2e6 !important;
	border: 1px solid #495057 !important;
	background-color: var(--bs-body-bg);
}

	html[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group {
		color: var(--bs-secondary-color) !important;
	}

/* DataTables Overrides */
table.dataTable > tbody > tr.selected a, table.dataTable > tbody > tr.selected a:visited, table.dataTable > tbody > tr.selected a:hover, table.dataTable > tbody > tr.selected a:active {
	color: white !important;
}

div.dataTables_filter input {
	width: 100px;
}

table.dataTable thead .dt-column-order {
	display: none !important;
}

table.dataTable.table-sm > thead > tr > th, table.dataTable.table-sm > thead > tr > td {
	padding-right: 5px !important;
}

/* this fixed the progress bar image from stretching to full height of some parent containers. */
img {
	object-fit: none;
}

.ck-editor__editable {
	min-height: 250px;
}

/* Application */
html {
	font-size: 14px;
	height: 100%;
	box-sizing: border-box;
}

body {
	font-family: Tahoma, Geneva, sans-serif;
	height: 100%;
	padding: 0;
	margin: 0;
}

.body-content {
	padding-bottom: 40px;
	padding-top: 70px;
}

footer {
	position: fixed;
	bottom: 0;
	/*background-color: #e2e2e2;*/
	width: 100%;
	z-index: 1000;
}

.grid-container-header {
	cursor: pointer;
	font-size: 12px;
	width: 100%;
	padding: 5px;
	/*background-color: lightgray;*/
	font-weight: bold;
}

.grid-container-content {
	width: 100%;
	padding: 10px;
}

/*a, a:visited, a:hover, a:active,
.nav-tabs .nav-link {
	color: #013200;
}
*/
a:hover,
.nav-tabs a:hover,
.navbar a:hover {
	text-decoration: none;
}

h2 {
	margin: 0;
}

.previewTable {
	white-space: nowrap;
}

	.previewTable tr {
/*		border-bottom: 1px solid;
*/	}

		.previewTable tr:hover {
			background-color: rgba(0, 0, 0, 0.075);
		}

		.previewTable tr td {
			padding: 0 5px;
			vertical-align: top;
		}

.borderLR {
	border-width: 0 1px;
	border-left: solid lightgrey;
	border-right: solid lightgrey;
}

.borderR {
	border-right-width: 1px;
	border-right-style: solid;
}

.large-table-container-3 {
	width: 100%;
	overflow-x: scroll;
	overflow-y: auto;
	min-height: 600px;
}

.large-table-fake-top-scroll-container-3 {
	width: 100%;
	overflow-x: scroll;
	overflow-y: auto;
}

/* these data-bs-toggle ones make the up/down chevrons in grid header containers switch back and forth when collapsing/expanding. */
[data-bs-toggle="collapse"] .fa:before {
	content: "\f139";
}

[data-bs-toggle="collapse"].collapsed .fa:before {
	content: "\f13a";
}

.table {
/*	width: 100%;
*/	border-spacing: 0;
	border-collapse: collapse;
	empty-cells: show;
}

.displayNone {
	display: none;
}

input[readonly] {
	background: #e9ecef;
	cursor: pointer;
}

/* Benefit Descriptions partial loaded as child row */
.childDiv {
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
}

/* Validation Helpers */
.field-validation-error {
	color: #f00;
}

.field-validation-valid {
	display: none;
}

.input-validation-error {
	border: 2px solid #f00;
	background-color: #fee;
}

.validation-summary-errors {
	font-weight: bold;
	color: #f00;
}

.validation-summary-valid {
	display: none;
}

