.fq-combobox {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    min-width: 120px;
    height: 32px;
}

.fq-combobox-input {
    width: 100%;
    height: 100%;
    padding: 0 30px 0 10px;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background: #fff;
    color: #515a6e;
    font: inherit;
    line-height: 30px;
    outline: 0;
}

.fq-combobox-input:disabled {
    background: #f7f7f7;
    color: #c5c8ce;
    cursor: not-allowed;
}

.fq-combobox::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #808695;
    border-bottom: 2px solid #808695;
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.fq-combobox.open::after {
    transform: translateY(-30%) rotate(225deg);
}

.fq-combobox-menu {
    position: fixed;
    z-index: 10000;
    display: none;
    max-height: 240px;
    overflow: auto;
    border: 1px solid #dcdee2;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.fq-combobox.open .fq-combobox-menu {
    display: block;
}

.fq-combobox-option {
    min-height: 30px;
    padding: 7px 10px;
    color: #515a6e;
    line-height: 18px;
    cursor: pointer;
}

.fq-combobox-option:hover,
.fq-combobox-option.active {
    background: #fbf4e5;
    color: #e6a85f;
}

.fq-combobox-option.selected {
    color: #e6a85f;
    font-weight: 600;
}

.fq-combobox-empty {
    min-height: 30px;
    padding: 7px 10px;
    color: #9ea7b4;
    line-height: 18px;
}

.fq-select-native {
    display: none !important;
}
