
.promo-banner {
  --pos: 12px;
  position: fixed;
  bottom: var(--pos);
  inset-inline-end: var(--pos);
  z-index: 999999999999;
  width: 295px;
  min-height: 50px;
  background-color: #9CEE69;
  padding: 17px 16px;
  font-size: 14px;
  color: #111111;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}


.promo-banner__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-banner__content p{
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
  color: #111111;
}


.promo-banner-btn {
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.promo-banner-btn:hover {
  border-color: #111111;
  background-color: transparent;
  color: #111111;
  
}


.promo-banner__close {
  position: absolute;
  inset-inline-end: -8px;
  top: -8px;
  background: #fff;
  border: none;
  color: #111111;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.promo-banner__close:hover {
  background-color: #111111;
  color: #ffffff;
}

.promo-banner__close svg {
  width: 14px;
  height: 14px;
  display: block;
}

.promo-banner.is-hidden {
  display: none;
}

@media (max-width: 640px) {
  .promo-banner {
    padding: 10px 12px;
  }
  .promo-banner__content {
    gap: 10px;
  }
  .promo-banner__text {
    font-size: 13px;
  }
}