.searchable {
  margin-top: 25px;
  position: relative;
}

.searchable:before {
  content: attr(data-sb-icon, '🔎');
  cursor: pointer;
  height: 25px;
  min-width: 25px;
  position: absolute;
  /* right: 0;  */ /* places to the right of table header */
  left: 10px ; /* places to the eft of the table header */
  text-align: center;
  top: -35px;
  font-size: 1.5rem;
}

.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, 'No results found');
  display: table-row;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.searchable thead input[type='search'] {
  box-sizing: border-box;
  width: 100%;
  height: 35px;
}
