[role="dd-select"]{
    position: relative;
    cursor: pointer;
    padding-left: 10px;
    height: 43px;
}
[role="dd-select"] .dd-sel{
}
[role="dd-select"] .dd-sel:after {
    position: absolute;
    top: 50%;
    width: 11px;
    height: 6px;
    right: 8px;
    margin-top: -3px;
    content: '';
    background-image: url("/site/modules/StockQuotes/css/img/sl.svg");
    background-position: -226px -42px;
    -webkit-transition: -webkit-transform .1s ease-out;
    transition: transform .1s ease-out;
}
[role="dd-select"].expanded .dd-sel:after {
    transform: rotate(-180deg);
}

.dd-select-options{
    display: none;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    width: 100%;
    min-width: 120px;
    background: #fff;
    z-index: 2;
    line-height: 30px;
    overflow: auto;
    max-height: 200px;
    margin-left: -1px;
}
.dd-img img{
    margin-right: 5px;
    border: 1px solid #ccc;
}
.dd-select-options li{
    cursor: pointer;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 5px;
}
.dd-select-options li img{
    margin-right: 6px;
    margin-bottom: 2px;
}
.dd-select-options li label{
    margin: 0 7px 0 0;
    padding: 0;
    line-height: 30px;
    height: 30px;
}
.dd-select-options li:hover{
    background: #ECECEC;
}

[role="dd-select"].expanded .dd-select-options{
    display: block;
}