﻿/*! CSS Used from: https://alleima.local/gui/css/main.min.css */
:root {
	--color-molten: rgb(255, 85, 50);
	--color-iron: rgb(135, 40, 35);
	--color-titanium: rgb(225, 225, 225);
	--color-steel: rgb(15, 35, 46);
	--color-grey-900: rgb(23, 23, 23);
	--color-grey-800: rgb(48, 48, 48);
	--color-grey-700: rgb(71, 71, 71);
	--color-grey-600: rgb(94, 94, 94);
	--color-grey-500: rgb(119, 119, 119);
	--color-grey-400: rgb(145, 145, 145);
	--color-grey-300: rgb(171, 171, 171);
	--color-grey-200: rgb(198, 198, 198);
	--color-grey-100: rgb(225, 225, 225);
	--color-grey-50: rgb(241, 241, 241);
	--color-error: rgba(239, 83, 80, 0.12);
	--color-info: rgba(255, 152, 0, 0.12);
	--color-success: rgba(76, 175, 80, 0.12);
	--color-primary-base: var(--color-steel);
	--color-primary-accent: var(--color-molten);
	--color-primary-complimentary: var(--color-iron);
	--color-titanium-grey: var(--color-titanium);
	--color-primary: var(--color-primary-accent);
	--color-secondary: var(--color-molten);
	--color-theme-light: #fff;
	--color-theme-dark: #000;
	--color-darkblue: var(--color-primary-base);
	--color-orange: var(--color-primary-accent);
	--color-red: var(--color-primary-complimentary);
	--color-red-10: rgba(255, 85, 50, 0.1);
	--type-stack: "Alleima Neurial",Helvetica,Arial,sans-serif;
	--size-display-1: 9.5rem/9.5rem var(--type-stack);
	--size-display-2: 4.75rem/4.75rem var(--type-stack);
	--size-heading-1: 3rem/3rem var(--type-stack);
	--size-heading-2: 1.5rem/1.875rem var(--type-stack);
	--size-body-1: 1rem/1.125rem var(--type-stack);
	--size-body-2: 0.875rem/1rem var(--type-stack);
	--size-detail: 0.75rem/1rem var(--type-stack);
	--size-display-1--bold: bold 9.5rem/9.5rem var(--type-stack);
	--size-display-2--bold: bold 4.75rem/4.75rem var(--type-stack);
	--size-heading-1--bold: bold 3rem/3rem var(--type-stack);
	--size-heading-2--bold: bold 1.5rem/1.875rem var(--type-stack);
	--size-body-1--bold: bold 1rem/1.125rem var(--type-stack);
	--size-body-2--bold: bold 0.875rem/1rem var(--type-stack);
	--size-detail--bold: bold 0.75rem/1rem var(--type-stack);
	--size-display-1--italic: italic 9.5rem/9.5rem var(--type-stack);
	--size-display-2--italic: italic 4.75rem/4.75rem var(--type-stack);
	--size-heading-1--italic: italic 3rem/3rem var(--type-stack);
	--size-heading-2--italic: italic 1.5rem/1.875rem var(--type-stack);
	--size-body-1--italic: italic 1rem/1.125rem var(--type-stack);
	--size-body-2--italic: italic 0.875rem/1rem var(--type-stack);
	--size-detail--italic: italic 0.75rem/1rem var(--type-stack);
	--type-stack-default: "Alleima Neurial",Helvetica,Arial,sans-serif;
	--space-vertical-blue-xs: 16px;
	--space-vertical-blue-small: 24px;
	--space-vertical-blue-medium: 32px;
	--space-vertical-blue-large: 48px;
	--space-vertical-blue-xl: 72px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	border-style: solid;
}

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

html {
	font: 400 16px/1.375 "Alleima Neurial",Helvetica,Arial,sans-serif;
}

	html:not(.js) {
		font: 400 16px/1.375 "Alleima Neurial",Helvetica,Arial,sans-serif;
	}

.page--light {
	background-color: #fff;
	color: var(--color-steel);
}

@media print {
	body, html {
		background: #fff;
		color: #000;
	}
}

.text ul {
	margin-bottom: 26px;
}

.text form {
	margin-bottom: 40px;
}

@media only screen and (max-width:1050px) {
	.text ul {
		margin-bottom: 24px;
	}

	.text form {
		margin-bottom: 32px;
	}
}

ul {
	list-style: none;
}

.text ul li {
	position: relative;
	margin-bottom: 13px;
	padding-left: 25px;
}

	.text ul li::before {
		position: absolute;
		margin-right: 10px;
		margin-left: -25px;
		content: "– ";
	}

.page--light .text ul li::before {
	color: #000;
}

@media only screen and (max-width:1050px) {
	.text ul li {
		margin-bottom: 10px;
		padding-left: 20px;
	}

		.text ul li::before {
			margin-left: -20px;
		}
}

h1, h2 {
	font-weight: 200;
	font-size: inherit;
	line-height: 26px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 20px;
}

button, input {
	font: inherit;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-size: 1rem;
}

	input[type=password], input[type=text] {
		min-height: 42px;
		padding: 5px 10px;
		border: 1px solid;
		border-radius: 0;
		-webkit-appearance: none;
	}

.page--light input[type=password], .page--light input[type=text] {
	border-radius: 2px;
	background-color: transparent;
	color: inherit;
}

input[type=password]:focus, input[type=text]:focus {
	border-color: #09f;
	border-color: #872823;
	border-color: var(--color-primary-complimentary);
}

button {
	padding: 5px;
	-webkit-appearance: none;
}

@media only screen and (max-width:1050px) {
	label {
		font-size: 13px;
	}

	input[type=password], input[type=text] {
		min-height: 38px;
		font-size: 16px;
	}
}

.checkbox {
	white-space: nowrap;
}

	.checkbox input {
		vertical-align: middle;
	}

	.checkbox label {
		margin-left: 4px;
		font-size: inherit;
		vertical-align: middle;
		white-space: normal;
	}

@media print {
	.form-general {
		margin: 1em 0;
		padding: 6px;
		border: 1px solid #ccc;
		background: #eee;
	}

		.form-general label {
			color: inherit;
			font: inherit;
		}

		.form-general label {
			display: block;
		}

	.checkbox, .text {
		margin: 0 0 .25em;
	}

		.text input {
			width: 95%;
		}

	.checkbox {
		white-space: nowrap;
	}

		.checkbox input {
			vertical-align: middle;
		}

		.checkbox label {
			display: inline;
			margin-left: .5em;
			vertical-align: middle;
		}

	.submit-area {
		margin: 1em 0 .5em;
		text-align: center;
	}
}

.checkbox {
	position: relative;
	margin-bottom: 10px;
}

	.checkbox:last-child {
		margin-bottom: 0;
	}

	.checkbox input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

		.checkbox input:focus {
			outline: 0;
		}

	.checkbox label {
		display: inline-block;
		position: relative;
		z-index: 1;
		margin: 0;
		padding: 0 0 0 30px;
		font-weight: 200;
		font-size: 18px;
		text-transform: none;
		cursor: pointer;
		transition: none;
	}

	.checkbox input ~ label::after {
		position: absolute;
		top: -2px;
		left: 0;
		width: 1.15rem;
		height: 1.15rem;
		border: 1px solid var(--color-titanium);
		border-radius: 2px;
		content: "";
		transition: background-color .2s ease-out;
	}

	.checkbox input:checked ~ label::after {
		border-color: var(--color-molten);
		background-color: var(--color-molten);
		content: url("data:image/svg+xml; utf8, <svg class='icon__symbol' width='18' height='18' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'><path d='M28 9L26.586 7.586L13 21.171L5.414 13.586L4 15L13 24L28 9Z' fill='white' /></svg>");
	}

	.checkbox input:focus + label, .checkbox label:hover {
		background-position: 0 -200px;
	}

	.checkbox input:checked + label {
		background-position: 0 -400px;
	}

		.checkbox input:checked + label:hover {
			background-position: 0 -600px;
		}

	.checkbox input:checked:disabled + label {
		background-position: 0 -800px;
	}

	.checkbox input:disabled + label {
		background-position: 0 -1000px;
		cursor: not-allowed;
	}

@media only screen and (max-width:1050px) {
	.checkbox:last-child {
		margin-bottom: 20px;
	}

	.checkbox label {
		font-size: 16px;
	}
}

.row {
	margin: 0 -10px 26px;
}

	.row::after {
		display: table;
		clear: both;
		content: "";
	}

.col {
	float: left;
	width: 100%;
	padding: 0 10px;
}

	.col.full {
		width: 100%;
	}

@media only screen and (max-width:700px) {
	.row {
		margin-bottom: 0;
	}

	.col, .col.full {
		width: 100%;
		margin-bottom: 20px;
	}
}

form .col {
	padding: 0 10px;
}

.row .text input {
	width: 100%;
}

.submit-area {
	text-align: center;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}

.structural {
	position: fixed;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	padding: 0;
	border: 0;
}

button {
	display: inline-flex;
	position: relative;
	justify-content: center;
	align-items: center;
	padding: .75rem 1rem;
	border: none;
	border: 1px solid var(--color-titanium);
	border-radius: 2px;
	background-color: transparent;
	color: var(--color-steel);
	font: var(--size-body-2--bold);
	text-decoration: none;
	cursor: pointer;
	transition: .2s ease-out background-color,.2s ease-out border-color,.2s ease-out color;
	gap: .75rem;
}

	button:not(.menu-toggler):hover {
		background-color: var(--color-steel);
		color: #fff;
	}

	button:only-child {
		min-width: 170px;
	}

.button.button-color-2 {
	border: 1px solid var(--color-titanium);
	color: var(--color-steel);
}

	.button.button-color-2:active, .button.button-color-2:focus, .button.button-color-2:hover {
		background-color: var(--color-steel);
		color: #fff;
	}

@media only screen and (max-width:1050px) {
	button {
		min-height: 38px;
		padding-right: 25px;
		padding-left: 25px;
		font-size: 14px;
		line-height: 26px;
	}
}

@media only screen and (max-width:500px) {
	button {
		padding-right: 18px;
		padding-left: 18px;
	}
}

.group-inner {
	position: relative;
	max-width: 1310px;
	margin: auto;
	padding: 0 80px;
}

	.group-inner::after {
		display: table;
		clear: both;
		content: "";
	}

@media only screen and (max-width:1050px) {
	.group-inner:not(.group-inner--wide) {
		padding: 0 20px;
	}
}

@media only screen and (max-width:500px) {
	.group-inner:not(.group-inner--wide) {
		padding: 0 15px;
	}
}

@media print {
	.group-inner {
		padding: 0;
	}
}

.login {
	max-width: 800px;
	margin: 50px auto;
}

	.login h1 {
		margin-bottom: 30px;
	}

	.login img {
		max-width: 232px;
		margin-bottom: 50px;
	}

.text ul li {
	margin-bottom: 0;
}

.system-message {
	position: relative;
	clear: both;
	margin: 0 0 40px;
	padding: 1.25rem 1rem 1.25rem 3.25rem;
	border: none;
	border-radius: 4px;
	background-color: var(--color-info);
	color: rgba(var(--black-rgb),.8);
	text-align: left;
}

	.system-message :last-child {
		margin: 0;
	}

	.system-message h2 {
		margin-bottom: 10px;
		color: #000;
		font-weight: 400;
		font-size: 18px;
		line-height: 26px;
		text-transform: none;
	}

	.system-message ul li {
		padding-left: 0;
	}

		.system-message ul li::before {
			content: "";
		}

.error-message {
	background-color: var(--color-error);
}
