.selectbox {
    vertical-align: middle;
    cursor: pointer;
    width: 85%;
}
.selectbox .select {
    position: relative;
    border: 1px solid #c6c6c6;
    background: #fbfbf9;
    color: #4c4b49;
    transition: background 0.2s;
}

.selectbox .select {
    width: 89%;
    height: 26px;
    line-height: 26px;
    padding: 0 45px 0 10px;
}
.selectbox .select:hover {
    background: #fff;
}
.selectbox .select .text {
    display: block;
    width: 90%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.selectbox .trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0992D4;
    transition: 0.3s;
}
.selectbox:hover .trigger {
    background: #2BB4F6;
}
.selectbox .arrow{
    width: 0;
    border: 6px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
}
.selectbox .dropdown {
    border: 1px solid #c6c6c6;
    background: #fbfbf9;
    width: 240px;
    margin: 0;
    padding: 4px 0;
    width: 100%;
    top: 28px;
}
.selectbox ul {
    list-style: none;
    margin: 0;
}
.selectbox li {
    padding: 5px 10px 6px;
    color: #231F20;
}
.selectbox li.selected {
    background: #cfebf4;
}
.selectbox li:hover {
    background: #cfebf4;
}
.selectbox li.disabled:hover {
    background: none;
}
