@import "../../../../src/style/abstracts/all";
:local(.dropdownContainer) {
  &:after{
    font-family: FontAwesome;
    content: "\f078";
    position: relative;
    float: right;
    top: -25px;
    right: 8px;
    @include transition(transform .2s ease-in-out, top .2s ease-in-out);
  }
  &:local(.readOnly):after{
    content: none;
  }
  &:local(.disabled):after{
   color: #CCC;
 }
}
:local(.dropdownContainer).active{
  &:after{
    top: -23px;
    transform: rotate(180deg);
  }
  &:local(.disabled):after{
   top: -25px;
   transform: none;
 }
 :local(.dropdownListContainer) {
  display: block;
  z-index: 2;
  height: 0;
  position: relative;
  overflow: visible;
}
}
:local(.dropdownListContainer) {
  display: none;
  :local(.dropdownList) {
    list-style: none;
    font-size: 14pt;
    margin: 0;
    padding: 0;
    background-color: $bright-white;
    @include raised(2);
    position: relative;
    max-height: 300px;
    overflow: auto;
    > li {
      display: block;
      color: $default-text-color;
      text-decoration: none;
      padding: 10px 20px;
      width: 100%;
      min-width: 200px;
      border-left: 2px solid transparent;
      &:hover {
        background-color: bright-gray($dark-color);
        cursor: pointer;
      }
      &.active {
        border-left: 2px solid $primary-color;
      } 
    }
  }
}