.choices {
    margin-bottom: 0;
}
.choices__inner {
    height: 36px;
    min-height: 36px;
    padding: 6px 24px 6px 12px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #a3a3a3;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.choices__list {
    padding: 0;
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 0; 
}
.choices__list--dropdown .choices__item {
    padding: 4px;
}
.choices__list--dropdown .choices__item--selectable:after {
    display: none
}
.choices[data-type*=select-one]:after {
    border-color: #71717a transparent transparent;
    border-width: 4px;
    margin-top: -1.5px;
}
.choices[data-type*=select-one].is-open::after {
    border-color: transparent transparent #71717a;
}
.choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
    height: auto;
    min-height: auto;
}
.choices__input {
    background: transparent;
    width: 5px;
}
.choices__list--multiple .choices__item {
    border-radius: 2px;
    border: 1px solid #E9E9E9;
    background: #F7F7F7;    
    color: #323233;
    font-size: 13px;
    font-style: normal;
    line-height: normal;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    border-left: 1px solid #E9E9E9;
    /* background-image: url('../../icons/close.svg'); */
    background-image: url('close.svg');
}

/* VENDOR select */
.vendor .choices__inner {
    border: none;
    background-color: rgb(245 245 245);
    height: 24px;
    min-height: 24px;
    border-radius: 0;
    padding: 0 2px;
    font-weight: 400;
    font-size: 16px;
    min-width: 150px;
    width: 100%;
}
.vendor .choices__list {
    padding: 0 2px;
}
.vendor .choices[data-type*=select-one]:after {
    display: none;
}
