ino-table ino-table-header-cell {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
}
ino-table ino-table-header-cell.mdc-data-table__header-cell {
  padding: 2px 0 4px 0;
  border-bottom: 2px solid #cac8d5;
  color: #b6b4c4;
}
ino-table ino-table-header-cell .mdc-data-table__header-cell-wrapper {
  padding: 0 10px;
  height: 100%;
  border-radius: 10px;
  border-color: #dfdee6;
  outline: 0;
  margin-right: 8px;
}
ino-table ino-table-header-cell .mdc-data-table__header-cell-wrapper {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
ino-table ino-table-header-cell.ino-table-header-cell--sortable .mdc-data-table__header-cell-wrapper {
  padding-right: 36px;
}
ino-table ino-table-header-cell.ino-table-header-cell--sortable .mdc-data-table__header-cell-label {
  margin-right: 4px;
  flex-grow: 1;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable .mdc-data-table__header-cell-wrapper {
  cursor: pointer;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable .mdc-data-table__header-cell-label {
  overflow: hidden;
  text-overflow: ellipsis;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable .ino-table-header-cell__search-icon {
  --ino-icon-color: currentColor;
  --ino-icon-height: 14px;
  --ino-icon-width: 14px;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable .mdc-data-table__header-cell-label {
  transform: translateX(0px);
  will-change: transform;
  transition: transform 0.15s ease-in-out;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable .ino-table-header-cell__search-icon {
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
  width: 0;
  opacity: 0;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable:hover .mdc-data-table__header-cell-wrapper, ino-table ino-table-header-cell.ino-table-header-cell--searchable:focus-within .mdc-data-table__header-cell-wrapper, ino-table ino-table-header-cell.ino-table-header-cell--searchable.ino-table-header-cell--active .mdc-data-table__header-cell-wrapper {
  color: #4655ff;
  background: #dfdee6;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable:hover .ino-table-header-cell__search-icon, ino-table ino-table-header-cell.ino-table-header-cell--searchable:focus-within .ino-table-header-cell__search-icon, ino-table ino-table-header-cell.ino-table-header-cell--searchable.ino-table-header-cell--active .ino-table-header-cell__search-icon {
  display: block;
  width: auto;
  opacity: 1;
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable:hover .mdc-data-table__header-cell-label, ino-table ino-table-header-cell.ino-table-header-cell--searchable:focus-within .mdc-data-table__header-cell-label, ino-table ino-table-header-cell.ino-table-header-cell--searchable.ino-table-header-cell--active .mdc-data-table__header-cell-label {
  transform: translateX(6px);
}
ino-table ino-table-header-cell.ino-table-header-cell--searchable .ino-table-header-cell__popover-content {
  border-radius: inherit;
  box-shadow: 0px 25px 50px -12px rgba(45, 93, 255, 0.3019607843);
}
ino-table ino-table-header-cell.ino-table-header-cell--searched {
  border-bottom-color: #4655ff;
}
ino-table ino-table-header-cell ino-icon-button ino-icon {
  will-change: transform;
  transition: transform 150ms ease;
  transform: scale(1);
}
ino-table ino-table-header-cell .sort-asc ino-icon,
ino-table ino-table-header-cell .sort-desc ino-icon {
  transform: scale(0.8);
}
ino-table ino-table-header-cell ino-icon-button {
  position: absolute;
  right: 14px;
  top: 7px;
  --ino-icon-button-size: 24px;
  --ino-icon-button-icon-size: 22px;
  border-left: 6px solid transparent;
}
ino-table ino-table-header-cell .ino-popover {
  text-transform: initial;
}