.dd-select {
    border-radius: 2px;
    --border: solid 1px #ccc;
    position: relative;
    cursor: pointer;
    background-color: rgba(0,0,0,.5)
}
.dd-desc {
    color: #fff;
    display: block;
    overflow: hidden;
    font-weight: normal;
}
.dd-selected{
    overflow: hidden;
    display: block;
    padding: 10px;
    font-weight: bold;
    color: #fff !important;
}
.dd-pointer {
    width: 0;
    height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
}
.dd-pointer-down {
    border: solid 5px transparent;
    border-top: solid 5px #fff;
}
.dd-pointer-up {
    border: solid 5px transparent !important;
    border-bottom: solid 5px #fff !important;
    margin-top: -8px;
}
.dd-options {
    --border: solid 1px #ccc;
    border-top: none;
    list-style: none;
    --box-shadow: 0px 1px 5px #ddd;
    display: none;
    position: absolute;
    z-index: 2000;
    margin: 0;
    padding: 0;
    background: rgba(0,0,0,.5);
    overflow: auto !important;
}
.dd-option-text {
  color: #fff;
}
.dd-option {
    padding: 10px;
    display: block;
    border-bottom: solid 1px #000;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
}
.dd-options > li:last-child > .dd-option {
    border-bottom: none;
}
.dd-option:hover {
    background: rgba(0,0,0,.5);
    color: #fff;
}
.dd-selected-description-truncated {
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dd-option-selected {
    background: rgba(0,0,0,.5);
}
.dd-option-image,
.dd-selected-image {
    vertical-align: middle;
    float: left;
    margin-right: 5px;
    max-width: 64px;
}
.div-text {
    padding: 10px;
}
.dd-image-right {
    float: right;
    margin-right: 15px;
    margin-left: 5px;
}
.dd-container {
    position: relative;
    margin-right: 15px;
}
​ .dd-selected-text {
    font-weight: bold
}
​