@charset "UTF-8";
.searchable {
  margin-top: 25px;
  position: relative;
}
.searchable:before {
  content: attr(data-sb-icon, '🔎');
  cursor: pointer;
  height: 25px;
  position: absolute;
  right: 0;
  text-align: center;
  top: -25px;
  min-width: 25px;
}
.searchable.sb-left:before {
  left: 0;
  right: auto;
}
.searchable:hover:before {
  transform: scale(1.1);
}
.searchable tbody {
  position: relative;
  z-index: 2;
}
.searchable thead:after {
  content: attr(data-sb-empty, '🔍 ¯\\_(ツ)_/¯');
  display: table-row;
  opacity: 0.7;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.searchable thead input[type='search'] {
  box-sizing: border-box;
  width: 100%;
}
