.lc-snippet.item-list {
  position: relative;
}
.lc-snippet.item-list > .toolbar {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lc-snippet.item-list > .toolbar .col.pager {
  text-align: right;
}
.lc-snippet.item-list > .toolbar .col.pager div.pager {
  display: inline-block;
  font-size: 12px;
}
.lc-snippet.item-list > .toolbar .col.pager div.pager select {
  padding: 2px 5px;
  border-radius: 2px;
  border: 1px #ccc solid;
}
.lc-snippet.item-list > .toolbar .col.pager div.pager .number {
  color: #ff7a03;
}
.lc-snippet.item-list table.item-list {
  width: 100%;
}
.lc-snippet.item-list table.item-list thead th {
  text-align: left;
  background-color: #eee;
  padding: 10px;
  vertical-align: bottom;
  white-space: nowrap;
}
.lc-snippet.item-list table.item-list thead button.filter-button {
  background: none;
  border: 0;
}
.lc-snippet.item-list table.item-list thead button.filter-button.filter-active {
  color: #ff7a03;
}
.lc-snippet.item-list table.item-list tbody > tr.item {
  transition: background-color .3s ease;
}
.lc-snippet.item-list table.item-list tbody > tr.item > td {
  padding: 10px;
  cursor: default;
}
.lc-snippet.item-list table.item-list tbody > tr.item > td div.responsive-table-column-title {
  display: none;
  width: 50%;
}
.lc-snippet.item-list table.item-list tbody > tr.item:nth-child(even) {
  background-color: #eee;
}
.lc-snippet.item-list table.item-list tbody > tr.item:hover {
  background-color: #def5ff;
}
.lc-snippet.item-list table.item-list tbody > tr.item.checked {
  background-color: #78d6ff;
}
@media screen and (max-width: 750px) {
  .lc-snippet.item-list table.item-list thead {
    display: none;
  }
  .lc-snippet.item-list table.item-list tbody > tr.item > td {
    display: flex;
    width: 100% !important;
    padding: 5px;
  }
  .lc-snippet.item-list table.item-list tbody > tr.item > td div.responsive-table-column-title {
    display: block;
    padding-right: 20px;
    text-align: right;
    font-weight: bold;
  }
  .lc-snippet.item-list table.item-list tbody > tr.item > td div.column-value {
    width: 50%;
  }
}
.lc-snippet.item-list .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  tab-index: 0;
}
.lc-snippet.item-list .loading-overlay .spinner-wrapper {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  color: #ff7a03;
  font-size: 20px;
  border-radius: 2px;
}

.lc-snippet.item-list.loading .loading-overlay {
  display: flex;
}
