/* html, body { background-color: #dedede; } */
.folder-tree-wrapper { background-color: #fff; width: 100%; min-height: 260px; padding: 20px; margin: 10px; border-right: 1px solid #dfdfdf; }
.folder-tree { list-style: none; cursor: pointer;}
.folder-tree li { margin-bottom: 2px; font-size: 14px; transition: all .4s ease; position: relative; }
.folder-tree li:hover {}
.folder-tree li i.fa-folder { color: rgb(242, 176, 53);font-size: 18px; }
.folder-tree li ul { padding-left: 10px; padding-top: 8px; }
.folder-tree ul { display: none; position: relative; }
.folder-tree ul:before { position: absolute; content: ''; left: -10px; top: 0; width: 2px; height: 100%; background-color: transparent; border-left: dashed 1px #c2c2c2; border-bottom: dashed 1px #c2c2c2; }
.folder-tree li ul li { display: block; margin-bottom: 8px; }
.folder-tree .arrow { position: absolute; top: 4px; left: -14px; width: 8px; height: 8px; transition: all .4s ease; transform: rotate(-90deg); }
.folder-tree .arrow i { color: #595959; transition: all .4s ease; }
.folder-tree .arrow:hover i { color: #292929; }
.folder-tree li.expanded > ul { display: block; }
.folder-tree li.expanded > .arrow { transform: rotate(0deg); }
.folder-tree li.selected > .wrapper .folder-name{
	background-color: #cce3ff;
    padding: 3px 5px;
	margin-left: 3px;
    border: solid 1px grey;
}
.folder-tree .inputFolderName {
    height: unset;
    float: right;
    margin: 0;
	font-size: 14px;
    font-weight: normal;
}
.folder-tree .folder-name {
    margin-left: 3px;
	padding:3px 5px;
}
.folder-tree .action {
    display: none;
}
.folder-tree .action .button {
    /* padding: 5px; */
}
.folder-tree .editing {
    display: flex;
}
.folder-tree .editing .action, .folder-tree li.selected > .wrapper .action {
    display: inline-block;
    height: 23px;
    white-space: nowrap;
}
.folder-tree .input-wrapper {
    display: flex;
}
.fa-folder {
	color:#F2B035;
}
.folder-tree input.invalid {
    border: 1px solid #f00;
}
.folder-total {
	display: inline-block;
    background: blue;
    padding: 2px 4px;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    margin-left: -10px;
    font-size: 8px;
    line-height: 100%;
}
.folder-tree .input {
    padding: 0 5px;
}