.items-js-container {
  min-height: 500px;
  position: relative;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0px none;
  box-shadow: none;
}

.items-js-container.items-js-auto-height {
  min-height: 32px;
}

.items-js-container .items-js-loader {
  position: absolute;
  top: 2px;
  left: 50%;
  margin-left: -70px;
  width: 130px;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  padding: 5px;
  border-radius: 3px;
  background-color: #777;
  background-color: rgba(170,170,170,.9);
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
  cursor: default;
  z-index: 10000;
}

.items-js {
  width: 100%;
  font-size: 13px;
  line-height: 20px;
  border: none;
  margin: 0 0 20px;
}

.items-js li {
  font-size: 13px;
  line-height: 20px;
}

.items-js tr th,
.items-js tr td {
  text-align: left;
  padding: 0;
  font-weight: normal;
}

.items-js .text-center div {
  text-align: center;
}

.items-js .text-right div {
  text-align: right;
}

.items-js th > div,
.items-js td > div {
  padding: 6px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.items-js th > div {
  padding-left: 9px;
  border-left: 1px solid #cfd3cc;
}

.items-js th:first-child > div {
  padding-left: 10px;
  border-left: 0px none;
}

.items-js .items-js-empty td > div {
  padding: 40px;
  text-align: center;
  max-width: 600px !important;
  margin: 0 auto;
  display: block;
  white-space: normal;
  color: #777;
}

.items-js .items-js-checkbox{
  vertical-align: middle;
  text-align: center;
}

.items-js .items-js-checkbox div {
  padding: 6px 10px 6px 15px !important;
  border: 0px none !important;
}

.items-js .items-js-checkbox input {
  margin: 0;
  display: block;
}

.items-js thead {
  border-bottom: 1px solid #d0d0d0;
}

.items-js tbody {
  border-top: 1px solid #d0d0d0;
}

.items-js.items-striped tbody.items-js-content tr:nth-child(odd) {
  background-color: #F9F9F9;
}

.items-js .items-js-content td {
  border-bottom: 1px solid white;
}

.items-js .items-js-content tr:nth-child(odd) td {
  border-bottom-color: #f9f9f9;
}

.items-js .items-js-content tr.checked td {
  background-color: #D2DFC2;
  border-bottom-color: white;
}

.items-js .items-js-content tr.error td {
  background-color: #F2DEDE;
}

.items-js .items-js-content tr.error.checked td {
  background-color: rgb(232, 209, 209);
}

.items-js tbody.items-js-selection tr {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  color: #a57f3c;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  -o-user-select: text;
  user-select: text;
}

.items-js tbody.items-js-selection td > div {
  text-align: center;
  max-width: none;
  padding: 10px;
  display: block;
}

.items-js tbody.items-js-selection a {
  font-weight: bold;
  color: #8D6621;
  text-decoration: underline;
}

.items-js thead,
.items-js.items-multiple-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}

.items-js .items-sortable {
  cursor: pointer;
}

.items-js .items-sortable span {
  padding-right: 20px;
}

.items-js .items-sortable.sort-order-asc,
.items-js .items-sortable.sort-order-desc {
  background-repeat: no-repeat;
  background-position: center right;
}

.items-js .items-sortable:hover {
  background-color: #F9F9F8;
}

.items-js .items-sortable:active {
  background-color: whitesmoke;
}

.items-js .items-sortable.sort-order-asc {
  background-image: url("/images/application-icons/triangle-up.png");
}

.items-js .items-sortable.sort-order-desc {
  background-image: url("/images/application-icons/triangle-down.png");
}

.items-js-pager button.disabled:focus {
  outline: none;
  box-shadow: none;
}

.items-displayed {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  line-height: 20px;
  background: none;
  border: 1px solid transparent;
  text-decoration: none !important;
  border-radius: 2px !important;
  color: #777 !important;
}

.items-displayed:hover {
  border-color: #d5d5d5;
}

.items-displayed[disabled] {
  cursor: default;
}

.items-displayed[disabled]:hover {
  border-color:transparent;
}

.items-js-pager {
  margin: 3px 0;
  position: relative;
}

.items-js-pager .open > button {
  border-color: #d5d5d5;
}

.items-js-pager .dropdown-menu {
  min-width: 0;
  display: none;
}

.items-js-pager .open > .dropdown-menu {
  display: block;
}

.items-js-simple {
  border: 1px solid #cfd3cc;
}

.items-js-light {
  border-top: 1px solid #cfd3cc;
}

.items-js-icon,
.items-js-image {
  vertical-align: top;
  margin-right: 10px;
  border-radius: 2px;
  margin-top: -2px;
  margin-bottom: -2px;
}

.items-js-image {
  width: 24px;
  height: 24px;
}

body.dark-theme .items-js.items-striped tbody.items-js-content tr:nth-child(odd) {
  background-color: #2c3139;
}

body.dark-theme .items-js .items-js-content tr.checked td {
  border-color: #2d3036;
  background-color: #5a6577;
}

body.dark-theme .items-js thead {
  border-bottom: 1px solid #7f8b9e;
}

body.dark-theme .items-js tbody {
  border-top: 1px solid #7f8b9e;
}

body.dark-theme .items-js .items-js-content td {
  border-bottom: 1px solid #373e48;
}

body.dark-theme .items-js .items-js-content tr:nth-child(odd) td {
  border-bottom-color: #373e48;
}