/**
 * 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-nav {
  border-right: 1px solid #eaeaea;
}
.bfd-nav ul {
  margin: 0;
  padding: 0;
  background-color: #fff;
  list-style: none;
}
.bfd-nav__item > a {
  display: block;
  color: #333;
  text-decoration: none;
  position: relative;
  padding: 0px 15px;
  line-height: 34px;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  border-left: 5px solid #eaeaea;
}
.bfd-nav__item > a:hover {
  background-color: #fafafa;
  border-left-color: #27b3fe;
  color: #333;
  text-decoration: none;
}
.bfd-nav__item > a:focus {
  background-color: #fafafa;
  outline: none;
  text-decoration: none;
}
.bfd-nav__item > ul {
  display: none;
}
.bfd-nav__item .bfd-nav__item {
  border-left: 0;
  border-right: 0;
}
.bfd-nav__item .bfd-nav__item > a {
  padding-left: 38px;
}
.bfd-nav__item .bfd-nav__item .bfd-nav__item > a {
  padding-left: 76px;
}
.bfd-nav__item-icon {
  margin-right: 10px;
  width: 1em;
  text-align: center;
}
.bfd-nav__item-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform .2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.bfd-nav__item--open > ul {
  display: block;
}
.bfd-nav__item--open .bfd-nav__item-toggle {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.bfd-nav__item--active > a {
  color: #333;
  background-color: #f5f5f5;
  border-left-color: #19afff;
}
.bfd-nav__item--active > a:hover,
.bfd-nav__item--active > a:focus {
  color: #333;
  background-color: #f5f5f5;
}
