@charset "UTF-8";
.dot {
  height: 9px;
  width: 9px;
  border-radius: 50%;
  display: inline-block;
}
.anticon-close-circle {
  cursor: pointer;
  color: #989797;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 13px;
  padding-right: 8px;
}
.anticon-close-circle:hover {
  color: #999;
}
.anticon-close-circle:active {
  color: #666;
}
.addNew {
  margin-left: 5px;
}
.unAvailable {
  color: #abd8e2;
}
.AdministrationTreeNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 0;
}
.AdministrationTreeNav .tree-actions {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Pin "Refresh" to the right (with a small gap from the scrollbar/edge),
   even when the add button is hidden. */
.AdministrationTreeNav .tree-actions #tree_refresh_btn {
  margin-left: auto;
  margin-right: 16px;
}

/* The global `.ag-icon-plus .text` is position:absolute, which pulls the label
   out of flow — when the button is pinned right it overflows the panel and the
   text gets clipped. Lay the icon + label out inline so "Uppdatera" stays
   visible next to the icon. */
.AdministrationTreeNav .tree-actions #tree_refresh_btn .ag-icon-plus {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.AdministrationTreeNav .tree-actions #tree_refresh_btn .ag-icon-plus .text {
  position: static;
  margin-left: 5px;
}
.DraggableTree {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.DraggableTree li {
    padding: 5px 3px;
    position: relative;
}
.DraggableTree li .ant-tree-iconEle {
      line-height: 19px;
}
.DraggableTree li .ant-tree-node-content-wrapper.ant-tree-node-selected,
    .DraggableTree li .ant-tree-node-content-wrapper:hover {
      background-color: rgba(0, 153, 187, 0.15);
}
.DraggableTree .ant-tree-node-content-wrapper.ant-tree-node-selected,
  .DraggableTree .ant-tree-node-content-wrapper:hover {
    background-color: rgba(0, 153, 187, 0.15);
}
.HiddenTreeNode {
  display: inline-block;
}
.EditGroup {
  width: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.EditGroup > span:last-child {
    margin-left: 6px;
}
.DraggableTree
> li
> ul
li
span.ant-tree-node-content-wrapper:hover
> .ant-tree-title
> .HiddenTreeNode
> .EditGroup {
  display: inline-block;
  vertical-align: top;
  width: auto;
  visibility: visible;
  pointer-events: auto;
  padding-left: 3px;
  opacity: 1;
}
.IconAddToStorageGroup {
  margin-left: 6px;
}

