.fs-wrap {
    display: inline-block;
    cursor: url('../images/cursor.svg'),auto;;
    line-height: 1;
    width: 100%;
    border-radius: 4px;
    border:1px solid #313D4F;
}

.fs-wrap:focus {
    outline: 0;
    border-color: #22A7F0;
}


.fs-label-wrap {
    position: relative;
    background-color: #1A1D21;
    cursor: url('../images/cursor.svg'),auto;
    color: #fff;
    border-radius: 4px;
}

.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: 4px 22px 4px 5px;
    display: flex;
    flex-wrap: wrap;
    line-height: 2;
    font-size: 14px;
    color: rgba(251,251,251,.6);
}

.fs-label-wrap .fs-label .fslabel-list {
    background-color: rgba(34, 167, 242,.5);
    border:1px solid #22A7F2;
    width: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    padding: 2px 5px;
    display: flex;
    margin: 2px;
    border-radius: 4px;
    cursor: default;
    color:#fff;
}

.fs-label-wrap .fs-label .fslabel-list span{
    margin: auto 0 auto 10px;
    cursor: url('../images/cursor.svg'),auto;
}


.fs-arrow {
    width: 16px;
    height: 16px;
    background: url('../images/chevron-down.svg') ;
    top: 10px;
    right: 10px;
    bottom: 0;
    position: absolute;
    z-index: 8
}

.fs-wrap.fs-open .fs-arrow {
    background: #1A1D21 url('../images/chevron-up-active.svg') ;
}

.fs-dropdown {
    position: absolute;
    background-color: #232F3E;
    border: 1px solid #313D4F;
    width: 100%;
    margin-top: 5px;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 4px;
}

.fs-dropdown .fs-options {
    max-height: 185px;
    overflow: auto;
}

.fs-options::-webkit-scrollbar {
    width: 4px;
}

.fs-options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.fs-options::-webkit-scrollbar-thumb {
  background-color: #4B596F;
  outline: 1px solid #364357;
  border-radius: 2px;
} 


.fs-search input {
    border: 1px solid #313D4F;
    border-radius: 4px;
    background-color: #232F3E;
    box-shadow: none !important;
    outline: none;
    padding: 5px 20px 5px 10px;
    width: 100%;
    color: #fbfbfb;
}

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

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

.fs-search {
    padding: 5px;
    position: relative;
}

.fs-search:after {
    content: "";
    background: url("../images/search.svg");
    width: 16px;
    height: 16px;
    position: absolute;
    top: 13px;
    right: 13px;
}

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

.fs-option {
    cursor: url('../images/cursor.svg'),auto;
    word-break: break-all;
}

.fs-option .fs-option-label {color: #fbfbfb;font-weight: 400;font-size: 14px;}
.fs-option:hover .fs-option-label,.fs-option.selected .fs-option-label {color: #22A7F0;font-weight: 600;}

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

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

.fs-wrap.multiple .fs-option {
    position: relative;
    padding:10px 30px 10px 10px;
}

.fs-wrap.multiple .fs-checkbox {
    position: absolute;
    display: block;
    width: 30px;
    top: 0;
    right: 0;
    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;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i,.fs-wrap.multiple .fs-option:hover .fs-checkbox i {
    background-image: url('../images/Tick.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.fs-optgroup-label {
    font-weight: bold;
    text-align: center;
}

.hidden {
    display: none;
}