.itemsInFolders_leftPart {
  display: inline-block;
  vertical-align: top;
  width: 256px;
  height: 99%;
}
.itemsInFolders_folderSelector {
}
.itemsInFolders_folders {
  position: relative;
  height: calc(100% - 32px);
  overflow-y: scroll;
}
.itemsInFolders_rightPart {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 256px);
  height: 99%;
  background-color: var(--gray-e);
}
.itemsInFolders_selector {
}
.itemsInFolders_items {
  position: relative;
  height: calc(100% - 28px);
  overflow-y: auto;
}
.itemsInFolders_items .mTable {
  height: 100%;
}
.itemsInFolders_items-activeDragAndDrop {
  outline: 4px dashed var(--activeLED);
}

.itemFolder {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.itemFolder:hover {
  border-color: var(--gray-8);
}
.itemFolder-selected {
  background-color: var(--gray-e);
}
.itemFolder:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.itemFolder-selected:before {
  background-color: var(--activeLED);
}

