.pcc-root,
.pcc-root * {
	box-sizing: border-box;
}

.pcc-root .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap;
	border: 0;
}

.pcc-root {
	--pcc-text: #111;
	--pcc-muted: #626262;
	--pcc-line: #dedede;
	position: fixed;
	inset: 0;
	z-index: 999999;
	width: auto;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--pcc-text);
	pointer-events: none;
}

.pcc-modal[hidden],
.pcc-reopen[hidden],
.pcc-tab-panel[hidden] {
	display: none !important;
}

.pcc-modal-open {
	overflow: hidden !important;
}

.pcc-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: grid;
	place-items: center;
	padding: 20px;
	pointer-events: auto;
}

.pcc-backdrop {
	position: absolute;
	inset: 0;
	background: var(--pcc-overlay-bg, rgba(6, 9, 10, .42));
	-webkit-backdrop-filter: blur(var(--pcc-overlay-blur, 8px)) saturate(.82);
	backdrop-filter: blur(var(--pcc-overlay-blur, 8px)) saturate(.82);
	animation: pcc-fade .2s ease both;
}

.pcc-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(240px, var(--pcc-image-share, 38%)) minmax(0, 1fr);
	width: min(var(--pcc-panel-width, 1160px), calc(100vw - 40px));
	height: min(var(--pcc-panel-height, 620px), calc(100vh - 40px));
	min-height: min(560px, calc(100vh - 40px));
	overflow: hidden;
	background: var(--pcc-panel-bg, #fff);
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	box-shadow: none;
	color: var(--pcc-text, #111);
	animation: pcc-rise .24s ease both;
}

.pcc-visual {
	position: relative;
	min-width: 0;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	background: #efefef;
}

.pcc-visual::after {
	content: "";
	position: absolute;
	inset: 42% 0 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .54));
	pointer-events: none;
}

.pcc-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pcc-visual-caption {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 0;
	padding-bottom: 1em;
	z-index: 1;
	text-align: center;
	color: #fff;
	text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
}

.pcc-visual-caption .pcc-eyebrow {
	margin: 0;
	padding-bottom: 0.8em;
	color: inherit;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .24em;
}

.pcc-cmp-main {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	background: var(--pcc-panel-bg, #fff);
}

.pcc-eyebrow {
	margin: 0;
}

.pcc-cmp-heading {
	flex: 0 0 auto;
	padding: 24px 28px 20px;
	border-bottom: 1px solid var(--pcc-line);
	background: var(--pcc-panel-bg, #fff);
}

.pcc-cmp-heading h2 {
	margin: 0;
	padding: 0 44px;
	color: #111;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.pcc-panel-close {
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 5;
	width: 36px;
	height: 36px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #fff;
	color: #111;
	font: inherit;
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
}

.pcc-panel-close:hover {
	background: #f5f5f5;
}

.pcc-root[data-consent-valid="no"] .pcc-panel-close {
	display: none;
}

.pcc-tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-bottom: 1px solid var(--pcc-line);
	background: var(--pcc-panel-bg, #fff);
}

.pcc-tab {
	position: relative;
	min-height: 48px;
	padding: 0 16px;
	border: 0;
	background: transparent;
	color: #242424;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.pcc-tab::after {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	bottom: -1px;
	height: 3px;
	background: #111;
	transform: scaleX(0);
	transition: transform .18s ease;
}

.pcc-tab.is-active {
	color: #000;
}

.pcc-tab.is-active::after {
	transform: scaleX(1);
}

.pcc-tab:hover {
	background: #fafafa;
}

.pcc-tab:focus-visible,
.pcc-panel-close:focus-visible,
.pcc-btn:focus-visible,
.pcc-reopen:focus-visible,
.pcc-detail-group summary:focus-visible,
.pcc-provider-group summary:focus-visible {
	outline: 2px solid #111;
	outline-offset: -2px;
}

.pcc-tab.pcc-programmatic-focus:focus-visible {
	outline: none;
	box-shadow: none;
}

.pcc-tab-panel {
	flex: 1 1 auto;
	min-height: 0;
	padding: 16px 28px 22px;
	overflow: auto;
	overscroll-behavior: contain;
	background: var(--pcc-panel-bg, #fff);
}

.pcc-consent-intro {
	max-width: 1000px;
}

.pcc-consent-intro h3,
.pcc-about-content > h3 {
	margin: 0 0 6px;
	color: #111;
	font-size: 20px;
	line-height: 1.25;
}

.pcc-consent-intro > p:first-of-type,
.pcc-about-content > p {
	margin: 0;
	color: #505050;
	font-size: 14px;
	line-height: 1.58;
}

.pcc-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 21px;
	padding: 0 6px;
	border-radius: 999px;
	background: #e9e9e9;
	color: #333;
	font-size: 10px;
	font-weight: 700;
}

.pcc-fixed-toggle > span:not(.screen-reader-text) {
	position: relative;
	display: block;
	width: 50px;
	height: 28px;
	border-radius: 999px;
	background: #111;
}

.pcc-fixed-toggle > span:not(.screen-reader-text)::after {
	content: "";
	position: absolute;
	top: 4px;
	right: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
}

.pcc-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 28px;
	flex: 0 0 auto;
}

.pcc-switch input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pcc-switch span:not(.screen-reader-text) {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: #bdbdbd;
	cursor: pointer;
	transition: .2s ease;
}

.pcc-switch span:not(.screen-reader-text)::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	transition: .2s ease;
}

.pcc-switch input:checked + span {
	background: #111;
}

.pcc-switch input:checked + span::after {
	transform: translateX(22px);
}

.pcc-switch input:focus-visible + span {
	outline: 2px solid #111;
	outline-offset: 3px;
}

.pcc-switch input:disabled + span {
	background: #d7d7d7;
	cursor: not-allowed;
}

.pcc-switch input:disabled + span::after {
	background: #f7f7f7;
}

.pcc-optional-control {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	min-width: 50px;
}

.pcc-not-in-use {
	color: #777;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pcc-detail-category.is-unavailable {
	background: #fafafa;
}

.pcc-detail-category.is-unavailable .pcc-detail-description {
	opacity: .72;
}

.pcc-about-policy-links {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.pcc-policy-link,
.pcc-privacy {
	display: inline-flex;
	width: max-content;
	margin: 0;
	color: #333;
	font-size: 12px;
	line-height: 1.4;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pcc-details-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.pcc-settings-list {
	margin-top: 8px;
}

.pcc-detail-category {
	position: relative;
	border: 1px solid var(--pcc-line);
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
}

.pcc-detail-category-control {
	position: absolute;
	top: 13px;
	right: 48px;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 30px;
}

.pcc-detail-group,
.pcc-provider-group {
	margin: 0;
}

.pcc-detail-group > summary,
.pcc-provider-group > summary {
	list-style: none;
	cursor: pointer;
}

.pcc-detail-group > summary::-webkit-details-marker,
.pcc-provider-group > summary::-webkit-details-marker {
	display: none;
}

.pcc-detail-group > summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 13px 126px 13px 17px;
	font-size: 15px;
	font-weight: 700;
}

.pcc-detail-group > summary::after {
	content: "+";
	position: absolute;
	right: 17px;
	top: 50%;
	translate: 0 -50%;
	font-size: 20px;
	font-weight: 400;
}

.pcc-detail-group[open] > summary::after {
	content: "-";
}

.pcc-detail-summary-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pcc-detail-body {
	padding: 0 17px 17px;
	border-top: 1px solid var(--pcc-line);
	background: #fafafa;
}

.pcc-detail-description {
	margin: 15px 0;
	color: #5e5e5e;
	font-size: 13px;
	line-height: 1.65;
}

.pcc-provider-list {
	display: grid;
	gap: 10px;
}

.pcc-provider-group {
	overflow: hidden;
	border: 1px solid #dadada;
	border-radius: 6px;
	background: #fff;
}

.pcc-provider-group > summary {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding: 13px 48px 13px 15px;
	font-size: 14px;
	font-weight: 700;
}

.pcc-provider-group > summary::after {
	content: "+";
	position: absolute;
	right: 15px;
	top: 50%;
	translate: 0 -50%;
	font-size: 18px;
	font-weight: 400;
}

.pcc-provider-group[open] > summary::after {
	content: "-";
}

.pcc-provider-body {
	display: grid;
	gap: 10px;
	padding: 0 14px 14px;
	border-top: 1px solid #e2e2e2;
	background: #fff;
}

.pcc-cookie-item {
	margin-top: 12px;
	padding: 15px;
	border: 1px solid #dedede;
	border-radius: 6px;
	background: #f7f7f7;
}

.pcc-cookie-head strong {
	color: #111;
	font-size: 14px;
	word-break: break-word;
}

.pcc-cookie-purpose {
	margin: 10px 0 14px;
	color: #515151;
	font-size: 13px;
	line-height: 1.6;
}

.pcc-cookie-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	padding-top: 12px;
	border-top: 1px solid #d8d8d8;
	color: #444;
	font-size: 12px;
	line-height: 1.45;
}

.pcc-cookie-meta strong {
	color: #111;
}

.pcc-empty {
	margin: 14px 0 0;
	color: #777;
	font-size: 13px;
}

.pcc-about-content > p,
.pcc-google-disclosure p {
	width: 100%;
	max-width: none;
}

.pcc-google-disclosure {
	margin: 22px 0 0;
	padding: 18px;
	border: 1px solid #e1e1e1;
	border-radius: 6px;
	background: #fafafa;
}

.pcc-google-disclosure h3 {
	margin: 0 0 9px;
	font-size: 16px;
}

.pcc-google-disclosure p {
	margin: 0 0 9px;
	color: #555;
	font-size: 13px;
	line-height: 1.6;
}

.pcc-google-disclosure p:last-child {
	margin-bottom: 0;
}

.pcc-google-disclosure a {
	color: #111;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pcc-consent-record {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 22px 0;
	padding: 16px;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	background: #f6f6f6;
}

.pcc-consent-record div {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.pcc-consent-record span {
	color: #777;
	font-size: 11px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.pcc-consent-record strong {
	font-size: 12px;
	word-break: break-all;
}

.pcc-panel-actions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	padding: 16px 28px 18px;
	border-top: 1px solid var(--pcc-line);
	background: var(--pcc-panel-bg, #fff);
}

.pcc-btn {
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: transform .18s ease, filter .18s ease;
}

.pcc-btn:hover {
	transform: translateY(-1px);
	filter: brightness(.96);
}

.pcc-btn-primary {
	border-color: var(--pcc-primary-bg, #0b0b0b);
	background: var(--pcc-primary-bg, #0b0b0b);
	color: var(--pcc-primary-text, #fff);
}

.pcc-btn-secondary {
	border-color: var(--pcc-secondary-border, #111);
	background: var(--pcc-secondary-bg, #fff);
	color: var(--pcc-secondary-text, #111);
}


.pcc-reopen {
	position: fixed !important;
	left: var(--pcc-reopen-left, 16px) !important;
	right: auto !important;
	bottom: var(--pcc-reopen-bottom, 16px) !important;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: auto;
	height: var(--pcc-reopen-size, 50px);
	min-width: var(--pcc-reopen-size, 50px);
	padding: 0 15px 0 12px;
	border: var(--pcc-reopen-border-width, 1px) solid var(--pcc-reopen-border, #111);
	background: var(--pcc-reopen-bg, #0b0b0b);
	color: var(--pcc-reopen-text, #fff);
	box-shadow: none;
	font: inherit;
	cursor: pointer;
	pointer-events: auto;
	transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.pcc-reopen:hover {
	background: var(--pcc-reopen-hover-bg, #252525);
	color: var(--pcc-reopen-hover-text, #fff);
}

.pcc-reopen-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 23px;
	height: 23px;
	flex: 0 0 23px;
}

.pcc-reopen-icon svg {
	display: block;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pcc-reopen-icon svg circle {
	fill: currentColor;
	stroke: none;
}

.pcc-reopen-label {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.pcc-reopen-icon-only {
	width: var(--pcc-reopen-size, 50px);
	min-width: var(--pcc-reopen-size, 50px);
	padding: 0;
	gap: 0;
}

.pcc-reopen-icon-only .pcc-reopen-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pcc-root .pcc-reopen-shape-pill {
	border-radius: 9999px;
}

.pcc-root .pcc-reopen-shape-rounded {
	border-radius: var(--pcc-reopen-border-radius, 10px);
}

.pcc-root .pcc-reopen-shape-circle {
	width: var(--pcc-reopen-size, 50px);
	min-width: var(--pcc-reopen-size, 50px);
	padding: 0;
	border-radius: 50%;
}

.pcc-reopen-effect-none {
	transition: none;
}

.pcc-reopen-effect-none:hover {
	background: var(--pcc-reopen-bg, #0b0b0b);
	color: var(--pcc-reopen-text, #fff);
	border-color: var(--pcc-reopen-border, #111);
	transform: none;
}

.pcc-reopen-effect-invert:hover {
	background: var(--pcc-reopen-text, #fff);
	color: var(--pcc-reopen-bg, #0b0b0b);
	border-color: var(--pcc-reopen-text, #fff);
	transform: none;
}

.pcc-reopen-effect-lift:hover {
	transform: translateY(-2px);
}

.pcc-consent-embed {
	position: relative;
	min-height: 240px;
	overflow: hidden;
	border: 1px solid #dedede;
	background: #f4f4f4;
}

.pcc-consent-embed iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.pcc-embed-placeholder {
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 10px;
	min-height: 240px;
	padding: 28px;
	background: #f5f5f5;
	color: #111;
	text-align: center;
}

.pcc-embed-placeholder[hidden] {
	display: none !important;
}

.pcc-embed-placeholder strong {
	font-size: 18px;
}

.pcc-embed-placeholder p {
	max-width: 540px;
	margin: 0;
	color: #666;
	line-height: 1.55;
}

.pcc-embed-placeholder button,
.pcc-policy-open {
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid #111;
	border-radius: 4px;
	background: #111;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.pcc-embed-placeholder button:hover,
.pcc-policy-open:hover {
	background: #2a2a2a;
}

.pcc-policy-declaration,
.pcc-google-disclosure {
	font-family: inherit;
}

.pcc-policy-table-wrap {
	overflow: auto;
	margin: 12px 0 22px;
	border: 1px solid #ddd;
}

.pcc-policy-declaration table {
	width: 100%;
	min-width: 820px;
	border-collapse: collapse;
}

.pcc-policy-declaration th,
.pcc-policy-declaration td {
	padding: 12px 14px;
	border-bottom: 1px solid #e5e5e5;
	text-align: left;
	vertical-align: top;
}

.pcc-policy-declaration th {
	background: #f6f6f6;
}

.pcc-policy-declaration tr:last-child td {
	border-bottom: 0;
}

@keyframes pcc-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes pcc-rise {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
	.pcc-panel {
		width: min(var(--pcc-panel-width, 1160px), calc(100vw - 28px));
		height: min(var(--pcc-panel-height, 620px), calc(100vh - 28px));
	}


	.pcc-cookie-meta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.pcc-modal {
		padding: 10px;
	}

	.pcc-panel {
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(0, 1fr);
		width: calc(100vw - 20px);
		height: calc(100vh - 20px);
		min-height: 0;
		border-radius: 6px;
	}

	.pcc-visual {
		display: none;
		height: 145px;
	}

	.pcc-mobile-image .pcc-visual {
		display: block;
	}

	.pcc-visual-caption {
		left: 16px;
		right: 16px;
		bottom: 10px;
	}

	.pcc-visual-caption .pcc-eyebrow {
		font-size: 18px;
	}

	.pcc-cmp-heading {
		padding: 12px 18px 10px;
	}

	.pcc-cmp-heading h2 {
		padding: 0 38px;
		font-size: 18px;
	}

	.pcc-panel-close {
		top: 7px;
		right: 8px;
	}

	.pcc-tabs .pcc-tab {
		min-height: 46px;
		font-size: 12px;
	}

	.pcc-tab-panel {
		padding: 14px 16px 18px;
	}

	.pcc-consent-intro h3,
	.pcc-about-content > h3 {
		font-size: 18px;
	}

	.pcc-panel-actions {
		grid-template-columns: 1fr;
		padding: 12px 16px 14px;
	}

	.pcc-detail-group > summary {
		padding-right: 112px;
	}

	.pcc-detail-category-control {
		right: 42px;
	}

	.pcc-consent-record {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.pcc-detail-group > summary {
		min-height: 60px;
		padding: 12px 104px 12px 13px;
		font-size: 14px;
	}

	.pcc-detail-category-control {
		top: 15px;
		right: 34px;
	}

	.pcc-detail-body {
		padding: 0 12px 12px;
	}

	.pcc-provider-group > summary {
		padding-left: 12px;
	}

	.pcc-provider-body {
		padding: 0 10px 10px;
	}

	.pcc-cookie-item {
		padding: 12px;
	}

	.pcc-not-in-use {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pcc-backdrop,
	.pcc-panel {
		animation: none;
	}

	.pcc-btn,
	.pcc-switch span,
	.pcc-tab::after,
	.pcc-reopen {
		transition: none;
	}
}
