/**
 * Copyright 2016-present, Baifendian, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
/**
 * Colors
 */
.bfd-select-dropdown {
  min-width: 160px;
  outline: none;
  line-height: 28px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 2px;
  position: relative;
}
.bfd-select-dropdown:focus {
  border-color: #27b3fe;
}
.bfd-select-dropdown.bfd-popover__trigger--disabled:focus {
  border-color: #ececec;
}
.bfd-select-dropdown.bfd-dropdown-toggle--open {
  border-color: #27b3fe;
}
.bfd-select-dropdown.bfd-dropdown-toggle--open .bfd-select-dropdown__caret {
  color: #27b3fe;
}
.bfd-select-dropdown--caretable {
  padding-right: 24px;
}
.bfd-select-dropdown__caret {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}
.bfd-select-dropdown__popover > .bfd-popover__content {
  max-width: none;
  padding: 0;
}
.bfd-select-dropdown__popover > .bfd-popover__content > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
