.dq-tree {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    width: 100%;
    height: calc(100%);
}
.dq-tree>.dq-treeroot {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
}

.dq-tree>.dq-treeroot>a {
    padding: 4px 5px 4px 5px;
    font-size: 15px;
    border-radius: 2px;
    transition: 100ms;
    display: flex;
    width:100%;
    white-space: nowrap;
}

.dq-tree>.dq-treeroot>a.check {
    background-color: var(--hover) !important;
}
.dq-tree>.dq-treeroot>a:hover {
    color: var(--text);
    background-color: var(--hover-half);
    text-decoration: none;
    box-shadow: 0 1px 2px var(--s3d);
}
.dq-tree>.dq-treeroot>a>img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-right: 5px;
}

.dq-treenode {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 0 15px;
}
.dq-treenode>a {
    padding: 4px 5px ;
    font-size: 15px;
    border-radius: 2px;
    transition: 100ms;
    display: flex;
    width:100%;
    white-space: nowrap;
}

.dq-treenode>a.check {
    background-color: var(--hover) !important;
}
.dq-treenode>a:hover {
    color: var(--text);
    background-color: var(--hover-half);
    text-decoration: none;
    box-shadow: 0 1px 2px var(--s3d);
}
.dq-treenode>a>img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-right: 5px;
}
