.options-dropdown-list > li {
  font-size: 1em;

}
.selectbox-wrapper {
  display: flex;
}
/*Layout*/
/*Dropdown*/
.options-dropdown {
  margin: none;
  width: 120px;
  margin-left: 3%;
  margin-right: 3%;
  border: .1em solid #c0cdd1;
}
.options-dropdown > a {
  display: block;
  padding: .5em;
  color: #000;
  text-decoration: none;
  transition: background .35s ease;
}
.options-dropdown > a:hover {
  color: black !important;
  background: #ecf0f1;
  cursor: pointer;
  text-decoration: none;
}
.options-dropdown > a:active {
  background: #fbfcfc;
  color: black !important;
}
.fa {float: right}

.js-dropdown-list {
  position: absolute;
  max-height: 240px;
  width: 120px;
  overflow-y: scroll;
  z-index: 11;
  background: white;
  list-style-type: none;
  padding-left: 0px;
  border-top: .1em solid #c0cdd1;
}
.options-dropdown-list > li {
  padding: .5em;
  cursor: pointer;
  transition: background .35s ease;
  border-top: .1em groove #F5F7FA;
}
.options-dropdown-list > li:hover {
  background: #ecf0f1;
  /*color: black !important;*/
}
.options-dropdown-list > li:active {
  background: #fbfcfc;
  /*color: black !important;*/
}
