.unselectable {
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none;
}
.collection-table {
  position: relative;
}
.collection-table table.selectable tbody tr {
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}
.collection-table table.selectable tbody tr:hover td {
  background: #cdeffc !important;
}
.collection-table table.selectable tbody tr.selected td {
  background: #9edff8 !important;
}
.collection-table .ui.menu.toolbar {
  margin: 0;
}
.collection-table .on-selection-show {
  padding: 0 !important;
  display: none !important;
}
.collection-table .on-selection-show .item {
  float: left;
}
.collection-table.selected .on-selection-show {
  display: inline-block !important;
}
.collection-table table .checked {
  width: 1.5rem;
  padding-right: 0 !important;
}
.collection-table .toolbar > .menu {
  display: inline-block;
}
.collection-table .toolbar > .menu.item {
  padding: 0;
}
.collection-table .toolbar .item .icon {
  margin: 0;
}
.collection-table .toolbar .crud.menu > .item {
  float: left;
}
.collection-table .toolbar .right.menu.item {
  font-size: 1rem;
}
.collection-table .toolbar .right.menu.item .ui.filter.input {
  margin: 0.25rem 0.5rem !important;
  width: auto;
  float: right;
}
.collection-table .toolbar .right.menu.item .ui.filter.input input {
  padding: 0.4rem;
}
.collection-table .ui.toolbar.menu:not(.vertical) .right.menu.item > .input {
  margin: 0;
}
.collection-table.no-crud-menu .crud.menu {
  display: none;
}
.collection-table.no-crud-menu .right.menu {
  float: none;
}
.collection-table .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}
.collection-table.disabled .overlay {
  display: block;
}
