.float-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 10px 10px 10px 22px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(5, 16, 31, 0.4);
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
}
.float-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.float-banner-copy {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}
.float-banner-copy strong {
  font-weight: 700;
}
.float-banner-copy span {
  /*color: #CD2280;*/
  font-weight: 700;
  color: yellow;
}
.float-banner-cta {
  flex: 0 0 auto;
  background: #CD2280;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 0.62rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.float-banner-cta:hover {
  background: var(--secondary-dark);
  color: #fff;
}
.float-banner-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin: 0 2px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 1);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}
.float-banner-close:hover {
  color: #fff;
}
@media (max-width: 767.98px) {
  .float-banner {
    gap: 12px;
    padding: 10px 8px 10px 16px;
  }
  .float-banner-copy {
    font-size: 0.86rem;
    white-space: normal;
  }
}
@media (max-width: 575.98px) {
  .float-banner {
    flex-wrap: wrap;
    width: calc(100vw - 20px);
    bottom: 12px;
    padding: 14px 40px 14px 16px;
    gap: 10px;
  }
  .float-banner-copy {
    width: 100%;
    padding-right: 8px;
  }
  .float-banner-cta {
    width: 100%;
    text-align: center;
  }
  .float-banner-close {
    position: absolute;
    top: 6px;
    right: 6px;
  }
}