.ann-bar{
  position:relative;
  z-index:130;
  border-bottom:1px solid rgba(255,255,255,.18);
  font-family:var(--font);
  color:inherit;
}

.ann-bar--sticky{
  position:sticky;
  top:0;
}

.ann-bar__container{
  min-height:44px;
  padding:10px 24px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
}

.ann-bar__content{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
  font-weight:650;
  line-height:1.45;
}

.ann-bar--left .ann-bar__content{
  justify-content:flex-start;
  text-align:left;
}

.ann-bar--center .ann-bar__content{
  justify-content:center;
  text-align:center;
}

.ann-bar--right .ann-bar__content{
  justify-content:flex-end;
  text-align:right;
}

.ann-bar__icon{
  display:inline-flex;
  align-items:center;
  line-height:1;
  font-size:14px;
}

.ann-bar__text{
  display:inline-block;
  overflow-wrap:anywhere;
}

.ann-bar__link{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:4px 12px;
  border:1px solid rgba(255,255,255,.36);
  background:rgba(255,255,255,.15);
  color:inherit;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  transition:transform .22s var(--ease, ease),background-color .22s var(--ease, ease),border-color .22s var(--ease, ease),opacity .22s var(--ease, ease);
}

.ann-bar__link:hover{
  transform:translateY(-1px);
  opacity:1;
  background:rgba(255,255,255,.24);
  border-color:rgba(255,255,255,.52);
}

.ann-bar__close{
  width:28px;
  height:28px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.12);
  color:inherit;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:.88;
  transition:opacity .22s var(--ease, ease),transform .22s var(--ease, ease),background-color .22s var(--ease, ease),border-color .22s var(--ease, ease);
}

.ann-bar__close:hover{
  opacity:1;
  transform:translateY(-1px);
  background:rgba(255,255,255,.24);
  border-color:rgba(255,255,255,.48);
}

@media (max-width:767px){
  .ann-bar__container{
    min-height:42px;
    padding:9px 16px;
    gap:8px;
  }

  .ann-bar__content{
    font-size:12px;
    gap:8px;
  }

  .ann-bar__link{
    padding:3px 10px;
    font-size:11px;
  }

  .ann-bar--right .ann-bar__content{
    justify-content:flex-start;
    text-align:left;
  }
}
