.xdelivery-promo-banner{
  position:fixed;
  left:0;
  right:0;
  z-index:9999;
  transform:translateY(0);
  transition:transform .2s ease, opacity .2s ease;
  opacity:0;
  pointer-events:none;
}
.xdelivery-promo-banner.is-visible{
  opacity:1;
  pointer-events:auto;
}
.xdelivery-promo-banner--top{top:0;}
.xdelivery-promo-banner--bottom{bottom:0;}
.xdelivery-promo-banner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:#111827;
  color:#fff;
}
.xdelivery-promo-banner__content{
  flex:1 1 auto;
  min-width:0;
}
.xdelivery-promo-banner__content a{color:#fff;text-decoration:underline;}
.xdelivery-promo-banner__cta{
  flex:0 0 auto;
  color:#111827;
  background:#fff;
  padding:8px 10px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}
.xdelivery-promo-banner__close{
  flex:0 0 auto;
  width:34px;
  height:34px;
  border:0;
  background:transparent;
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.xdelivery-promo-popup{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
}
.xdelivery-promo-popup.is-open{display:block;}
.xdelivery-promo-popup__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.xdelivery-promo-popup__dialog{
  position:relative;
  max-width:520px;
  width:calc(100% - 32px);
  margin:9vh auto 0 auto;
  background:#fff;
  border-radius:10px;
  padding:18px 16px 16px 16px;
  box-shadow:0 16px 50px rgba(0,0,0,.35);
}
.xdelivery-promo-popup__close{
  position:absolute;
  top:8px;
  right:10px;
  width:34px;
  height:34px;
  border:0;
  background:transparent;
  color:#111827;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.xdelivery-promo-popup__title{
  margin:0 34px 10px 0;
  font-size:18px;
  font-weight:700;
  color:#111827;
}
.xdelivery-promo-popup__content{
  color:#111827;
}
.xdelivery-promo-popup__actions{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
}
.xdelivery-promo-popup__cta{
  display:inline-block;
  background:#111827;
  color:#fff;
  padding:10px 12px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
