*::before {
	box-sizing: border-box;
}

*::after {
	box-sizing: border-box;
}

a {
	color: var(--secondary_font_color);
	text-decoration: underline;
}

body {
	padding-top: 5rem;
	background-color: rgba(248, 248, 248, 1.000);
	background-image: url(/images/background.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	font: 400 16px / 1rem "Lexend", sans-serif;
	min-height: 100vh;
	width: 100vw;
	overflow-x: hidden;
}

/*body:has(> header:first-child) {
	padding-top: 5rem;
}*/

body > * {
	margin: 2rem auto;
}

@media only screen and (max-width: 799px) {
	body > * {
		max-width: 100%;
	}
}

@media only screen and (min-width: 800px) {
	body > * {
		max-width: min(80rem, calc(100% - 4rem));
	}
}

html {
	overflow-x: hidden;
	min-height: 100vh;
}

html:has(> body > n\:window:not([id^="template»"])) {
	overflow-y: hidden;
}

h2 {
	color: var(--title_color);
}

h2:empty {
	display: none !important;
}

h3 {
	color: var(--title_color);
	font-size: 1rem;
}

label {
	display: block;
	color: rgb(128, 128, 128);
	font: 400 0.75rem / 0.75rem "Lexend";
	user-select: none;
}

/*************/
/* a:desktop */
/*************/

@media only screen and (max-width: 799px) {
	a\:desktop {
		display: none;
	}
}

@media only screen and (min-width: 800px) {
	a\:desktop {
		display: block;
	}
}

/************/
/* a:mobile */
/************/

@media only screen and (max-width: 799px) {
	a\:mobile {
		display: block;
	}
}

@media only screen and (min-width: 800px) {
	a\:mobile {
		display: none;
	}
}

/*****************/
/* body > header */
/*****************/

body > header {
	display: block;
	margin: 0rem;
	width: 100%;
	max-width: none;
	position: fixed;
	left: 0rem;
	top: 0rem;
	z-index: 1000;
}

body > header > a\:desktop > a\:bar {
	display: block;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 1);
	height: 2rem;
	position: relative;
	z-index: 2;
}

body > header > a\:desktop > a\:bar::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > header > a\:desktop > a\:bar::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

body > header > a\:desktop > a\:bar > a\:content {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	margin: 0px auto;
	padding-left: calc(80px + 8px);
	padding-right: 0rem;
	max-width: 80rem;
	position: relative;
	z-index: 1;
}

body > header > a\:desktop > a\:bar a\:logotype {
	display: block;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 1);
	padding: 8px 8px 12px 8px;
	position: absolute;
	left: 0rem;
	top: 0rem;
	user-select: none;
}

body > header > a\:desktop > a\:bar a\:logotype::before {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > header > a\:desktop > a\:bar a\:logotype::after {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

body > header > a\:desktop > a\:bar a\:logotype img {
	width: 64px;
	height: 64px;
	position: relative;
	z-index: 1;
}

body > header > a\:desktop > a\:bar a\:social_media {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: stretch;
}

body > header > a\:desktop > a\:bar a\:social_media > a {
	display: block;
	color: rgb(192, 192, 192);
	font-size: 1rem;
	line-height: 2rem;
	text-decoration: none;
	width: 2rem;
	transition: color 0.2s;
}

body > header > a\:desktop > a\:bar a\:social_media > a:hover {
	color: rgb(256, 256, 256);
}

body > header > a\:desktop > a\:bar a\:contact_information {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: stretch;
}

body > header > a\:desktop > a\:bar a\:contact_information > a {
	display: block;
	padding: 0rem 1rem;
	color: rgb(192, 192, 192);
	font-size: 0.75rem;
	line-height: 2rem;
	text-decoration: none;
	transition: color 0.2s;
}

body > header > a\:desktop > a\:bar a\:contact_information > a > i {
	font-size: 1rem;
}

body > header > a\:desktop > a\:bar a\:contact_information > a:hover {
	color: rgb(256, 256, 256);
}

body > header > a\:desktop > a\:main_menu {
	display: block;
	background-color: rgb(0, 24, 48);
	background: linear-gradient(0deg, rgba(0, 16, 32, 1) 0%, rgba(0, 32, 64, 1) 4px, rgba(0, 16, 32, 1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 1);
	position: relative;
	user-select: none;
}

body > header > a\:desktop > a\:main_menu > a\:content {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: stretch;
	margin: 0px auto;
	padding-left: 5rem;
	max-width: 80rem;
	height: 3rem;
}

body > header > a\:desktop > a\:main_menu > a\:content > a\:border:first-child {
	display: block;
	background-color: rgba(0, 0, 0, 0.25);
	width: 1px;
}

body > header > a\:desktop > a\:main_menu > a\:content > a\:menu {
	flex: 1 1 0;
	display: block;
	border-color: rgba(256, 256, 256, 0.125) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25) rgba(256, 256, 256, 0.125);
	border-style: solid;
	border-width: 0px 1px 0px 1px;
	background-color: rgba(0, 64, 128, 0.0);
	position: relative;
	transition: background 0.4s;
}

body > header > a\:desktop > a\:main_menu > a\:content > a\:menu > a {
	display: block;
	color: rgba(256, 256, 256, 0.75);
	font: var(--header_menu_font);
	line-height: 3rem;
	text-align: center;
	text-decoration: none;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	transition: color 0.2s, transform 0.2s;
}

body > header > a\:desktop > a\:main_menu > a\:content > a\:menu > a:hover {
	color: rgba(256, 256, 256, 1.00);
	transform: scale(1.1);
}

body > header > a\:desktop > a\:main_menu > a\:content > a\:menu:hover {
	background-color: rgba(0, 64, 128, 0.25);
}

body > header > a\:desktop > a\:main_menu > a\:content > a\:border:last-child {
	display: block;
	background-color: rgba(256, 256, 256, 0.125);
	width: 1px;
}

body > header > a\:desktop > a\:main_menu a\:menu > a\:menu {
	display: block;
	background-color: rgba(0, 0, 0, 0.75);
}

body > header > a\:desktop > a\:main_menu a\:menu > a\:menu > a {
	display: block;
	color: rgba(256, 256, 256, 0.75);
	font: var(--header_menu_font);
	line-height: 3rem;
	text-align: center;
	text-decoration: none;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	transition: background 0.4s, color 0.2s, transform 0.2s;
}

body > header > a\:desktop > a\:main_menu a\:menu > a\:menu > a:hover {
	color: rgba(256, 256, 256, 1.00);
	transform: scale(1.1);
}

body > header > a\:desktop > a\:main_menu a\:menu > a\:menu > a\:menu {
	background-color: rgba(0, 0, 0, 0.25);
}

body > header > a\:mobile > a\:bar {
	display: block;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	position: relative;
}

body > header > a\:mobile > a\:bar::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > header > a\:mobile > a\:bar::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

body > header > a\:mobile > a\:bar > div {
	position: relative;
	left: 0rem;
	top: 0rem;
}

body > header > a\:mobile > a\:bar div.button {
	width: 4rem;
}

body > header > a\:mobile > a\:bar div.button > a {
	display: block;
	color: rgba(256, 256, 256, 0.750);
	font-size: 2rem;
	line-height: 4rem;
	text-align: center;
	text-decoration: none;
}

body > header > a\:mobile > a\:bar div.button > a:hover {
	color: rgba(256, 256, 256, 1.000);
}

body > header > a\:mobile > a\:bar div.button > a:active {
	color: rgba(256, 256, 256, 0.500);
}

body > header > a\:mobile > a\:bar div.logotype {
	text-align: center;
}

body > header > a\:mobile > a\:bar div.logotype > img {
	height: 48px;
}

body > header > a\:mobile > menu {
	background-color: rgba(0, 0, 0, 0.75);
}

body > header > a\:mobile > menu > div {
	transition: background-color 0.2s;
}

body > header > a\:mobile > menu > div:hover {
	background-color: rgba(256, 256, 256, 0.125);
}

body > header > a\:mobile > menu a {
	display: block;
	padding: 1rem;
	color: rgba(256, 256, 256, 1.000);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-decoration: none;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	text-transform: uppercase;
	transition: color 0.2s;
}

body > header > a\:mobile > menu a:hover {
	color: rgba(256, 256, 256, 1.000);
	text-decoration: none;
}

body > header > a\:mobile > menu a\:menu {
	display: block;
	background-color: rgba(64, 64, 64, 1.0);
}

body > header > a\:mobile > menu a\:menu > a\:menu {
	display: block;
	background-color: rgba(0, 0, 0, 0.75);
}

/***********/
/* f:input */
/***********/

/* f:input */

n\:input > n\:messages {
	display: block;
	padding: 0.25rem 1.50rem 0.25rem 0.50rem;
	background-color: rgb(248, 216, 216);
	background: linear-gradient(0deg, rgb(248, 216, 216) 0%, rgb(240, 208, 208) 100%);
	border-radius: 4px;
	border: 1px solid rgb(232, 200, 200);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
	color: rgba(32, 0, 0, 0.75);
	width: calc(100% - 1.00rem);
	position: absolute;
	left: 0.50rem;
	top: calc(100% - 0.50rem);
	z-index: 500;
	transition: color 0.2s;
}

n\:input > n\:messages > button {
	cursor: pointer;
	background: transparent;
	color: rgba(32, 0, 0, 0.50);
	font-family: "Lexend";
	font-size: 1.00rem;
	font-weight: 400;
	line-height: 1.00rem;
	width: 1.00rem;
	height: 1.00rem;
	position: absolute;
	right: 0.25rem;
	top: 0.25rem;
}

n\:input > n\:messages > button:hover {
	color: rgba(32, 0, 0, 0.75);
}

n\:input > n\:messages > p {
	padding: 0.125rem 0.00rem;
	font-family: "Lexend";
	font-size: 0.80rem;
	font-weight: 400;
}

*:not(n\:input) > n\:messages {
	display: block;
	margin: 0.50rem;
	padding: calc(0.25rem - 1px) 0.50rem;
	background-color: rgb(216, 248, 216);
	background: linear-gradient(0deg, rgb(216, 248, 216) 0%, rgb(208, 240, 208) 100%);
	border-radius: 4px;
	border: 1px solid rgb(200, 232, 200);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
	color: rgba(0, 32, 0, 0.75);
	transition: color 0.2s;
}

*:not(n\:input) > n\:messages > p {
	padding: 0.125rem 0.00rem;
	font-family: "Lexend";
	font-size: 0.80rem;
	font-weight: 400;
}

*:not(n\:input) > n\:messages[n\:invalid] {
	background-color: rgb(248, 216, 216);
	background: linear-gradient(0deg, rgb(248, 216, 216) 0%, rgb(240, 208, 208) 100%);
	border: 1px solid rgb(232, 200, 200);
	color: rgba(32, 0, 0, 0.75);
}

/* n:input, button */

n\:input[type="button"] {
	display: block;
	min-width: 3rem;
	position: relative;
}

n\:input[type="button"] a {
	display: block;
	background-color: rgb(0, 40, 80);
	background: linear-gradient(0deg, rgba(0, 32, 64, 1) 0%, rgba(0, 48, 96, 1) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 0.75);
	font: var(--input_button_desktop_font);
	line-height: 3rem;
	text-align: center;
	text-decoration: none;
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	width: 100%;
	height: 3rem;
	position: relative;
	z-index: 1;
	transition: color 0.2s, font 0.2s;
}

n\:input[type="button"] a:hover {
	color: rgba(256, 256, 256, 1.00);
}

n\:input[type="button"] a[disabled] {
	cursor: default;
	background-color: rgb(112,112,112) !important;
	background: linear-gradient(0deg,rgba(96,96,96,1) 0%, rgba(128,128,128,1) 100%) !important;
	color: rgba(256, 256, 256, 0.75) !important;
	font: 400 1.00rem / 3.00rem "Lexend" !important;
}

n\:input[type="button"] button {
	cursor: pointer;
	display: block;
	background-color: rgb(0, 40, 80);
	background: linear-gradient(0deg, rgba(0, 32, 64, 1) 0%, rgba(0, 48, 96, 1) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 0.75);
	font: var(--input_button_desktop_font);
	line-height: 3rem;
	text-align: center;
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	width: 100%;
	height: 3rem;
	position: relative;
	z-index: 1;
	transition: background 0.2s, color 0.2s, font 0.2s;
}

n\:input[type="button"] button:hover {
	color: rgba(256, 256, 256, 1.00);
}

n\:input[type="button"] button:disabled {
	cursor: default;
	background-color: rgb(112,112,112) !important;
	background: linear-gradient(0deg,rgba(96,96,96,1) 0%, rgba(128,128,128,1) 100%) !important;
	color: rgba(256, 256, 256, 0.75) !important;
	font: 400 1.00rem / 3.00rem "Lexend" !important;
}

n\:input[type="button"].green a {
	background-color: rgb(0, 96, 0);
	background: linear-gradient(0deg, rgba(0, 96, 0, 1) 0%, rgba(0, 160, 0, 1) 100%);
}

n\:input[type="button"].red a {
	background-color: rgb(96, 0, 0);
	background: linear-gradient(0deg, rgba(96, 0, 0, 1) 0%, rgba(160, 0, 0, 1) 100%);
}

n\:input[type="button"].red button {
	background-color: rgb(96, 0, 0);
	background: linear-gradient(0deg, rgba(96, 0, 0, 1) 0%, rgba(160, 0, 0, 1) 100%);
}

/*********************/
/* f:input, checkbox */
/*********************/

n\:input[type="checkbox"]:not(:has(label:empty)) {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
}

n\:input[type="checkbox"] input {
	display: block;
	flex: none;
	opacity: 0.00;
	position: absolute;
}

n\:input[type="checkbox"]:not(:has(label:empty)) label {
	cursor: pointer;
	display: block;
	flex: none;
	padding-left: 3.50rem;
	font: 400 1.00rem / 3.00rem "Lexend";
	width: 100%;
	user-select: none;
}

n\:input[type="checkbox"]:not(:has(label:empty)) label:before {
	content: "";
	display: block;
	background-color: rgba(0,0,0,0.0375);
	background: linear-gradient(0deg, rgba(0,0,0,0.025) 0%, rgba(0,0,0,0.050) 100%);
	border: 1px solid rgb(248, 248, 248);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	font: 900 2rem / calc(3.00rem - 2px) "Font Awesome 6 Free";
	text-align: center;
	width: 3.00rem;
	height: 3.00rem;
	position: absolute;
	left: 0rem;
	top: 0rem;
}

n\:input[type="checkbox"]:not(:has(label:empty)) input:checked + label:before {
	content: "";
}

n\:input[type="checkbox"]:has(label:empty) {
	display: flex;
	flex-direction: column-reverse;
	flex-wrap: wrap;
	position: relative;
}

n\:input[type="checkbox"]:has(label:empty) label {
	cursor: pointer;
	content: "";
	display: block;
	background-color: rgba(0,0,0,0.0375);
	background: linear-gradient(0deg, rgba(0,0,0,0.025) 0%, rgba(0,0,0,0.050) 100%);
	border: 1px solid rgb(248, 248, 248);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	text-align: center;
	width: 3.00rem;
	height: 3.00rem;
}

n\:input[type="checkbox"]:has(label:empty) input:checked + label:before {
	content: "";
	font: 900 2rem / calc(3.00rem - 2px) "Font Awesome 6 Free";
}

/*****************/
/* f:input, date */
/*****************/

n\:input[type="date"] {
	display: flex;
	flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-wrap: wrap;
	position: relative;
}

n\:input[type="date"] a {
	line-height: 2.5rem;
	text-align: center;
	width: 2.5rem;
	height: 2.5rem;
	position: absolute;
	right: 0rem;
	top: 1.25rem;
	user-select: none;
}

n\:input[type="date"] label {
	display: block;
	margin-bottom: 0.25rem;
	flex: none;
}

n\:input[type="date"] input {
	display: block;
	flex: none;
	padding: 0rem 0.5rem;
	background-color: rgba(0,0,0,0.0375);
	background: linear-gradient(0deg, rgba(0,0,0,0.025) 0%, rgba(0,0,0,0.050) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	border: 1px solid rgb(248, 248, 248);
	color: rgba(0, 0, 0, 0.75);
	font: 400 1.00rem / calc(3.00rem - 2px) "Lexend";
	width: 100%;
	transition: color 0.2s;
}

n\:input[type="date"] input:focus {
	color: rgba(0, 0, 0, 1.00);
}

n\:input[type="date"] input::placeholder {
	color: rgb(192, 192, 192);
}

n\:input[type="date"] input[readonly] ~ a {
	display: none;
}

/***************************/
/* f:input, drop_down_list */
/***************************/

n\:input[type="drop_down_list"] {
	display: flex;
	flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-wrap: wrap;
	position: relative;
}

n\:input[type="drop_down_list"] label {
	display: block;
	margin-bottom: 0.25rem;
	flex: none;
}

n\:input[type="drop_down_list"] select {
	padding: 0.0rem 0.5rem;
	background-color: rgb(248, 248, 248);
	background: linear-gradient(0deg, rgb(240, 240, 240) 0%, rgb(248, 248, 248) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	color: rgba(0, 0, 0, 0.50);
	font: 400 1.00rem / calc(3.00rem - 2px) "Lexend";
	width: 100%;
	height: 3rem;
	transition: color 0.2s;
}

n\:input[type="drop_down_list"] select:focus {
	color: rgba(0, 0, 0, 0.75);
}

/*****************/
/* f:input, text */
/*****************/

n\:input[type="text"] {
	display: flex;
	flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-wrap: wrap;
	position: relative;
}

n\:input[type="text"] label {
	display: block;
	margin-bottom: 0.25rem;
	flex: none;
}

n\:input[type="text"] input {
	display: block;
	flex: none;
	padding: calc(0.75rem - 1px) 0.50rem;
	background-color: rgba(244, 244, 244);
	background: linear-gradient(0deg, rgba(248, 248, 248) 0%, rgba(240, 240, 240) 100%);
	border: 1px solid rgb(224, 224, 224);
	border-radius: 4px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
	color: rgb(64, 64, 64);
	font: 400 1.00rem / 1.50rem "Lexend";
	width: 100%;
	transition: color 0.2s;
}

n\:input[type="text"] input:focus {
	color: rgb(0, 0, 0);
}

n\:input[type="text"] input::placeholder {
	color: rgb(192, 192, 192);
}

n\:input[type="text"] textarea {
	display: block;
	flex: none;
	padding: calc(0.75rem - 1px) 0.50rem;
	background-color: rgba(244, 244, 244);
	background: linear-gradient(0deg, rgba(248, 248, 248) 0%, rgba(240, 240, 240) 100%);
	border: 1px solid rgb(224, 224, 224);
	border-radius: 4px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
	color: rgb(64, 64, 64);
	font: 400 1.00rem / 1.50rem "Lexend";
	width: 100%;
	transition: color 0.2s;
	resize: none;
}

n\:input[type="text"] textarea:focus {
	color: rgb(0, 0, 0);
}

n\:input[type="text"] textarea::placeholder {
	color: rgb(192, 192, 192);
}

/******************/
/* f:input, email */
/******************/

n\:input[type="email"] {
	display: flex;
	flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-wrap: wrap;
	position: relative;
}

n\:input[type="email"] label {
	display: block;
	margin-bottom: 0.25rem;
	flex: none;
}

n\:input[type="email"] input {
	display: block;
	flex: none;
	padding: calc(0.75rem - 1px) 0.50rem;
	background-color: rgba(244, 244, 244);
	background: linear-gradient(0deg, rgba(248, 248, 248) 0%, rgba(240, 240, 240) 100%);
	border: 1px solid rgb(224, 224, 224);
	border-radius: 4px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
	color: rgb(64, 64, 64);
	font: 400 1.00rem / 1.50rem "Lexend";
	width: 100%;
	transition: color 0.2s;
}

n\:input[type="email"] input:focus {
	color: rgb(0, 0, 0);
}

n\:input[type="email"] input::placeholder {
	color: rgb(192, 192, 192);
}

/* a:aspect_ratio */

a\:aspect_ratio {
	display: block;
	padding: 50% 0rem;
	height: 0%;
	position: relative;
	overflow: hidden;
}

a\:aspect_ratio iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0rem;
	top: 0rem;
}

a\:aspect_ratio img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0rem;
	top: 0rem;
	object-fit: cover;
}

a\:aspect_ratio.ar16x9 {
	padding: 28.125% 0rem;
}

a\:aspect_ratio.ar32x9 {
	padding: 14.062% 0rem;
}

/************/
/* a:splash */
/************/

a\:splash {
	display: flex;
	flex-flow: column nowrap;
	align-content: center;
	align-items: stretch;
	justify-content: center;
	margin: 0rem;
	width: 100%;
	max-width: none;
	height: calc(100vh - 5rem - 2rem - 4rem - 1rem);
}

a\:splash h1 {
	padding: 32px 0px 8px 0px;
	background-color: rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 1.00);
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
}

a\:splash p {
	margin: 0px;
	padding: 0px 0px 32px 0px;
	background-color: rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 0.75);
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 799px) {
	a\:splash h1 {
		font: var(--splash_text_desktop_font);
	}

	a\:splash p {
		font: var(--splash_text_mobile_font);
	}
}

@media only screen and (min-width: 800px) {
	a\:splash h1 {
		font: var(--splash_title_desktop_font);
	}

	a\:splash p {
		font: var(--splash_text_desktop_font);
	}
}

a\:splash a\:countdown {
	margin: 0px;
	padding: 0px 0px 32px 0px;
	background-color: rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 0.75);
	font-size: 2rem;
	line-height: 2rem;
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
}

a\:splash a\:countdown span {
	display: block;
	font-size: 1rem;
	line-height: 1rem;
}

/***********/
/* a:block */
/***********/

a\:block {
	display: block;
	background-color: rgb(256, 256, 256);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	width: 100%;
	position: relative;
}

/**********************/
/* a:block > a:header */
/**********************/

a\:block > a\:header {
	display: flex;
	flex-flow: row nowrap;
	padding: 0.0rem 0.5rem;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	width: calc(4px + 100% + 4px);
	height: 64px;
	position: relative;
	left: -4px;
	z-index: 500;
}

a\:block > a\:header::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

a\:block > a\:header::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

a\:block > a\:header > a\:icon {
	display: block;
	flex: none;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256);
	font: 400 32px / 72px "Font Awesome 6 Free";
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	width: 64px;
	height: 72px;
	position: relative;
	left: 0px;
	top: -4px;
	user-select: none;
}

a\:block > a\:header > a\:icon::before {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

a\:block > a\:header > a\:icon::after {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

a\:block > a\:header > a\:title {
	display: block;
	flex: 1 1 0%;
	padding: 0px 16px;
	color: rgb(256, 256, 256);
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	z-index: 1;
	user-select: none;
}

a\:block > a\:header > a\:title > h1 {
	line-height: 4rem !important;
}

a\:block > a\:header n\:input[type="button"] {
	margin: 0.5rem 0.0rem 0.5rem 0.5rem;
}

@media only screen and (max-width: 799px) {
	a\:block > a\:header > a\:title > h1 {
		font: var(--block_title_mobile_font);
	}
}

@media only screen and (min-width: 800px) {
	a\:block > a\:header {
		width: calc(4px + 100% + 4px);
		left: -4px;
	}

	a\:block > a\:header > a\:title > h1 {
		font: var(--block_title_desktop_font);
	}
}

/********************/
/* a:block > a:body */
/********************/

a\:block > a\:body {
	display: block;
	padding: 0.5rem;
}

a\:block > a\:body:empty {
	display: none;
}

/* a:block > a:map */

a\:block > a\:map {
	display: block;
}

/**********************************************/
/* a:block[type="list"] > a:body[type="form"] */
/**********************************************/

a\:block[type="list"] > a\:body[type="form"] {
	border-bottom: 1px solid rgba(0, 0, 0, 0.250);
}

/*************************************/
/* a\:block > a\:body[type="iframe"] */
/*************************************/

a\:block > a\:body[type="iframe"] {
	position: relative;
}

a\:block > a\:body[type="iframe"] > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0rem;
	top: 0rem;
}

/* a:table */

a\:table {
	display: block;
}

a\:table a\:trow {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

a\:table > a\:thead > a\:trow > div {
	padding: 0.5rem;
	font-weight: bold;
}

a\:table > a\:thead > a\:trow > div:nth-child(odd) {

}

a\:table > a\:thead > a\:trow > div:nth-child(even) {

}

a\:table > a\:tbody > a\:trow > div {
	padding: 0.5rem;
}

a\:table > a\:tbody > a\:trow:nth-child(odd) > div:nth-child(odd) {
	background-color: rgba(0, 0, 0, 0.0250);
}

a\:table > a\:tbody > a\:trow:nth-child(odd) > div:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.0375);
}

a\:table > a\:tbody > a\:trow:nth-child(even) > div:nth-child(odd) {
	background-color: rgba(0, 0, 0, 0.0375);
}

a\:table > a\:tbody > a\:trow:nth-child(even) > div:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.0500);
}

/************/
/* a:layout */
/************/

a\:layout {
	display: none;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-end;
	align-items: flex-end;
	justify-content: flex-start;
}

/************/
/* n:window */
/************/

n\:window {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	margin: 0rem;
	background-color: rgba(0, 0, 0, 0.675);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.50) 100%);
	width: 100%;
	max-width: none;
	height: 100%;
	position: fixed;
	left: 0%;
	top: 0%;
	z-index: 1000;
}

n\:window[id^="template»"] {
	display: none;
}

n\:window > a\:block {
	flex: none;
}

/****************/
/* font awesome */
/****************/

.fa, .fa-regular, .fa-solid, .fa-brands, .fab, .fad, .fal, .far, .fas {
	line-height: inherit;
}
