#promo-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 9999;
  max-width: 371px;
  border-radius: 12px;
  background: var(--grad, linear-gradient(54deg, rgba(115, 178, 223, 0.03) 41.44%, rgba(113, 179, 223, 0.63) 95.89%), #0067B1);
  box-shadow: 0px 4px 23.2px 0px rgba(0, 0, 0, 0.30);
  color: #FFF;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#promo-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#promo-widget p {
  padding: 0;
}
.widget-title {
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100.293%;
  padding-bottom: 16px !important;
}
.widget-title strong {
  font-family: 'Montserrat';
  font-weight: 700;
}
.widget-content {
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
}
#promo-close {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 0;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  cursor: pointer;
}

#promo-close:focus {
  outline: 2px solid #005fcc;
}

.promo-widget-content {
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

#promo-widget .nectar-button[data-color-override="false"].regular-button {
  min-width:  auto !important;
  width: auto !important;
  font-weight: 600 !important;
  padding: 0 30px !important;
  margin: 0;
}

@media screen and (max-width: 1249px) {
  #promo-widget {
    bottom: 67px;
  }
}

@media screen and (max-width: 768px) {
  #promo-widget {
    bottom: 57px;
    right: 10px;
    left: 10px;
    max-width: 303px;
  }
  #promo-widget img {
    display: none;
  }
  .widget-title {
    font-size: 19px;
  }
  #promo-widget .nectar-button[data-color-override="false"].regular-button {
    padding: 0 25px !important;
    font-size: 14px !important;
    line-height: 42px !important;
  }
  .promo-widget-content {
    gap: 18px;
    padding: 20px 18px 18px;
  }
}

