div.treeview {
    overflow: auto;
    box-sizing: border-box;
    padding-bottom: 10px;
}

div.treeview>div.title {
    padding-left: 10px;
    color: white;
    background-color: #212121;
    font-size: 15px;
    height: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

div.sub>div.node {
    box-sizing: border-box;
    padding-left: 10px;
}

div.sub>div.node>div.item {
    margin-right: 10px;
    position: relative;
    box-sizing: border-box;
    height: 30px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    border: 1px solid transparent;
}

div.sub>div.node>div.item:hover {
    border: 1px solid var(--selected-dark-color);
}

div.sub>div.node>div.item:active {
    background-color:var(--selected-dark-color);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

div.sub>div.node>div.item>div.icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    color: white;
}

div.sub>div.node>div.item>div.label {
    color: white;
    margin-right: 10px;
}

div.sub>div.node>div.item>div.carot {
    width: 24px;
    height: 24px;
    /*background-image: url('../../img/ic_keyboard_arrow_down_white_24dp_2x.png');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
}

div.sub>div.node>div.item.selected {
    background-color: #0e7e85;
}