/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: Arial;
    width: 158px;
}
.custom-select * {
    font-family: CiscoSansTT-Regular;
    color: #9194A7;
    font-size: 0.75rem;
    letter-spacing: 0;
    margin: 0;
}
.custom-select select {
    display: none; /*hide original SELECT element:*/
}
.select-selected {
    text-align: right;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 11px;
    right: 10px;
    width: 7px;
    height: 7px;
    border: 1px solid #9194A7;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    transform: rotate(-135deg);
    top: 15px;
}
/*style the items (options), including the selected item:*/
.select-items .select-item, .select-selected {
    padding: 12px;
    border-top: 1px solid;
    border-color: #E9E9E9;
    cursor: pointer;
    user-select: none;
}
.select-items .select-item img {
    margin-right: 6px;
}
.select-selected {
    border: none;
    padding-right: 24px;
}
.select-selected img {
    margin-right: 6px;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #FFF;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    border: 1px solid;
    border-color: #DFDFDF;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}
.select-items .select-item:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}