.fs-wrap {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    width: 100%;
    outline: none;
    position: relative;
    cursor: pointer;
}

.fs-label-wrap {
    position: relative;
    background-color: #fff;
    /* border: 1px solid #ddd; */
    cursor: default;
    height: 75px;
    border-radius: 999px;
    outline: none;
    z-index: 12;
}

.fs-label-wrap,
.fs-dropdown {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@font-face{
    font-family: notoSansLight;
    src: url("../fonts/NotoSans-Light.ttf");
}
.fs-label-wrap .fs-label {
    padding: 6px 22px 6px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 75px;
    padding: 30px 12px 30px 38px;
    color: #000;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    font-family: notoSansLight;
}

.fs-arrow {
    /* width: 0; */
    /* height: 0; */
    /* border-left: 5px solid transparent; */
    /* border-right: 5px solid transparent; */
    /* border-top: 5px solid #333; */
    position: absolute;
    top: 2px;
    right: 34px;
    bottom: 0;
    margin: auto;
    /* transition: ease-in 0.15s; */
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-image: url("../web/select_icon_gray.svg");
    cursor: pointer;
}

/* .fs-open .fs-arrow {
    transform: rotate(-180deg);
} */

.fs-dropdown {
    position: absolute;
    top: 37.5px;
    background-color: #fff;
    /* border: 1px solid #ddd; */
    width: 100%;
    z-index: 11;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.fs-dropdown .fs-options {
    max-height: auto;
    overflow: auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.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: 6px 8px;
    /* border-bottom: 1px solid #eee; */
    cursor: default;
}

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

.fs-search {
    padding: 0 8px;
    display: none;
}

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

.fs-option {
    cursor: pointer;
    word-break: break-all;
    padding-left: 38px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #000;
    font-size: 13px;
}
.fs-option-label {
    font-family: notoSansLight;
}
.fs-option:hover {
    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-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: 14px;
    height: 14px;
    border: 1px solid #aeaeae;
    border-radius: 2px;
    background-color: #fff;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    background-color: rgb(17, 169, 17);
    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: bold;
    text-align: center;
}

.hidden {
    display: none;
}
@media only screen and (max-width: 768px){
    .fs-dropdown{
        position: relative;
        top: -37.5px;
    }
}