.mcc-root,
.mcc-root * {
	box-sizing: border-box;
}
.mcc-root[hidden],
.mcc-reopen[hidden] {
	display: none !important;
}
.mcc-root {
	--mcc-orange: #fa5a00;
	--mcc-black: #151923;
	--mcc-muted: #666c76;
	--mcc-line: #e6e8ec;
	--mcc-soft: #f6f7f9;
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	font-family: Poppins, Arial, Helvetica, sans-serif;
	color: var(--mcc-black);
}
.mcc-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 25, 34, .46);
	backdrop-filter: blur(2px);
}
.mcc-panel {
	position: relative;
	width: min(438px, 100%);
	max-height: calc(100vh - 36px);
	overflow: auto;
	border: 1px solid rgba(230, 232, 236, .95);
	border-radius: 8px;
	background: #fff;
	padding: 24px;
	box-shadow: 0 28px 80px rgba(15, 20, 30, .28);
}
.mcc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}
.mcc-logo {
	width: auto;
	max-width: 150px;
	max-height: 46px;
	object-fit: contain;
}
.mcc-logo-text {
	color: var(--mcc-orange);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0;
}
.mcc-head span {
	border: 1px solid rgba(250, 90, 0, .24);
	border-radius: 6px;
	background: #fff7f1;
	color: var(--mcc-orange);
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	padding: 8px 10px;
}
.mcc-panel h2 {
	margin: 0 0 10px;
	color: var(--mcc-black);
	font-size: 24px;
	line-height: 1.12;
	font-weight: 900;
	letter-spacing: 0;
}
.mcc-panel p {
	margin: 0;
	color: var(--mcc-muted);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 500;
}
.mcc-privacy-signal {
	margin-top: 10px !important;
	border: 1px solid rgba(21, 25, 35, .12);
	border-radius: 7px;
	background: var(--mcc-soft);
	padding: 10px 12px;
	font-size: 12px !important;
	font-weight: 700 !important;
}
.mcc-choices {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}
.mcc-choice {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	border: 1px solid var(--mcc-line);
	border-radius: 8px;
	background: var(--mcc-soft);
	padding: 14px;
}
.mcc-choice strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 900;
}
.mcc-choice p,
.mcc-choice small {
	display: block;
	color: var(--mcc-muted);
	font-size: 12px;
	line-height: 1.4;
	font-weight: 600;
}
.mcc-choice small {
	margin-top: 7px;
	color: #7b828d;
	overflow-wrap: anywhere;
}
.mcc-cookie-details {
	display: grid;
	gap: 6px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}
.mcc-cookie-details li {
	display: grid;
	grid-template-columns: minmax(62px, auto) 1fr;
	gap: 8px;
	align-items: start;
	color: var(--mcc-muted);
	font-size: 11px;
	line-height: 1.35;
	font-weight: 600;
}
.mcc-cookie-details span {
	color: var(--mcc-black);
	font-weight: 900;
	overflow-wrap: anywhere;
}
.mcc-switch {
	position: relative;
	display: inline-flex;
	width: 48px;
	height: 28px;
	flex: 0 0 auto;
}
.mcc-switch input {
	position: absolute;
	opacity: 0;
}
.mcc-switch span {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: #d9dde4;
	cursor: pointer;
	transition: background .16s ease;
}
.mcc-switch span:after {
	content: "";
	position: absolute;
	left: 4px;
	top: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 8px rgba(15, 20, 30, .18);
	transition: transform .16s ease;
}
.mcc-switch input:checked + span {
	background: var(--mcc-orange);
}
.mcc-switch input:checked + span:after {
	transform: translateX(20px);
}
.mcc-switch input:disabled + span {
	cursor: not-allowed;
	opacity: .72;
}
.mcc-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}
.mcc-root.is-customizing .mcc-actions {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mcc-button,
.mcc-inline-open {
	min-height: 44px;
	border: 1px solid var(--mcc-orange);
	border-radius: 7px;
	background: #fff;
	color: var(--mcc-orange);
	font: 900 13px/1 Poppins, Arial, sans-serif;
	text-align: center;
	padding: 0 14px;
	cursor: pointer;
	transition: background .16s ease, color .16s ease, transform .16s ease;
}
.mcc-button:hover,
.mcc-inline-open:hover {
	background: var(--mcc-orange);
	color: #fff;
	transform: translateY(-1px);
}
.mcc-button-primary {
	background: var(--mcc-orange);
	color: #fff;
}
.mcc-button-deny {
	border-color: var(--mcc-black);
	background: var(--mcc-black);
	color: #fff;
}
.mcc-button-primary:hover {
	background: #151923;
	border-color: #151923;
}
.mcc-button-deny:hover {
	background: #fff;
	color: var(--mcc-black);
	border-color: var(--mcc-black);
}
.mcc-policy {
	display: inline-flex;
	margin-top: 14px;
	color: var(--mcc-muted);
	font-size: 12px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.mcc-reopen {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999998;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(250, 90, 0, .38);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 20, 30, .16);
	cursor: pointer;
}
.mcc-reopen span,
.mcc-reopen span:before,
.mcc-reopen span:after {
	position: absolute;
	border: 2px solid var(--mcc-orange);
	border-radius: 50%;
	content: "";
}
.mcc-reopen span {
	left: 11px;
	top: 11px;
	width: 18px;
	height: 18px;
}
.mcc-reopen span:before {
	left: 1px;
	top: 1px;
	width: 5px;
	height: 5px;
	border-width: 0;
	background: var(--mcc-orange);
}
.mcc-reopen span:after {
	right: 2px;
	bottom: 2px;
	width: 4px;
	height: 4px;
	border-width: 0;
	background: var(--mcc-orange);
}
.mcc-inline-open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 480px) {
	.mcc-panel {
		padding: 20px 16px;
	}
	.mcc-actions,
	.mcc-root.is-customizing .mcc-actions {
		grid-template-columns: 1fr;
	}
}
