/**
 * 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-spinner {
  font-size: 26px;
}
.bfd-spinner__circle {
  width: 1em;
  height: 1em;
  position: relative;
  border: 0.1em solid #27b3fe;
  border-radius: 50%;
  border-bottom-color: transparent;
  -webkit-animation: 1s ease-in-out infinite bfd-spinner;
  animation: 1s ease-in-out infinite bfd-spinner;
}
@-webkit-keyframes bfd-spinner {
  from {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) rotate(360deg);
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}
@keyframes bfd-spinner {
  from {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) rotate(360deg);
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}
