/**
 * @name txdMultiSelect
 * @author sabba <francesco@techseed.it>
 * @version: see txd-multiselect.js
 * 
 * derived by
 * @author zhixin wen <wenzhixin2010@gmail.com>
 * @version 1.2.3
 * 
 * http://wenzhixin.net.cn/p/multiple-select/
 */

 .ms-parent {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding:0px !important;
}

/* .ms-choice {
    
    padding: .375rem .75rem;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    
    text-align: left;
    white-space: nowrap;
    line-height: 26px;
    
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    
} */
.ms-choice[readonly]{
    background-color: #fff;
}
.ms-choice.disabled {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.ms-empty{
    display: none;
}

/* .ms-choice>span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    float:left;
}

.ms-choice>span.placeholder {
    color: #999
} */

.ms-drop {
    overflow: hidden;
    display: none;
    margin-top: -1px;
    padding: 0;
    position: absolute;
    z-index: 1000;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    /* -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px */
}

.ms-drop.bottom {
    top: 100%;
    /* -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15) */
}

.ms-drop.top {
    bottom: 100%;
    /* -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15) */
}

.ms-search {
    display: inline-block;
    margin: 0;
    min-height: 26px;
    padding: 4px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 10000
}

.ms-search input {
    width: 100%;
    height: auto !important;
    min-height: 24px;
    padding: 0 20px 0 5px;
    margin: 0;
    outline: 0;
    font-family: sans-serif;
    font-size: 1em;
    border: 1px solid #aaa;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: #fff url(txd-multiselect.png) no-repeat 100% -22px;
    background: url(txd-multiselect.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(.85, #fff), color-stop(.99, #eee));
    background: url(txd-multiselect.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(txd-multiselect.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(txd-multiselect.png) no-repeat 100% -22px, -o-linear-gradient(bottom, #fff 85%, #eee 99%);
    background: url(txd-multiselect.png) no-repeat 100% -22px, -ms-linear-gradient(top, #fff 85%, #eee 99%);
    background: url(txd-multiselect.png) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%)
}

.ms-search,
.ms-search input {
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

.ms-drop ul {
    overflow: auto;
    margin: 0;
    padding: 5px 8px
}

.ms-drop ul>li {
    list-style: none;
    display: list-item;
    background-image: none;
    position: static
}

.ms-drop ul>li .disabled {
    opacity: .35;
    filter: Alpha(Opacity=35)
}

.ms-drop ul>li.multiple {
    display: block;
    float: left
}

.ms-drop ul>li.group {
    clear: both
}

.ms-drop ul>li.multiple label {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ms-drop ul>li label {
    font-weight: 400;
    display: block;
    white-space: nowrap;
    cursor: pointer
}

.ms-drop ul>li label.optgroup {
    font-weight: 700
}

.ms-drop input[type=checkbox],
.ms-drop input[type=radio] {
    vertical-align: middle;
    margin: 5px
}

.ms-drop .ms-no-results {
    display: none
}

/*# sourceMappingURL=multiple-select.min.css.map */