.searchSelect {
    position: relative;
}

.searchSelect--FillDismiss {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.searchSelect--FillDismiss--hidden {
    display: none;
}

.searchSelect--Display {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.searchSelect--Display--sm {
    height: 26px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.searchSelect--Display::after {
    content: '▼';
    position: absolute;
    right: 0;
    color: #555555;
    font-size: 12px;
    padding: 0 6px;
}

.searchSelect--Display--disabled {
    background-color: #eee;
    cursor: not-allowed;
}

.searchSelect--Wrapper {
    width: 100%;
    min-width: 240px;
    position: absolute;
    z-index: 3;
}

.searchSelect--Wrapper--right {
    right: 0;
}

.searchSelect--Wrapper--hidden {
    display: none;
}

.searchSelect--Dropdown {
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.searchSelect--Options {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

.searchSelect--Option {
    cursor: pointer;
    font-size: 14px;
    background: #fff;
    color: #444444;
    padding: 6px 6px 6px 1em;
    user-select: none;
}

.searchSelect--Option:hover, .searchSelect--Option--selected {
    background: #5897fb;
    color: #fff;
}

.searchSelect--Option--hidden {
    display: none;
}

.searchSelect--Search {
    padding: 4px;
    position:relative;
}

.searchSelect--Search--top {
    border-bottom: 1px solid #ccc;
    margin-bottom: 4px;
}

.searchSelect--Search--bottom {
    border-top: 1px solid #ccc;
    margin-top: 4px;
}

.searchSelect--SearchBar {

}

.searchSelect--SearchBarIcon {
    position: absolute;
    background-image: url("https://s3.amazonaws.com/wi-cdn/assets/img/ic_search_black.png");
    background-color: #fff;
    width: 18px;
    height: 18px;
    top: 10px;
    right: 10px;
}

.searchSelect--Result {

}

.searchSelect--Placeholder {
    color: #a4a4a4;
}

.searchSelect--Related {
    padding: 0 14px;
    color: #818181;
}

.noSelect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.form-control {
    width: 100%;
    height: 32px;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}