.panelContainer {
  position: absolute;
  background-color: var(--gray-c);
  border: 1px solid var(--gray-4);
  box-sizing: border-box;
  font-size: 12px;
  transition: 0.25s all;
}
.panelContainersLayer-hidden {
  display: none;
}
.panelContainersLayer-noAnimations .panelContainer {
  transition: 0s none;
}
.panelContainer_header {
  box-sizing: border-box;
  width: 100%;
  background-color: var(--gray-8);
  color: var(--gray-4);
  padding: 3px 1px 0px 1px;
}
.panelContainer_headerPart {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
}
.panelContainer_headerPart-handle {
  width: 18px;
  text-align: center;
  cursor: move;
  padding-bottom: 2px;
}
.panelContainer_headerPart-panels {
  width: calc(100% - 36px);
  position: relative;
  white-space: nowrap;
}
.panelContainer_headerPart-menu {
  width: 18px;
  text-align: center;
  cursor: pointer;
  padding-bottom: 2px;
}


.panelContainer-isClosed {
  opacity: 0;
}

.panel_heightHandler {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 4px;
  width: 100%;
  cursor: ns-resize;
}
.panel_heightHandler:hover {
  border-bottom: 2px solid var(--gray-4);
}
.panelContainer-hasFixHeight .panel_heightHandler {
  display: none;
}
