
body {
	width: 100%;
	font-family: 'Avenir Next', sans-serif;
}

.pr-2 {
	padding-right: 2em;
}

.logo {
	width: 5rem;
}

.dropdown {
		cursor: pointer;
}

.dropdown-content {
	display: none;
	position: absolute;
	min-width: 100px;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown:hover .dropdown-content {
	display: block;
}
/* For icons*/
.svg-icon {
	width: 1em;
	height: 1em;
}

.fw-normal {
	font-weight: normal;
}

.dataTables_wrapper .dataTables_filter input {
	border-radius: 0 !important;
}

.table.dataTable thead th{ 
	padding: 10px !important;
}

dl {
	display: block;
	margin-block-start: 0;
	margin-block-end: 0;
}

.select2-container--bootstrap .select2-selection {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-radius: 0px !important;
	font-size: 16px !important;
	border-color: rgba(0,0,0,.2) !important;
}

.select2-container--bootstrap .select2-selection--single {
	height: 43px !important;
	line-height: 1.75 !important;
	padding: 6px 24px 6px 12px !important;
}

.hand:hover {
	cursor: grab;
}

.select2-selection__placeholder {
	color: #333333 !important;
}

/*Hide info of no checked inputs*/
.accordion__item input:not(:checked) ~ .accordion__content {
	display: none;
}

.w00px {
	width: 100px;
}

.pre-wrap {
	white-space: pre-wrap !important;
}

.chartjs-render-monitor{
	display:  block;
	height: 48px;
	width: 90px;
}

.chartjs-render-adherence {
	display:  inline !important;
}

/*
  Hide element & reveal an element with a checkbox:

  Put the `toggle-checked` class on a checkbox input and any adjacent element
  with the `toggle-target` class will be hidden and displayed when
  the input changes state.

  <input type="checkbox" class="toggle-checked" />
  <div class="toggle-target"> Hidden until checkbox is clicked </div>
*/

.toggle-checked:not(:checked) ~ .toggle-target {
  display: none;
}
.toggle-checked:checked ~ .toggle-target {
  display: block;
}

/*
  Similarly, you can achieve the opposive effect with the use
  of `toggle-unchecked` class on the checkbox.
*/

.toggle-unchecked:not(:checked) ~ .toggle-target {
  display: block;
}
.toggle-unchecked:checked ~ .toggle-target {
  display: none;
}

table.dataTable thead th, table.dataTable thead td {
	border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
table.dataTable.no-footer {
	border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
table.dataTable thead th, table.dataTable tfoot th {
	font-weight: 500;
}
table.dataTable tbody td {
	padding: 9px 18px;
}

.stripe-dark:nth-child(odd) {
	background-color: rgba(142, 142, 142, 0.1);
}

#modal-group {
	height: 100%vh;
}

#mainNavigation {
  width: 208px;
  min-height: 100vh;
  position: fixed;
}

#appWrapper {
  display: block;
  width: calc(100% - 208px);
  flex: 1;
  height: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 208px;
}

#topBar {
	width: calc(100% - 208px);
}

.top-menu{
	position: fixed;
	z-index: 100;
}

.search-container {
	position: fixed;
	z-index: 100;
}

.no-select{
	user-select: none;
}

.loading {
	margin: auto;
  top: 0; left: 0; bottom: 80px; right: 0;
}

