.jquery-dropdown {
  display: none;
  background: #000 !important;
}

div.jquery-dropdown-container {
  position: relative;
  cursor: pointer;
}

div.jquery-dropdown-header { 
  /*border: 1px solid #000;*/
  /*background: #fff;*/
  /*height: 22px;*/
  /*font-weight: bold; */
  /*text-indent: 2px; */
  /*font-size: 7pt;*/
  /*white-space: no-wrap;*/
  /*overflow: hidden; */

  /*overflow-x: scroll;*/

  border: 1px solid #fff !important;
  border-radius: 0;
  outline: none;
  background: #000;
  color: #fff;
  opacity: 0.5;
  font-size: 16px;
  font-family: 'Raleway-Bold', sans-serif;
  font-weight: 700;
  height: 30px;
  box-sizing: content-box;
  padding: 4px;
  margin: 0;
  text-transform: uppercase;
  text-indent: 4px; 
  line-height: 30px;
  position: relative;
}
div.jquery-dropdown-header::after {
  content: '< >';
  position: absolute;
  transform: rotate(90deg);
  top: 2px;
  right: 0;
}

ul.jquery-dropdown-list { 
  /*margin: 0;*/
  /*padding: 0;*/
  display: none;
  position: absolute;
  left: 0;
  /*top: 23px; */
  /*border: 1px solid #000;*/
  z-index: 100;
  /*width: 300px;*/

  top: 25px;
  border: 1px solid #fff !important;
  border-radius: 0;
  outline: none;
  background: #000;
  color: #fff;
  /*opacity: 0.5;*/
  font-size: 16px;
  font-family: 'Raleway-Bold', sans-serif;
  font-weight: 700;
  box-sizing: content-box;
  padding: 4px !important;
  margin: 0;
  max-height: 250px;
  overflow-y: scroll;
  width: calc(100% - 10px);
}
  
ul.jquery-dropdown-list li { 
  list-style: none; 
  /*background: #fff;*/
  /*border-bottom: 1px solid #000; */
  margin: 0;
  padding: 2px; 
  text-transform: uppercase;
  /*max-width: 376px;*/
  width: calc(100% - 10px);
}
@/*media (max-width: 979px) {
  ul.jquery-dropdown-list,
  ul.jquery-dropdown-list li { 
    width: calc(100% - 10px);
  }
}*/
ul.jquery-dropdown-list li:hover { 
  background: #ccc; 
}
ul.jquery-dropdown-list li a, 
ul.jquery-dropdown-list li a:link, 
ul.jquery-dropdown-list li a:visited { 
	/*color: #000;*/
	display: block;
	text-decoration: none;
	/*width: 100%;*/
	/*font-size: 7pt;*/
  color: #fff;
  opacity: 0.5;
  line-height: 30px;
}

ul.jquery-dropdown-list li a:hover {
  /*background: #efefef; */
  background: #ccc; 
  text-decoration: none; 
  color: #fff;
  opacity: 1;
} 
