/* Fonts */
@font-face {
	font-family: 'Area';
	src: url('../fonts/Area/Area-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Area';
	src: url('../fonts/Area/Area-SemiBold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* Default */
:root {
	--font-fallback-serif: 'Georgia', 'Times New Roman', 'Times', serif;
	--font-fallback-sans-serif: 'Arial', 'Helvetica', sans-serif;
	--accent-color-black: #1D1D1F;
	--accent-color-black-transparent: #1D1D1F4D;
	--accent-color-black-transparent-less: #1D1D1F99;
	--accent-color-white: #FFFFFF;
	--accent-color-white-transparent: #FFFFFF4D;
	--accent-color-white-transparent-less: #FFFFFF99;
	--accent-color-grey: #C4C4C6;
	--accent-color-grey-light: #E6E6E6;
	--accent-color-grey-lighter: #F5F5F7;
	--accent-color-grey-lightest: #F9F9F9;
	--accent-color-blue-primary: #3B6DEF;
	--accent-color-blue-light: #5982ED;
	--accent-color-blue-lighter: #C2D1F8;
	--accent-color-blue-transparent: #3B6DEF4D;
	--accent-color-blue-transparent-less: #3B6DEF99;
	--accent-color-green-primary: #105B4C;
	--accent-color-green-light: #136D5B;
	--accent-color-green-lighter: #5EA876;
	--accent-color-green-transparent: #105B4C4D;
	--accent-color-green-transparent-less: #105B4C99;
	--accent-color-orange-primary: #FF6433;
	--accent-color-orange-light: #FF783D;
	--accent-color-orange-lighter: #FFF1EA;
	--accent-color-orange-transparent: #FF64334D;
	--accent-color-orange-transparent-less: #FF643399;
	--accent-color-red: #FF0000;
	--accent-color-yellow: #EAED59;
	--accent-color-background-lighter: var(--accent-color-orange-lighter);
	--accent-color-background-lightest: #FFF5F0;
	--body-background-color: var(--accent-color-grey-lighter);
	--body-color: var(--accent-color-black);
	--window-height: 100dvh;
	--window-height-diff: calc(100lvh - 100svh);
	--window-scrollbar-width: 0px;
	--container-width: 0.99999999; /* Min: 0.00000001; Max: 0.99999999; */
	--base-gutter-width: 0.625rem;
	--window-gutter-width: var(--base-gutter-width);
	--container-gutter-width: calc(var(--base-gutter-width) + max(env(safe-area-inset-right), env(safe-area-inset-left)));
	--row-gutter-width: calc(var(--base-gutter-width) / 2);
	--admin-bar-height: 0px;
}
@media (min-width: 768px) {
	:root {
		--base-gutter-width: 1.25rem;
	}
}

:focus {
	outline: none;
}
:focus-visible {
	outline: none !important;
}

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

* {
	text-shadow: none;
}

html {
	-webkit-text-size-adjust: 100%;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	font-size: 16px;
	line-height: 1.15;
}
@media (min-width: 2560px) {
	html {
		font-size: 0.625vw;
	}
}

body {
	margin: 0;
	background-color: var(--body-background-color);
	color: var(--body-color);
	font-family: 'Area', var(--font-fallback-sans-serif);
	font-size: 1em;
	font-style: normal;
	font-stretch: 100%;
	font-weight: 400;
	line-height: 1.375;
	letter-spacing: 0em;
	text-align: left;
}
body.admin-bar {
	--admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--admin-bar-height: 46px;
	}
}

/* Text Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
	display: block;
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
	font-family: inherit;
	font-weight: 600;
	font-style: normal;
	line-height: 1.25;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong,
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
	font-weight: 600;
}

p {
	margin-top: 0;
	margin-bottom: 0;
}

ul, ol {
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 3ch;
}

blockquote {
	position: relative;
	margin: 0;
	padding: 0.5em 1.5em 0.5em calc(1.5em + 0.0625rem);
}
blockquote::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0 auto 0 0;
	width: 0.0625rem;
	background-color: currentColor;
}

strong, b {
	font-weight: 600;
}

small {
	font-size: 0.75em;
}

pre {
	margin: 0;
	font-family: monospace, monospace;
	font-size: 1em;
	white-space: pre-wrap;
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: none;
	border-bottom: 0.0625rem solid currentColor;
}

dl {
	margin-top: 0;
	margin-bottom: 0;
}
dd {
	margin-left: 0;
}

/* Media Elements */
figure {
	margin: 0;
}
figcaption {
	font-size: 0.875rem;
}

picture {
	display: block;
	width: 100%;
}

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

svg {
	display: block;
	width: 100%;
	height: auto;
	border: none;
	pointer-events: none;
}

/* Form Elements */
form {
	margin-bottom: 0;
}

fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
	border: none;
}

legend {
	padding: 0;
}

abbr[title] {
	text-decoration: none;
}
abbr.required,
span.required {
	color: red;
	font-weight: inherit;
}

label {
	display: block;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
textarea,
select {
	display: block;
	width: 100%;
	padding: 1.5rem 0.5rem 0.5rem;
	background-color: var(--accent-color-grey-lighter);
	/*border-color: var(--accent-color-black);
	border-width: 0.0625rem;
	border-style: solid;*/
	border: none;
	border-radius: 0.625rem;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	font-style: inherit;
	font-weight: inherit;
	line-height: 1.375;
	text-align: left;
	transition: none;

	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
	float: left;
	position: relative;
	margin: 0 0.5rem 0 0;
	width: 2.375em;
	min-width: 0;
	height: 2.375em;
	background-color: var(--accent-color-grey-lighter);
	border: none;
	border-radius: 0.625rem;
	box-shadow: none;
	color: inherit;
	font-size: 1em;
	line-height: 1;

	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
input[type="checkbox"]::before,
input[type="radio"]::before {
	content: '';
	display: block;
	margin: 0;
	width: 2.375em;
	height: 2.375em;
	background-image: url('data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiM1OTgyRUQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkuNTQ5OTggMTcuOTk5NkwzLjg0OTk4IDEyLjI5OTZMNS4yNzQ5OCAxMC44NzQ2TDkuNTQ5OTggMTUuMTQ5NkwxOC43MjUgNS45NzQ2MUwyMC4xNSA3LjM5OTYxTDkuNTQ5OTggMTcuOTk5NloiLz48L3N2Zz4=');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	font-size: 1em;
	opacity: 0;
	transition: opacity 0.25s ease;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
	opacity: 1;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
	display: inline-block;
	margin-top: calc((2.375rem - (1em * 1.375)) / 2);
	margin-bottom: 0;
	width: calc(100% - 2.375rem - 0.5rem);
	color: inherit;
	font-size: 1em;
	font-weight: inherit;
	line-height: 1.375;
	vertical-align: top;
}

input[type="search"] {
	margin: 0;
}

option {
	padding: 0;
	min-height: 0;
	font-weight: inherit;
}

textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: calc((1em * 1.375) + 2rem);
	max-height: calc((1em * 1.375) * 16 + 2rem);
	resize: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance:none;
}
input[type="date"]::-webkit-datetime-edit {
	display: block;
	padding: 0;
	line-height: inherit;
}
input[type="date"]::-webkit-datetime-edit-fields-wrapper {
	padding-top: 0;
	padding-bottom: 0;
}
input::-webkit-datetime-edit-day-field,
input::-webkit-datetime-edit-month-field,
input::-webkit-datetime-edit-year-field {
	padding: 0 0.0625rem;
}

::placeholder {
	color: var(--accent-color-black);
	opacity: 0.5;
}
:-ms-input-placeholder {
	color: var(--accent-color-black);
	opacity: 0.5;
}
::-ms-input-placeholder {
	color: var(--accent-color-black);
	opacity: 0.5;
}

/* Pressable Elements */
a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.25s ease;
}
a:active {
	color: inherit;
}
a:focus {
	outline-offset: 0;
}
a:hover {
	opacity: 0.5;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	display: inline;
	position: relative;
	width: auto;
	padding: 0;
	background-color: transparent;
	border-color: initial;
	border-width: 0;
	border-style: none;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: normal;
	text-align: inherit;
	cursor: pointer;
	transition: opacity 0.25s ease;

	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
	border-style: none;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	opacity: 0.5;
}

a.as-button,
button.as-button,
input[type="button"].as-button,
input[type="submit"].as-button,
input[type="reset"].as-button,
.as-link.as-button {
	display: inline-block;
	padding: 0.5em 1.5em 0.625em;
	background-color: var(--accent-color-blue-primary);
	border-radius: 0.625rem;
	color: var(--accent-color-white);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.125;
	text-align: center;
	white-space: nowrap;
	transition-property: background-color;
}
@media (min-width: 768px) {
	a.as-button,
	button.as-button,
	input[type="button"].as-button,
	input[type="submit"].as-button,
	input[type="reset"].as-button,
	.as-link.as-button {
		font-size: 1.25rem;
	}
}
@media (min-width: 1200px) {
	a.as-button,
	button.as-button,
	input[type="button"].as-button,
	input[type="submit"].as-button,
	input[type="reset"].as-button,
	.as-link.as-button {
		font-size: 1.5rem;
	}
}
a.as-button:hover,
button.as-button:hover,
input[type="button"].as-button:hover,
input[type="submit"].as-button:hover,
input[type="reset"].as-button:hover,
a:hover .as-link.as-button {
	background-color: var(--accent-color-blue-light);
	opacity: 1;
}

/* Main Structure */
main.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: auto;
	min-height: calc(var(--window-height) - var(--admin-bar-height));
	padding: 1.25rem;
	background-attachment: fixed;
	background-color: transparent;
	background-image: url('../images/backgrounds/activetourism-login-background.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Grid Structure */
.container-fluid {
	position: relative;
	width: 100%;
	padding-left: var(--container-gutter-width);
	padding-right: var(--container-gutter-width);
}
.container {
	--container-width: 0.99999999;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	max-width: calc((100% - var(--row-gutter-width) * 2) * var(--container-width) + var(--row-gutter-width) * 2);
	padding-left: var(--container-gutter-width);
	padding-right: var(--container-gutter-width);
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: calc(var(--row-gutter-width) / -0.5);
	margin-left: calc(var(--row-gutter-width) * -1);
	margin-right: calc(var(--row-gutter-width) * -1);
}
.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-left: var(--row-gutter-width);
	padding-right: var(--row-gutter-width);
}
.col {
	flex: 0 0 auto;
	position: relative;
	margin-bottom: calc(var(--row-gutter-width) / 0.5);
}

/* Admin Bar */
html #wpadminbar {
	position: fixed;
}
html.scrollbar body.nav-open #wpadminbar,
html.scrollbar body.popup-open #wpadminbar,
html.scrollbar body.swal2-shown #wpadminbar {
	padding-right: var(--window-scrollbar-width);
}
div#wp-toolbar {
	display: flex !important;
	justify-content: space-between !important;
}
div#wp-toolbar > ul {
	display: flex !important;
}
div#wp-toolbar > ul > li {
	float: none !important;
}

/* Form */
.login {
	flex: 0 0 auto;
	margin: 0;
	width: 100%;
	max-width: 23.75rem;
	padding: 1.25rem;
	background-color: #FFFFFF;
	border-radius: 1rem;
	box-shadow: 0rem 0rem 0.75rem 0 rgba(215, 215, 215, 0.5);
}
.login h1 {
	margin-top: 1.25rem;
	margin-bottom: 2.5rem;
	text-align: center;
}
.login > h1 > a {
	display: block;
	margin: 0 auto;
	width: 15rem;
	height: calc(15rem / (82 / 32));
	color: inherit;
	font-size: 1em;
	font-weight: inherit;
	line-height: 1;
}
.form-wrapper {
	position: relative;
	margin-top: 1.25rem;
}
.login > p {
	margin-top: 1.25rem;
}
.login > p#privacy-policy-page-link {
	margin: 2.5rem 0 1.25rem;
	text-align: center;
}

form.form-loading {
	opacity: 0.5;
	pointer-events: none;
}

.form-element {
	position: relative;
	padding-bottom: calc(0.75em * 1.33333333 + 0.25rem);
	padding-bottom: 0;
	overflow: hidden;
}
.form-element.is-submit:last-child {
	padding-bottom: 0;
}
.form-element + .form-element,
.form-element + .form-elements,
.form-elements + .form-element {
	margin-top: 0.625rem;
}

.form-elements {
	margin-bottom: 0;
}
.form-elements > .form-element {
	margin-bottom: 0;
}
@media (min-width: 992px) {
	.form-elements > .form-element {
		width: 50%;
	}
	.form-elements > .form-element:first-child + .form-element {
		margin-top: 0;
	}
}

.form-element:not(.is-clickers) label {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	margin-bottom: 0.25rem;
	color: var(--accent-color-grey);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	z-index: 1;

	transform-origin: left top;
	transform: translateY(0.4375rem) scale(2);
	transition: transform 0.25s ease;
	pointer-events: none;
}
.form-element.is-focused:not(.is-clickers) label,
.form-element.is-filled:not(.is-clickers) label {
	transform: none;
}

.form-element.is-submit > button,
.form-element.is-submit > input {
	display: block;
	width: 100%;
}

.form-element.is-password {
	position: relative;
}
.form-element.is-password input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])[type="text"],
.form-element.is-password input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])[type="password"] {
	padding-right: calc(1rem + (1em * 1.375));
}
.form-element.is-password > span.password-toggler {
	display: none;
	position: absolute;
	top: 1.5rem;
	right: 0.625rem;
	width: calc(1em * 1.375);
	height: calc(1em * 1.375);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	z-index: 1;
}
.form-element.is-password:has(input[type="text"]) > span.password-toggler {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzFEMUQxRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgMTZDMTMuMjUgMTYgMTQuMzEyNSAxNS41NjI1IDE1LjE4NzUgMTQuNjg3NUMxNi4wNjI1IDEzLjgxMjUgMTYuNSAxMi43NSAxNi41IDExLjVDMTYuNSAxMC4yNSAxNi4wNjI1IDkuMTg3NSAxNS4xODc1IDguMzEyNUMxNC4zMTI1IDcuNDM3NSAxMy4yNSA3IDEyIDdDMTAuNzUgNyA5LjY4NzUgNy40Mzc1IDguODEyNSA4LjMxMjVDNy45Mzc1IDkuMTg3NSA3LjUgMTAuMjUgNy41IDExLjVDNy41IDEyLjc1IDcuOTM3NSAxMy44MTI1IDguODEyNSAxNC42ODc1QzkuNjg3NSAxNS41NjI1IDEwLjc1IDE2IDEyIDE2Wk0xMiAxNC4yQzExLjI1IDE0LjIgMTAuNjEyNSAxMy45Mzc1IDEwLjA4NzUgMTMuNDEyNUM5LjU2MjUgMTIuODg3NSA5LjMgMTIuMjUgOS4zIDExLjVDOS4zIDEwLjc1IDkuNTYyNSAxMC4xMTI1IDEwLjA4NzUgOS41ODc1QzEwLjYxMjUgOS4wNjI1IDExLjI1IDguOCAxMiA4LjhDMTIuNzUgOC44IDEzLjM4NzUgOS4wNjI1IDEzLjkxMjUgOS41ODc1QzE0LjQzNzUgMTAuMTEyNSAxNC43IDEwLjc1IDE0LjcgMTEuNUMxNC43IDEyLjI1IDE0LjQzNzUgMTIuODg3NSAxMy45MTI1IDEzLjQxMjVDMTMuMzg3NSAxMy45Mzc1IDEyLjc1IDE0LjIgMTIgMTQuMlpNMTIgMTlDOS41NjY2NyAxOSA3LjM1IDE4LjMyMDggNS4zNSAxNi45NjI1QzMuMzUgMTUuNjA0MiAxLjkgMTMuNzgzMyAxIDExLjVDMS45IDkuMjE2NjcgMy4zNSA3LjM5NTgzIDUuMzUgNi4wMzc1QzcuMzUgNC42NzkxNyA5LjU2NjY3IDQgMTIgNEMxNC40MzMzIDQgMTYuNjUgNC42NzkxNyAxOC42NSA2LjAzNzVDMjAuNjUgNy4zOTU4MyAyMi4xIDkuMjE2NjcgMjMgMTEuNUMyMi4xIDEzLjc4MzMgMjAuNjUgMTUuNjA0MiAxOC42NSAxNi45NjI1QzE2LjY1IDE4LjMyMDggMTQuNDMzMyAxOSAxMiAxOVpNMTIgMTdDMTMuODgzMyAxNyAxNS42MTI1IDE2LjUwNDIgMTcuMTg3NSAxNS41MTI1QzE4Ljc2MjUgMTQuNTIwOCAxOS45NjY3IDEzLjE4MzMgMjAuOCAxMS41QzE5Ljk2NjcgOS44MTY2NyAxOC43NjI1IDguNDc5MTcgMTcuMTg3NSA3LjQ4NzVDMTUuNjEyNSA2LjQ5NTgzIDEzLjg4MzMgNiAxMiA2QzEwLjExNjcgNiA4LjM4NzUgNi40OTU4MyA2LjgxMjUgNy40ODc1QzUuMjM3NSA4LjQ3OTE3IDQuMDMzMzMgOS44MTY2NyAzLjIgMTEuNUM0LjAzMzMzIDEzLjE4MzMgNS4yMzc1IDE0LjUyMDggNi44MTI1IDE1LjUxMjVDOC4zODc1IDE2LjUwNDIgMTAuMTE2NyAxNyAxMiAxN1oiLz48L3N2Zz4=');

}
.form-element.is-password:has(input[type="password"]) > span.password-toggler {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzFEMUQxRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuMSAxMy4zMDA4TDE0LjY1IDExLjg1MDhDMTQuOCAxMS4wNjc0IDE0LjU3NSAxMC4zMzQxIDEzLjk3NSA5LjY1MDc4QzEzLjM3NSA4Ljk2NzQ1IDEyLjYgOC43MDA3OCAxMS42NSA4Ljg1MDc4TDEwLjIgNy40MDA3OEMxMC40ODMzIDcuMjY3NDUgMTAuNzcwOCA3LjE2NzQ1IDExLjA2MjUgNy4xMDA3OEMxMS4zNTQyIDcuMDM0MTEgMTEuNjY2NyA3LjAwMDc4IDEyIDcuMDAwNzhDMTMuMjUgNy4wMDA3OCAxNC4zMTI1IDcuNDM4MjggMTUuMTg3NSA4LjMxMzI4QzE2LjA2MjUgOS4xODgyOCAxNi41IDEwLjI1MDggMTYuNSAxMS41MDA4QzE2LjUgMTEuODM0MSAxNi40NjY3IDEyLjE0NjYgMTYuNCAxMi40MzgzQzE2LjMzMzMgMTIuNzI5OSAxNi4yMzMzIDEzLjAxNzQgMTYuMSAxMy4zMDA4Wk0xOS4zIDE2LjQ1MDhMMTcuODUgMTUuMDUwOEMxOC40ODMzIDE0LjU2NzQgMTkuMDQ1OCAxNC4wMzgzIDE5LjUzNzUgMTMuNDYzM0MyMC4wMjkyIDEyLjg4ODMgMjAuNDUgMTIuMjM0MSAyMC44IDExLjUwMDhDMTkuOTY2NyA5LjgxNzQ1IDE4Ljc3MDggOC40Nzk5NSAxNy4yMTI1IDcuNDg4MjhDMTUuNjU0MiA2LjQ5NjYxIDEzLjkxNjcgNi4wMDA3OCAxMiA2LjAwMDc4QzExLjUxNjcgNi4wMDA3OCAxMS4wNDE3IDYuMDM0MTEgMTAuNTc1IDYuMTAwNzhDMTAuMTA4MyA2LjE2NzQ1IDkuNjUgNi4yNjc0NSA5LjIgNi40MDA3OEw3LjY1IDQuODUwNzhDOC4zMzMzMyA0LjU2NzQ1IDkuMDMzMzMgNC4zNTQ5NSA5Ljc1IDQuMjEzMjhDMTAuNDY2NyA0LjA3MTYxIDExLjIxNjcgNC4wMDA3OCAxMiA0LjAwMDc4QzE0LjUxNjcgNC4wMDA3OCAxNi43NTgzIDQuNjk2NjEgMTguNzI1IDYuMDg4MjhDMjAuNjkxNyA3LjQ3OTk1IDIyLjExNjcgOS4yODQxMiAyMyAxMS41MDA4QzIyLjYxNjcgMTIuNDg0MSAyMi4xMTI1IDEzLjM5NjYgMjEuNDg3NSAxNC4yMzgzQzIwLjg2MjUgMTUuMDc5OSAyMC4xMzMzIDE1LjgxNzQgMTkuMyAxNi40NTA4Wk0xOS44IDIyLjYwMDhMMTUuNiAxOC40NTA4QzE1LjAxNjcgMTguNjM0MSAxNC40MjkyIDE4Ljc3MTYgMTMuODM3NSAxOC44NjMzQzEzLjI0NTggMTguOTU0OSAxMi42MzMzIDE5LjAwMDggMTIgMTkuMDAwOEM5LjQ4MzMzIDE5LjAwMDggNy4yNDE2NyAxOC4zMDQ5IDUuMjc1IDE2LjkxMzNDMy4zMDgzMyAxNS41MjE2IDEuODgzMzMgMTMuNzE3NCAxIDExLjUwMDhDMS4zNSAxMC42MTc0IDEuNzkxNjcgOS43OTY2MiAyLjMyNSA5LjAzODI4QzIuODU4MzMgOC4yNzk5NSAzLjQ2NjY3IDcuNjAwNzggNC4xNSA3LjAwMDc4TDEuNCA0LjIwMDc4TDIuOCAyLjgwMDc4TDIxLjIgMjEuMjAwOEwxOS44IDIyLjYwMDhaTTUuNTUgOC40MDA3OEM1LjA2NjY3IDguODM0MTIgNC42MjUgOS4zMDkxMiA0LjIyNSA5LjgyNTc4QzMuODI1IDEwLjM0MjQgMy40ODMzMyAxMC45MDA4IDMuMiAxMS41MDA4QzQuMDMzMzMgMTMuMTg0MSA1LjIyOTE3IDE0LjUyMTYgNi43ODc1IDE1LjUxMzNDOC4zNDU4MyAxNi41MDQ5IDEwLjA4MzMgMTcuMDAwOCAxMiAxNy4wMDA4QzEyLjMzMzMgMTcuMDAwOCAxMi42NTgzIDE2Ljk3OTkgMTIuOTc1IDE2LjkzODNDMTMuMjkxNyAxNi44OTY2IDEzLjYxNjcgMTYuODUwOCAxMy45NSAxNi44MDA4TDEzLjA1IDE1Ljg1MDhDMTIuODY2NyAxNS45MDA4IDEyLjY5MTcgMTUuOTM4MyAxMi41MjUgMTUuOTYzM0MxMi4zNTgzIDE1Ljk4ODMgMTIuMTgzMyAxNi4wMDA4IDEyIDE2LjAwMDhDMTAuNzUgMTYuMDAwOCA5LjY4NzUgMTUuNTYzMyA4LjgxMjUgMTQuNjg4M0M3LjkzNzUgMTMuODEzMyA3LjUgMTIuNzUwOCA3LjUgMTEuNTAwOEM3LjUgMTEuMzE3NCA3LjUxMjUgMTEuMTQyNCA3LjUzNzUgMTAuOTc1OEM3LjU2MjUgMTAuODA5MSA3LjYgMTAuNjM0MSA3LjY1IDEwLjQ1MDhMNS41NSA4LjQwMDc4WiIvPjwvc3ZnPg==');
}
.form-element.is-password:has(input[type="text"]) > span.password-toggler,
.form-element.is-password:has(input[type="password"]) > span.password-toggler {
	display: block;
}

/*.form-element input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.form-element textarea,
.form-element select {
	transition: border-color 0.25s ease-in-out;
}
.form-element.is-focused input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.form-element.is-focused textarea,
.form-element.is-focused select,
.form-element.is-filled input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.form-element.is-filled textarea,
.form-element.is-filled select {
	border-color: var(--accent-color-black);
}
form.form.was-validated .form-element input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):invalid,
form.form.was-validated .form-element textarea:invalid,
form.form.was-validated .form-element select:invalid {
	border-color: red;
}*/

span.form-element-error {
	display: block;
	display: none;
	position: absolute;
	top: calc(100% - 0.125rem - (1em * 1.33333333));
	left: 0;
	width: 100%;
	padding: 0 0.5rem;
	font-size: 0.75em;
	line-height: 1.33333333;
	color: red;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease-in-out,
				visibility 0s linear 0.25s;
	pointer-events: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.form-element.col span.form-element-error {
	left: var(--row-gutter-width);
	width: calc(100% - var(--row-gutter-width) * 2);
}
form.form.was-validated .form-element:has(input:invalid) span.form-element-error,
form.form.was-validated .form-element:has(textarea:invalid) span.form-element-error,
form.form.was-validated .form-element:has(select:invalid) span.form-element-error {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.25s ease-in-out 0s,
				visibility 0s linear;
}

span.form-element-description {
	display: block;
	margin-top: 0.125rem;
	padding: 0 0.5rem;
	font-size: 0.75em;
	line-height: 1.33333333;
}

/* Checkboxes and Radio Buttons */
/*span.form-clickers-label {
	display: block;
}
.form-clickers {
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 0;
}*/
.form-clickers span.clicker {
	display: flex;
	/*position: static;
	margin-top: 0.25rem;
	margin-bottom: 0;*/
}
.form-clickers span.clicker input[type="checkbox"],
.form-clickers span.clicker input[type="radio"] {
	display: block;
	flex: 0 1 auto;
	float: none;
}
.form-clickers span.clicker label {
	display: block;
	flex: 0 0 auto;
	width: auto;
	max-width: calc(100% - 2.375rem - 0.5rem);
}
/*.form-clickers.clickers-inline span.clicker {
	flex: 0 0 auto;
	width: auto;
}
.form-clickers span.clicker > input {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 0;
	height: 0;
	padding: 0;
	background: transparent;
	border: none;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
}
.form-clickers span.clicker > label {
	position: relative;
	margin-bottom: 0;
	padding-left: calc(1.5em + 0.75rem);
	font-size: 1em;
	text-transform: none;
	cursor: pointer;
}
.form-clickers span.clicker > label span.clicker-icon {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	border: 0.0625rem solid rgba(0, 0, 0, 0.1);
	font-size: 1em;
	line-height: 1;
	overflow: hidden;
	transition: border-color 0.25s ease;
}
.form-clickers span.clicker > input:checked + label span.clicker-icon {
	border-color: var(--accent-color-black);
}
form.form.was-validated .form-clickers input:invalid + label span.clicker-icon {
	border-color: red;
}
.form-clickers span.clicker > label span.clicker-icon > span {
	position: absolute;
	top: calc(50% - 0.5em + 0.0625rem);
	left: calc(50% - 0.5em);
	width: 1em;
	height: 1em;
	color: inherit;
	font-size: 0.875em;
	line-height: 1;
	text-align: center;
	vertical-align: bottom;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.form-clickers span.clicker > input:checked + label span.clicker-icon > span {
	opacity: 1;
}
.form-clickers span.clicker > input[type="radio"] + label span.clicker-icon {
	border-radius: 50%;
}
.form-clickers span.clicker > input[type="radio"] + label span.clicker-icon > span {
	background-color: currentColor;
	border-radius: 50%;
	font-size: 0.625em;
}
.form-clickers span.clicker > input[type="radio"] + label span.clicker-icon > span > svg {
	display: none;
}
.form-clickers span.clicker > span.form-element-description {
	display: block;
	margin-top: 0.375rem;
	padding-left: 2.25rem;
	font-size: 0.75em;
}
.form-clickers span.clicker span.form-element-error {
	left: 2.25rem;
}
.form-clickers span.clicker:not(:last-of-type) span.form-element-error {
	display: none;
}*/

.form-notice {
	display: none;
	position: relative;
	margin: 1.25rem 0;
	border-radius: 0.625rem;
	padding: 0.5rem 1rem;
	background-color: var(--accent-color-grey-lighter);
	font-size: 0.75em;
	overflow: hidden;
}
.form-notice::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0.25rem;
	background-color: var(--accent-color-blue-primary);
}
.form-notice.is-message,
.form-notice.is-success,
.form-notice.is-error {
	display: block;
}
.form-notice.is-success::before {
	background-color: var(--accent-color-green-lighter);
}
.form-notice.is-error::before {
	background-color: var(--accent-color-red);
}

.form-element.is-text {
	font-size: 0.75em;
}
.form-element.is-text p > a {
	text-decoration: underline;
	word-break: break-word;
}

/* Honeypot */
.form-element.is-real {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0 !important;
	padding-bottom: 0;
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: -1;
	overflow: hidden;
}
.form-element.is-real > label {
	display: none;
}
.form-element.is-real > input {
	height: 100%;
	padding: 0 !important;
	border: none !important;
}

/* Custom Select */
.form-element.is-select.custom-select-set select {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.custom-select {
	position: relative;
	color: inherit;
	font-size: 1em;
	line-height: 1.375;
}
span.custom-select-arrow {
	display: block;
	position: absolute;
	top: calc(1.5rem + ((1em * 1.375 - 1em) / 2));
	right: 0.5rem;
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
	transition: transform 0.25s ease-in-out;
	pointer-events: none;
}
.custom-select.select-open span.custom-select-arrow {
	transform: scale(-1);
}
span.custom-select-input {
	display: block;
	width: 100%;
	padding: 1.5rem calc(0.5rem + 1em + 0.5rem) 0.5rem 0.5rem;
	background-color: var(--accent-color-grey-lighter);
	border: none;
	border-radius: 0.625rem;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.25s ease-in-out;
}
/*.form-element.is-select.is-focused span.custom-select-input,
.form-element.is-select.is-filled span.custom-select-input {
	border-color: var(--accent-color-black);
}*/
/*form.was-validated .form-element.is-select:has(select:invalid) .custom-select span.custom-select-input {
	border-color: red;
}*/
span.custom-select-input-text {
	color: inherit;
	opacity: 0;
}
.form-element.is-select.is-filled span.custom-select-input-text {
	color: inherit;
	opacity: 1;
}
.custom-select-options {
	--move-x: 0px;
	display: none;
	position: absolute;
	top: 100%;
	left: var(--move-x);
	right: 0;
	width: 100%;
	min-width: fit-content;
	max-width: calc(100vw - var(--window-scrollbar-width) - var(--container-gutter-width) * 2);
	max-height: 12.5rem;
	background-color: var(--accent-color-white);
	border: 0.0625rem solid var(--accent-color-grey-lighter);
	border-radius: 0.625rem;
	color: var(--accent-color-black);
	overflow-x: hidden;
	overflow-y: auto;
	white-space: nowrap;
	z-index: 1;
}
.custom-select-options.select-right {
	left: calc(var(--move-x) - var(--window-scrollbar-width));
}
.custom-select-options.select-bottom {
	top: auto;
	bottom: 100%;
}
span.custom-select-option {
	display: block;
	padding: 0.25rem 0.5rem;
	font-size: 1em;
	transition: background-color 0.25s ease;
	cursor: pointer;
}
/*span.custom-select-option:not(:last-child) {
	border-bottom: 0.0625rem solid var(--accent-color-grey-lighter);
}*/
span.custom-select-option:hover {
	background-color: var(--accent-color-grey-light);
}
span.custom-select-option[data-selected] {
	background-color: var(--accent-color-grey);
}
span.custom-select-option[data-selected]:hover {
	background-color: var(--accent-color-grey-lighter);
}
span.custom-select-option[data-disabled] {
	opacity: 0.5;
	pointer-events: none;
}
select[required] + .custom-select span.custom-select-option:not([data-value]),
select[required] + .custom-select span.custom-select-option[data-value=""] {
	display: none;
}

.nav-language-switcher-wrapper {
	width: auto;
	z-index: 3;
}
.language-switcher {
	position: relative;
	margin: 0 auto;
	width: 3.75em;
	font-size: 1em;
	font-size: 0.75em;
	line-height: 1;
}
/*@media (max-width: 380.98px) {
	.language-switcher {
		font-size: 0.625em;
	}
}
@media (min-width: 1200px) {
	.language-switcher {
		font-size: 0.5em;
	}
}*/
button.language-switcher-dropdown {
	display: block;
	position: relative;
	width: 3.75em;
	height: 3.75em;
	border-radius: 50%;
	font-size: 1em;
	line-height: 1;
	z-index: 2;
	overflow: hidden;
	transition: box-shadow;
}
button.language-switcher-dropdown:hover {
	opacity: 1;
	box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.05);
}
.language-switcher-list-wrapper {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 3.75em;
	background-color: var(--accent-color-white);
	border-radius: 2em;
	overflow: hidden;
	box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.05);
}
ul.language-switcher-list {
	list-style: none;
	padding-left: 0;

	display: none;
	margin-top: -3.75em;
	/*width: 100%;*/
	max-height: calc(10rem + 3.75em);
	padding: 4.25em 0.5em 0.5em;
	overflow: hidden;
}
.language-switcher-list-wrapper.has-scrollbar ul.language-switcher-list {
	margin-right: calc(var(--window-scrollbar-width) * -1);
	/*width: calc(100% + var(--window-scrollbar-width));*/
}
.language-switcher-list-wrapper.open:not(.opening):not(.closing) ul.language-switcher-list {
	overflow-x: hidden;
	overflow-y: auto;
}
li.language-switcher-list-item {
	display: block;
}
li.language-switcher-list-item + li.language-switcher-list-item {
	margin-top: 0.5em;
}
li.language-switcher-list-item > a {
	display: block;
	position: relative;
	width: 2.75em;
	height: 2.75em;
	border-radius: 50%;
	font-size: 1em;
	line-height: 1;
	overflow: hidden;
	z-index: 1;
}
button.language-switcher-dropdown > svg,
li.language-switcher-list-item > a > svg {
	position: absolute;
	top: 50%;
	left: 50%;
	height: calc(100% + 0.125rem);
	width: auto;
	transform: translate3d(-50%, -50%, 0);
}
