/* version 1.0 created date: 2020/05/12. */
.fs-wrap {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    width: 250px;
}

.fs-label-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    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 {
    padding: 6px 22px 6px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.fs-arrow {
    width: 15px;
    height: 10px;
    background: url(../../img/svg/arrow-down.svg) no-repeat;
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
    margin: auto;
}

.fs-open .fs-arrow {
    background: url(../../img/svg/arrow-up.svg) no-repeat;
}

.fs-dropdown {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 250px;
    z-index: 100;
}

.fs-dropdown .fs-options {
    max-height: 200px;
    overflow: hidden;
    padding-right: 5px;
    margin-right: 5px;
}

.fs-search input {
    border: 1px solid #FFBC07 !important;
    box-shadow: none !important;
    outline: none;
    padding: 9px 6px;
    width: 100% !important;
}

.fs-option,
.fs-search,
.fs-optgroup-label {
    padding: 8px 8px;
    cursor: default;
}

.fs-optgroup-label {
    border-bottom: 1px solid #E9E9EA;
}
.fs-checkall{
    border-top: 1px solid #E9E9EA;
}

.fs-option:last-child {
    border-bottom: none;
}

.fs-option:hover {
    background: #FFBC07;
}

.fs-option:hover .fs-checkbox > i, .fs-option:hover .fs-option-label{
    color: #FFFFFF !important;
}

.fs-option-label {
    color: #2A2B33;
}

.fs-search {
    padding: 10px;
}

.fs-no-results {
    padding: 6px 8px;
}

.fs-option {
    cursor: pointer;
    word-break: break-all;
}

.fs-option.disabled {
    opacity: 0.4;
    cursor: default;
}

.fs-option.hl {
    background-color: #f5f5f5;
}

.fs-wrap.multiple .fs-option {
    position: relative;
    padding-left: 36px;
    padding-right: 25px;
}

.fs-wrap.multiple .fs-checkbox {
    position: absolute;
    display: block;
    width: 30px;
    top: 0;
    left: 6px;
    bottom: 0;
}

.fs-wrap.multiple .fs-option .fs-checkbox i {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    color: #E9E9EA;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    color: #FFBC07 !important;
}
.fs-wrap.multiple .fs-option.selected:hover .fs-checkbox i{
    color: #fff !important;
}

.fs-optgroup-label {
    font-weight: bold;
    text-align: center;
    background-color: #f8f8f8;
}

.hidden {
    display: none;
}