.fs-wrap {
    display: block;
    cursor: pointer;
    line-height: 1;
}
.fs-label {cursor:pointer}
.fs-label-wrap {
    position: relative;
    background-color: #fff;
    cursor: default;
}

.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 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
border-bottom: dashed 1px #666;
font-weight: 700;
font-size: 15px;
padding: 10px 20px 6px 0px;
text-transform: uppercase; z-index:3;
}

.fs-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #111;
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
}

.fs-dropdown {
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: 1000;
    height:420px; overflow:auto; padding: 0px 12px 30px 12px; border: solid 1px #111; margin-top:-1px; border-bottom-width:15px;
    -webkit-box-shadow: 0px 15px 15px 0px rgba(255,255,255,1);
-moz-box-shadow: 0px 15px 15px 0px rgba(255,255,255,1);
box-shadow: 0px 15px 15px 0px rgba(255,255,255,1);
}

.fs-dropdown .fs-options {
    overflow: auto;
}

.fs-search input {
    box-shadow: none !important;
    outline: none;
    padding: 12px 10px;
    width: 100%; border: solid 1px #bbb !important; background-color:#f4f4f4;
}

.fs-option,
.fs-search,
.fs-optgroup-label {
    padding: 9px 0px;
    border-bottom: 1px dashed #ddd;
    cursor: default;
}
.fs-search {border-bottom:none}

.fs-option:last-child {
    border-bottom: none;
}


.fs-option {
    cursor: pointer;
}

.fs-option.disabled {
    opacity: 0.4;
    cursor: default;
}

.fs-option.hl {
    background-color: #f5f5f5;
}

.fs-wrap.multiple .fs-option {
    position: relative;
    padding-left: 26px;
}

.fs-wrap.multiple .fs-checkbox {
    position: absolute;
    display: block;
    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: 15px;
    height: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #eee;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    background-color: #dc5c92;
    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 {
    font-weight: 600; padding-top:15px;
}

.hidden {
    display: none;
}

.fs-wrap .fa {display:block; position: absolute; top:12px; right:5px;}
.fs-wrap .fa-chevron-down {display:none}
.fs-wrap.fs-open .fa-chevron-left {display:none}
.fs-wrap.fs-open .fa-chevron-down {display:block}

.fs-option .fs-option-label {font-size:12px}
.fs-wrap.multiple .fs-option:first-of-type, .fs-wrap.multiple .fs-option:nth-of-type(2) {margin-left:0px}
.fs-wrap.multiple .fs-option:first-of-type .fs-checkbox i, .fs-wrap.multiple .fs-option:nth-of-type(2) .fs-checkbox i {width:18px; height:18px;}