/* jQuery Tree Multiselect v2.3.1 | (c) Patrick Tsai | MIT Licensed */

.tree-multiselect {
    border: 1px solid #d9d9d9;
    width: 100%;
    height: inherit;
    display: table;
    font-family: Arial, Helvetica, sans-serif;
}

.tree-multiselect > .selected,
.tree-multiselect > .selections {
    vertical-align: top;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: table-cell;
    width: 50%;
}

.tree-multiselect > .selections {
    border-right: 1px solid #d9d9d9;
}

.tree-multiselect > .selections .item {
    margin-left: 2px;
}

.tree-multiselect > .selections .item label {
    cursor: pointer;
    display: inline;
}

.tree-multiselect > .selections.no-border {
    border-right: none;
}

.tree-multiselect > .selected {
    padding: 5px;
}

.tree-multiselect > .selected > .item {
    padding: 6px;
    background: #eeeeee;
}

.tree-multiselect > .selected.ui-sortable > .item:hover {
    cursor: move;
}

.tree-multiselect .section.collapsed > .title span.collapse-section:after {
    position: relative;
    top: 1px;
    left: -1px;
    content: '+';
}

.tree-multiselect .section.collapsed:not([searchhit]) > .item,
.tree-multiselect .section.collapsed:not([searchhit]) > .section {
    display: none;
}

.tree-multiselect .title,
.tree-multiselect .item {
    margin: 0 0 2px 0;
}

.tree-multiselect .title {
    padding: 2px;
    color: #ffffff;
    background: #999;
}

.tree-multiselect .title > * {
    display: inline-block;
}

.tree-multiselect .title > span.collapse-section {
    position: absolute;
    right: 20px;
    margin: 0px 5px;
    width: 10px;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
}

.tree-multiselect .title > span.collapse-section:after {
    position: relative;
    top: -1px;
    content: '-';
}

.tree-multiselect .title:hover {
    cursor: pointer;
}

.tree-multiselect input[type=checkbox] {
    position: relative;
    top: 2px;
    margin: 0 4px 0 6px;
    width: auto;
    display: inline;
}

.tree-multiselect input[type=checkbox]:hover {
    cursor: pointer;
}

.tree-multiselect span.remove-selected,
.tree-multiselect span.description {
    margin: 0 6px 0 0;
    padding: 2px 5px;
    background: #d9d9d9;
    color: #ffffff;
}

.tree-multiselect span.remove-selected:hover {
    cursor: pointer;
}

.tree-multiselect span.description:hover {
    cursor: help;
}

.tree-multiselect .temp-description-popup {
    padding: 5px;
    border: 1px solid #d9d9d9;
    background: #eeeeee;
    z-index: 999;
}

.tree-multiselect span.section-name {
    float: right;
    font-style: italic;
}

.tree-multiselect .auxiliary {
    display: table;
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 2px;
}

.tree-multiselect .auxiliary input.search {
    display: table-cell;
    width: 100%;
    padding: 5px;
    margin: 0;
    border: 1px solid #d9d9d9;
}

.tree-multiselect .auxiliary .select-all-container {
    display: table-cell;
    text-align: right;
}

.tree-multiselect .auxiliary .select-all-container span.select-all,
.tree-multiselect .auxiliary .select-all-container span.unselect-all {
    padding-right: 5px;
    margin-right: 5px;
}

.tree-multiselect .auxiliary .select-all-container span.select-all:hover,
.tree-multiselect .auxiliary .select-all-container span.unselect-all:hover {
    cursor: pointer;
}

.tree-multiselect .auxiliary .select-all-container span.select-all {
    border-right: 1px solid #d9d9d9;
}
