.custom-select.input.select {
    position: relative;
    font-family: Arial;
 
}
.custom-select.input.select select {
    display: none; /*hide original SELECT element:*/
}
.select-selected {
    background-color: #fff;
    height: 30px;
    line-height: 30px;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: rgb(189, 189, 189) transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent rgb(189, 189, 189) transparent;
    top: 6px;
}
/*style the items (options), including the selected item:*/
.select-items div {
    color: rgb(34, 34, 34);
    font-size:14px;
    font-weight: 400;
    font-family: Arial;
    padding: 0px 16px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    cursor: pointer;
    height: 32px;
    line-height: 30px;
    box-sizing: border-box;
    width: 100%;
}
.select-selected {
    color: rgb(34, 34, 34);
    font-size:14px;
    font-weight: 400;
    font-family: Arial;
    padding: 0px 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(189, 189, 189);
    cursor: pointer;
    height: 32px;
    line-height: 30px;
    box-sizing: border-box;
}

.select-selected.red {
    border-color: #f00;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}
.select-items div:hover, .same-as-selected {
    /*background-color: rgba(0, 0, 0, 0.1);*/
    font-weight: 700;
}

