﻿.DropDownContainer {
  min-width: 200px;
  width: auto;
  max-width: 250px;
}
.DropDownDisplay {
  border: 1px lightgray solid;
  background-color: white;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  padding: 0.5em 0.3em 0.5em 0.3em;
}
.DropDownDisplayText {
  float: left;
  font-size: 16px;
}
.DropDownDisplaySymbol {
  float: right;
}
.DropDownClear {
  clear: both;
}
.DropDownList {
  z-index: 100;
  position: absolute;
  border: 1px lightgray solid;
  background-color: white;
  min-width: inherit;
  width: 100%;
  max-width: 300px;
}
.DropDownListItem {
  cursor: pointer;
}
.DropDownListItemText {
  padding: 0.5em 0.3em 0.5em 0.3em;
}
.DropDownSelectedItem {
  background-color: gray !important;
  color: white !important;
}
.DropDownHighlightItem {
  background-color: #3380b3 !important;
  color: white !important;
}