.dropdown-container {
  display: inline-block;
}

.dropdown {
  font-family: 'Source Sans Pro', sans-serif; 
  font-weight: 400;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: black;
  width: inherit;
  height: 40px;
}

.dropdown-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.dropdown-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align:center;
  background-color: white;
  border: 1px solid #333;
  padding: 12px 15px;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.dropdown-styled:hover {
  background-color: #333;
  color: white;
}
.dropdown-styled:active, .dropdown-styled.active {
  background-color: #333;
  color: white;
}
.dropdown-styled:active:after, .dropdown-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

ul.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  border: 1px solid #333;
  margin: 0;
  padding: 0;
  height:200px;
  list-style: none;
  background-color: white;
  overflow:hidden; 
  overflow-y:scroll;
  transition: all 0.2s ease-in;
}
.dropdown-options li {
  margin: 0;
  padding: 12px 0;
  text-align:left;
  text-indent: 12px;
  border-top: 1px solid #EEE;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.dropdown-options li:hover {
  background-color:#EEE;
}
.dropdown-options li[rel="hide"] {
  display: none;
}