.comboTreeWrapper {
    position: relative;
    text-align: left !important;
}

.comboTreeInputWrapper {
    position: relative;
}

.comboTreeArrowBtn {
    position: absolute;
    right: 1px;
    bottom: 1px;
    top: 1px;
    box-sizing: border-box;
    border: none;
    border-left: 1px solid #c7c7c7;
    border-radius: 0 3px 3px 0;
}

.comboTreeDropDownContainer {
    display: none;
    background: #fff;
    border: 1px solid #c3c3c3;
    /* max-height: 250px; */
    overflow-y: auto;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
    resize: both;
}

.comboTreeDropDownContainer ul {
    padding: 0px;
    margin: 0;
    overflow: hidden;
}

.comboTreeDropDownContainer li {
    list-style-type: none;
    padding-left: 25px;
    cursor: pointer;
    position: relative;
    background: #fff;
}

.comboTreeDropDownContainer li::before {
    display: block;
    content: "";
    height: 1000px;
    width: 15px;
    border-left: 1px solid #8d8d8d;
    border-bottom: 1px solid #8d8d8d;
    position: absolute;
    transform: translate(-20px, -100%);
    top: 15px;
}

.comboTreeDropDownContainer li:hover {
    /* background-color: #ddd; */
}

.comboTreeDropDownContainer li:hover ul {
    background-color: #fff;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover {
    background-color: #418EFF;
    color: #fff;
}

span.comboTreeItemTitle {
    display: block;
    padding: 2px 4px;
}

.comboTreeDropDownContainer label {
    cursor: pointer;
    width: 100%;
    display: block;
}

.comboTreeDropDownContainer .comboTreeItemTitle input {
    position: relative;
    top: 2px;
    margin: 0px 4px 0px 0px;
    display: none;
}


.comboTreeDropDownContainer .comboTreeItemTitle.colored {
    background-color: #F1FFEB;
}

.comboTreeParentPlus {
    position: relative;
    left: -12px;
    top: 4px;
    width: 4px;
    float: left;
}


.comboTreeInputBox {
    padding: 5px!important;
    border-radius: 3px!important;
    border: 1px solid #999!important;
    width: 100%!important;
    box-sizing: border-box!important;
    padding-right: 24px!important;
    color: #fff!important;
}

.comboTreeInputBox::placeholder {
    color: #fff;
}

.comboTreeArrowBtnImg {
    font-size: 10px;
}

.multiplesFilter {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #999;
}

.comboTreeItemTitle.disabled{
    background-color:pink;
}
.comboTreeItemTitle.selected{
    background-color:#cce7c0;
}