/* really important for child white-space: nowrap; to work */
.selectize-min-width-0{
    min-width: 0;
}
.SelectizeWrapperClass, .wrapperClass{
    position: relative;
}

.SelectizeWrapperClass * .item{
   white-space: nowrap;
}

.inputClass > input {
    outline: 0;
    border:0;
    padding: 0;
    margin:0;
}

.sel-dropdown{
    height:auto!important;
    margin-top:-2px!important;
    position: absolute;
    background-color:white;
    overflow-x:hidden;
    overflow-y:scroll;
    z-index: 1000;
    padding: 0!important;
    white-space: nowrap;
}

.sel-input::after{
    content: ' ';
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #808080 transparent transparent transparent;
}

.sel-input > input {
    outline: 0 !important;
    border:0 !important;
    font:inherit !important;
	padding-top:0px;
}

.sel-input > input::-ms-clear {
    height:0 !important;
	width:0 !important;
}
.sel-input{
    min-width: 10px !important;
    cursor:text !important;
    overflow: hidden !important;
}

.sel-input.input-active > .item {
}

.sel-input > .item {
	display:inline-block;
	padding-right:1px;
	vertical-align:baseline;
	max-width:100%;
	overflow:hidden;
	text-overflow:ellipsis !important;
	-ms-text-overflow:ellipsis !important;
}

.sel-input:focus-within{
    outline: 3px solid #ffbf47;
    outline-offset: 0;
}

.DropdownContentClass{
    padding: 0;
    max-height: 250px
}
.DropdownContentClass .option:hover{
    background-color: rgb(30,144,255);
    color:white;

}

.DropdownContentClass .option{
    padding:5px;
    cursor: default;
	white-space: pre-line;
}
.DropdownContentClass >div > .highlight{
    background-color: #ffbf47;
    padding: 0em !important;
}