.bfm_f_box {
  display: flex;
}

.bfm_wrapper {
  max-height: 400px;
  overflow-y: scroll;
  padding: 8px;
}

.bfm_container {
  border-top: 1px solid rgba(15, 70, 100, 0.12);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: bfm_fade_in 0.4s ease-in-out 0.3s forwards;
}

.bfm_head {
  margin-bottom: 4px;
}

.bfm_ava {
  margin-right: 8px;
}

.bfm_name {
  font-size: 12px;
}

.bfm_content {
  margin-bottom: 4px;
}
.bfm_content p {
  margin-bottom: 8px;
}

.bfm_foot {
  font-size: 12px;
  text-align: right;
}

.bfm_load_more {
  border-top: 1px solid rgba(15, 70, 100, 0.12);
  padding-top: 8px;
  text-align: right;
}

.bfm_load_more_button_wrap {
  position: relative;
  display: inline-block;
}

.bfm_br50 {
  border-radius: 50%;
}

.bfm_spin {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(96, 125, 139, 0.1);
}
.bfm_spin svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@keyframes bfm_fade_in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#bfm_pop_up_message {
  opacity: 0;
  position: fixed;
  bottom: 0;
  padding: 16px;
  background-color: #222;
  color: #fff;
  transition: all 0.25s cubic-bezier(0, 0, 0.2, 1) 0s;
  z-index: 9999999;
  box-sizing: border-box;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  margin-bottom: 8px;
  border-radius: 2px;
}
#bfm_pop_up_message.active {
  transform: translateY(0%) translateX(-50%);
  opacity: 1;
}
#bfm_pop_up_message.inactive {
  transform: translateY(100%) translateX(-50%);
  opacity: 0;
  transition: 0.1s;
}