/**
 * 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__option {
  cursor: pointer;
  padding: 0 10px;
  line-height: 30px;
  padding-right: 28px;
}
.bfd-select__option:hover {
  background-color: #f5f5f5;
}
.bfd-select__option--selected {
  position: relative;
  color: #19afff;
}
.bfd-select__option--active,
.bfd-select__option--active:hover {
  background-color: #cfeeff;
}
.bfd-select__option-icon--selected {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -7px;
}
