.sd-cookie-consent,
.sd-cookie-consent * {
	box-sizing: border-box;
}

.sd-cookie-consent [hidden] {
	display: none !important;
}

body.cli-modal-open {
	overflow: hidden;
}

#cookie-law-info-bar {
	position: fixed;
	z-index: 999999;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 32px 24px;
	background: #fff;
	box-shadow: 0 -2px 10px rgb(0 0 0 / 8%);
	color: #333;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.55;
}

.sd-cookie-consent__banner {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: 64px;
	align-items: center;
	max-width: 980px;
	margin: 0 auto;
}

.cookie-buttons {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.sd-cookie-consent__button {
	width: 100%;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid transparent;
	border-radius: 2px;
	background: transparent;
	font: inherit;
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	cursor: pointer;
}

.sd-cookie-consent__button--accept {
	background: #4568f9;
	color: #fff;
}

.sd-cookie-consent__button--reject {
	background: #f4f4f9;
	color: #646c9b;
}

.sd-cookie-consent__button--settings {
	border-color: #f4f4f9;
	background: #fff;
	color: #646c9b;
	text-transform: none;
}

.sd-cookie-consent__button:focus-visible,
.sd-cookie-consent button:focus-visible {
	outline: 3px solid #7d8fff;
	outline-offset: 2px;
}

.cli-settings-overlay {
	position: fixed;
	z-index: 1000000;
	inset: 0;
	background: rgb(0 0 0 / 50%);
}

.sd-cookie-consent__modal {
	position: fixed;
	z-index: 1000001;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	color: #222;
	font-family: inherit;
}

.sd-cookie-consent__dialog {
	width: min(520px, 100%);
	max-height: min(720px, calc(100vh - 32px));
}

.cli-modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	max-height: inherit;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 30px rgb(0 0 0 / 22%);
	overflow: hidden;
}

.cli-modal-close {
	position: absolute;
	z-index: 1;
	top: 8px;
	right: 8px;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 5px;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.cli-modal-close svg {
	width: 22px;
	height: 22px;
	fill: currentcolor;
}

.cli-modal-body {
	padding: 26px 16px 0;
	overflow: auto;
}

.cli-privacy-overview {
	padding: 0 0 16px;
}

.cli-privacy-overview h2 {
	margin: 0 34px 10px 0;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.cli-privacy-content-text,
.wt-cli-cookie-description {
	font-size: 12px;
	line-height: 1.45;
}

.cli-privacy-readmore {
	margin: 10px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #4568f9;
	font-family: inherit;
	font-size: 12px;
	line-height: 1.4;
	text-decoration: underline;
	cursor: pointer;
}

.cli-tab-section {
	margin: 0 0 5px;
}

.cli-tab-header {
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: 0 12px;
	border-radius: 3px;
	background: #f3f3f3;
}

.cli-nav-link {
	display: flex;
	flex: 1;
	gap: 9px;
	align-items: center;
	align-self: stretch;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-family: inherit;
	font-size: 12px;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
}

.sd-cookie-consent__chevron {
	width: 7px;
	height: 7px;
	border-right: 1px solid currentcolor;
	border-bottom: 1px solid currentcolor;
	transform: rotate(-45deg);
	transition: transform 120ms ease;
}

.cli-nav-link[aria-expanded="true"] .sd-cookie-consent__chevron {
	transform: rotate(45deg) translateY(-2px);
}

.cli-necessary-caption {
	margin-left: 12px;
	font-size: 11px;
	white-space: nowrap;
}

.cli-tab-content {
	padding: 10px 16px 3px;
}

.wt-cli-cookie-description ul {
	margin: 6px 0 0 20px;
	padding: 0;
}

.cli-switch {
	position: relative;
	display: inline-block;
	flex: 0 0 31px;
	width: 31px;
	height: 17px;
	margin-left: 10px;
}

.cli-switch input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.cli-slider {
	position: absolute;
	inset: 0;
	border-radius: 10px;
	background: #dcddea;
	cursor: pointer;
	transition: background 150ms ease;
}

.cli-slider::before {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	content: '';
	transition: transform 150ms ease;
}

.cli-switch input:checked + .cli-slider {
	background: #00adae;
}

.cli-switch input:checked + .cli-slider::before {
	transform: translateX(14px);
}

.cli-switch input:focus-visible + .cli-slider {
	outline: 3px solid #7d8fff;
	outline-offset: 2px;
}

.cli-modal-footer {
	display: flex;
	justify-content: flex-end;
	padding: 12px 16px 16px;
	background: #fff;
}

.wt-cli-privacy-btn {
	padding: 9px 14px;
	border: 0;
	border-radius: 3px;
	background: #00adae;
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	line-height: 1.4;
	cursor: pointer;
}

@media (max-width: 600px) {
	#cookie-law-info-bar {
		padding: 34px 32px 40px;
		font-size: 20px;
		line-height: 1.55;
	}

	.sd-cookie-consent__banner {
		display: flex;
		flex-direction: column;
		gap: 16px;
		align-items: stretch;
	}

	.cookie-buttons {
		gap: 8px;
	}

	.sd-cookie-consent__button {
		min-height: 57px;
		font-size: 16px;
	}

	.sd-cookie-consent__button--settings {
		order: -2;
	}

	.sd-cookie-consent__button--reject {
		order: -1;
	}

	.sd-cookie-consent__modal {
		padding: 13px;
	}

	.sd-cookie-consent__dialog {
		max-height: calc(100vh - 26px);
	}

	.cli-modal-body {
		padding: 44px 30px 0;
	}

	.cli-modal-close {
		top: 13px;
		right: 13px;
	}

	.cli-privacy-overview h2 {
		font-size: 23px;
	}

	.cli-privacy-content-text,
	.wt-cli-cookie-description {
		font-size: 19px;
		line-height: 1.55;
	}

	.cli-privacy-readmore {
		margin-top: 18px;
		font-size: 16px;
	}

	.cli-tab-header {
		min-height: 68px;
		padding: 0 20px;
	}

	.cli-nav-link {
		font-size: 17px;
	}

	.cli-necessary-caption {
		font-size: 16px;
	}

	.cli-tab-content {
		padding: 16px 30px 4px;
	}

	.cli-modal-footer {
		padding: 16px 30px 30px;
	}

	.wt-cli-privacy-btn {
		padding: 14px 20px;
		font-size: 17px;
	}

}
