/* 100% YOUR ORIGINAL CHOSEN.CSS — ZERO CHANGES — ONLY CLASS NAMES RENAMED */
.smart-search {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    zoom: 1;
    display: inline;
}

.smart-search * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.smart-search .smart-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    z-index: 990;
    width: 100%;
    border: 1px solid #dbdbdb;
    background-color: #fff;
    border-top: 0;
    border-radius: 0 0 4px 4px;
        max-height: 300px;
        overflow-y: auto;
}

.smart-search.active .smart-search-dropdown {
    left: 0
}

.smart-search a {
    cursor: pointer
}

.smart-search-single .smart-search-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 18px;
    height: 61px;
    line-height: 66px;
    border: 1px solid #dbdbdb;
    border: 1px solid transparent;
    background-color: #fff;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 8px
}

.smart-search-active.smart-search-with-drop .smart-search-single {
    border-radius: 4px 4px 0 0
}
.dropdown-item{
    color: #888;
}
.dropdown-item:hover{
    cursor: pointer;
    color: #888;
    background: #fff;
}
.smart-search-active .smart-search-drop,
.smart-search-single .smart-search-drop {
    opacity: 0;
    transition: all .3s;
    z-index: -1;
}

.smart-search-active.smart-search-with-drop .smart-search-drop {
    opacity: 1;
    z-index: 999;
}

.smart-search-single .smart-search-default {
    color: #999
}

.smart-search-single .smart-search-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #888
}

.smart-search-single .smart-search-single div:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    margin: 1px 0 0;
    right: 20px;
    position: relative;
    width: auto;
    height: auto;
    display: inline-block;
    color: silver;
    float: right;
    font-weight: 900;
    transition: transform .3s;
    transform: rotate(0deg)
}

.smart-search-active.smart-search-with-drop .smart-search-single div:after {
    transform: rotateX(180deg)
}

.smart-search-single .smart-search-drop {
    margin-top: -1px;
    background-clip: padding-box
}

.smart-search .smart-search-results {
    color: #888;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 8px 0;
    padding: 0 4px 0 8px;
    max-height: 300px
}

.smart-search .smart-search-results li {
    display: none;
    margin: 0;
    padding: 9px 10px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none
}

.smart-search .smart-search-results li.active-result {
    display: list-item;
    cursor: pointer
}

.smart-search .smart-search-results li.highlighted {
    background-color: transparent;
    color: #66676b;
    transition: color .2s ease-in-out
}

.smart-search .smart-search-results li.no-results {
    color: #888;
    display: list-item;
    background-color: #fff
}

.smart-search-active .smart-search-single {
    border: 1px solid #e0e0e0
}

.smart-search-drop::-webkit-scrollbar {
    width: 10px
}

.smart-search-drop::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, .05);
    border-radius: 10px
}

.smart-search-drop::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .2)
}

