:root {
  --think-cookie-bg: #ffffff;
  --think-cookie-text: #17212b;
  --think-cookie-muted: #5f6b76;
  --think-cookie-primary: #272c3f;
  --think-cookie-primary-text: #ffffff;
  --think-cookie-border: #e4e7eb;
  --think-cookie-radius: 18px;
}

.think-cookie-consent,
.think-cookie-modal,
.think-cookie-consent *,
.think-cookie-modal *,
.think-cookie-table-wrap,
.think-cookie-table-wrap *,
.think-cookie-preferences-link {
  box-sizing: border-box;
}

.think-cookie-consent[hidden],
.think-cookie-modal[hidden] {
  display: none;
}

.think-cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 99998;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.think-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.think-cookie-consent__content {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px;
  color: var(--think-cookie-text);
  background: var(--think-cookie-bg);
  border: 1px solid var(--think-cookie-border);
  border-radius: var(--think-cookie-radius);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  font-family: inherit;
}

.think-cookie-consent__copy {
  min-width: 0;
}

.think-cookie-consent__title,
.think-cookie-modal__title,
.think-cookie-category__title {
  margin: 0;
  color: var(--think-cookie-text);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.think-cookie-consent__title {
  font-size: 1.2rem;
}

.think-cookie-consent__text,
.think-cookie-modal__intro,
.think-cookie-category__description {
  color: var(--think-cookie-muted);
  line-height: 1.55;
}

.think-cookie-consent__text {
  max-width: 680px;
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.think-cookie-consent__actions,
.think-cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.think-cookie-btn,
.think-cookie-preferences-link {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 11px 17px !important;
  color: var(--think-cookie-text) !important;
  background: #ffffff !important;
  border: 1px solid var(--think-cookie-border) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  font: inherit !important;
	font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease !important;
}

.think-cookie-btn:hover,
.think-cookie-preferences-link:hover {
  border-color: #c8ced6 !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1) !important;
  transform: translateY(-1px) !important;
}

.think-cookie-btn:focus-visible,
.think-cookie-preferences-link:focus-visible,
.think-cookie-modal__close:focus-visible,
.think-cookie-toggle input:focus-visible + .think-cookie-toggle__track {
  outline: 3px solid rgba(168, 120, 42, 0.35) !important;
  outline-offset: 3px !important;
}

.think-cookie-btn--primary {
  color: var(--think-cookie-primary-text) !important;
  background: var(--think-cookie-primary) !important;
  border-color: var(--think-cookie-primary) !important;
}

.think-cookie-btn--primary:hover {
  color: var(--think-cookie-primary-text) !important;
  background: #8e641f !important;
  border-color: #8e641f !important;
}

.think-cookie-btn--secondary {
  background: #f6f8fa !important;
}

.think-cookie-btn--ghost {
  background: transparent !important;
}

.think-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.think-cookie-modal.is-visible {
  opacity: 1;
}

.think-cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 31, 0.48);
}

.think-cookie-modal__panel {
  position: relative;
  width: min(650px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  color: var(--think-cookie-text);
  background: var(--think-cookie-bg);
  border: 1px solid var(--think-cookie-border);
  border-radius: var(--think-cookie-radius);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  transform: translateY(14px) scale(0.985);
  transition: transform 180ms ease;
}

.think-cookie-modal.is-visible .think-cookie-modal__panel {
  transform: translateY(0) scale(1);
}

.think-cookie-modal__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--think-cookie-border);
}

.think-cookie-modal__title {
  font-size: 1.35rem;
}

.think-cookie-modal__intro {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.think-cookie-modal__close {
  display: inline-flex !important;
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--think-cookie-text) !important;
  background: #f6f8fa !important;
  border: 1px solid var(--think-cookie-border) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
}

.think-cookie-modal__body {
  display: grid;
  gap: 12px;
  padding: 18px 24px;
}

.think-cookie-category {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--think-cookie-border);
  border-radius: 14px;
  background: #fbfcfd;
}

.think-cookie-category__title {
  font-size: 1rem;
}

.think-cookie-category__description {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.think-cookie-category__status {
  display: inline-flex;
  margin-top: 9px;
  color: var(--think-cookie-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.think-cookie-toggle {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  cursor: pointer;
}

.think-cookie-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.think-cookie-toggle__track {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #cbd3dc;
  transition: background-color 160ms ease;
}

.think-cookie-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
  transition: transform 160ms ease;
}

.think-cookie-toggle input:checked + .think-cookie-toggle__track {
  background: var(--think-cookie-primary);
}

.think-cookie-toggle input:checked + .think-cookie-toggle__track .think-cookie-toggle__thumb {
  transform: translateX(22px);
}

.think-cookie-toggle input:disabled + .think-cookie-toggle__track {
  cursor: not-allowed;
  opacity: 0.82;
}

.think-cookie-modal__footer {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--think-cookie-border);
}

.think-cookie-modal-open {
  overflow: hidden;
}

.think-cookie-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--think-cookie-border);
  border-radius: 14px;
}

.think-cookie-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--think-cookie-text);
  background: #ffffff;
  font-size: 0.95rem;
}

.think-cookie-table th,
.think-cookie-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--think-cookie-border);
  text-align: left;
  vertical-align: top;
}

.think-cookie-table th {
  color: var(--think-cookie-text);
  background: #f6f8fa;
  font-weight: 700;
}

.think-cookie-table tr:last-child td {
  border-bottom: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 780px) {
  .think-cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .think-cookie-consent__content,
  .think-cookie-category {
    align-items: stretch;
    flex-direction: column;
  }

  .think-cookie-consent__actions,
  .think-cookie-modal__footer {
    justify-content: stretch;
  }

  .think-cookie-btn,
  .think-cookie-preferences-link {
    width: 100%;
  }

  .think-cookie-toggle {
    align-self: flex-start;
  }
	.think-cookie-consent__title {
    font-size: 0.8rem;
}
	.think-cookie-consent__text {
    font-size: 0.7rem;
}
	
	.think-cookie-btn, .think-cookie-preferences-link {
    font-size: 10px !important;
	}
}

@media (max-width: 520px) {
  .think-cookie-modal {
    padding: 10px;
  }

  .think-cookie-consent__content,
  .think-cookie-modal__header,
  .think-cookie-modal__body,
  .think-cookie-modal__footer {
    padding: 18px;
  }

  .think-cookie-modal__panel {
    max-height: calc(100vh - 20px);
    border-radius: 14px;
  }
		.think-cookie-consent__title {
    font-size: 0.8rem;
}
	.think-cookie-consent__text {
    font-size: 0.7rem;
}
	
	.think-cookie-btn, .think-cookie-preferences-link {
    font-size: 10px !important;
	}
}
