.cookie-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  width: min(520px, calc(100vw - 48px));
  padding: 22px 24px;
  color: #202020;
  background: #fff;
  border: 1px solid rgba(32, 32, 32, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  font-family: inherit;
}

.cookie-consent-banner[hidden] {
  display: none;
}

.cookie-consent-banner__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-consent-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.cookie-consent-banner__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-consent-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #202020;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.cookie-consent-banner__button--accept {
  color: #fff;
  background: #202020;
}

.cookie-consent-banner__button--reject {
  color: #202020;
  background: #fff;
}

@media screen and (max-width: 750px) {
  .cookie-consent-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 18px;
  }

  .cookie-consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-banner__button {
    width: 100%;
  }
}
