@font-face {
	font-display: swap;
	font-family: Galano Grotesque Alt;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/GalanoGrotesqueAlt-Medium.woff2) format("woff2")
}

@font-face {
	font-display: swap;
	font-family: Galano Grotesque;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/GalanoGrotesque-Light.woff2) format("woff2")
}

@font-face {
	font-display: swap;
	font-family: Galano Grotesque;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/GalanoGrotesque-Regular.woff2) format("woff2")
}

@font-face {
	font-display: swap;
	font-family: Galano Grotesque;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/GalanoGrotesque-Medium.woff2) format("woff2")
}

:root {
	font-size: 15px;
	--color-midnight: #00053B;
	--color-midnight-rgb: 0, 5, 59;
	--color-crocus: #844896;
	--color-crocus-rgb: 132, 72, 150;
	--color-rose: #EA2C63;
	--color-rose-rgb: 234, 44, 99;
	--color-black: #000000;
	--color-black-rgb: 0, 0, 0;
	--color-fog: #EAEAEA;
	--color-fog-rgb: 234, 234, 234;
	--color-white: #FFFFFF;
	--colro-white-rgb: 255, 255, 255;
	--header-height: 3.5rem;
	--nav-width: 25vw;
	--toc-width: 18vw;
	--table-border: 1px solid rgba(var(--color-midnight-rgb), .3);
}

html {
	font-family: "Galano Grotesque", sans-serif;
	text-rendering: optimizeLegibility;
	--link-color: var(--color-crocus);
	--dark-background: var(--color-midnight);
	scroll-padding-top: var(--header-height);
}

body {
	word-wrap: break-word;
}

* {
	box-sizing: border-box;
	scrollbar-width: thin;
}

.thin-scrollbar {
	scrollbar-width: thin;
}


.icon::before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}


.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.header {
	height: var(--header-height);
	width: 100%;
	background-color: white;
	z-index: 999;
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: space-between;
	padding: .5rem 1rem;
	top: 0;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
	/*will-change: transform;*/
	/*transform: translateY(0%);*/
	/*transition: transform 200ms ease-in-out;*/
}

.translated-rtl .header,
.translated-ltr .header {
	top: 40px;
}


/*.header-hide {*/
/*	transform: translateY(-110%);*/
/*}*/


.header-menu,
.header-menu-small,
.dropdown {
	display: flex;
	height: 100%;
	align-items: center;
	flex: 1 0 auto;
	flex-wrap: wrap;
	font-size: 1.1rem;
	padding: 0;
	font-weight: 500;
	color: var(--color-midnight);
}

.header-menu-small {
	display: none;
}

.header-menu.right-menu {
	flex: none;
}

.flex-end {
	justify-content: end;
}

.header-menu-item,
.dropdown-toggle,
.auth-btn,
.header-menu-link {
	color: currentColor;
	border: none;
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 0 1rem;
	margin-left: .5rem;
	height: 100%;
	border-radius: .2rem;
	will-change: background-color;
	background-color: rgba(255, 255, 255, .8);
	transition: background-color 150ms ease-in-out;
}

.header-menu-small>.header-menu-item {
	border: 1px solid var(--color-crocus);
}

.dropdown-toggle-text,
.header-menu-item-text {
	line-height: 1.15;
	color: currentColor;
	font-size: 1.1rem;
	text-decoration: none;
}

a.header-menu-item:hover,
button.header-menu-item:hover,
.auth-btn:hover,
.dropdown-toggle:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
	cursor: pointer;
}

.header-logo {
	display: flex;
	padding: 0;
	align-items: center;
	height: 100%;
	margin-right: .5rem;
}

.header-logo-img {
	height: 100%;
}

.header-arlie-btn {
	height: 18pt;
	width: 18pt;
	cursor: pointer;
	margin-right: 10px;
	padding: 0;
}

.arlie-menu>.dropdown-content {
	left: auto;
}

.right-panel {
	position: fixed;
	top: var(--header-height);
	right: -25%;
	bottom: 0;
	width: 25%;
	height: calc(100vh - var(--header-height));
	overflow: auto;
	opacity: 0;
	display: none;
	background: #fff;
	transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
	box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.right-panel.show {
	right: 0;
	opacity: 1;
	display: block;
}

.dropdown {
	position: relative;
	flex: 0 0 auto;
}

.dropdown-toggle.toggled {
	background-color: rgba(var(--color-fog-rgb), .6);
}

.dropdown-toggle-icon {
	margin-left: .5rem;
	transition: transform 200ms ease-in-out;
}

.toggled>.dropdown-toggle-icon {
	transform: rotate(180deg);
}

.dropdown-content {
	position: absolute;
	display: none;
	flex-direction: column;
	background-color: white;
	z-index: 99;
	top: 3rem;
	left: 0.5rem;
	min-width: 10rem;
	max-height: 80vh;
	overflow-y: auto;
	border-radius: .2rem;
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.dropdown-item {
	padding: 1rem 1.5rem;
	font-size: 1rem;
	text-decoration: none;
	color: var(--color-midnight);
}

.dropdown-item-label {
	font-size: .8rem;
	font-weight: 600;
	color: var(--dark-background);
	padding-left: .5rem;
	padding-right: 2rem;
	width: max-content;
}

.dropdown-item.active {
	background-color: var(--color-fog);
}

.dropdown-link:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
}

.dropdown.toggled>.dropdown-content {
	display: flex;
	width: max-content;
	max-width: 15rem;
}

.edit-this-page:not(.show) {
	display: none;
}

.footer {
	width: 100%;
	background-color: var(--dark-background);
}

.footer-viewport {
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	max-width: 90rem;
	margin: 0 auto;
	padding-top: 2rem;
	padding-bottom: 2rem;
	color: white;
}

.footer-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


.footer-col {
	display: flex;
	flex-direction: column;
	flex: 1 1 100%;
}


.footer-line {
	border: 1px solid rgba(var(--color-fog-rgb), .2);
}

.footer-line-col {
	border: none;
	width: 10rem;
	height: auto;
	margin: 0;
}

.footer-line-row {
	width: 100%;
	margin: 1rem 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	flex: 0 1 auto;
	align-items: center;
	justify-content: space-evenly;
}

.footer-menu.socials {
	font-size: 1.75rem;
}

.footer-menu-nowrap {
	flex-wrap: nowrap;
}

.footer-menu-nowrap {
	flex-wrap: nowrap;
}

.footer-text,
.footer-link {
	color: currentColor;
	display: inline-block;
	padding: .5rem;
	margin: .5rem;
}

.footer-header {
	font-weight: 600;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(var(--color-fog-rgb), .2);
}

.footer-link {
	text-decoration: none;
	border-radius: .2rem;
	background-color: transparent;
	will-change: color, background-color;
	transition: color 100ms ease-in-out, background-color 100ms ease-in-out;
	cursor: pointer;
}

.footer-link:hover {
	background-color: var(--color-crocus);
}

.footer-logo {
	display: flex;
	padding: 1rem;
	align-items: center;
	flex: 0 1 auto;
}

.footer-logo-img {
	width: 100%;
	height: 100%;
	max-height: 8rem;
	max-width: 20rem;
}

.main {
	position: relative;
	display: flex;
	flex: 1 auto;
	width: 100%;
	margin-top: var(--header-height);
}

.content {
	flex: 1 1 auto;
	display: flex;
}

.nav-wrapper {
	width: 0;
	clip-path: inset(0);
	margin-top: calc(var(--header-height) * -1);
	will-change: width;
	transition: width 200ms ease-in-out;
	z-index: 99;
}

.nav-show .nav-wrapper {
	width: var(--nav-width);
}


.nav-viewport {
	position: sticky;
	width: var(--nav-width);
	background-color: white;
	top: 0;
	height: 100%;
	padding-top: var(--header-height);
	max-height: 100vh;
	display: flex;
	flex-direction: column;
}

.translated-ltr .nav-viewport,
.translated-rtl .nav-viewport {
	margin-top: -40px;
}

.nav-header {
	margin-top: var(--header-height);
	display: none;
}

.nav-header.show {
	display: flex;
}

.nav-footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	border-top: 1px solid rgba(var(--color-fog-rgb), .6);
}

.nav-toggle-wrapper {
	margin-top: calc(var(--header-height) * -1);
	position: relative;
}

.nav-toggle-viewport {
	position: sticky;
	background-color: white;
	top: 0;
	height: 100vh;
	display: flex;
	border-right: 1px solid rgba(var(--color-fog-rgb), .6);
}

.nav-toggle {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	color: var(--color-midnight);
	padding: .5rem;
	background-color: transparent;
	cursor: pointer;
	will-change: background-color;
	transition: background-color 150ms ease-in-out;
}

.nav-toggle-text {
	margin: 0 .5rem;
	font-weight: 600;
	display: none;
}

.pdf-controls {
	flex: 0 0 auto;
	width: 100%;
	flex-direction: column;
	display: none;
}

.pdf-controls.show {
	display: flex;
}

.pdf-options {
	display: flex;
	padding: .5rem;
	align-items: center;
	justify-content: center;
}

.pdf-options input[type="checkbox"] {
	height: 1.2rem;
	width: 1.2rem;
	margin-right: .5rem;
}

.create-pdf {
	border: none;
	padding: .5rem;
	background-color: var(--link-color);
	color: white;
}

.create-pdf-text {
	margin-left: .5rem;
	font-weight: 600;
}

.create-pdf:hover {
	opacity: .8;
}

.nav-toggle-hide {
	width: 100%;
}

.nav-toggle-show {
	height: 100%;
	display: flex;
}

.nav-show .nav-toggle-show {
	display: none;
}

.nav-toggle:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
}

.nav {
	scrollbar-gutter: stable;
	scrollbar-width: thin;
	flex: 1;
	overflow-x: hidden;
}

.nav::-webkit-scrollbar {
	width: .7rem;
}

.nav::-webkit-scrollbar-track {
	background-color: transparent;
}

.nav:hover::-webkit-scrollbar-track {
	background-color: rgba(var(--color-fog-rgb), .2);
}

.nav::-webkit-scrollbar-thumb {
	background-color: var(--color-fog);
	border-radius: .2rem;
	border: none;
}

.nav::-webkit-scrollbar-thumb:hover {
	background-color: var(--color-midnight);
	border-radius: .2rem;
	border: none;
}

.nav-group {
	list-style: none;
	padding: 0;
	margin-left: 1rem;
	display: none;
	flex-direction: column;
}

.nav-open>.nav-group {
	display: flex;
}

.nav-group-root {
	margin: .5rem;
	display: flex;
}

.nav-row {
	display: flex;
	flex-direction: column;
}

.nav-item {
	display: flex;
	align-items: center;
	padding: 0.3rem 0 0.3rem 0.5rem;
	margin: 0.1rem 0 0 0;
	border-radius: 0.2rem;
}

.nav-item:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
}

.nav-item.nav-item-active {
	background-color: var(--color-fog);
}

.nav-text {
	flex: 1;
	color: var(--color-midnight);
	display: flex;
	min-height: 1.6rem;
	align-items: center;
	max-width: calc(100% - 2rem);
	text-decoration: none;
}

.nav-parent-toggle {
	border: none;
	color: currentColor;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.6rem;
	width: 1.6rem;
	border-radius: 5rem;
	will-change: background-color, color, transform;
	transform: rotate(0deg);
	transition: all 200ms ease-in-out;
	cursor: pointer;
}

.nav-open>.nav-item>.nav-parent-toggle {
	transform: rotate(90deg);
}

.nav-parent-toggle:hover {
	background-color: var(--dark-background);
	color: white;
}


.doc {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 2rem;
}

.heading-wrapper {
	padding: 1rem;
	border-radius: .5rem;
	background-color: var(--color-crocus);
}

.breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: .9rem;
}

.breadcrumb {
	text-decoration: none;
	color: var(--color-midnight);
	padding: .5rem;
	border-radius: .2rem;
	background-color: transparent;
	will-change: background-color;
	transition: background-color 200ms ease-in-out;
}

.breadcrumb-link:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
}

.breadcrumb-delim {
	color: var(--dark-background);
}

.heading {
	font-size: 2.5rem;
	color: var(--color-black);
}

.updated {
	color: var(--color-midnight);
	font-size: .9rem;
	margin: 0;
}

.updated-icon {
	padding: .2rem .4rem;
	color: currentColor;
	margin-right: .5rem;
}


.article {
	line-height: 1.8;
	color: var(--color-midnight);
}

.article a {
	color: var(--link-color);
	font-weight: 500;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
	color: var(--color-black);
}

.article ol,
.article ul {
	padding: 0 0 0 2rem;
}

.article ol,
td ol,
details ol {
	list-style-type: numeric;
}

.article ol ol,
td ol ol,
details ol ol {
	list-style-type: lower-alpha;
}


.article ol ol ol,
td ol ol ol,
details ol ol ol {
	list-style-type: lower-roman;
}


.article img {
	max-width: 100%;
}

.article strong {
	color: var(--color-black);
}

.article code {
	font-family: monospace, sans-serif;
	background-color: rgba(var(--color-fog-rgb), .2);
	padding: .1rem .2rem;
	margin: 0 .1rem;
	color: var(--dark-background);
	border-radius: .2rem;
	border: 1px solid var(--color-fog);
}

.article table,
.table {
	margin: 1rem 0;
	border-collapse: collapse;
	background-color: rgba(var(--color-fog-rgb), .2);
	outline: 1px solid rgba(var(--color-midnight-rgb), .2);
	box-shadow: var(--color-fog) 0px 1px 2px 0px, var(--color-fog) 0px 1px 3px 1px;
}

.table-no-outline {
	background-color: transparent;
	box-shadow: none;
}


.article td,
.article th,
.table td,
.table.th {
	border: var(--table-border);
	padding: .5rem;
	vertical-align: baseline;
}

.article th,
.table th {
	text-align: left;
	font-weight: 600;
	background-color: var(--color-fog);
	vertical-align: middle;
}

.article th>*,
.table th>* {
	width: fit-content;
}

.article tr:first-child>*,
.table tr:first-child>* {
	border-top: none;
}

.article tbody>tr:last-child>td,
.table tbody>tr:last-child>td {
	border-bottom: none;
}

.article td:first-child,
.article th:first-child,
.table td:first-child,
.table th:first-child {
	border-left: none;
}

.article td:last-child,
.article th:last-child,
.table td:last-child,
.table th:last-child {
	border-right: none;
}

.article tr>*>*,
.table tr>*>* {
	margin: 0;
}


.article pre {
	margin: 1rem 0;
	padding: .5rem 1rem;
	background-color: rgba(var(--color-fog-rgb), .4);
	border-radius: .2rem;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
	display: grid;
	grid-template-areas: "code";
	position: relative;
}

.article pre>p {
	display: none;
}

.article .code-copy-btn {
	position: relative;
	grid-column: code-start/code-end;
	grid-row: code-start/code-end;
	justify-self: flex-end;
	align-self: flex-start;
	display: flex;
	flex: 0 0 auto;
	width: auto;
	padding: .5rem;
	align-items: center;
	justify-content: center;
	border-radius: .2rem;
	background-color: var(--dark-background);
	color: white;
	border: none;
	opacity: .3;
	z-index: 3;
	cursor: pointer;
	will-change: opacity, transform;
	transition: opacity 200ms ease-in-out,
		transform 30ms ease-in-out;
}

.article .code-copy-btn::before {
	position: absolute;
	top: -37px;
	content: "";
	display: block;
	font-size: 1rem;
	font-weight: 600;
	border-radius: .5rem;
	padding: .6rem;
	background-color: var(--link-color);
	color: white;
	z-index: 99;
	opacity: 0;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: opacity 100ms ease-in-out;
}

.article .code-copy-btn.copied::before {
	content: "Copied to clipboard!";
	opacity: 1;
}

.article .code-copy-btn::after {
	content: "";
	position: absolute;
	top: -2px;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	z-index: 99;
	opacity: 0;
	border-color: var(--link-color) transparent transparent transparent;
	transition: opacity 100ms ease-in-out;
}

.article .code-copy-btn.copied::after {
	opacity: 1;
}


.article pre:hover>.code-copy-btn {
	opacity: 0.6;
}

.article .code-copy-btn:hover {
	opacity: 1.0 !important;
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.article .code-copy-btn:active {
	box-shadow: none;
	transform: translate(1px, 1px);
}

.article pre>code {
	scrollbar-gutter: stable;
	grid-area: code;
	border: none;
	background-color: transparent;
	margin: 0;
	padding: 1rem 3rem 1rem 0;
	min-width: 100%;
	min-height: 2rem;
	overflow-x: auto;
}

.article pre>code::-webkit-scrollbar {
	height: .7rem;
}

.article pre>code::-webkit-scrollbar-track {
	background-color: transparent;
}

.article pre>code:hover::-webkit-scrollbar-track {
	background-color: white;
}

.article pre>code::-webkit-scrollbar-thumb {
	background-color: var(--color-fog);
	border-radius: .2rem;
	border: none;
}

.article pre>code::-webkit-scrollbar-thumb:hover {
	background-color: var(--color-crocus);
	border-radius: .2rem;
	border: none;
}


.article details,
.debug-info {
	border-radius: .2rem;
	border-left: 5px solid var(--color-crocus);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
	padding: 1rem;
	margin: 1rem 0;
}


.article details>*:last-child,
.debug-info>*:last-child {
	padding-bottom: .5rem;
}

.article summary,
.debug-info summary {
	cursor: pointer;
	font-weight: 600;
	padding: .5rem;
	border-top-right-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
	background-color: rgba(var(--color-fog-rgb), .2);
	margin: -1rem;
}

.article summary+*,
.debug-info summary+* {
	padding-top: 1rem;
}

.article details[open]>summary,
.debug-info[open]>summary {
	border-bottom-right-radius: 0;
	background-color: var(--color-crocus);
}

.article summary:hover,
.debug-info summary:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
}

.debug-info {
	margin: 1rem 0 0 0;
	line-height: 1.8;
}

.article .admonition {
	padding: .5rem 1rem;
	margin: 1rem 0;
	border-left: 10px solid transparent;
	border-radius: .5rem;
	background-color: rgba(var(--color-fog-rgb), .2);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.article .admonition.note {
	border-color: var(--dark-background);
}

.article .admonition.caution {
	border-color: var(--color-crocus);
	background-color: rgba(var(--color-fog-rgb), .5);

}

.article .admonition.danger {
	border-color: var(--color-rose);
	background-color: rgba(var(--color-fog-rgb), .5);

}

.article .admonition.video {
	border-color: var(--color-crocus);
	background-color: white;

}

.article .admonition.tutorial {
	border-color: var(--color-crocus);
	background-color: white;

}

.article .admonition-title {
	font-weight: bold;
	color: var(--dark-background);
}

.article .admonition-title::before {
	font: var(--fa-font-solid);
	font-weight: 900;
	margin-right: .5rem;
	color: currentColor;
}

.article .note>.admonition-title::before {
	content: "\f024";
	margin-right: 1rem;
}

.article .caution>.admonition-title::before {
	content: "\e0b7";
}

.article .danger>.admonition-title::before {
	content: "\f071";
}

.article .tutorial>.admonition-title::before {
	content: "\f008";
}

.article .video>.admonition-title::before {
	content: "\f03d";
}

.article .heading-anchor {
	display: none;
	font-size: 1rem;
	background: none;
	color: var(--color-crocus);
	border: none;
	cursor: pointer;
	will-change: opacity;
	transition: opacity 200ms ease-in-out;
}

.article .heading-anchor.copied {
	display: inline !important;
	opacity: 1.0 !important;
}

.article .heading-anchor.copied::after {
	content: 'copied';
	margin-left: .2rem;
}

.article *:hover>.heading-anchor {
	display: inline;
	opacity: 0.5;
}

.article .heading-anchor:hover {
	opacity: 1.0;
}

.toc-wrapper {
	clip-path: inset(0);
	display: none;
}

.toc-viewport {
	position: sticky;
	top: var(--header-height);
	height: 100%;
	max-width: var(--toc-width);
	max-height: calc(100vh - var(--header-height));
	display: flex;
	flex-direction: column;
}

.toc {
	width: var(--toc-width);
	scrollbar-gutter: stable;
	flex: 1 1 auto;
	overflow-x: hidden;
	color: var(--color-midnight);
	font-size: .9rem;
	margin-right: .5rem;
}

.toc ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1rem;
}

.toc>ul {
	padding: 1rem 1rem 1rem 2rem;
	border-left: 1px solid var(--color-fog);
}

.toc a {
	display: block;
	text-decoration: none;
	color: currentColor;
	border-radius: .2rem;
	padding: .2rem .5rem;
	background-color: transparent;
	will-change: background-color;
	transition: background-color 150ms ease-in-out;
}


.toc li {
	margin: .5rem 0;
}

.toc a:hover {
	background-color: rgba(var(--color-fog-rgb), .6);
}


.toc a.active {
	background-color: var(--color-fog) !important;
}

.doc-main {
	max-width: 60rem;
	margin: 0 auto;
	padding-top: 0;
}

.search-main {
	margin: 0 auto;
	padding: 1rem;
}

.search-info {
	background-color: var(--color-fog);
	display: flex;
	justify-content: center;
	border-radius: 0.2rem;
}

.search-info[hidden] {
	display: none;
}

.search-info>p {
	padding: .5rem;
}

.search-main>.article {
	margin-top: 0;
}

.pdf-checkbox {
	display: none;
	height: 1.2rem;
	width: 1.2rem;
	margin-right: .5rem;
}


.result-badge {
	padding: 0.2rem 0.4rem;
	margin: 0 0.2rem;
	font-size: .9rem;
	align-self: flex-start;
	justify-self: end;
	font-weight: 400;
	color: var(--dark-background);
	background-color: white;
	border: 1px solid var(--link-color);
	border-radius: 0.3rem;
}


.cta_btn {
	font-size: 1.1rem;
	color: var(--color-white);
	background-color: var(--color-rose);
	min-height: 2.5rem;
	padding: 0 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

a.cta_btn:hover {
	background-color: white;
	color: var(--color-crocus);
	box-shadow: var(--color-crocus) 0px 0px 4px;
}

.page-loader[hidden] {
	display: none;
}

.error-modal {
	position: fixed;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	z-index: -1;
	overflow: hidden;
	background: rgba(var(--color-midnight-rgb), 0.5);
}

.error-modal.show {
	display: flex;
	opacity: 1;
	z-index: 9999;
	animation: fadeOut 500ms linear;
}

.error-frame {
	padding: 1.5rem;
	outline: 5px solid var(--color-crocus);
	background: white;
	border-radius: .2rem;
	flex: 0 1 auto;
	max-width: 560px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.error-message {
	display: flex;
	flex-direction: column;
	color: var(--dark-background);
}

.error-heading {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.error-title {
	color: currentColor;
	font-weight: 900;
	font-size: 1.5rem;
	flex: 1 0 auto;
	margin: 1rem 0 0 0;
}

.error-dismiss-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.1rem;
	width: 2.1rem;
	border-radius: .3rem;
	flex: 0 0 auto;
	color: currentColor;
	background: white;
	border: none;
	outline: 3px solid var(--color-crocus);
	font-size: 1.8rem;
	font-weight: 900;
}

.error-dismiss-btn:hover {
	cursor: pointer;
	background: var(--link-color);
	color: white;
	outline-color: var(--dark-background);
}

.error-text {
	color: currentColor;
	line-height: 1.8;
}

.page-loader {
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .5);
	overflow: hidden;
}

.page-loader-text {
	font-size: 2rem;
	font-weight: 600;
	color: white;
}

.page-loader-text-small {
	font-size: 1.5rem;
	margin-top: 0;
}

.card-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex: 1 1 auto;
	margin: 0 -.5rem;
}

.card {
	border: 1px solid var(--color-fog);
	border-radius: .2rem;
	margin: 1rem .5rem;
	max-width: 18rem;
	flex: 1 1 auto;
}

.card-title {
	background-color: var(--color-crocus);
	margin: 0;
	padding: .5rem 1rem;
}

.card-list {
	padding: 0 1rem !important;
	list-style: none;
}


.google-translate-container {
	padding: .5rem;
}

.language-label-small {
	display: none;
}

/*start loader css*/
.lds-spinner {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-spinner div {
	transform-origin: 40px 40px;
	animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 37px;
	width: 6px;
	height: 18px;
	border-radius: 20%;
	background: #ffffff;
}

.lds-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}

@keyframes lds-spinner {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/*end loader css*/

.right-align {
	text-align: right !important;
}

.center-align {
	text-align: center !important;
}

.long-text {
	word-break: break-all;
}

.bold {
	font-weight: 600 !important;
}


@media (min-width: 900px) {

	.toc-wrapper {
		display: block;
	}

}

@media (max-width: 600px) {
	.main {
		flex-direction: column;
		overflow-x: auto;
	}

	.language-label {
		display: none;
	}

	.header-menu {
		display: none;
	}

	.header-menu-small {
		display: flex;
	}

	.footer-row {
		justify-content: center;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.footer-line-col {
		display: none;
	}


	.doc {
		padding: .7rem;
	}

	.breadcrumb {
		padding: .2rem
	}

	.nav-wrapper {
		position: fixed;
		height: 100%;
	}

	.nav-show {
		overflow-y: hidden;
	}

	.nav-show .nav-wrapper {
		width: 100vw;
	}

	.nav-viewport {
		width: 100%;
	}

	.nav-toggle-wrapper {
		position: fixed;
		z-index: 9;
		align-items: center;
		justify-content: center;
		width: 100vw;
		left: 0;
		bottom: 0;
	}

	.nav-toggle-viewport {
		position: static;
		height: 100%;
		border-right: none;
		border-top: 1px solid rgba(var(--color-fog-rgb), .6);
		max-height: calc(100vh - var(--header-height));
	}

	.nav-toggle {
		background-color: rgba(var(--color-fog-rgb), .6);
	}

	.nav-toggle-show {
		width: 100%;
	}

	.nav-toggle-text {
		display: block;
	}

	.header-menu.arlie-menu {
		display: flex;
		flex: 0;
		margin-left: 15px;
	}

	.right-panel {
		width: 80%;
		right: -80%;
	}

}

@media (min-width: 600px) {

	/* Tablets */
	.right-panel {
		width: 50%;
		right: -50%;
	}
}

@media (min-width: 900px) {

	/* Desktops */
	.right-panel {
		width: 25%;
		right: -25%;
	}
}

.internaldocs-watermark::after {
	content: "INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS - INTERNALDOCS";
	position: absolute;
	color: red;
	overflow: hidden;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
	font-size: .8rem;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(255, 255, 0, 1));
	z-index: -1;
	opacity: 25%;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}


@media print {

	.header,
	.nav-wrapper,
	.nav-toggle-wrapper,
	.breadcrumbs,
	.toc-wrapper,
	.footer,
	.error-modal,
	.page-loader {
		display: none;
	}

	.pdf-header,
	.pdf-footer {
		height: 100vh;
		width: 100vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.pdf-header {
		align-items: center;
		color: var(--dark-background);
	}

	.pdf-footer {
		justify-content: flex-end;
	}

	.pdf-header .article,
	.pdf-footer .article {
		width: 100vw;
		padding: 2rem;
		margin: 0;
		flex: 0 0 auto;
	}

	.pdf-footer .article {
		background-color: var(--dark-background);
		color: white;
	}

	.pdf-footer .article * {
		font-size: .8rem;
		color: currentColor;
	}

	.pdf-header .pdf-logo {
		height: 4rem;
	}

	.pdf-footer .pdf-logo {
		height: 3rem;
	}

	.article .admonition-title::before {
		font-family: "Font Awesome 6 Free";
	}

	html {
		font-size: 14px;
		-webkit-print-color-adjust: exact;
	}

	html,
	body,
	.main,
	.content,
	.doc {
		margin: 0;
		padding: 0;
		min-height: 0;
	}

	.heading {
		margin: 0 0 1.5rem 0;
	}

	.article {
		margin: 0;
		line-height: 1.5;
	}

	table {
		width: 100%;
	}

	.article td,
	.article th,
	.table td,
	.table.th {
		page-break-inside: avoid;
	}

	.article pre {
		white-space: normal;
	}

	.article .admonition {
		page-break-inside: avoid;
	}
}

/* arlie styles */
.ellipsis-loading:after {
	overflow: hidden;
	display: inline-block;
	vertical-align: bottom;
	-webkit-animation: ellipsis steps(4, end) 900ms infinite;
	animation: ellipsis steps(4, end) 900ms infinite;
	content: "\2026";
	/* ascii code for the ellipsis character */
	width: 0px;
}

@keyframes ellipsis {
	to {
		width: 40px;
	}
}

@-webkit-keyframes ellipsis {
	to {
		width: 40px;
	}
}

.arlie-querybox {
	position: relative;
}

.arlie-querybox input {
	width: 100%;
	padding: 10px;
	padding-right: 40px;
	border-color: #cecece;
	border-style: solid;
	border-width: 1px;
	border-radius: 5px;
}

.conversation-icon {
	display: flex;
}

.feedback-icon {
	cursor: pointer;
	position: absolute;
	bottom: -25px;
	width: 16px;
	height: 16px;
	display: flex;
}

.feedback-icon.up {
	right: 40px;
}

.feedback-icon.down {
	right: 15px;
}

.feedback-icon.hide {
	display: none;
}

.arlie-querybox input:active,
.arlie-querybox input:hover,
.arlie-querybox input:hover:focus,
.arlie-querybox input:visited {
	border-color: #f65c79;
	outline: 1.5px solid #f65c79;
}

.arlie-querybox .arlie-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.arlie-content.thinking,
.arlie-search-page-content.thinking {
	position: relative;
	padding: 0 1rem 0.5rem;
	overflow: hidden;
}

.arlie-content.thinking .arlie-messages .arlie-message:last-child {
	margin-bottom: 80px;
}

.arlie-search-page-content {
	padding: 0 1rem 0.5rem;
}

.arlie-content.thinking::before,
.arlie-search-page-content.thinking::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 5px solid transparent;
	border-image: conic-gradient(from 180deg, #BC82F3, #F5B9EA, #8D99FF, #AA6EEE, #FF6778, #FFBA71, #C686FF) 1;
	animation: rotate-border 2s linear infinite;
}

@keyframes rotate-border {
	0% {
		border-image: conic-gradient(from 0deg, #BC82F3, #F5B9EA, #8D99FF, #AA6EEE, #FF6778, #FFBA71, #C686FF) 1;
	}

	25% {
		border-image: conic-gradient(from 90deg, #BC82F3, #F5B9EA, #8D99FF, #AA6EEE, #FF6778, #FFBA71, #C686FF) 1;
	}

	50% {
		border-image: conic-gradient(from 180deg, #BC82F3, #F5B9EA, #8D99FF, #AA6EEE, #FF6778, #FFBA71, #C686FF) 1;
	}

	75% {
		border-image: conic-gradient(from 270deg, #BC82F3, #F5B9EA, #8D99FF, #AA6EEE, #FF6778, #FFBA71, #C686FF) 1;
	}

	100% {
		border-image: conic-gradient(from 360deg, #BC82F3, #F5B9EA, #8D99FF, #AA6EEE, #FF6778, #FFBA71, #C686FF) 1;
	}
}

.arlie-messages {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-grow: 1;
	overflow: auto;
}

.arlie-message {
	display: flex;
	align-items: end;
	gap: 5px;
	position: relative;
}

.arlie-message.feedback-icons-added {
	margin-bottom: 20px;
}

.arlie-message.user {
	flex-direction: row-reverse;
}

.arlie-message.user .arlie-message-text {
	background-color: #3f5877;
	color: white;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 5px;
}

.arlie-icon {
	margin-right: 0.3rem;
	height: 20px;
	width: 20px;
	display: flex;
}

.arlie-icon.clickable {
	cursor: pointer;
}

.arlie-icon.close-icon {
	height: 25px;
	width: 25px;
}

.arlie-message-text {
	margin: 0;
	border: 1px solid #ededed;
	background-color: #ededed;
	padding: 10px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 0;
	min-width: 150px;
	max-width: 88%;
}

.arlie-message-text a:not(.arlie-privacy-text) {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	text-overflow: ellipsis;
}

.arlie-message-text a {
	text-decoration: none;
	color: var(--link-color);
}

.arlie-message-text ol {
	padding-left: 1rem;
}

.arlie-footer {
	margin: 1rem 1rem 0 1rem;
}

.arlie-footer .arlie-privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}

.arlie-footer .arlie-privacy a {
	color: var(--link-color);
	text-decoration: none;
}

.arlie-header {
	display: flex;
	justify-content: space-between;
	background-color: #ededed;
	align-items: center;
	padding: 10px;
}

.arlie-loader {
	position: absolute;
	bottom: 5%;
	left: calc(50% - 2rem);
	width: 4rem;
	height: 4rem;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 3px;
	border: 1px solid gray;
	padding: 0.5rem;
	border-radius: 32px;
	background: linear-gradient(to bottom, #e0d6da, #ffffff);
}

.arlie-loader span {
	height: 10px;
	width: 3px;
	background: #ff5477;
	border-radius: 12px;
	animation: animloader 0.3s linear infinite alternate;
}

@keyframes animloader {
	0% {
		height: 40px;
	}

	100% {
		height: 4px;
	}
}

.arlie-loader span.loader-1 {
	animation-delay: .1s;
}

.arlie-loader span.loader-2 {
	animation-delay: .2s;
}

.arlie-loader span.loader-3 {
	animation-delay: 0s;
}

.arlie-quick-actions {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	align-items: center;
}

.arlie-actions {
	display: flex;
	gap: 0.5rem;
}

.arlie-content {
	flex-grow: 1;
	overflow: hidden;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
}

.arlie-header .icon-left {
	height: 40px;
	width: 100px;
}

.arlie {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.arlie-quick-replies {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.arlie-quick-reply {
	padding: 10px;
	border: 1px solid #f65c79;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
}

.arlie-quick-reply:hover {
	background-color: #f65c79;
	color: #fff;
}

.arlie-modal {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(1, 1, 1, 0.5);
	z-index: 9999;
}

.arlie-modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	background-color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.arlie-modal-header,
.arlie-modal-footer {
	padding: 10px;
	background-color: #f1f1f1;
}

.arlie-modal-body textarea {
	resize: none;
}

.arlie-modal-body .feedback-reason {
	padding: 10px;
	width: 100%;
	height: 100px;
	border-left: 1px solid gray;
}

.arlie-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.arlie-modal-footer {
	display: flex;
	justify-content: flex-end;
}

.arlie-modal-footer .btn-primary {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
}

.arlie-modal-footer .btn-primary:hover {
	background-color: #0056b3;
	/* Darker blue on hover */
}

.arlie-modal-header .arlie-feedback-modal-title {
	font-weight: 400;
}

.arlie-modal-body {
	padding: 20px;
}

.arlie-search-page-content {
	text-align: left;
}

.ptr {
	cursor: pointer !important;
}

.heading-block {
	background-color: var(--color-fog);
	padding: .5rem;
}

.release-block {
	border-bottom: 2px solid var(--color-crocus);
	margin-left: -1rem;
	padding-left: 1rem;
}

.auth-btn.hide {
	display: none;
}

.quick-feedback-wrapper {
	display: flex;
	margin-top: auto;
	align-self: center;
	justify-content: center;
	width: 100%;
}

.quick-feedback {
	display: flex;
	max-width: 30rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: .5rem;
	margin: 0;
	border-left: 1px solid rgba(var(--color-fog-rgb), .2);
	background-color: rgba(var(--color-fog-rgb), .2);
}

.quick-feedback-heading-text {
	margin: 0;
	white-space: pre;
	padding: .5rem;
}

.quick-feedback-input {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.quick-feedback-toggles {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0 .25rem;
}

.quick-feedback-toggle {
	border: none;
	padding: .5rem 1rem;
	margin: 0 .25rem;
	outline: none;
	background: var(--color-fog);
	border-radius: .3rem;
	color: var(--color-midnight);
}

.quick-feedback-toggle-text {
	font-size: .9rem;
	font-weight: 500;
}

.quick-feedback-toggle-icon {
	padding: .2rem;
}

.quick-feedback-result .quick-feedback-toggle-icon {
	padding: 1rem;
}

.quick-feedback-toggle:hover,
.quick-feedback-toggle.selected {
	cursor: pointer;
	background-color: var(--color-crocus);
	color: white;
}

.quick-feedback-toggle[disabled] {
	color: rgba(var(--color-midnight-rgb), .2) !important;
	background-color: rgba(var(--color-fog-rgb), .5) !important;
}

.quick-feedback-comment-form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.quick-feedback-comment-form[hidden] {
	display: none;
}


.quick-feedback-comment {
	padding: .5rem;
	margin: .5rem 0;
	width: 100%;
	height: 5rem;
}

.quick-feedback-result {
	display: flex;
	align-items: center;
	min-width: 11rem;
	margin: 0;
}

.nav-title-search {
	position: relative;
}

.nav-title-search-form {
	margin: 1rem .5rem .5rem .5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--color-crocus);
	font-size: 1.1rem;
}

.nav-title-search-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5rem;
	color: var(--color-crocus);
}

.nav-title-search-input {
	width: 100%;
	padding: .5rem;
	border: none;
	outline: none;
}

.nav-title-search-reset {
	background: none;
	border: none;
	color: rgba(var(--color-midnight-rgb), .3);
	padding: 0 .5rem;
	font-size: 2rem;
}

.nav-title-search-reset:hover {
	color: rgba(var(--color-midnight-rgb), 1);
	cursor: pointer;
}

.nav-title-search-dropdown {
	position: absolute;
	display: none;
	background-color: white;
	z-index: 9;
	top: calc(100% - .5rem);
	right: 0;
	left: 0;
	overflow-y: auto;
	max-height: calc(100vh - var(--header-height) - 6rem);
	margin: 0 .5rem;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.nav-title-search-results {
	margin: 0;
	padding: 0;
	width: 100%;
}

.nav-title-search-results li {
	padding: .5rem;
	border-bottom: 1px solid var(--color-fog);
}

.nav-title-search-results li:hover,
.nav-title-search-results .search-link {
	background: rgba(var(--color-fog-rgb), .5);
}

.nav-title-search-results a {
	text-decoration: none;
	font-weight: 500;
	color: var(--color-crocus);
}

.nav-title-search-results a:hover {
	text-decoration: underline;
}

.nav-title-search-results .search-link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-midnight);
	padding: 1rem;
}

.nav-title-search-results .small {
	font-size: .75rem;
	color: rgba(var(--color-midnight-rgb), .7);
	margin: .5rem 0 0 0;
}

.nav-title-search-loader {
	display: none;
	width: 30px;
	padding: 4px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--color-crocus);
	--_m:
		conic-gradient(#0000 10%, #000),
		linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
}

@keyframes l3 {
	to {
		transform: rotate(1turn)
	}
}

/* tabs */
/* Tab style starts here */
.tabbed-set {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 1em 0;
	border-radius: 0.5rem;
	padding: 0 1rem;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.tabbed-set>input {
	display: none;
}

.tabbed-set label {
	width: auto;
	padding: 0.9375em 1.25em 0.78125em;
	font-weight: 500;
	font-size: 0.9rem;
	color: #555;
	white-space: nowrap;
	border-bottom: 0.15rem solid transparent;
	border-top-left-radius: 0.1rem;
	border-top-right-radius: 0.1rem;
	cursor: pointer;
	transition: background-color 250ms, color 250ms;
}

.tabbed-set .tabbed-content {
	width: 100%;
	display: none;
	box-shadow: 0 -.05rem #ddd;
}

.tabbed-set input {
	position: absolute;
	opacity: 0;
}

.tabbed-set input:checked:nth-child(n+1)+label {
	color: var(--color-crocus);
	border-color: var(--color-crocus);
	border-bottom-width: 3px;
	font-weight: 700;
}

@media screen {
	.tabbed-set input:nth-child(n+1):checked+label+.tabbed-content {
		order: 99;
		display: block;
	}
}

@media print {
	.tabbed-content {
		display: contents;
	}
}

.opacity-50 {
	opacity: .5;
}

/* 
.article p>img:first-child:last-child {
	cursor: zoom-in;
	transform: scale(100%);
	transition: transform 200ms ease;
	position: relative;
}

.article p>img:first-child:last-child:hover {
	transform: scale(105%);
}

.article p:has(> img:first-child:last-child) {
  position: relative;
  height: fit-content;
  width: fit-content;
}

.article p:has(> img:first-child:last-child)::after {
  content: "Click to expand";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: .5rem 1rem;
  border-radius: .5rem;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.article p:has(> img:first-child:last-child):hover::after {
  opacity: 1;
}

.article p>img:first-child:last-child:hover {
	transform: scale(105%);
}

.article p:has(> img:first-child:last-child) {
  position: relative;
  height: fit-content;
  width: fit-content;
}

.article p:has(> img:first-child:last-child)::after {
  content: "Click to expand";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: .5rem 1rem;
  border-radius: .5rem;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.article p:has(> img:first-child:last-child):hover::after {
  opacity: 1;
} */

.image-modal-wrapper {
	position: fixed;
	z-index: 99999999;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 50%);
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.image-modal-wrapper.show {
	display: flex;
}

.image-modal-inner {
	position: relative;
	background: transparent;
	cursor: default;
	max-height: 100vh;
	max-width: 100vw;
	display: flex;
	flex-direction: column;
	flex: 0;
}

.image-modal-close {
	font-size: 2rem;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background: black;
	color: white;
	border-radius: .5rem;
	width: 2rem;
	height: 2rem;
	margin-bottom: .2rem;
	align-self: flex-end;
	flex: 1 1 auto;
}

.image-modal-text {
	color: white;
	margin-top: .5rem;
	flex: 1 1 auto;
}

.image-modal-close:hover {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.image-modal-content {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	height: 100%;
	width: 100%;
	overflow: auto;
	flex: 1 1 100%;
}

#doc-news.modal-backdrop {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .5);
	z-index: 9999;
	padding: 4vh 4vw;
}

#doc-news .modal {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	width: min(90vw, 720px);
	max-height: 80vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: hidden;
}

#doc-news .modal header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 14px 16px;
	border-bottom: 1px solid #eee;
}

#doc-news .modal header h2 {
	font-size: 16px;
	margin: 0;
}

#doc-news .modal .close-btn {
	border: 0;
	background: transparent;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.slideshow {
	position: relative;
	overflow: hidden;
}

.slides {
	display: flex;
	transition: transform .3s ease;
	height: 100%;
	/* ensures children can overflow-y */
}

.slide {
	flex: 0 0 100%;
	padding: 16px 16px 0 16px;
	overflow-y: auto;
}

.slide h3 {
	margin: 0 0 8px 0;
}

.slide .content {
	line-height: 1.45;
	display: block;
}

#doc-news .modal footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 16px;
	border-top: 1px solid #eee;
}

#doc-news .modal .nav-btn {
	border: 1px solid #ddd;
	background: #fafafa;
	border-radius: 8px;
	padding: 8px 12px;
	cursor: pointer;
}

#doc-news .modal .nav-btn:disabled {
	opacity: .5;
	cursor: default;
}

#doc-news .counter {
	font-size: 12px;
	color: #666;
}

#doc-news .slide .content img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 12px;
	display: block;
}