.cookie-banner {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding: .55rem 1rem;
  background: #222;
  color: #fff;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .24);
  font-family: "Open Sans", Arial, sans-serif;
}

.cookie-banner__text {
  margin: 0;
  font-size: .82rem;
  line-height: 1.4;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus {
  color: #fff;
  text-decoration: none;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.cookie-banner__button {
  min-height: 44px;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: .45rem .8rem;
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner__button--primary {
  background: #fff;
  color: #222;
}

.cookie-banner__button--secondary {
  background: transparent;
  color: #fff;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  box-shadow: 0 0 0 3px #222, 0 0 0 6px #fff;
  outline: 0;
}

.footer-privacy-settings {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.footer-privacy-settings:hover,
.footer-privacy-settings:focus {
  text-decoration: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    justify-content: flex-start;
  }

  .cookie-banner__text {
    flex: 1 1 100%;
  }
}
