/* enhanced user interface */
#white-box ul {
  padding-left:30px;
  padding-top: 10px;
}
#white-box li{
 padding:0 .5rem;
}
#white-box li span {
  color:#333;
}
#white-box li:first-child span {
  color:#f24b5d;
}
#white-box li span.time_ago {
  display:none;
}
#white-box li:first-child  span.time_ago {
  display:initial;
}

.chosen-container {
	position:relative;
}
.chosen-container ul.chosen-results {
   display: none;
}
.chosen-container-active ul.chosen-results {
    position: absolute;
    height: 160px;
    width: 100%;
    box-shadow: 1px 2px 10px #ccc;
    overflow-y: auto;
    top: 100%;
    margin: 0;
    background: #fff;
    margin-right: 16px;
	display: block;
}
ul.chosen-results li{
    padding: 10px;
}
ul.chosen-results li:hover, ul.chosen-results li.highlighted{
  background: #efefef;
  cursor: pointer;
}

.chosen-search input{
	background-position: right 0rem center;
	background-color: #efefef;
	background-size: 9px 6px;
	background-origin: content-box;
	background-repeat: no-repeat;
	box-shadow: none;
}
.chosen-search input:hover{
	background-color: #e3e7ea;
}
a.chosen-single:hover {
    color: inherit;
	cursor: text;
}
.chosen-container-active a.chosen-single{
	display:none;
}
a.chosen-single {
  width: 99%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
  background: #efefef;
  padding: 5px;
  color: inherit;
  position: absolute;
  margin: 2px;
}
.chosen-drop{
  z-index: 1;
  position: relative;
}

/* select arrow fix */
select {
  background-position: right 0rem center;
 }
