/*the container must be positioned relative:*/
.custom-select {
    position: relative;
}

.custom-select img {
    position: absolute;
    top: 20px;
    right: 15px;
    bottom: 10px;
    width: 8px;
    height: 5px;
}

.custom-select select {
    display: none; /* hide original SELECT element: */
}

/*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: #fff transparent transparent transparent; */
/* } */

/*point the arrow upwards when the select box is open (active):*/
/* .select-selected.select-arrow-active:after {  */
    /* /* border-color: transparent transparent #fff transparent; */
    /* top: 7px; */
/* } */

/*style the items (options), including the selected item:*/
 .select-selected {
    cursor: pointer;
    user-select: none;
    appearance: none;
    outline: none;
    background: none;
    width: 100%;
    color: #ffffff;
    border: 2px solid #fafafa;
    padding: 0.6rem 1.2rem; 
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

.select-items div {
    color: #000000;
    padding: 8px 16px;
}

/*style items (options):*/
.select-items {
    background-color: #ffffff;
    position: absolute;
    height: 130px;
    overflow: scroll;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-jenis-deposito-same-as-selected,
.select-proyek-same-as-selected,
.select-tabungan-same-as-selected,
.select-pembiayaan-same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}