/**
 * 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-btn {
  color: #fff;
  padding: 0 20px;
  height: 30px;
  background-color: #27b3fe;
  border: 1px solid #27b3fe;
  border-radius: 2px;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bfd-btn:hover {
  background-color: #19afff;
}
.bfd-btn:active {
  background-color: #00a6ff;
}
.bfd-btn:focus {
  outline: none;
}
.bfd-btn[disabled] {
  background-color: #eceff1;
  border-color: #eaeaea;
  color: #9e9e9e;
  cursor: not-allowed;
}
.bfd-btn .bfd-icon {
  margin-right: 5px;
}
.bfd-btn + .bfd-btn {
  margin-left: 10px;
}
.bfd-btn--minor {
  color: #333;
  background-color: #f8f8f8;
  border-color: #c6c6c6;
}
.bfd-btn--minor:hover {
  background-color: #f1f1f1;
}
.bfd-btn--minor:active {
  background-color: #eaeaea;
}
.bfd-btn--sm {
  padding: 0 10px;
  height: 22px;
}
.bfd-btn--lg {
  padding: 0 24px;
  height: 40px;
}
.bfd-btn--icon,
.bfd-btn--circle {
  padding: 0;
  width: 30px;
  text-align: center;
}
.bfd-btn--icon.bfd-btn--sm,
.bfd-btn--circle.bfd-btn--sm {
  width: 22px;
}
.bfd-btn--icon.bfd-btn--lg,
.bfd-btn--circle.bfd-btn--lg {
  width: 40px;
}
.bfd-btn--icon .bfd-icon {
  margin-right: 0;
}
.bfd-btn--circle {
  border-radius: 50%;
}
.bfd-btn--transparent {
  border: 0;
  background-color: transparent;
  color: inherit;
  opacity: .7;
  -webkit-transition: opacity .1s ease;
  transition: opacity .1s ease;
}
.bfd-btn--transparent:hover:enabled {
  color: inherit;
  background-color: transparent;
  opacity: .85;
}
.bfd-btn--transparent:active:enabled {
  color: inherit;
  background-color: transparent;
  opacity: 1;
}
