.wt-seo-consent-banner,
.wt-seo-consent-banner *,
.wt-seo-consent-banner *::before,
.wt-seo-consent-banner *::after {
  box-sizing: border-box;
}

.wt-seo-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 99999;

  width: auto;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1rem;
  background: #0d1117;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);

  box-sizing: border-box;
  overflow: hidden;

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.wt-seo-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.wt-seo-consent-banner__content {
  min-width: 0;
}

.wt-seo-consent-banner__title {
  display: block;
  margin-bottom: .25rem;
  font-size: .95rem;
  line-height: 1.35;
}

.wt-seo-consent-banner__message {
  margin: 0;
  color: #cbd5e1;
  font-size: .875rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.wt-seo-consent-banner__link {
  display: inline-block;
  margin-top: .4rem;
  color: #93c5fd;
  font-size: .82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wt-seo-consent-banner__actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.wt-seo-consent-banner__button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
  padding: .7rem 1rem;
}

.wt-seo-consent-banner__button--primary {
  background: #2d60f0;
  border-color: #2d60f0;
  color: #ffffff;
}

.wt-seo-consent-banner__button--primary:hover {
  background: #4d7cf4;
  border-color: #4d7cf4;
}

.wt-seo-consent-banner__button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: #f8fafc;
}

.wt-seo-consent-banner__button--ghost:hover {
  background: rgba(255, 255, 255, .08);
}
@media (max-width: 720px) {
  .wt-seo-consent-banner {
    left: 12px;
    right: auto;
    bottom: 12px;

    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-left: 0;
    margin-right: 0;

    align-items: stretch;
    flex-direction: column;
  }

  .wt-seo-consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .wt-seo-consent-banner__button {
    width: 100%;
  }
}

.wt-seo-consent-settings {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999998;
  appearance: none;
  border: 1px solid rgba(15, 23, 42, .22);
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .16);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  padding: .62rem .82rem;
}

.wt-seo-consent-settings:hover {
  background: #f8fafc;
}

.wt-seo-consent-settings[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .wt-seo-consent-settings {
    right: 12px;
    bottom: 12px;
  }
}
