.acc-banner {
  position: fixed;
  z-index: 999999;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 13px 20px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}

.acc-banner[hidden] {
  display: none !important;
}

.acc-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.acc-banner__text {
  flex: 1 1 auto;
  margin: 0;
  color: inherit;
}

.acc-banner__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.acc-btn,
.acc-manage {
  appearance: none;
  border: 0;
  border-radius: 3px;
  padding: 8px 12px;
  font: inherit;
  font-size: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.acc-btn--primary {
  background: #fff;
  color: #000;
}

.acc-btn--secondary {
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: #fff;
}

.acc-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.acc-manage {
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
}

.acc-btn:focus-visible,
.acc-link:focus-visible,
.acc-manage:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .acc-banner {
    padding: 14px 16px;
  }

  .acc-banner__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .acc-banner__actions {
    width: 100%;
    flex-wrap: wrap;
  }
}
