/* The container must be positioned relative: */
.text-bold {
    font-family: 'Europe Bold', arial;
}

.custom-select {
    position: relative;
}

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

.select-selected {
    background: url(https://cdn-icons-png.flaticon.com/512/32/32195.png) no-repeat right;
    background-size: 12px;
    background-position-x: calc(100% - 10px);
    appearance: none;
    background-color: #ffffff;
    width: 100%;
    border-radius: 0px 0px 5px 5px;
    padding: 10px 15px 10px 15px;
    border: 1px solid #D0D0D0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    display: none;
}

/* 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-items div {
    font-weight: 500;
    padding: 11px 0px 11px 16px;
    cursor: pointer;
    border-left: 1px solid #D0D0D0;
    border-right: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background: #fff;
    width: 100%;
    border: 0;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* 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);
}
