
:root{--bm-global-notice-h:0px}

#bmGlobalNotice{
  --gn-bg:#1877d2;
  --gn-fg:#fff;
  position:fixed!important;
  inset:0 0 auto 0!important;
  z-index:40000!important;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:9px max(54px,calc(env(safe-area-inset-right,0px) + 54px)) 9px max(54px,calc(env(safe-area-inset-left,0px) + 54px));
  background:var(--gn-bg)!important;
  color:var(--gn-fg)!important;
  box-shadow:0 5px 22px rgba(0,0,0,.16);
  direction:rtl;
  font-family:inherit;
  text-align:center;
}

#bmGlobalNotice[data-style="info"]{--gn-bg:linear-gradient(90deg,#1775cf,#2188e5)}
#bmGlobalNotice[data-style="warning"]{--gn-bg:linear-gradient(90deg,#9a6500,#d59100)}
#bmGlobalNotice[data-style="danger"]{--gn-bg:linear-gradient(90deg,#b42338,#e54c56)}
#bmGlobalNotice[data-style="success"]{--gn-bg:linear-gradient(90deg,#087a58,#0ba879)}
#bmGlobalNotice[data-style="purple"]{--gn-bg:linear-gradient(90deg,#5c36c9,#7655e9)}
#bmGlobalNotice[data-style="dark"]{--gn-bg:linear-gradient(90deg,#171c25,#2b3442)}

.bm-global-notice__inner{
  width:min(1180px,100%);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 12px;
  min-width:0;
}
.bm-global-notice__text{
  font-weight:850;
  font-size:13px;
  line-height:1.9;
  color:#fff!important;
  text-wrap:balance;
  overflow-wrap:anywhere;
}
.bm-global-notice__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.26);
  color:#fff!important;
  text-decoration:none!important;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
  backdrop-filter:blur(8px);
}
.bm-global-notice__link:hover{background:rgba(255,255,255,.23)}
.bm-global-notice__close{
  position:absolute;
  inset-inline-end:max(12px,env(safe-area-inset-right,0px));
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.13);
  color:#fff;
  cursor:pointer;
  transition:.18s ease;
}
.bm-global-notice__close:hover{background:rgba(255,255,255,.23);transform:translateY(-50%) scale(1.04)}
.bm-global-notice__close svg{width:18px;height:18px;stroke:currentColor;stroke-width:2.2;fill:none;stroke-linecap:round}
.bm-global-notice-spacer{height:var(--bm-global-notice-h,0px);transition:height .18s ease}

html.bm-global-notice-visible #siteHeader{
  top:var(--bm-global-notice-h)!important;
}

@media(max-width:640px){
  #bmGlobalNotice{
    min-height:44px;
    padding:8px 48px 8px 12px;
  }
  .bm-global-notice__inner{gap:6px 8px}
  .bm-global-notice__text{font-size:11px;line-height:1.75}
  .bm-global-notice__link{font-size:10px;min-height:28px;padding:4px 9px}
  .bm-global-notice__close{width:32px;height:32px;inset-inline-end:8px}
}
