/*
:root {
    --ct-bg: #fff;
    --ct-btn-hover: #e8e8e8;
    --ct-btn-active: #ddd;
    --ct-btn-color: #555;
    --ct-border-color: #e1e1e1;
    --ct-border-radius: 5px;
    --ct-tree-hover: #efefef;
    --ct-selection: #418EFF;
    --ct-padding: 8px;
}*/
:root {
    --ct-bg: #424242;
    --ct-btn-color: #555;
    --ct-border-color: #707070;
    --ct-border-radius: 15px;
    --ct-tree-hover: #424242;
    --ct-selection: #FF7555;
    --ct-padding: 8px;
}

.comboTreeWrapper {
    position: relative;
    text-align: left !important;
}

.comboTreeInputWrapper {
    position: relative;
}

.comboTreeArrowBtn {
    width: 2em;
    height: 2em;
    position: absolute;
    top: 13px;
    left: 160px;
    /*right: 50px;
    bottom: 0px;
    top: 0px;*/
    box-sizing: border-box;
    border: 1px solid var(--ct-border-color);
    border-radius: 0 var(--ct-border-radius) var(--ct-border-radius) 0;
    background: var(--ct-border-color);
    cursor: pointer;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
    background: url(../assets/down-arrow.png) no-repeat center;
    background-color: var(--ct-border-color);
}

/*
.comboTreeArrowBtn:hover {
    background: var(--ct-btn-hover);
}
.comboTreeArrowBtn:active {
    background: var(--ct-btn-active);
}
.comboTreeInputBox:focus + .comboTreeArrowBtn {
    color: var(--ct-btn-color);
    border-top: 1px solid var(--ct-selection);
    border-right: 1px solid var(--ct-selection);
    border-bottom: 1px solid var(--ct-selection);
}*/

.comboTreeArrowBtnImg {
    font-size: 1.25rem;
}

.comboTreeDropDownContainer {
    display: none;
    background: var(--ct-bg);
    border: 1px solid var(--ct-border-color);
    position: absolute;
    top: 40px;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
    max-height: 250px;
    overflow-y: scroll;
}

.comboTreeDropDownContainer ul {
    padding: 0px;
    margin: 0;
}

.comboTreeDropDownContainer li {
    list-style-type: none;
    padding: 0 15px 0 15px;
}

.comboTreeDropDownContainer li .selectable {
    cursor: pointer;
}

.comboTreeDropDownContainer li .not-selectable {
    cursor: not-allowed;
}


.comboTreeDropDownContainer li:hover {
    background-color: var(--ct-tree-hover);
}

.comboTreeDropDownContainer li:hover ul {
    background-color: var(--ct-bg)
}

.comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover {
    background-color: var(--ct-selection);
    color: var(--ct-bg);
    border-radius: 2px;
}

span.comboTreeItemTitle {
    display: block;
    padding: 3px var(--ct-padding);
}

.comboTreeDropDownContainer label {
    cursor: pointer;
    width: 100%;
    display: block;
}

.comboTreeDropDownContainer .comboTreeItemTitle input {
    position: relative;
    top: 2px;
    margin: 0px 4px 0px 0px;
}

.comboTreeParentPlus {
    position: relative;
    left: -12px;
    top: 4px;
    width: 4px;
    float: left;
    cursor: pointer;
}


.comboTreeInputBox {
    padding: var(--ct-padding);
    border-radius: var(--ct-border-radius);
    border: 1px solid var(--ct-border-color);
    width: 14.4em;
    box-sizing: border-box;
    padding-right: 24px;
    background: var(--ct-border-color);
    color: #fff;
}

.comboTreeInputBox::placeholder {
    color: #fff;
}

/* For Internet Explorer 10-11 */
.comboTreeInputBox:-ms-input-placeholder {
    color: #fff;
}

/* For Microsoft Edge */
.comboTreeInputBox::-ms-input-placeholder {
    color: #fff;
}

.comboTreeInputBox:focus {
    border: 1px solid var(--ct-selection);
    outline-width: 0;
}


.multiplesFilter {
    width: 94%;
    padding: 5px;
    box-sizing: border-box;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--ct-border-color);
    background-color: var(--ct-bg);
    color: #fff;
    outline: none;
}

.multiplesFilter::placeholder {
    color: #fff;
}

/* For Internet Explorer 10-11 */
.multiplesFilter:-ms-input-placeholder {
    color: #fff;
}

/* For Microsoft Edge */
.multiplesFilter::-ms-input-placeholder {
    color: #fff;
}