#cl-root {
	--cl-primary: #20b486;
	--cl-bg: #ffffff;
	--cl-text: #11233f;
	--cl-button-text: #ffffff;
	--cl-navy: #11233f;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	position: relative;
	z-index: 2147483000;
}

#cl-root [hidden] {
	display: none !important;
}

#cl-banner {
	position: fixed;
	z-index: 2147483002;
	box-sizing: border-box;
	background: var(--cl-bg);
	color: var(--cl-text);
	border: 1px solid rgba(17, 35, 63, .1);
	border-top: 4px solid var(--cl-primary);
	box-shadow: 0 18px 55px rgba(17, 35, 63, .18);
	padding: 20px;
}

#cl-root[data-layout="bar"] #cl-banner {
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	grid-template-columns: minmax(320px, 1fr) auto auto;
	align-items: center;
	gap: 20px;
	padding: 14px 22px;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
}

#cl-root[data-layout="modal"] #cl-banner {
	width: min(570px, calc(100% - 32px));
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 18px;
	padding: 25px;
}

#cl-root[data-layout="box"] #cl-banner {
	width: min(410px, calc(100% - 32px));
	right: 22px;
	bottom: 22px;
	border-radius: 16px;
}

#cl-root[data-layout="box"][data-position="left"] #cl-banner {
	left: 22px;
	right: auto;
}

#cl-root.cl-preferences-visible #cl-banner {
	left: 50%;
	right: auto;
	top: 50%;
	bottom: auto;
	width: min(620px, calc(100% - 32px));
	display: block;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(17, 35, 63, .1);
	border-top: 4px solid var(--cl-primary);
	border-radius: 18px;
	padding: 24px;
}

#cl-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2147483001;
	background: rgba(17, 35, 63, .48);
	backdrop-filter: blur(2px);
}

#cl-root.cl-visible[data-layout="modal"] #cl-backdrop,
#cl-root.cl-preferences-visible #cl-backdrop {
	display: block;
}

.cl-copy {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	min-width: 0;
}

.cl-copy > div {
	min-width: 0;
}

.cl-logo {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	object-fit: contain;
}

.cl-copy h2 {
	margin: 0 0 6px;
	color: var(--cl-text);
	font: 750 19px/1.2 inherit;
	letter-spacing: -.2px;
}

.cl-copy p {
	max-width: 720px;
	margin: 0;
	color: var(--cl-text);
	font: 400 13px/1.5 inherit;
	opacity: .88;
}

.cl-copy a {
	margin-left: 4px;
	color: var(--cl-primary);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cl-actions {
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 0;
	gap: 8px;
}

.cl-btn,
.cl-policy-button,
.cl-embed-placeholder button {
	border: 1.5px solid var(--cl-primary);
	border-radius: 9px;
	padding: 10px 14px;
	font: 700 12.5px/1 inherit;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.cl-btn:hover,
.cl-btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(17, 35, 63, .12);
}

.cl-btn-primary {
	background: var(--cl-primary);
	color: var(--cl-button-text);
}

.cl-btn-secondary {
	border-color: rgba(17, 35, 63, .28);
	background: transparent;
	color: var(--cl-text);
}

#cl-root[data-layout="modal"] .cl-actions,
#cl-root[data-layout="box"] .cl-actions {
	margin-top: 18px;
}

#cl-root[data-layout="modal"] .cl-actions .cl-btn {
	flex: 1 1 145px;
}

#cl-root[data-layout="box"] .cl-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

#cl-root[data-layout="box"] .cl-actions .cl-btn {
	width: 100%;
}

#cl-root[data-layout="box"] #cl-accept,
#cl-root[data-layout="box"] #cl-save {
	grid-column: 1 / -1;
}

#cl-categories {
	margin: 16px 0;
	border-top: 1px solid rgba(17, 35, 63, .12);
}

.cl-category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(17, 35, 63, .1);
	cursor: pointer;
}

.cl-category span {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cl-category strong {
	font-size: 13px;
}

.cl-category small {
	font-size: 11.5px;
	opacity: .68;
}

.cl-category input {
	position: absolute;
	opacity: 0;
}

.cl-category i {
	position: relative;
	width: 40px;
	height: 22px;
	flex: 0 0 auto;
	border-radius: 30px;
	background: #c9d0d9;
}

.cl-category i::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	transition: transform .2s;
}

.cl-category input:checked + i {
	background: var(--cl-primary);
}

.cl-category input:checked + i::after {
	transform: translateX(18px);
}

.cl-branding {
	display: flex;
	justify-content: flex-end;
	margin-top: 14px;
	padding-top: 11px;
	border-top: 1px solid rgba(17, 35, 63, .09);
}

.cl-branding a {
	display: inline-flex;
	align-items: center;
	opacity: .72;
	transition: opacity .15s ease;
}

.cl-branding a:hover {
	opacity: 1;
}

.cl-branding img {
	display: block;
	width: 102px;
	height: auto;
}

#cl-root[data-layout="bar"] .cl-branding {
	margin: 0 0 0 2px;
	padding: 0 0 0 18px;
	border-top: 0;
	border-left: 1px solid rgba(17, 35, 63, .1);
}

#cl-root[data-layout="bar"] .cl-branding img {
	width: 84px;
}

#cl-reopen {
	position: fixed;
	left: 14px;
	bottom: 14px;
	z-index: 2147483000;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 5px;
	border: 1px solid rgba(17, 35, 63, .12);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 5px 18px rgba(17, 35, 63, .18);
	cursor: pointer;
}

#cl-reopen img {
	width: 34px;
	height: 34px;
}

#cl-root.cl-visible #cl-reopen {
	display: none;
}

.cl-embed-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	padding: 25px;
	background: #f2f4f7;
	color: #344054;
	text-align: center;
}

.cl-embed-placeholder + iframe {
	display: none;
}

.cl-embed-placeholder button,
.cl-policy-button {
	background: var(--cl-primary, #20b486);
	color: #fff;
}

.cl-cookie-table-wrap {
	overflow-x: auto;
}

.cl-cookie-table {
	width: 100%;
	border-collapse: collapse;
}

.cl-cookie-table th,
.cl-cookie-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #e4e7ec;
	text-align: left;
	vertical-align: top;
}

.cl-cookie-table th {
	font-weight: 700;
}

.cl-cookie-table code {
	white-space: nowrap;
}

@media (max-width: 920px) {
	#cl-root[data-layout="bar"] #cl-banner {
		grid-template-columns: 1fr;
		gap: 12px;
		max-height: 90vh;
		overflow: auto;
		padding: 15px 16px;
	}

	#cl-root[data-layout="bar"] .cl-actions {
		margin-top: 0;
	}

	#cl-root[data-layout="bar"] .cl-actions .cl-btn {
		flex: 1 1 125px;
	}

	#cl-root[data-layout="bar"] .cl-branding {
		display: none;
	}
}

@media (max-width: 520px) {
	#cl-root[data-layout="box"] #cl-banner {
		right: 12px;
		bottom: 12px;
		left: 12px;
		width: auto;
	}

	#cl-root[data-layout="modal"] #cl-banner,
	#cl-root.cl-preferences-visible #cl-banner {
		width: calc(100% - 24px);
		max-height: calc(100vh - 24px);
		overflow: auto;
		padding: 19px;
	}

	.cl-copy {
		display: block;
	}

	.cl-logo {
		margin-bottom: 9px;
	}
}
