.custom-selectbox {
    position: relative;
    margin: 20px 0
}

.custom-selectbox select {
    display: none
}

.vehicleDelivery__input .select-selected {
    display: none;
}

.select-selected {
    background-color: transparent
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px
}

.select-items div,
.select-selected {
    color: #000;
    padding: 0 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
    height: 30px;
    line-height: 30px
}

.select-items div {
    border-top: 0;
    border-bottom: 0
}

.select-items div:last-child {
    /* border-bottom: 1px solid #ffa200 */
}

.select-items {
    position: absolute;
    background-color: #f3f3f3;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 10px;
}

.select-items div {
    padding-top: 5px;
    padding-bottom: 5px;
}

.select-hide {
    display: none
}

.same-as-selected,
.select-items div:hover {
    background-color: #f3f3f3
}