.tree-children.tree-children-no-padding {
    padding-left: 0
}

.tree-children {
    padding-left: 20px;
    overflow: hidden
}

.node-drop-slot {
    display: block;
    height: 0px
}

.node-drop-slot.is-dragging-over {
    background: #ddffee;
    height: 20px;
    border: 2px dotted #888;
}

.toggle-children-wrapper-expanded .toggle-children {
    background-image: var(--menu-active-icon);
    margin-top: -3px;
}

.toggle-children-wrapper-collapsed .toggle-children {
    background-image: var(--menu-inactive-icon);
    margin-top: -3px;
}

.toggle-children-wrapper {
    padding: 2px 3px 5px 1px;
}


/* tslint:disable */

.toggle-children {
    height: 22px;
    width: 36px;
    background-size: contain;
    display: inline-block;
    position: relative;
    top: 2px;
    background-repeat: no-repeat;
    background-position: center;
}

.toggle-children-placeholder {
    display: inline-block;
    height: 10px;
    width: 10px;
    position: relative;
    top: 1px;
    padding-right: 3px;
}

.node-content-wrapper {
	cursor: pointer;
    display: inline-block;
    padding: 1px 5px;
    border-radius: 2px;
    transition: background-color .15s, box-shadow .15s;
}

.node-wrapper {
    display: flex;
    align-items: flex-start;
    /*AKA*/
    padding: 7px 0px 7px 0px;
    color: var(--menu-item-color);
    font-size: 15px;
}

.node-wrapper:hover {
    background-color: var(--menu-item-hover-background);
    color: var(--menu-item-hover-color);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
 
.tree-node-active {
 	background: var(--menu-item-active-background);
 	cursor: pointer;
 	margin-right: 10px;
}

.tree-node {
 	margin-right: 2px;
    margin-left: 2px;
}

.tree-node-level-2 .node-wrapper {
    display: flex;
    align-items: flex-start;
    /*AKA*/
    border-top: solid 0px #e3e9ea;
    padding-left: 12px !important;
    font-size: 14px !important;
}

.tree-node-level-3 .node-wrapper {
    display: flex;
    align-items: flex-start;
    /*AKA*/
    border-top: solid 0px #e3e9ea;
    padding-left: 18px !important;
    font-size: 13px !important;
}

.node-content-wrapper-active,
.node-content-wrapper.node-content-wrapper-active:hover,
.node-content-wrapper-active.node-content-wrapper-focused {
    color: var(--menu-item-active-color);
    cursor: pointer;
    font-weight: bold;
    background: var(--menu-item-active-background);
}

.node-content-wrapper-focused {
    background: #e7f4f9;
}

.node-content-wrapper-active,
.node-content-wrapper-focused,
{
    box-shadow: inset 0 0 1px #999;
}
	
.node-content-wrapper.is-dragging-over {
    background: #ddffee;
    box-shadow: inset 0 0 1px #999;
}

.node-content-wrapper.is-dragging-over-disabled {
    opacity: 0.5
}

tree-viewport {
    /*height: 100%;*/
    overflow: auto;
    display: block;
}

.tree-children {
    padding-left: 15px
}

.empty-tree-drop-slot .node-drop-slot {
    height: 20px;
    min-width: 100px
}

activeangular-tree-component {
    width: 100%;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    /* non-prefixed version, currently not supported by any browser */
}

tree-root .angular-tree-component-rtl {
    direction: rtl;
}

tree-root .angular-tree-component-rtl .toggle-children-wrapper-collapsed .toggle-children {
    transform: rotate(180deg) !important;
}

tree-root .angular-tree-component-rtl .tree-children {
    padding-right: 20px;
    padding-left: 0;
}
