.hooknsexplorer {
  /*position:relative;*/
  min-height: 400px;
  flex-direction: row;
  display: flex;
  font-family2: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.hooknsexplorer>.overlay-panel{
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s;
  background-color: var(--bs-body-bg);
  width:90%;
  height:92%
}
.hooknsexplorer.has-overlay>.overlay-panel{
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  margin-top: 20px
}
.hooknsexplorer.has-overlay>.left-panel,
.hooknsexplorer.has-overlay>.right-panel,
.hooknsexplorer.has-overlay>.left-panel-drag-handler {
  pointer-events: none;
  opacity: .1;
}
/* overlay-panel 90% width on small screens */
@media (max-width: 768px) {
  .hooknsexplorer>.overlay-panel{
    width:90%;
    height:90%
  }
}

.hooknsexplorer>.left-panel {
  transition: opacity .15s, width 0.25s;
  width: 300px;
  min-width: 100px;
  overflow: auto;
  padding:.5em;
  font-size: .9rem;
  flex-grow: 0;
  flex-shrink: 0;
  max-height: calc( 100vh - 120px );
}
.hooknsexplorer>.left-panel-drag-handler {
  width: 3px;
  border-left: solid 3px transparent;
  border-right: solid 3px transparent;
  cursor: ew-resize;
  touch-action: none;
}
.hooknsexplorer>.left-panel-drag-handler:hover {
  border-left-color: var(--bs-primary);
  border-right-color: var(--bs-primary);
}
.hooknsexplorer>.right-panel {
  transition: opacity .15s, width 0.25s;
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  position: relative;
  background-color: var(--bs-body-bg);
  min-height: calc( 100vh - 120px );

  min-width: 0;
  flex: 1;
  flex-grow: 1;
  flex-basis: 0;
}
.hooknsexplorer>.right-panel>nav {
  /* breadcrumb styles (bootstrap) */
  padding: .5em 1em;
  border-bottom: solid 1px var(--bs-border-color);
}
.hooknsexplorer>.right-panel>nav>ol.breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
}
/*.hooknsexplorer>.right-panel .dataTable td{
  white-space: nowrap;
}*/
.hooknsexplorer>.right-panel .dataTable{
  font-family: var(--bs-body-font-family);
}
.hooknsexplorer .dataTable .data-type-blob,
.hooknsexplorer .dataTable .data-type-uint2,
.hooknsexplorer .dataTable .data-type-uint4,
.hooknsexplorer .dataTable .data-type-uint8,
.hooknsexplorer .dataTable .data-type-uint16,
.hooknsexplorer .dataTable .data-type-uint32,
.hooknsexplorer .dataTable .data-type-uint64,
.hooknsexplorer .dataTable .data-type-int2,
.hooknsexplorer .dataTable .data-type-int4,
.hooknsexplorer .dataTable .data-type-int8,
.hooknsexplorer .dataTable .data-type-int16,
.hooknsexplorer .dataTable .data-type-int32,
.hooknsexplorer .dataTable .data-type-int64,
.hooknsexplorer .dataTable .data-type-xfl,
.hooknsexplorer .dataTable .data-type-hash128,
.hooknsexplorer .dataTable .data-type-hash160,
.hooknsexplorer .dataTable .data-type-hash256,
.hooknsexplorer .dataTable .data-type-hash512
{
  font-family: var(--bs-font-monospace);
  letter-spacing: -.1px;
}
.hooknsexplorer .dataTable .data-type-display-expandable{
  max-width:200px;
}
.hooknsexplorer .dataTable.expanded .data-type-display-expandable{
  max-width:initial
}
/*
.hooknsexplorer svg.hns-hook-icon{
  width: 1.25em;
  height: 1em;
  vertical-align: -0.125em;
  text-align: center;
}
*/
.hooknsexplorer>.left-panel .left-panel-tree {
  border-left: solid 1px transparent;
  margin-left:13px;
  transition: border-color 0.1s ease-in-out;
  -moz-transition: border-color 0.1s ease-in-out;
  -webkit-transition: border-color 0.1s ease-in-out;
}

.hooknsexplorer>.left-panel>.left-panel-tree {
  padding-bottom: 1em;
}


.hooknsexplorer>.left-panel:hover .left-panel-tree {
  border-left-color: var(--bs-border-color);
}

.hooknsexplorer>.left-panel .left-panel-item {
  border:0;
  background: none;
  width:100%;
  text-align: left;
  padding: 0 5px;
  border:solid 1px transparent;
  color: var(--bs-body-color);
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.hooknsexplorer>.left-panel .left-panel-item .badge{
  --bs-badge-border-radius:3px;
  margin-right:1px;
  min-width:21px;
}
.hooknsexplorer>.left-panel .left-panel-item.left-panel-item-action{
  opacity:.5;
  font-style: italic;
}
.hooknsexplorer>.left-panel .left-panel-item.left-panel-item-action>i{
  opacity: 1 !important;
}
.hooknsexplorer>.left-panel .left-panel-item.selected,
.hooknsexplorer>.left-panel button.left-panel-item:hover{
  background-color: rgba(124, 124, 124, 0.1);
}
.hooknsexplorer>.left-panel .left-panel-item.processing {
  background-color: rgba(var(--bs-warning-rgb), 0.2);
  border-color: rgba(var(--bs-warning-rgb),0.3);
}
.hooknsexplorer>.left-panel .left-panel-item.left-panel-item-action:hover{
  opacity:1
}

/* right panel content */
.hooknsexplorer>.right-panel .projection-btn{
  width: 180px;
}
.hooknsexplorer>.right-panel .projection-btn .badge{
  --bs-badge-border-radius:3px;
}
.hooknsexplorer>.right-panel .projection-btn.projection-btn-action{
  opacity:.5;
  font-style: italic;
}

.hooknsexplorer .overlay-panel .hookabiconverter .final-result{
  display: none;
}
.hooknsexplorer .overlay-panel .hookabiconverter .bottom-anchor{
  margin-top:50px;
}

.hooknsexplorer img.hns-hook-icon{
  --bs-border-radius: .2rem;
  width: 1.1em;
  height: 1.1em;
  text-align: center;
  object-fit: cover;
  vertical-align: center;
}
.hooknsexplorer img.hns-hook-icon.hns-hook-icon-lg{
  width: 3em;
  height: 3em;
}