.bf_banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #000;
  width: 100%;
  height: 48px;
  display: flex;
  padding: 10px;
  overflow: hidden;
}
.bf_banner .img_holder {
  max-height: 48px;
  position: absolute;
  left: 0;
  top: 0;
}
.bf_banner .img_holder img {
  width: auto;
}
.bf_banner .gradient {
  background: radial-gradient(50% 50% at 50% 50%, var(--Purple-750, #372d8f) 0%, rgba(19, 16, 50, 0) 100%);
  width: 379px;
  height: 379px;
  position: absolute;
  right: 40%;
  top: 50%;
  transform: translateY(-50%);
}
.bf_banner .bf_banner_inner {
  width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.bf_banner .bf_banner_inner .codes {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  display: flex;
  font-weight: 700;
}
.bf_banner .bf_banner_inner .codes img {
  display: inline-block;
  margin-right: 8px;
}
.bf_banner .bf_banner_inner .codes strong {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  display: flex;
  font-weight: 700;
}
.bf_banner .bf_banner_inner .codes .grad {
  background: linear-gradient(90deg, var(--Neutral-40, #f4f4f5) 0%, var(--Purple-200, #a59afc) 101.6%);
  display: flex;
  align-items: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}
.bf_banner .bf_banner_inner .codes .grad::after {
  content: " ";
  width: 1px;
  height: 20px;
  background-color: #e7e7ea;
  opacity: 0.6;
  display: inline-block;
  margin: 0 12px;
}
.bf_banner .bf_banner_inner .banner_title {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  display: flex;
  font-weight: 700;
}
.bf_banner .bf_banner_inner .banner_title strong {
  display: inline-block;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}
.bf_banner .bf_banner_inner .banner_title strong.title::after {
  width: 1px;
  height: 20px;
  margin: 0 12px;
  content: " ";
  background-color: #e7e7ea;
  opacity: 0.6;
  display: block;
}

@media screen and (max-width: 768px) {
  .bf_banner {
    padding: 8px 0;
    height: 62px;
    background: linear-gradient(90deg, var(--Background-Black, #000) 55.87%, var(--Purple-750, #372d8f) 94.6%, var(--Black-1000, #000) 133.33%);
  }
  .bf_banner .gradient {
    display: none;
  }
  .bf_banner .bf_banner_inner {
    flex-direction: column;
  }
  .bf_banner .bf_banner_inner .codes {
    font-size: 14px;
    line-height: 16px;
  }
  .bf_banner .bf_banner_inner .codes * {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  .bf_banner .bf_banner_inner .banner_title {
    color: #f7f7f8 !important;
    opacity: 0.6 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400;
  }
  .bf_banner .bf_banner_inner .banner_title * {
    color: #f7f7f8 !important;
    opacity: 0.7 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400;
  }
  .bf_banner .bf_banner_inner .banner_title *::after {
    height: 16px !important;
  }
}