search-and-select{
  display: block;
  height: 35px;
  position: relative;

  .search-and-select-button{
    min-width: 50px;
    background-color: white;
    color: #333;
    box-shadow: none;
    border: solid 1px #aaa;
    transition: all 0.5s ease;
    border-radius: 0;
    text-transform: inherit !important;
    height: 40px;
    font-size: 14.4px;
    padding: 0px 10px;
    text-align: left;
    width: 100%;
    max-width: 500px;


    &:after{
      content: '\25B2';
      font-size: 10px;
      margin-left: 10px;
      float: right;
      transition: transform .25s ease-in-out;
      transform: rotate(-180deg);
    }

    .opened{
    }
  }


  .search-and-select-panel{
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    position: absolute;
    z-index: 10000;
    max-height: 500px;
    transition: max-height .25s ease-in-out;
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.26);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0 10px;
    margin-left: 2px;
    &.hidden{
      max-height: 0px;
    }

    ul::-webkit-scrollbar-track
    {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      border-radius: 10px;
      background-color: white;
    }

    ul::-webkit-scrollbar
    {
      width: 8px;
      height: 10px;
      background-color: #F5F5F5;
    }

    ul::-webkit-scrollbar-thumb
    {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
      background-color: #dadada;
    }
    ul{
      list-style: none;
      padding: 0;
      overflow: auto;
      max-height: 415px;
      li{
        line-height: 25px;
        font-size: 13px;
        white-space: nowrap;
        margin-bottom: 5px;
        padding: 0px 10px;
        border-radius: 2px;
          &:hover{
            background: #f0f0f0;
          }
      }
    }
  }
  button.search-and-select-button.disabled{
    background-color: #ebebe4 !important;
  }
  button.search-and-select-button.ng-binding.disabled{
    background-color: #ebebe4;
  }
  .search-and-select-bar{
    width: 100%;
    position: relative;
    margin: 10px 0;
    border-bottom: 1px solid #F0F0F0;
    input{
      min-width: 100px;
      width: 90%;
      height: 30px;
      box-sizing: border-box;
      border: none;
      outline: none;
      text-indent: 10px;
      transition: border 0.25s ease-in-out
    }
    i .icon-search-cancel{
      width: 5%;
      right: 0px;
      position: absolute;
      &:before{
        right: 0;
        content: '\e866';
        width: 20px;
        height: 20px;
        font-size: small;
        color: #2a9cc8;
      }
    }

  }
}