.fs-wrap {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    width:100%;
	    position: relative;
}
.fs-search {
    display: none;
}
.fs-label-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #412e27;
    cursor: default;
    width: 100%;    margin-top: 5px;
    height: 50px;
    border-radius: 40px;
}

.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: 15px 22px 15px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.fs-arrow:before {
	content: "\f107";
    right: 15px;
    left: auto;
    border: 0px;
    position: absolute;
    color: #373d43;
    font-size: 14px;
    top: 18px;
}
.fs-arrow {
    width: 0;
    height: 0;

    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
    transition: ease-in 0.15s;
}

.fs-open .fs-arrow {
    transform: rotate(-180deg);
}
.fs-dropdown .fs-options::-webkit-scrollbar {
  width: 5px;
}
 
.fs-dropdown .fs-options::-webkit-scrollbar-track {
  background:#ccc;
}
 
.fs-dropdown .fs-options::-webkit-scrollbar-thumb {
  background-color: #412E27;
  outline: 1px solid #412E27;
}
.fs-dropdown {
    position: absolute;
    background-color: #fff;
    border: 1px solid #412e27;
    width: 100%;
    margin-top: 5px;
    z-index: 1000;
    border-radius: 10px;
}

.fs-dropdown .fs-options {
     max-height: 260px;
    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 8px;
    border-bottom: 1px solid #412e27;
    cursor: default;
}

.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;
}

.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: 19px;
    height: 19px;
    border: 2px solid #412e27;
    border-radius: 0px;
    background-color: #fff;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
background: url(../images/check.svg) #0099DA;
    background-position: center;
    border: 2px solid #0099DA;
    outline: none;
    box-shadow: none;
    background-size: 17px;
}

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

.hidden {
    display: none;
}
