ul.scrollable-list{
  position: absolute;
  max-height:200px;
  width:90%;
  max-width: 40em;
  overflow-y:scroll;
  overflow-x:auto;
  margin: 0;
  padding-left: 1em;
  border-style: solid;
  border-width: thin;
  border-color: grey;
  background-color: white;
  z-index: 90;
  display: block;
  -webkit-animation: slide-down .3s ease-out;
  -moz-animation: slide-down .3s ease-out;
}

ul.scrollable-list.hidden {
  -webkit-animation: slide-down .3s ease-out;
  -moz-animation: slide-down .3s ease-out;
}

ul.scrollable-list li {
  list-style: none;
}

ul.scrollable-list li label {
  font-weight: normal;
  margin-left:5px;
}

div.legend-container {
  cursor: pointer;
  width: 100%;
  max-width: 30em;
  display: flex;
  padding: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: none;
}

div.multiselect-dropdown-container div.legend-container legend {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.5;  /* previously was 1.42857143; (keeping this commented because it is suspiciously specific)*/
  overflow: hidden;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 0px;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    -moz-transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}