.selectfix {
	display: none;
}
.touch .selectfix {
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}
.selectfix-container {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
	-khtml-user-select: none;
	-ms-user-select: none;

    color: #000;
	cursor: default;
    font-family: arial;
    font-size: 14px;
    height: 40px;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
}
.selectfix-container.autoheight {
    height: auto;
}
.selectfix-container.opened {
    overflow: visible;
    z-index: 100;
}
.selectfix-border {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    right: 0;
    top: 100%;
    position: absolute;
}
.opened .selectfix-border {
    border-top-color: transparent;
    bottom: auto;
    height: auto;
    margin-top: -1px;
}
.selectfix-current-value::before {
    border-color: #ccc transparent transparent;
    border-style: solid;
    border-width: 10px 7px;
    content: "";
    display: block;
    height: 0;
    margin-top: -4px;
    position: absolute;
    right: 8px;
    top: 50%;
    width: 0;
    z-index: 1;
}
.selectfix-current-value::after {
    background-color: #fff;
    bottom: 2px;
    content: "";
    display: block;
    position: absolute;
    right: 2px;
    top: 2px;
    width: 25px;
}
.selectfix-container:hover .selectfix-current-value::before {
	border-color: #66afe9 transparent transparent;
}
.opened .selectfix-current-value::before {
    border-color: transparent transparent #006699;
    margin-top: -15px;
}
.selectfix-container.opened:hover .selectfix-current-value::before {
	border-color: transparent transparent #66afe9;
}
.selectfix-current-value {
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
    height: 100%;
    line-height: 2;
    overflow: hidden;
    padding: 5px 25px 5px 10px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
}
.selectfix-container.autoheight .selectfix-current-value {
    white-space: normal;
}
.selectfix-container.multiple .selectfix-current-value span {
    line-height: 1;
}

.opened .selectfix-current-value, .opened .selectfix-container:hover .selectfix-current-value {
    border-bottom: 1px dotted #006699;
}
.selectfix-container.opened:hover .selectfix-border {
    border-top-color: transparent;
}

.selectfix-current-value.disabled, .selectfix-current-value.disabled:hover {
    background-color: transparent;
    cursor: not-allowed;
    opacity: 0.5;
}
.selectfix-current-value span span {
    content: "x";
    cursor: pointer;
    display: inline-block;
    margin: 0 0 0 8px;
    padding: 0 8px;
}
.selectfix-current-value span span:hover {
}
.selectfix-current-value > span {
    background-color: rgba(0, 99, 167, 0.2);
    border-radius: 3px;
    display: inline-block;
    margin: 1px 5px 1px 0;
    padding: 6px 0 6px 8px;
}
.selectfix-container:hover .selectfix-border, .selectfix-container:hover .selectfix-current-value {
    border-color: #66afe9;
}
.selectfix-search {
    padding: 5px;
}
.selectfix-search input {
    border: 2px solid #006699;
    border-radius: 3px;
    box-sizing: border-box;
    display: block;
    line-height: 1em;
    padding: 6px 3px;
    width: 100%;
}
.selectfix-list {
}
.selectfix-value {
    cursor: pointer;
    display: block;
    line-height: 1.1;
    margin: 0;
    overflow: hidden;
    padding: 5px 8px;
}
.selectfix-value b {
    background-color: #afa;
}
.selectfix-value:hover, .selectfix-value.selected {
    background-color: #e1edf9;
}
.selectfix-value.selected {
    font-weight: bold;
}
.selectfix-value input[type="checkbox"] {
    margin: 0 5px 0 0;
    vertical-align: middle;
}



.selectfix-container .scrollpane-bar-y {
    bottom: 5px;
    right: 6px;
}
.selectfix-container .scroll-y .scrollpane-container {
    margin-right: 21px;
}
.selectfix-container .scrollpane-line-y {
    left: 5px;
    right: 5px;
}