/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
	box-sizing: border-box;
}

html {
	/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	line-height: 1.15; /* 1. Correct the line height in all browsers. */
	-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
	-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
	tab-size: 4; /* 3 */
}

/*
Sections
========
*/

body {
	margin: 0; /* Remove the margin in all browsers. */
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
	text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}
:root {
    --font-family-monospace: Consolas,Monaco,SFMono-Regular,Menlo,"DejaVu Sans Mono","Ubuntu Mono","Courier New","Anonymous Pro","Droid Sans Mono","Liberation Mono","Lucida Console",monospace;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",sans-serif;
    
    --asecla-font-standard: Raleway;
    
    --asecla-page-background-color: #F5F5F5;
    --asecla-page-text-color: #050505;
    
    --asecla-brand-color: #0086FF;
    --asecla-brand-color-contrast: white;

    --asecla-table-line-color: #DDDDDD;
    --asecla-table-line: 1px solid var(--asecla-table-line-color);
}
html {
	box-sizing: border-box;
    scroll-behavior: smooth;
}
html, body {
    height: 100%;
    margin: 0;
	padding: 0;
}
body.asecla-page {
    font-size: 12pt;
    line-height: 1.75;
    background-color: var(--asecla-page-background-color);
    color: var(--asecla-page-text-color);

	min-height: 100%;
    width: 100%;
	display: grid;
	grid-template-rows: auto 1fr auto;
}
body.asecla-page main, body.asecla-page #main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
body.asecla-page * {
    font-family: var(--asecla-font-standard),var(--font-family-sans-serif);
}
body.asecla-page pre, body.asecla-page .monospaced {
    font-family: var(--font-family-monospace);
}
body.asecla-page #main {
    margin: 0 auto;
    padding-top: 3em;
    padding-bottom: 3em;
    padding-left: 5%;
    padding-right: 5%;
}
body.asecla-page #main, body.asecla-page .asecla-commons-header, body.asecla-page .asecla-common-footer {
    max-width: 1200px;
    margin: 0 auto;
}

.asecla-button, a.asecla-button {
    appearance: none;
    background-color: var(--asecla-brand-color);
    border: 1px solid rgb(55, 78, 243);
    color: var(--asecla-brand-color-contrast);
    cursor: pointer;
    display: inline-block;
	font-size: 1em;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    text-shadow: 2px 2px 2px #00000055;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
}
.asecla-button:hover, a.asecla-button:hover {
    font-weight: bold;
    background-color: rgb(55, 78, 243);
    color: white;
    text-decoration: none;
}

a.asecla-link, a.asecla-link:visited {
    color: var(--asecla-brand-color);
    font-weight: bold;
    text-decoration: none;
}
a.asecla-link:hover {
    text-decoration: underline;
}

.asecla-full-width {
    width: 100%;
}
.asecla-half-width {
    width: 50%;
}

.asecla-icon {
    width: 1em;
    height: 1em;
}

.asecla-horizontal-line {
    background-color: gray;
    color: gray;
    border: 1px solid gray;
}

input[type="text"].asecla-input, input[type="email"].asecla-input, input[type="password"].asecla-input, input[type="url"].asecla-input, input[type="tel"].asecla-input {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid black;
}
input.asecla-input::placeholder {
    font-style: italic;
}

.asecla-flex, .asecla-flex-row {
    display: flex;
}
.asecla-flex-column-25 {
    flex: 25%;
}
.asecla-flex-column-33 {
    flex: 33.3%;
}
.asecla-flex-column-50 {
    flex: 50%;
}
.asecla-flex-column-66 {
    flex: 66.6%;
}
.asecla-flex-column-75 {
    flex: 75%;
}

.asecla-shadow-box {
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.6) 0px 2px 4px 0px;
    padding: 1em;
    text-align: center;
    margin: 1em auto;
}
.asecla-fullwidth {
    width: 100%;
}
.asecla-halfwidth {
    width: 50%;
}
.asecla-halfwidth-on-desktop {
    width: 100%;
}
@media (min-width: 720px) {
    .asecla-halfwidth-on-desktop {
        width: 50%;
    }
}

.asecla-align-left {
    text-align: left;
}
.asecla-align-right {
    text-align: right;
}
.asecla-align-center {
    text-align: center;
}
.asecla-align-justify {
    text-align: justify;
}

.asecla-heading {
    color: var(--asecla-brand-color);
	font-weight: bold;
    text-align: center;
}
h1.asecla-heading {
	font-size: 175%;
	margin: 0.75em 0;
}
h2.asecla-heading {
	font-size: 150%;
	margin: 0.5em 0;
}
h3.asecla-heading {
	font-size: 135%;
	margin: 0.35em 0;
}
h4.asecla-heading {
	font-size: 122%;
	margin: 0.22em 0;
}
h5.asecla-heading {
	font-size: 115%;
	margin: 0.15em 0;
}
h6.asecla-heading {
	font-size: 110%;
	margin: 0.1em 0;
}

table.asecla-table {
    border-collapse: collapse;
    text-align: center;
    margin: 0 auto;
    padding: 0.5em;
    border-top: var(--asecla-table-line);
    border-bottom: var(--asecla-table-line);
}
table.asecla-table thead {
    border-bottom: var(--asecla-table-line);
}
table.asecla-table td, table.asecla-table th { 
    font-weight: 600;
    width: auto;
}
table.asecla-table th {
    font-size: 105%;
    padding: 0.5em;
}
table.asecla-table td {
    font-size: 95%;
    padding: 0.4em;
}
table.asecla-table td.asecla-tight, table.asecla-table th.asecla-tight {
    width: 0.01%;
    white-space: nowrap;
}

.asecla-button-cta {
    cursor: pointer;
    background-color: var(--asecla-cta-buttons-links);
    color: var(--asecla-btn-primary-text);
}

.asecla-button-cta:hover {
    background-color: var(--asecla-cta-buttons-links-hover);
    color: var(--asecla-btn-primary-text);
}
/* raleway-cyrillic-ext-400-normal */
/* @font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(./raleway-cyrillic-ext-400-normal.woff2) format('woff2'), url(./raleway-cyrillic-ext-400-normal.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
} */
/* raleway-cyrillic-400-normal */
/* @font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(./raleway-cyrillic-400-normal.woff2) format('woff2'), url(./raleway-cyrillic-400-normal.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
} */
/* raleway-vietnamese-400-normal */
/* @font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(./raleway-vietnamese-400-normal.woff2) format('woff2'), url(./raleway-vietnamese-400-normal.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
} */
/* raleway-latin-ext-400-normal */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/raleway-latin-ext-400-normal-goLJUh5V.woff2) format('woff2'), url(/assets/raleway-latin-ext-400-normal-DSOaz8ZC.woff) format('woff');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
/* raleway-latin-400-normal */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/raleway-latin-400-normal--K2CcGxp.woff2) format('woff2'), url(/assets/raleway-latin-400-normal-xUNVg9ZR.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* raleway-cyrillic-ext-400-italic */
/* @font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(./raleway-cyrillic-ext-400-italic.woff2) format('woff2'), url(./raleway-cyrillic-ext-400-italic.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
} */
/* raleway-cyrillic-400-italic */
/* @font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(./raleway-cyrillic-400-italic.woff2) format('woff2'), url(./raleway-cyrillic-400-italic.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
} */
/* raleway-vietnamese-400-italic */
/* @font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(./raleway-vietnamese-400-italic.woff2) format('woff2'), url(./raleway-vietnamese-400-italic.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
} */
/* raleway-latin-ext-400-italic */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/raleway-latin-ext-400-italic-C8DCRY6S.woff2) format('woff2'), url(/assets/raleway-latin-ext-400-italic-vix_G2eU.woff) format('woff');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
/* raleway-latin-400-italic */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/raleway-latin-400-italic-D5hKdC9v.woff2) format('woff2'), url(/assets/raleway-latin-400-italic-BO4jujPt.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
    font-family: 'dotsfont';
    src: url('/assets/dotsfont-BLhjP1lJ.woff') format('woff');
}
:root {
	--asecla-font-text-input: var(--asecla-font-standard);
	--asecla-color-title-background: #0061B7;
	--asecla-border-standard: 1px solid #F4F4F4;
	--asecla-color-text-hint: #A9A9A9;
	--asecla-color-list-background: #F4F4F4;
	--asecla-color-list-hover-background: #0086FF;
	--asecla-color-list-hover-text: white;
}
body, html {
	height: 100%;
	padding: 0;
	margin: 0; 
	/*background-color: var(--asecla-color-background2) !important;*/
	color: var(--asecla-color-text);
	/*font-family: var(--asecla-font-standard) !important;*/
}
.footer-branding {
	color: white;
	background-color: grey;
	text-align: center;
}
#main {
	width: 100%;
}
.hidden {
	display: none !important;
}
.transparent {
	visibility: hidden;
}
.section {
	padding: 1em;
}
.section-outer {
	margin: 2em auto;
}
@media (min-width:641px) {
	.section-outer {
		max-width: 800px;
	}
}
.section-inner {
	margin: 0 2em;
	background-color: white;
}
.section-row {
	border-left: var(--asecla-border-standard);
	border-right: var(--asecla-border-standard);
	border-top: var(--asecla-border-standard);
	border-bottom: var(--asecla-border-standard);
	clear: both;
}
.section-spacer {
	padding: 0.25em 2em;
}
input, textarea {
	padding: 1em 1.25em;
	font-family: var(--asecla-font-text-input);
}
textarea {
	resize: none;
}
.secured-text {
	-webkit-text-security: square;
	font-family: 'dotsfont';
}
.secured-text::placeholder {
	font-family: var(--asecla-font-text-input);
	-webkit-text-security: none;
}
input[type="text"], input[type="email"], input[type="password"], textarea, .advanced-password-component {
	width: 100%;
}
input[type="number"] {
	color: var(--asecla-brand-color);
	font-weight: bold;
	width: 6.15em;
}
input, textarea, select {
	border: 1px solid transparent;
	background-color: white;
	color: black;
}
input:hover, textarea:hover, input:focus, textarea:focus, select:hover, select:focus {
	border: 1px solid var(--asecla-brand-color) !important;
}
input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"] {
	border-bottom: 1px solid #DDDDDD;
    color: black;
}
select {
	background-color: var(--asecla-color-background);
	color: var(--asecla-brand-color);
	border: none;
	font-weight: bold;
	padding: 1em;
}
input::placeholder, textarea::placeholder {
	color: var(--asecla-color-text-hint);
	font-weight: normal;
	opacity: 1;
	font-size: 1rem;
}
.section-inner .titlebar {
	padding: 0.5em 1em 0.5em 1em;
	font-size: 1rem;
	background-color: var(--asecla-color-title-background);
	color: white;
	text-align: left;
	font-size: 125%;
	font-weight: bold;
	letter-spacing: 0.1em;
}
button {
	background-color: grey;
	color: var(--asecla-brand-color-contrast);
	text-shadow: 2px 2px 2px #00000055;
}
.columns {
	display: flex;
	flex-wrap: wrap;
}
.column-50 {
	width: 50%;
}
.columns .column-full {
	flex-grow: 1;
}
.hint {
	color: var(--asecla-color-text-hint);
}
.icon {
	width: 1em;
	height: 1em;
	margin-top: 0.35em; /* TODO!! */
}
button .icon, .btn .icon, .titlebar .icon {
	filter: invert(1);
}
.labelled-field {
	padding: 0.5em;
	display: flex;
	align-items: center;
}
.labelled-field label {
	padding: 1em 1.25em;
	white-space: nowrap;
	min-width: 25%;
}
.labelled-field .field-value {
	padding: 0.1em;
	display: flex;
	align-items: center;
	flex-grow: 1;
}
.labelled-field-checkbox input[type="checkbox"] {
	margin-left: 1.25em;
	margin-right: 0.5em;
}
.labelled-field-checkbox label {
	padding: 1em 1.25em 1em 0.5em;
}
.labelled-field-checkbox .field-value {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.fullwidth {
	width: 100% !important;
}
input::-ms-reveal {
	display: none;
}
.advanced-password-component {
	position: relative;
	display: inline-block;
}
.advanced-password-component input {
	padding-right: 2.4em;
}
.advanced-password-component .reveal-password-toggle {
	position: absolute;
	right: 1px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: block;
	width: 1.3em;
	height: 1.3em;
}
/* Tooltips */
.tooltip-outer {
	position: relative;
	display: inline-block;
	cursor: help;
}
.tooltip-outer .tooltip-inner {
	text-align: justify;
	font-size: 80%;
	visibility: hidden;
	max-width: 50vw;
	min-width: 34em;
	background-color: black;
	color: #fff;
	border-radius: 6px;
	padding: 1em;
	position: absolute;
	z-index: 100;
	bottom: 100%;
	left: 50%;
	margin-left: -30em;
	text-transform: none;

	opacity: 0;
	transition: opacity 1s;
}
.tooltip-outer:hover .tooltip-inner {
	visibility: visible;
	opacity: 1;
}
.hint-icon {
	margin-left: 0.5em;
	margin-right: 0.5em;
}
.hint-icon img {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	content:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3e%3ctitle%3e34.Pin%3c/title%3e%3cg%20id='_34.Pin'%20data-name='34.Pin'%3e%3cpath%20d='M13.376,24H10.624l-.283-.248C10,23.455,2,16.38,2,10a10,10,0,0,1,20,0c0,6.38-8,13.455-8.341,13.752Zm-1.99-2h1.227C13.979,20.735,20,14.877,20,10A8,8,0,0,0,4,10C4,14.886,10.021,20.737,11.386,22Z'/%3e%3cpath%20d='M13,13H11V10h1a2,2,0,1,0-2-2H8a4,4,0,1,1,5,3.874Z'/%3e%3crect%20x='11'%20y='15'%20width='2'%20height='2'/%3e%3c/g%3e%3c/svg%3e");
}
/* Icon-only buttons */
.icon-button {
	background: none;
	border: none;
	padding: 0.25em;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
}
.icon-button:hover {
	opacity: 0.7;
}
.icon-button img {
	width: 2em;
	height: 2em;
}
#newmsg-password-hint {
	margin-top: 1em;
}
.reveal-toogle {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	cursor: pointer;
}
.reveal-toogle img {
	width: 100%;
}
.reveal-toogle-show img {
	content:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cg%3e%3cpath%20d='M21.83,11.442C21.653,11.179,17.441,5,12,5s-9.653,6.179-9.83,6.442L1.8,12l.374.558C2.347,12.821,6.559,19,12,19s9.653-6.179,9.83-6.442L22.2,12ZM12,17c-3.531,0-6.664-3.59-7.758-5C5.336,10.59,8.469,7,12,7s6.664,3.59,7.758,5C18.664,13.41,15.531,17,12,17Z'/%3e%3cpath%20d='M12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Z'/%3e%3c/g%3e%3c/svg%3e");
}
.reveal-toogle-hide img {
	content:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.83,11.442A19.711,19.711,0,0,0,18.018,7.4l3.689-3.689L20.293,2.293,16.327,6.259A8.774,8.774,0,0,0,12,5c-5.441,0-9.653,6.179-9.83,6.442L1.8,12l.374.558A19.711,19.711,0,0,0,5.982,16.6L2.293,20.293l1.414,1.414,3.966-3.966A8.774,8.774,0,0,0,12,19c5.441,0,9.653-6.179,9.83-6.442L22.2,12ZM4.242,12C5.336,10.59,8.469,7,12,7a6.47,6.47,0,0,1,2.853.733l-.834.834A3.947,3.947,0,0,0,12,8a4,4,0,0,0-4,4,3.947,3.947,0,0,0,.567,2.019l-1.16,1.16A17.993,17.993,0,0,1,4.242,12ZM14,12a2,2,0,0,1-2,2,1.96,1.96,0,0,1-.511-.075l2.436-2.436A1.96,1.96,0,0,1,14,12Zm-4,0a2,2,0,0,1,2-2,1.96,1.96,0,0,1,.511.075l-2.436,2.436A1.96,1.96,0,0,1,10,12Zm2,5a6.47,6.47,0,0,1-2.853-.733l.834-.834A3.947,3.947,0,0,0,12,16a4,4,0,0,0,4-4,3.947,3.947,0,0,0-.567-2.019l1.16-1.16A17.993,17.993,0,0,1,19.758,12C18.664,13.41,15.531,17,12,17Z'/%3e%3c/svg%3e");
}
.titlebar a.close, .titlebar a.close:hover, .titlebar a.close:visited {
	float: right;
	cursor: pointer;
	color: white;
	text-decoration: none;
}
.important {
	font-weight: bold;
}
.inwards {
	padding: 1.5em;
}
/* DESKTOP */
@media (min-width:961px) {
	.column-50-desktop {
		width: 50%;
	}
	.inlineblock-on-desktop {
		display: inline-block;
	}
}
/* TABLET */
@media (min-width:641px) {
	.column-50-tablet {
		width: 50%;
	}
	.inlineblock-on-tablet {
		display: inline-block;
	}
}
/* MOBILE */
@media (max-width:640px) {
	.column-50-desktop, .column-50-tablet {
		width: 100%;
	}
	.border-bottom-on-mobile {
		border-bottom: var(--asecla-border-standard);
	}
}
@media (max-width: 768px) {
    .hide-on-small-screen {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .hide-on-medium-screen {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .hide-on-large-screen {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 1200px) {
    .hide-on-xlarge-screen {
        display: none;
        visibility: hidden;
    }
}
.center {
	text-align: center;
	margin: 0 auto;
}
.align-center {
	text-align: center;
}
footer a, footer a:hover {
	color: white;
}
.tabula-clickable {
    cursor: pointer;
}
.indent {
	margin: 1em;
}
/* ASECLA TABLE */
div.asecla-table {
    max-width: 100%;
    overflow: auto;
}
.asecla-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    color: black;
}
.asecla-table table th {
    background-color: #333333;
    color: white;
}
.asecla-table table th, .asecla-table table td {
    padding: 0.45em;
    border: 1px solid #333333;
}
.asecla-table tbody tr:hover {
    background-color: lightyellow;
}
/* Usage Statistics Styles */
.stat-group {
    margin: 1.5em 0;
}
.stat-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5em;
}
.stat-title {
    font-weight: bold;
    color: var(--asecla-color-text);
}
.stat-value {
    color: var(--asecla-color-title-background);
    font-weight: bold;
}
.progress-bar {
    position: relative;
    width: 100%;
    height: 30px;
    background-color: var(--asecla-color-list-background);
    border: var(--asecla-border-standard);
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background-color: var(--asecla-color-title-background);
    transition: width 0.3s ease, background-color 0.3s ease;
    min-width: 1px; /* Ensure visibility even at 0% */
    display: block;  /* Ensure it's always displayed */
}
.progress-fill.warning {
    background-color: #FFA500;
}
.progress-fill.critical {
    background-color: #FF4444;
}
.progress-percentage {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    color: #333333;
    z-index: 1;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2em 0;
}
.stat-card {
    text-align: center;
    padding: 1.5em;
    background-color: white;
    border: var(--asecla-border-standard);
    min-width: 150px;
    margin: 0.5em;
}
.stat-card-value {
    font-size: 2em;
    font-weight: bold;
    color: var(--asecla-color-title-background);
    margin-bottom: 0.5em;
}
.stat-card-label {
    color: var(--asecla-color-text-hint);
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}
