/**
 * = Simplica Datatable Theme
 */
/**
 * = Datatables
 */
table {
  border: 1px solid #dee2e6;
}
table thead > tr > th {
  text-transform: uppercase;
  background-color: #f9f9f9;
  color: #212529;
}
table thead > tr > td.sorting, table thead > tr > td.sorting_asc, table thead > tr > td.sorting_desc, table thead > tr > th.sorting, table thead > tr > th.sorting_asc, table thead > tr > th.sorting_desc {
  padding-right: 30px;
  vertical-align: top;
}
table thead > tr > td:active, table thead > tr > th:active {
  outline: 0;
}
table thead .sorting, table thead .sorting_asc, table thead .sorting_desc, table thead .sorting_asc_disabled, table thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}
table thead .sorting:after, table thead .sorting:before, table thead .sorting_asc:after, table thead .sorting_asc:before, table thead .sorting_asc_disabled:after, table thead .sorting_asc_disabled:before, table thead .sorting_desc:after, table thead .sorting_desc:before, table thead .sorting_desc_disabled:after, table thead .sorting_desc_disabled:before {
  position: absolute;
  top: 0.8em;
  display: block;
  opacity: 0.3;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 1rem;
}
table thead .sorting:before, table thead .sorting_asc:before, table thead .sorting_asc_disabled:before, table thead .sorting_desc:before, table thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\f0de";
}
table thead .sorting:after, table thead .sorting_asc:after, table thead .sorting_asc_disabled:after, table thead .sorting_desc:after, table thead .sorting_desc_disabled:after {
  right: 16px;
  content: "\f0dd";
}
table thead .sorting_asc:before, table thead .sorting_desc:after {
  opacity: 1;
}
table thead .sorting_asc_disabled:before, table thead .sorting_desc_disabled:after {
  opacity: 0;
}
table tbody {
  background-color: #ffffff;
  font-size: inherit;
}
table tbody a:not([href]) {
  color: inherit !important;
}
table tbody a, table tbody a:hover {
  color: #99b146;
}
table tbody > td {
  color: inherit;
  word-wrap: break-word;
}
table tbody > tr {
  border-bottom: 1px solid #dee2e6;
}
table tbody tr:hover {
  color: #212529;
  background-color: #f1f3f2;
  border-left: 1px solid #99b146;
}

.s-selected-row, .s-selected-row:hover {
  color: #212529;
  background-color: #f1f3f2;
  border-left: 1px solid #99b146;
}

.s-select-all {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.s-page-more {
  display: block;
  margin-top: -10px;
  line-height: 1.8;
  padding: 0.3rem 0.55rem 0.3rem 0.4rem !important;
}

.s-page-btn {
  border: none;
  border-radius: 50% !important;
  padding: 0.3rem 0.55rem 0.3rem 0.4rem !important;
  background-color: #eceff6;
  color: #99b146;
  width: 34px;
}

.s-page-nav {
  border-color: transparent !important;
  color: #99b146;
}
.s-page-nav:hover {
  z-index: 2;
  color: #99b146;
  text-decoration: none;
  background-color: #eceff6;
  border-color: transparent;
  border-radius: 50%;
}

.page-item:last-child .s-page-nav {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.page-item:first-child .s-page-nav {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.s-dropdown-active {
  background-color: transparent;
  color: #99b146;
  font-weight: bold;
}

.s-dropdown-page {
  min-width: 2rem;
  margin-left: -1.3rem;
}
.s-dropdown-page .dropdown-item {
  text-align: center;
}/*
Loaders
*/
.s-placeholder {
	display: block;
	min-height: 2.5rem;
	vertical-align: middle;
	cursor: wait;
	background-color: #d7d8dc;
	opacity: 0.5;
}

.s-placeholder .btn::before {
	display: inline-block;
	content: "";
}

.s-placeholder-xs {
	min-height: 0.6em;
}

.s-placeholder-sm {
	min-height: 0.8em;
}

.s-placeholder-lg {
	min-height: 1.2em;
}

.s-placeholder-xl {
	min-height: 2rem;
}

.s-placeholder-glow .s-placeholder {
	animation: s-placeholder-glow 2s ease-in-out infinite;
}

@keyframes s-placeholder-glow {
	50% {
		opacity: 0.2;
	}
}