.moble_banner_container {
  padding: 8px 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f4f4f5;
  position: fixed;
  width: 100%;
  top: -120px;
  opacity: 0;
  visibility: hidden;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
.moble_banner_container.show {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.moble_banner_container .logo_holder {
  border-radius: 8px;
  border: 0.5px solid #c8c7d0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moble_banner_container .content {
  margin-right: 26px;
}
.moble_banner_container .content .title {
  color: #131032;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.moble_banner_container .content .sub_title {
  color: #918f9f;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.moble_banner_container .banner_download {
  padding: 6px;
}
.moble_banner_container .banner_download a {
  display: block;
}