.cp-bcb {
  --cp-bcb-bg: #c71920;
  position: relative;
  z-index: 99990;
  width: 100%;
  background: var(--cp-bcb-bg);
  color: #fff;
  font-family: inherit;
  line-height: 1.35;
  box-sizing: border-box;
}

.cp-bcb[hidden] {
  display: none !important;
}

.cp-bcb,
.cp-bcb * {
  box-sizing: border-box;
}

.cp-bcb__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 48px 8px 20px;
}

.cp-bcb__message {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.cp-bcb__cta {
  display: inline-block;
  margin-left: 8px;
  color: #fff !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cp-bcb__cta:hover,
.cp-bcb__cta:focus {
  color: #fff !important;
  text-decoration-thickness: 2px;
}

.cp-bcb__cta:focus-visible,
.cp-bcb__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cp-bcb__close {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 25px;
  line-height: 30px;
  cursor: pointer;
}

.cp-bcb__close:hover {
  background: rgba(0, 0, 0, 0.16);
}

@media (max-width: 767px) {
  .cp-bcb__inner {
    min-height: 44px;
    padding: 7px 42px 7px 12px;
  }

  .cp-bcb__message {
    font-size: 12px;
    line-height: 1.35;
  }

  .cp-bcb__cta {
    margin-left: 5px;
    white-space: nowrap;
  }

  .cp-bcb__close {
    right: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}

