$primary-color: #6B4FA4;
$bg-color: white;

.vcm-tree {
  padding: 2px;
  background: $bg-color;
  flex: 1 6 20%;
  order: 1;
  max-width: 20%;
  min-width: 20%;
  overflow-y: scroll;
  border-right: 1px solid #e4e4e4;
}
ul {
  margin: 0;
  padding-left: 0;
}
.vcm-tree-folder {
  width: 100%;
  min-width: 100%;
  border: 10px;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  display: flex;
  text-decoration: none;
  outline: none;
  font-weight: inherit;
  height: 24px;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  border-radius: 2px;
  user-select: none;
  align-items: center;
  background-color: inherit;
  svg {
    fill: $primary-color;
    width: unset;
    height: unset;
    min-width: 18px;
  }
  &:hover {
    width: unset;
    overflow: visible;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
                0px 8px 10px 1px rgba(0, 0, 0, 0.14),
                0px 3px 14px 2px rgba(0, 0, 0, 0.12);
    span.btnText {
      overflow: visible;
    }
  }
}
.vcm-tree-folder.toggleBtn {
  background-color: $primary-color;
  svg {
    fill: $bg-color;
  }
}
.vcm-higth:hover {
  width: unset;
}