/* Action Button */
.searchable-dropdown .option-list-container{
  z-index:1000;
  overflow:visible;
  height:0;
  position:relative;
}
.searchable-dropdown ul.option-list{
  margin:0;
  padding:0;
  list-style:none;
  overflow-y:auto;
  position:relative;
  max-height:300px;
  background:#eee;
  border:1px solid #aaa;
  border-radius:0 0 4px 4px;
  box-shadow:3px 3px 6px rgba(0,0,0,0.25);
}
.searchable-dropdown ul.option-list li{
  cursor:pointer;
  padding:5px 10px;
  border:1px solid #eee;
  border-top:0 none;
  background:#f7f7f7;
  font-size:0.95em;
}
.searchable-dropdown ul.option-list li:first-child{
  border-top:1px solid #eee;
}
.searchable-dropdown ul.option-list li:hover{
  background:#fffbce;
}
.searchable-dropdown .add-option{
  background:#C8FFB5;
}
.searchable-dropdown .option-id{
  color:#888;
  font-size:0.85em;
  float:right;
}