html {
	background-color: #dbdedb;
	scrollbar-color: #00717f #f4f5f4;
	scrollbar-width: thin;
}
body {
	margin: 0;
	padding: 0;
	font-size: 12pt;
	font-family: "Segoe UI",Calibri,"Helvetica Neue","Liberation Sans",FreeSans,Roboto,"SF Pro",sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #3a3a3a;
	background-color: #fff;
	transition: all 0.25s ease-in-out;
}
body.desktop_mode {
    min-width: 1280px;
	font-size: 12pt;
}
.bg-f0 {
	background-color: #f4f5f4;
}
.bg-error {
	background: url("../images/404bg.png");
}
* {
	margin: 0;
	padding: 0;
	font-size: 100%;
}
a, a:visited, a:active {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
img, a img {border: 0;}
header {
	background-color: #00717f;
	color: #fff;
	padding: 1.5ex 2ex;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
header.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
header a {
	color: inherit;
}
#header_nav > ul {
	display: flex;
	height: 100%;
	gap: 2ex;
	list-style: none;
	justify-content: right;
	align-items: center;
}
#header_nav > ul > li {
	flex: 0 1 auto;
}
#header_nav > ul > li > a, #header_nav > ul > li > span > a {
	padding-left: 1.2em;
	color: #f4f5f4;
}
#search_toolbar {
	display: none;
}
#search_toolbar.shown {
	display: block;
}
#search_toolbar a {
	background: url("../icons/icon_search_white.svg") no-repeat;
	background-position: left center;
	background-size: 1em;
	cursor: pointer;
}
a#lngselectboxlink {
	background: url("../icons/icon_globe.svg") no-repeat;
	background-size: 1em;
	background-position: left center;
	cursor: pointer;
}
#languagemenu {
	display: none;
	position: absolute;
	right: 2ex;
	top: 5ex;
	border: 1px solid #949ca1;
	max-width: 40em;
	background-color: #fff;
	z-index: 100010;
	margin-top: 1em;
	padding: 1ex;
}
#mode a {
	background: url("../scripts/mode/dark-mode.svg") no-repeat;
	background-position: left center;
	background-size: 1em;
}
#languagemenu ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
#languagemenu ul li {
	flex: 0 1 calc(100% / 3);
	box-sizing: border-box;
}
#languagemenu a {
	color: #0396a0;
	display: block;
	padding: 0.75ex 1ex;
}
#languagemenu a:hover, #languagemenu li.lngSelected a {
	background-color: #f4f5f4;
}

#search {
	color: #fff;
	display: flex;
	background-image: linear-gradient(#00717f, #0396a0);
	padding: 6ex;
	border-top: 1px dotted #f4f5f4;
	border-bottom: 1px solid #0396a0;
}
#title {
	color: #fff;
	background: #0396a0 url("../images/bg_normal_page.webp") bottom left no-repeat;
	background-size: cover;
	padding: 4ex 2ex;
}
header.fixed, #title {
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
h1, h2, h3 {
	margin-bottom: 1em;
}
#title p, #search h1, #search h2, #useful_pages h2 {
	font-weight: bold;
	font-weight: 600;
}
#title p {
	font-size: 150%;
	margin-bottom: 0;
	display: inline-block;
	padding: 0.5em 0.2em 0.5em;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 0.2em;
}
#search label, #search button {
	display: none;
}
#elastic {
	flex: 0 0 60%;
	padding-right: 1ex;
}
input, select {
	border: 1px solid transparent;
	outline: none;
	border-radius: 5px;
	padding: 0.5em;
	box-sizing: border-box;
	vertical-align: middle;
}
#q {
	width: 84%;
}
#q, #mySearchFilter {
	background: #fff url("../icons/icon_search.svg") 99% center no-repeat;
	background-size: 1em 1em;
}
#most_searched {
	display: flex;
	flex: 0 0 40%;
}
#most_searched h2 {
	flex: 0 0 calc(50% - 3ex);
	text-align: right;
	padding-right: 3ex;
}
#most_searched ul {
	flex: 0 0 50%;
	list-style: none;
}
#most_searched a {
	color: inherit;
}

.alertNode {
	background-color: #ffb417;
	border-top: 1px solid #fff;
	padding: 1.5ex 2ex;
}
.alertNode:first-child {
	border-top: 0;
}
.alertNode.alert {
	background-color: #e04239;
}
.alertNode.announcement {
	background-color: #0396a0;
}
.alertNode a {
	display: block;
	background-image: url("../alerts/img/alert.svg");
	background-repeat: no-repeat;
	background-size: 1.25em;
	padding-left: 2em;
	color: #3a3a3a !important;
	text-decoration: underline;
}
.alertNode.alert a {
	color: #f4f5f4 !important;
	background-image: url("../alerts/img/warning.svg");
}
.alertNode.announcement a {
	color: #f4f5f4 !important;
	background-image: url("../alerts/img/about.svg");
}

main {
}
#main {
	min-height: 400px;
}
#main a {
	color: inherit;
}
#main.category_selection, #main.error_page {
	margin: 0 6ex 14ex;
	min-height: auto;
	padding-top: 16ex;
}
.category_selection h2 {
	font-size: 150%;
	margin-bottom: 4ex;
	font-weight: normal;
}
#main.error_page {
	text-align: center;
	font-size: 125%;
}
.error_page h1 {
	font-size: 225%;
}
.error_page h2 {
	font-size: 140%;
}
.error_page h1, .error_page h2, .error_page p {
	margin-bottom: 1em;
}
.category_list, .api_offering {
	display: flex;
	flex-wrap: wrap;
	gap: 5ex;
}
.category_toolbar, .api_toolbar {
	border-radius: 2ex;
	box-sizing: border-box;
	flex: 1 1 calc(25% - 3.75ex);
	max-width: calc(25% - 3.75ex);
	box-sizing: border-box; 
	padding: 2ex;
	text-align: center;
	cursor: pointer;
}
.category_toolbar {
	color: #fff;
	background-image: linear-gradient(#0396a0, #00717f);
}
.category_toolbar:hover {
	background-image: linear-gradient(#0396a0, #0396a0);
}
.api_toolbar {
	border: 1px solid #dbdedb;
	background: #fff;
}
.category_toolbar a, .api_toolbar a {
	color: inherit;
	display: block;
}
.category_toolbar a {
	padding-top: 3em;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px dotted #0A1823;
	font-weight: 600;
}
#main .api_toolbar a {
	color: #00717f;
	font-size: 110%;
	margin-bottom: 1em;
}
div.hovered {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
.category_toolbar.cat_home a {
	background: url("../icons/category_home.svg") top center no-repeat;
	background-size: 3em;
}
.category_toolbar.cat_soho a {
	background: url("../icons/category_soho.svg") top center no-repeat;
	background-size: 3em;
}
.category_toolbar.cat_business a {
	background: url("../icons/category_business.svg") top center no-repeat;
	background-size: 3em;
}
.category_toolbar.cat_other a {
	background: url("../icons/category_other.svg") top center no-repeat;
	background-size: 3em;
}
#main.category_details, #main.api_list {
	margin: 0 6ex 16ex;
	padding-top: 8ex;
}
#main.normal_page, #main.sidebar {
	margin: 0 auto 16ex;
	padding-top: 8ex;
}
.normal_page {
	max-width: 64em;
}
#main.sidebar {
	max-width: 88em;
}
#breadcrumbs {
	margin-bottom: 2ex;
	color: #596165;
}
.category_details {
	margin-top: 2ex;
	margin-bottom: 2ex;
}
.normal_page h1, .api_list h1, .sidebar_layout h1, .category_details h2 {
	font-size: 160%;
}
.normal_page h2, .sidebar_layout h2 {
	font-size: 140%;
}
.normal_page h2, .category_details h2, .sidebar_layout h2 {
	margin-bottom: 3ex;
}
.normal_page h3, .sidebar_layout h3 {
	font-size: 120%;
}

#products a {
	padding: 1ex 0 1ex 1.5em;
	background: url("../icons/icon_guide.svg") left 1.25ex no-repeat;
	background-size: 1em;
	display: inline-block;
	text-decoration: none;
	width: 100%;
	box-sizing: border-box;
}
#products .spinner, #legal .spinner {
  display: block;
  border-top-color: #00717f !important;
  width: 16px;
  height: 16px;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top-width: 8px;
  border-top-style: solid;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#products a, #main a.cta, #main .sidebar_layout a {
	color: #00717f;
}
#products a:hover, #main a.cta:hover, #main .sidebar_layout a:hover {
	text-decoration: underline;
}
#products {
	margin-top: 8ex;
}
.category_toolbar a:hover {
	text-decoration: none;
}
#products ul {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	gap: 1.4em 2em;
}
.category_details ul li {
	flex: 0 0 calc(50% - 1em);
}
#products h3 {
	margin-top: 4ex;
	margin-bottom: 4ex;
	padding: 1ex 2ex 1ex 2.5em;
	border-bottom: 1px dotted #3a3a3a;
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 1.75em;
	font-size: 120%;
}
#products h3.endpoint {
	background-image: url("../icons/icon_endpoint_security.svg");
}
#products h3.server {
	background-image: url("../icons/icon_server_security.svg");
}
#products h3.remote {
	background-image: url("../icons/icon_remote_management.svg");
}
#products h3.cloud {
	background-image: url("../icons/icon_cloud_security.svg");
}
#products h3.license {
	background-image: url("../icons/icon_license_management.svg");
}
#products h3.edr {
	background-image: url("../icons/icon_enhanced_detection_response.svg");
}
#products h3.idp {
	background-image: url("../icons/icon_identity_data_protection.svg");
}
#products h3.msp {
	background-image: url("../icons/icon_msp.svg");
}
#products h3.services {
	background-image: url("../icons/icon_services.svg");
}

.expand {
	display: none;
	margin: 1ex 0 4em 1.9em;
}
.expand.next {
	display: none;
	margin: 0 0 0 1.9em;
}
a.collapsible {
	color: inherit;
	display: block;
	font-weight: normal;
	padding: 0.5em 0.25em 0.5em 1.5em;
	background-image: url("../icons/arrow_down_home.svg");
	background-position: 8px center;
	background-size: 0.75em 0.75em;
	background-repeat: no-repeat;
	margin-bottom: 1ex;
	cursor: pointer;
}
a.collapsible.expanded, a.collapsible:hover {
	background-color: #dbdedb;
	text-decoration: none;
}
a.collapsible.expanded {
	background-image: url("../icons/arrow_up_home.svg");
}
#changelogs h2, #latest_versions h2, #legal h2 {
	margin-top: 4ex;
}
#changelogs p, #latest_versions p, #legal p {
	margin-bottom: 2ex;
}
#changelogs p a, #latest_versions p a, #legal p a, #legal ul a {
	text-decoration: underline;
}
#changelogs ul, #legal ul, .api_list ul, .normal_page ul {
	margin-left: 2ex;
	margin-top: 0.5ex;
	margin-bottom: 1em;
}
.sidebar ul {
	list-style-type: none;
}
#changelogs ul li, #legal ul li, .api_list ul li, .sidebar ul li {
	padding-bottom: 0.5ex;
}

#changelogs h3 a.external {
	background-image: url("../icons/link_turquoise.svg");
}

#latest_versions h3 {
	margin: 3ex 0 1ex;
}

.api_list {
}
.api_list h2 {
	margin-top: 8ex;
	font-size: 140%;
}
.api_list h2, .developers_title strong {
	font-weight: bold;
	font-weight: 600;
}
.api_list p {
	margin-bottom: 1em;
}
#developers_title, .bubble {
	margin-top: 4em;
	padding: 1em 2em;
	border-radius: 1em;
	background: #fff url("../images/shape09_dt.svg") bottom right no-repeat;
	background-size: 5em;
}
#developers_title h2 {
	margin-top: 1em;
}
#developers_title .expand {
	margin-bottom: 2em;
}

#updates h2 {
	margin: 3ex 0 1ex;
}
#updates p.para {
	margin-bottom: 2ex;
}
#updates input {
	min-width: 30em;
}
#updates p.para a {
	text-decoration: underline;
}
#updates p.para a.android {
	background: url("../icons/icon_android.svg") center left no-repeat;
	background-size: 1em;
	padding-left: 1.5em;
}
#updates .updatelist {
	display: none;
	margin: 2ex 0 1ex 0;
}

#filter {
	display: flex;
	align-items: center;
}
#filter p {
	flex: 0 0 30%;
}
#filter p.double {
	flex: 0 0 60%;
}
#filter select {
	background: #fff;
	border: 1px solid #949ca1;
	border-radius: 8px;
	color: #424d56;
	margin-left: 1ex;
	font-size: 95%;
	max-width: 100%;
	appearance: none;
	cursor: pointer;
	background-image: url('../icons/arrow_down_black.svg');
	background-repeat: no-repeat;
	background-position: right 7px center;
	background-size: 1em;
	padding-right: calc(1.4em + 7px);
}
#filter select:first-child {
	margin-right: 2em;
}
#filter p.find_out {
	flex: 0 0 40%;
	text-align: right;
}
#filter p.find_out a {
	text-decoration: underline;
}

#elasticSearchResults .searchheading {
	font-weight: bold;
	font-weight: 600;
	margin: 1.5ex 0px;
}
#elasticSearchResults a {
	color: #00717f;
	font-size: 120%;
}
#elasticSearchResults .result_title {
	font-weight: bold;
	font-weight: 600;
}
#elasticSearchResults .topicUrlPlainText {
	color: gray;
	font-size: 85%;
	padding: 2px 0px;
}
#elasticSearchResults .tags {
	font-size: 90%;
	padding: 0.5ex 0;
}
#elasticSearchResults .tags_product, #elasticSearchResults .tags_category, #elasticSearchResults .tags_version {
	background-color: #dbdedb;
	padding: 0px 3px;
	border-radius: 6px;
}
#elasticSearchResults .result_highlights {
	margin-top: 1ex;
}
#elasticSearchResults .result_block {
	margin-top: 1ex;
	margin-bottom: 3ex;
	padding: 1em;
	border: 1px solid #dbdbeb;
	border-radius: 1em;
	background: #ffffff;
}
#elasticSearchResults span.highlight {
	font-weight: bold;
	font-weight: 600;
	background-color: #faf7c9;
	padding: 0 2px;
}
#showMoreBtn {
	text-align: center;
	border: none;
	background: #00717f;
	padding: 3px;
	margin: 15px 0 5px;
	color: #fff;
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	border-radius: 7px;
}
#showMoreBtn:hover {
	cursor: pointer;
}

.sidebar_layout {
	display: flex;
	justify-content: space-between;
	gap: 3%;
	margin-top: 2em;
}
.sidebar_layout .mainContent {
	flex: 0 0 67%;
}
.sidebar_layout .sidebar {
	flex: 0 0 30%;
	position: sticky;
	top: 2em;
	height: fit-content;
	border: 1px solid #dbdedb;
	background: #f2f2f2;
	border-radius: 1em;
	box-sizing: border-box;
	padding: 1em;
}

#useful_pages {
	padding: 6ex;
	background-image: linear-gradient(#fff, #dbdedb);
	border-bottom: 1px solid #dbdedb;
}
.bg-f0 #useful_pages {
	background-image: linear-gradient(#f4f5f4, #dbdedb);
}
.bg-error #useful_pages {
	background-image: linear-gradient(transparent, #dbdedb);
}
#useful_pages ul {
	list-style: none;
	display: flex;
	gap: 3em;
}
#useful_pages hr {
	margin: 3em 0 2em;
	border: none;
	border-top: 1px dotted #3a3a3a;
}
#useful_pages h2 {
	margin-bottom: 3ex;
}
#useful_1 li {
	border: 1px solid #a0a0a0;
	background-color: #fff;
	border-radius: 8px;
}
#useful_1 li a {
	color: inherit;
	padding: 1.5ex 1em;
	display: block;
}
#desktop_view {
	display: none;
}
#useful_2 li a {
	color: inherit;
}

h2.p_Heading2, h3.p_Heading3 {
	margin-top: 2ex;
	margin-bottom: 1ex;
}
p.p_Normal {
	margin-bottom: 1ex;
}
table.Table_small {
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
}
table.Table_small th, table.Table_small td {
	vertical-align: top;
	padding: 0.3em 0.5em;
	border: solid thin #dbdbeb;
}
table.Table_small th {
	background-color: #949ca1;
	color: #ffffff;
	font-weight: normal;
	text-align: left;
}
table.Table_small:not(.transparent) tr:nth-child(odd) td {
	background-color: #f0f1f0;
}
table.Table_small.transparent tr th {
	background-color: transparent;
	color: inherit;
	font-weight: bold;
}
span.f_NormalTableCode {
	font-family: 'Courier New',Courier,monospace;
}

footer {
	padding: 2ex;
	display: flex;
	justify-content: space-between;
	color: #fff;
	background-color: #454c52;
	box-sizing: border-box;
}
footer a {
	color: inherit;
	cursor: pointer;
}
footer p {
	font-size: 85%;
	flex: 0 0 50%;
}
footer ul {
	font-size: 85%;
	flex: 0 0 50%;
	display: flex;
	list-style: none;
	justify-content: right;
	gap: 2ex;
}
footer ul li {
	flex: 0 1 auto;
	text-align: right;
}

@media print {
	body {
		print-color-adjust: exact;
		background-color: white !important;
	}
	#mode,
	#search,
	#search_toolbar.shown,
	#filter,
	#useful_pages,
	header.fixed {
		display: none;
	}
	header.fixed:first-of-type {
		display: block !important;
		position: static;
	}
	#main {
		margin-left: 2ex !important;
		margin-right: 2ex !important;
		padding-top: 6ex !important;
	}
	#breadcrumbs {
		margin-bottom: 0ex !important;
	}
	#products {
		margin-top: 1ex !important;
	}
	#products ul {
		gap: 0 !important;
	}
	#products h3 {
		margin: 2ex 0 !important;
	}
	#developers_title {
		padding: 0;
		background: transparent;
	}
	.expand {
		display:block !important;
	}
	.api_toolbar {
		overflow: hidden;
		word-wrap: break-word;
		margin: 2ex 0;
	}
	.api_toolbar,
	tr,
	td,
	img {
		page-break-inside: avoid;
	}
}

/* Dark skin color change */
@media not print {
	html.dark {
		background-color: #1e1e1e;
		scrollbar-color: #00717f #121212;
	}
	html.dark body,
	html.dark table,
	html.dark tr,
	html.dark th {
		background-color: #121212 !important;
	}
	html.dark body,
	html.dark table,
	html.dark tr,
	html.dark th {
		color: #fffeff !important;
	}
	html.dark .bg-f0 {
		background-color: #121212;
	}
	html.dark .bg-error {
		background: url("../images/404bg_dark.png");
	}
	html.dark header {
		background-color: #1e1e1e;
	}
	html.dark #languagemenu {
		background-color: #121212;
	}
	html.dark #languagemenu a {
		color: #00bbc5;
	}
	html.dark #languagemenu a:hover, html.dark #languagemenu li.lngSelected a {
		background-color: #424d56;
	}
	html.dark #search {
		background: #121212;
		background-image: linear-gradient(#1e1e1e, #121212);
		border-top-color: #a0a0a0;
		border-bottom-color: #1e1e1e;
	}
	html.dark .alertNode.announcement {
		background-color: #121212;
	}
	html.dark #elasticSearchResults span.highlight {
		color: #121212;
	}
	html.dark #elasticSearchResults .tags_product,
	html.dark #elasticSearchResults .tags_version,
	html.dark #elasticSearchResults .tags_category {
		background-color: #25333e;
		color: #dbdedb;
	}
	html.dark #elasticSearchResults a {
		color: #00bbc5;
	}
	html.dark #showMoreBtn:hover {
		background: #0096a1;
	}
	html.dark input::placeholder {
		color: #949ca1;
	}
	html.dark #breadcrumbs {
		color: #949ca1;
	}
	html.dark .category_toolbar {
		background-image: linear-gradient(#004b55, #00717f);
	}
	html.dark .category_toolbar:hover {
		background-image: linear-gradient(#00717f, #00717f);
	}
	html.dark #q, html.dark #mySearchFilter {
		background-image: url("../icons/icon_search_tq.svg");
	}
	html.dark #q, html.dark #filter select, html.dark #mySearchFilter {
		background-color: #353535;
		color: #fff;
	}
	html.dark #filter select {
		background-image: url('../icons/arrow_down_white.svg');
	}
	html.dark #products a {
		background-image: url("../icons/icon_guide_white.svg");
	}
	html.dark #products a, html.dark #main a.cta, html.dark #main .sidebar_layout a {
		color: #00bbc5;
	}
	html.dark #products h3 {
		border-bottom-color: #f4f5f4;
	}
	html.dark #products h3.endpoint {
		background-image: url("../icons/icon_endpoint_security_white.svg");
	}
	html.dark #products h3.server {
		background-image: url("../icons/icon_server_security_white.svg");
	}
	html.dark #products h3.remote {
		background-image: url("../icons/icon_remote_management_white.svg");
	}
	html.dark #products h3.cloud {
		background-image: url("../icons/icon_cloud_security_white.svg");
	}
	html.dark #products h3.license {
		background-image: url("../icons/icon_license_management_white.svg");
	}
	html.dark #products h3.edr {
		background-image: url("../icons/icon_enhanced_detection_response_white.svg");
	}
	html.dark #products h3.idp {
		background-image: url("../icons/icon_identity_data_protection_white.svg");
	}
	html.dark #products h3.msp {
		background-image: url("../icons/icon_msp_white.svg");
	}
	html.dark #products h3.services {
		background-image: url("../icons/icon_services_white.svg");
	}
	html.dark #developers_title, html.dark .bubble {
		background-color: #1e1e1e;
		background-image: url("../images/shape09_dt.svg");
	}
	html.dark .api_toolbar, html.dark #elasticSearchResults .result_block, html.dark .sidebar_layout .sidebar {
		background: #1e1e1e;
		border-color: #424d56;
	}
	html.dark #main .api_toolbar a {
		color: #00bbc5;
	}
	html.dark div.hovered {
		box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
	}
	html.dark .category_toolbar a {
		border-bottom-color: #f0f0f0;
	}
	html.dark a.collapsible:hover, html.dark a.collapsible.expanded {
		background-color: #353535;
	}
	html.dark table.Table_small th {
		font-weight: bold;
	}
	html.dark table.Table_small th, html.dark table.Table_small td {
		border-color: #949ca1;
		background: #121212 !important;
	}
	html.dark table.Table_small th {
		background-color: #0A1823 !important;
	}
	html.dark #updates p.para a.android {
		background-image: url("../icons/icon_android_white.svg");
	}
	html.dark #useful_pages {
		border-bottom: 1px solid #424d56;
		background-image: linear-gradient(#121212, #1e1e1e);
	}
	html.dark .bg-error #useful_pages {
		background-image: linear-gradient(transparent, #1e1e1e);
	}
	html.dark #useful_1 li {
		border-color: #949ca1;
		background-color: #353535;
	}
	html.dark #useful_pages hr {
		border-top-color: #f0f0f0;
	}
	html.dark footer {
		background-color: #1e1e1e;
	}
}

@media screen and (min-width: 1600px) {
	body {
		font-size: 13pt;
	}
}

@media screen and (max-width: 1440px) {
	#main.sidebar {
		margin: 0 2ex 16ex;
	}
	#useful_pages ul {
		gap: 2em;
	}
}

@media screen and (min-width: 1120px) {
	#search {
		display: flex !important;
	}
}

@media screen and (max-width: 1120px) {
	body {
		font-size: 14pt;
	}
	header ul li a span {
		display: none;
	}
	header #search_toolbar a span {
		display: inline-block;
	}
	#main {
		margin-left: 2ex !important;
		margin-right: 2ex !important;
	}
	#main.category_selection, #main.category_details, #main.error_page, #main.normal_page, #main.api_list {
		padding-top: 6ex;
	}
	#main.error_page {
		text-align: left;
		font-size: 100%;
	}
	#search {
		display: none;
	}
	#search_toolbar {
		display: block;
	}
	#most_searched h2 {
		text-align: initial;
	}
	#most_searched li {
		margin-bottom: 0.5ex;
	}
	.category_selection h2 {
		font-size: 120%;
	}
	.category_toolbar, .api_toolbar {
		flex: 1 1 calc(50% - 2.5ex);
		max-width: calc(50% - 2.5ex);
	}
	.category_toolbar a {
		background-size: 2em !important;
		padding-top: 2em;
	}
	#filter {
		align-items: initial;
	}
	#search, #filter {
		flex-direction: column;
		gap: 1em;
	}
	#most_searched {
		padding-top: 2ex;
	}
	#elastic, #most_searched {
		flex: 0 0 100%;
	}
	#q {
		width: 100%;
	}
	#search, #useful_pages {
		padding-left: 2ex;
		padding-right: 2ex;
	}
	#title {
		display: none;
	}
	.sidebar_layout {
		display: initial;
	}
	.sidebar_layout .sidebar {
		display: none;
	}
	#filter p:last-child {
		text-align: left;
	}
	#products ul {
		flex-direction: column;
	}
	.quickNav a {
		white-space: nowrap;
	}
	#useful_pages ul {
		flex-wrap: wrap;
	}
	#useful_1 li a {
		padding: 1ex 1.5ex;
	}
	#desktop_view {
		display: initial;
	}
	#useful_pages li {
		flex: 1 1 calc(50% - 1em);
		max-width: calc(50% - 1em);
		box-sizing: border-box;
	}
	#useful_2 li a, footer a {
		text-decoration: underline;
	}
	footer {
		flex-direction: column-reverse;
		gap: 1em;
	}
	footer ul {
		justify-content: initial;
	}
	footer ul li {
		text-align: left;
		flex-grow: 0.1;
	}
}

@media screen and (max-width: 900px) {
	#languagemenu {
		left: 2ex;
		right: 2ex !important;
	}
	#useful_pages ul {
		gap: 1em;
	}
	#useful_pages li {
		flex: 1 1 100%;
		max-width: 100%;
	}
	#main table.Table_small_mobile {
		width: 100% !important;
	}
	#main table.Table_small_mobile > thead {
		display: none;
	}
	#main table.Table_small_mobile > tbody > tr > td {
		display: flex;
		border: 0;
		text-align: left;
		background: none !important;
		border-top: 1px dotted #c0c0c0;
		width: 100% !important;
		height: auto !important;
		padding: 0.3em 0;
	}
	#main table.Table_small_mobile > tbody > tr:first-child {
		border-top: 0;
	}
	#main table.Table_small_mobile > tbody > tr > td p {
		text-align: left !important;
		margin: 0;
		word-break: break-word;
	}
	#main table.Table_small_mobile > tbody > tr > td:first-child {
		margin-top: 1ex;
		border-top: 0
	}
	#main table.Table_small_mobile > tbody > tr > td:last-child {
		margin-bottom: 2ex;
	}
	#main table.Table_small_mobile > tbody > tr > td::before {
		content: attr(label);
		font-weight: bold; 
		font-weight: 600;
		width: 200px;
		min-width: 200px;
		margin-right: 10px;
	}
}

@media screen and (max-width: 640px) {
	header #search_toolbar a span {
		display: none;
	}
	#header_nav > ul {
		gap: 1ex;
	}
	#languagemenu {
		right: 1.25ex !important;
		left: 1.25ex !important;
	}
	#languagemenu ul li {
		flex: 1 1 50%;
	}
	header, footer, #search, #useful_pages, #title {
		padding-left: 1.25ex;
		padding-right: 1.25ex;
	}
	#main {
		margin-left: 1.25ex !important;
		margin-right: 1.25ex !important;
	}
	#filter select {
		display: block;
		margin: 0;
		margin-top: 0.5ex;
	}
	.category_toolbar, .api_toolbar {
		flex: 1 1 100%;
		max-width: 100%;
	}
	html.dark #elasticSearchResults .result_block {
		padding: 0.5em;
	}
	#developers_title, .bubble {
		padding: 1em;
	}
	.expand {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	#latest_versions td {
		width: auto !important;
	}
	#updates input {
		min-width: auto;
		width: 100%;
	}
	footer ul {
		flex-direction: column;
		gap: 1em;
	}
}