.fs-wrap {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    width: 100%;
}

.fs-label-wrap {
    position: relative;
    cursor: default;
    border: 1px solid rgba(70,69,71,0.3);
    border-radius: 4px;
}


.fs-wrap.fs-open .fs-label-wrap {
    border: 1px solid #464547;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}


.fs-label-wrap,
.fs-dropdown {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fs-label-wrap .fs-label {
    padding: 10px 22px 6px 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 36px;
}

.fs-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(70,69,71,0.3);
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    margin: auto;
    transition: ease-in 0.15s;
}
.fs-arrow:after {
       content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(255, 255, 255);
    position: absolute;
    top: -12px;
    right: -10px;
    bottom: 0;
    margin: auto;
    transition: ease-in 0.15s;
}

.fs-open .fs-arrow {
    transform: rotate(-180deg);
}

.fs-dropdown {
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: 1000;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #464547;
    border-radius: 0 0 4px 4px;
    border-top: 0px;
}

.fs-dropdown .fs-options {
    max-height: 100%;
    overflow: auto;
}

.fs-search input {
    border: none !important;
    box-shadow: none !important;
    outline: none;
    padding: 6px 0;
    width: 100%;
}

.fs-option,
.fs-search,
.fs-optgroup-label {
    padding: 12px 12px;
    border-bottom: 1px solid #eee;
    cursor: default;
    font-family: Noto Sans;
}

.fs-option:hover{
    background-color: rgba(70,69,71,0.05);
}

.fs-option:last-child {
    border-bottom: none;
}

.fs-search {
    padding: 0 8px;
}

.fs-no-results {
    padding: 6px 8px;
}

.fs-option {
    cursor: pointer;
    word-break: break-all;
    color: #464547; 
      font-size: 14px;    line-height: 19px;
}

.fs-option.disabled {
    opacity: 0.4;
    cursor: default;
}

.fs-option.hl {
    background-color: #f5f5f5;
}

.fs-wrap.multiple .fs-option {
    position: relative;
    padding-left: 30px;
}

.fs-wrap.multiple .fs-checkbox {
    position: absolute;
    display: block;
    width: 30px;
    top: 0;
    left: 0;
    bottom: 0;
}

.fs-wrap.multiple .fs-option .fs-checkbox i {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid rgba(70,69,71,0.3);
    border-radius: 2px;
    background-color: #FFFFFF;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    background-color: #79787B;
    border-color: transparent;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    background-position: center;
}

.fs-optgroup-label {
    /*text-align: center;*/
}

.hidden {
    display: none;
}



.fs-search i{
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(70,69,71,0.3);
}



.fs-options .fs-option:first-child{
    display: none;
}


.fs-wrap.multiple .fs-options .fs-option:first-child{
    display:block;
}