html {
	overflow-y: auto;
	margin: 0;
	padding: 0;
	background-color: transparent;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	justify-content: center;
	align-items: center;
	color: #222;
	text-align: left;
	background-color: #00000099;
}

[dir="rtl"] body {
	text-align: right;
}

.smaller {
	font-size: 0.85em;
}
.btn {
	border-width: 1px;
}

a, a:visited {
	font-size: inherit;
	color: #01769d;
}
a.outlink .icon-link-ext {
	font-size: 0.95em;
	padding-left: 0.2em;
}
a.outlink[class*="limit"] {
	display: inline-flex;
	align-items: center;
}
a.outlink[class*="limit"] .text {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 200px;
}
a.outlink.limit200 .text {
	max-width: 200px;
}
a.outlink.limit300 .text {
	max-width: 300px;
}
a.outlink.limit400 .text {
	max-width: 400px;
}


ul {
	padding-left: 20px;
	list-style: circle;
	margin: 3px 0;
}
[dir="rtl"] ul {
	padding-left: 0;
	padding-right: 20px;
}
li {
	font-size: 0.90em;
}


.flex0 {
	flex: 0 !important;
}
.flex1 {
	flex: 1 !important;
}


.dropdown-btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 5px;
	justify-content: space-between;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	gap: 1em;
}
.dropdown-btn::after {
	content: '';
	display: inline-block;
	margin-left: 10px;
	margin-right: 5px;
	font-size: 12px;
	color: #999;
	border-left: 2px solid #777;
	border-top: 2px solid #777;
	width: 6px;
	height: 6px;
	transform: rotate(225deg);
	flex-shrink: 0;
}
.dropdown-btn:hover {
	background-color: #e0e7ed;
}
.dropdown-btn span {
	flex: 1;
}
.dropdown-btn svg {
	height: 16px;
	width: auto;
	fill: #555;
	position: relative;
	top: 2px;
}
.dropdown.active {
	background-color: #f5f5f5;
	margin: 5px 0;
}
.dropdown.active .dropdown-btn {
	font-weight: bold;
}
.dropdown.active .dropdown-btn::after {
	transform: rotate(45deg);
}
.dropdown-content {
	padding: 5px;
	display: none;
}
.dropdown.active .dropdown-content {
	display: block;
}


.lds-dual-ring,
.lds-dual-ring-small {
	display: inline-block;
	width: 60px;
	height: 60px;
}
.lds-dual-ring:after,
.lds-dual-ring-small:after {
	content: " ";
	display: block;
	width: 30px;
	height: 30px;
	margin: 10px;
	border-radius: 50%;
	border: 5px solid #0078D5;
	border-color: #0078D5 #900000 #ec8f1e #1aaa16;
	animation: lds-dual-ring 1.2s linear infinite;
}
.lds-dual-ring-small {
	width: 16px;
	height: 16px;
}
.lds-dual-ring-small:after {
	width: 10px;
	height: 10px;
	margin: 0px;
	border-width: 3px;
}
@keyframes lds-dual-ring {
	0%   { transform: rotate(0deg);   }
	100% { transform: rotate(360deg); }
}
.lds-dual-ring.w100c,
.lds-dual-ring-small.w100c {
	width: 100%;
	display: flex;
	justify-content: center;
}
.lds-dual-ring.overlay,
.lds-dual-ring-small.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider {
	position: relative;
	width: 40px;
	height: 20px;
	background-color: #999;
	border-radius: 20px;
	cursor: pointer;
	inset: 0px;
	transition: all 0.4s ease 0s;
	display: inline-block;
}
[dir="rtl"] .slider {
	transform: scaleX(-1);
}
.slider:before {
	background-color: #fff;
	border-radius: 50%;
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	left: 2px;
	bottom: 2px;
	transition: all 0.4s ease 0s;
}
.slider.checked {
	background-color: #008CBA;
}
.slider.checked:before {
	transform: translateX(20px);
}
.slider.tristate {
	background-color: #008CBA;
}
.slider.tristate:before {
	transform: translateX(10px);
}
.slider.sm {
	width: 35px;
	height: 17px;
}
.slider.sm:before {
	width: 13px;
	height: 13px;
}
.slider.sm.checked:before {
	transform: translateX(18px);
}
.slider.sm.tristate:before {
	transform: translateX(9px);
}
.slider.locked {
	cursor: auto;
}


.sliderContainer {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sliderContainer .label {
	font-weight: bold;
	color: #666;
	display: flex;
	gap: 10px;
	align-items: center;
}
.sliderContainer .label .appendix {
	font-size: 0.9em;
}


.sliderContainer2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.sliderContainer2 .label {
	color: #666;
	font-size: 0.9em;
}


#consentManagerInitLoader {
	background-color: #fff;
	padding: 15px;
	box-sizing: border-box;
	margin: 5px;
	overflow: hidden;
	width: 350px;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 8px;
}


#consentManagerContent {
	background-color: #fff;
	background-color: var(--cookie-banner-content-bg-color, #fff);
	padding: 15px;
	box-sizing: border-box;
	position: relative;
	margin: 5px;
	overflow: hidden;
	max-width: 550px;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	border: 1px solid #ddd;
}
#consentManagerContent .consentManagerPage {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
#consentManagerContent .consentManagerPage > .head {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
#consentManagerContent .consentManagerPage > .head > .title {
	font-weight: bold;
	font-size: 22px;
	padding: 0 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-grow: 1;
	text-align: center;
}
#consentManagerContent .consentManagerPage > .head > .goBack {
	font-size: 16px;
	cursor: pointer;
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 3px;
	margin-right: -20px;
	position: relative;
	z-index: 1;
}
[dir="rtl"] #consentManagerContent .consentManagerPage > .head > .goBack {
	margin-right: 0;
	margin-left: -20px;
	transform: scaleX(-1);
}
#consentManagerContent .consentManagerPage > .head > .goBack:hover {
	background-color: #f0f0f0;
}
#consentManagerContent.canGoBack .consentManagerPage > .head > .goBack {
	display: flex;
}
#consentManagerContent .consentManagerPage > .content {
	max-height: 60vh;
	overflow-y: auto;
	margin-right: -15px;
	padding-right: 15px;
	position: relative;
}
#consentManagerContent .consentManagerPage > .content.maxHeight {
	min-height: 60vh;
}
[dir="rtl"] #consentManagerContent .consentManagerPage > .content {
	margin-right: -0;
	margin-left: -15px;
	padding-right: 0;
	padding-left: 15px;
}
@media (max-width: 600px) {
	#consentManagerContent .consentManagerPage > .content {
		max-height: 50vh;
	}
}
#consentManagerContent[data-active-page="consentManagerEntryPage"] {
	max-width: 650px;
}


#consentManagerContent #consentManagerEntryPage > .head {
	gap: 10px;
}
#consentManagerContent #consentManagerEntryPage > .head > .icon {
	padding: 0;
	flex-shrink: 0;
}
#consentManagerContent #consentManagerEntryPage > .head img.icon {
	height: 50px;
	width: auto;
}
#consentManagerContent #consentManagerEntryPage > .head > .title {
	font-size: 20px;
	white-space: normal;
	text-align: start;
	padding: 0;
}
#consentManagerContent #consentManagerEntryPage > .head > .title .serviceName {
	color: #044d8a;
}


#consentManagerClose {
	position: absolute;
	right: 0px;
	top: 0px;
	cursor: pointer;
	font-size: 16px;
	opacity: 0.5;
	padding: 3px 5px;
}
#consentManagerClose:hover {
	background-color: #ffbebe;
}


#consentManagerLoader {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.1);
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}


#consentManagerFooter {
	font-size: 13px;
	margin-top: 20px;
	text-align: center;
	display: none;
}
#consentManagerFooter * {
	color: #777;
}
#consentManagerFooter .sep {
	padding: 0 10px;
}
#consentManagerContent[data-active-page="consentManagerEntryPage"] #consentManagerFooter {
	display: block;
}


#consentManagerButtons .buttons {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap-reverse;
}
#consentManagerButtons .buttons .btn {
	padding: 8px 10px;
	margin: 5px;
	font-size: 15px;
	white-space: nowrap;
	flex: 1;
	overflow: visible;
	border-radius: 20px;
}
@media (max-width: 600px) {
	#consentManagerButtons .buttons .btn {
		min-width: 100%;
	}
}
#consentManagerButtons .buttons.entryPage {
	display: none;
}
#consentManagerContent[data-active-page="consentManagerEntryPage"] #consentManagerButtons .buttons.otherPages {
	display: none;
}
#consentManagerContent[data-active-page="consentManagerEntryPage"] #consentManagerButtons .buttons.entryPage {
	display: flex;
}
#consentManagerContent[data-active-page="consentManagerEntryPage"] #consentManagerButtons .buttons.entryPage {
	display: flex;
}


#consentManagerDetailsPage > .content > .block {
	margin: 10px 0;
}
#consentManagerDetailsPage > .content > .block .heading {
	font-weight: bold;
}
#consentManagerDetailsPage > .content > .block .heading + p {
	margin-top: 0;
}
#consentManagerDetailsPage > .content > .block ul + .outLinkWrapper {
	margin-left: 20px;
	font-size: 0.9em;
}
[dir="rtl"] #consentManagerDetailsPage > .content > .block ul + .outLinkWrapper {
	margin-left: 0;
	margin-right: 20px;
}
#consentManagerDetailsPage > .content > .block.line {
	display: flex;
	gap: 5px;
}
#consentManagerDetailsPage > .content > .block.line .value {
	flex: 1;
}
#consentManagerDetailsPage .keyValueBlocks {
	font-size: 0.9em;
	display: flex;
	flex-direction: column;
}
#consentManagerDetailsPage .keyValueBlocks > .block {
	padding: 5px 0 5px 8px;
	margin: 5px 0;
	border-left: 1px solid #c7e0f1;
}
[dir="rtl"] #consentManagerDetailsPage .keyValueBlocks > .block {
	padding: 5px 8px 5px 0px;
	border-right: 1px solid #c7e0f1;
	border-left: 0 none;
}
#consentManagerDetailsPage > .content > .infoHeading {
	font-weight: bold;
	font-size: 1.1em;
}


#consentManagerSettingsPage .category {
	margin: 20px 0;
	border: 1px solid #D9E6EF;
	padding: 10px;
	border-radius: 8px;
}
#consentManagerSettingsPage .category > .head {
	display: flex;
	justify-content: space-between;
}
#consentManagerSettingsPage .category > .head > .name {
	font-weight: bold;
	font-size: 1.05em;
}
#consentManagerSettingsPage .category .description {
	margin: 8px 0;
}
#consentManagerSettingsPage .category.ads > .links {
	display: flex;
	gap: 30px;
	margin-top: 15px;
}
#consentManagerSettingsPage .providerSettingsLinkBlock {
	padding: 15px;
	margin: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.15em;
}
#consentManagerSettingsPage .infoBlock {
	margin: 20px 0;
	border: 1px solid #D9E6EF;
	padding: 10px;
	border-radius: 8px;
	overflow: hidden;
}
#consentManagerSettingsPage .infoBlock .title {
	background-color: #f5f5f5;
	padding: 5px 10px;
	margin: -10px -10px 5px -10px;
}


#consentManagerProvidersPage .provider {
	margin: 20px 0;
	border: 1px solid #D9E6EF;
	padding: 10px;
	border-radius: 8px;
}
#consentManagerProvidersPage .provider > .head {
	display: flex;
	justify-content: space-between;
}
#consentManagerProvidersPage .provider > .head > .name {
	font-weight: bold;
	font-size: 1.05em;
}
#consentManagerProvidersPage .provider > .description {
	margin: 8px 0;
}


#consentManagerAdVendorsPage > .content {
	overflow-y: scroll !important;
}
#consentManagerAdVendorsPage .adVendorsFilter {
	margin: 10px 0;
	position: sticky;
	top: 0px;
	background-color: #fff;
	z-index: 10;
}
#consentManagerAdVendorsPage .adVendorsFilter input {
	width: 100%;
	height: 30px;
	padding-left: 30px;
	box-sizing: border-box;
}
[dir="rtl"] #consentManagerAdVendorsPage .adVendorsFilter input {
	padding-left: 0;
	padding-right: 30px;
}
#consentManagerAdVendorsPage .adVendorsFilter .icon-search {
	position: absolute;
	left: 3px;
	top: 2px;
	font-size: 16px;
	color: #bbb;
}
[dir="rtl"] #consentManagerAdVendorsPage .adVendorsFilter .icon-search {
	left: auto;
	right: 3px;
}
#consentManagerAdVendors .groupHeader {
	background-color: #f0f0f0;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 10px 0;
}
#consentManagerAdVendors .vendor {
	border: 1px solid #D9E6EF;
	padding: 15px;
	margin: 10px 0;
	border-radius: 8px;
}
#consentManagerAdVendors .vendor .head {
	font-weight: bold;
	font-size: 1.05em;
}
#consentManagerAdVendors .vendor .content .links {
	display: flex;
	gap: 20px;
	margin: 10px 0;
}
#consentManagerAdVendors .vendor .content .links a {
	font-size: 0.9em;
}
#consentManagerAdVendors .vendor .content .sep {
	margin: 15px -10px;
	border-bottom: 1px dashed #d9e6ef;
}


#consentManagerAdSettingsPage > .content > .block {
	border: 1px solid #D9E6EF;
	padding: 15px;
	margin: 10px 0;
	border-radius: 10px;
}
#consentManagerAdSettingsPage > .content > .block > .title {
	font-weight: bold;
	margin-bottom: 8px;
}
#consentManagerAdSettingsPage > .content > .block > .description {
	margin-bottom: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
#consentManagerAdSettingsPage > .content > .blocksGroupHeading {
	margin: 30px 0 10px 0;
	text-align: center;
	font-weight: bold;
	color: #777;
}
#consentManagerAdSettingsPage > .content > .providerSettingsLinkBlock {
	padding: 15px;
	margin: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.15em;
}
#consentManagerAdSettingsPage > .content .labelAndSlider .label .appendix {
	font-size: 0.95em;
	font-weight: normal;
}
