:root {
	--theme-color: black;
	--theme-color-light: #FAF5ED;
	--theme-secondary-color: yellow;
	--body-text-color: #424242;
	--white: #FFFFFF;
	--base-font-family: "Arial";
	--font-family-title: "Arial";
	--font-size-title: 40px;
	--font-weight: 400;
	--font-size-h1: 4.38rem;
	--font-size-h2: 3.75rem;
	--font-size-h3: 2.5rem;
	--font-size-h4: 1.38rem;
	--line-height-text: 1.75;
	--row-gap-paragraph: 1rem;
}

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

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

body {
	margin: 0;
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--base-font-weight, 400);
	line-height: var(--base-line-height, 1.4);
	color: var(--body-text-color);
	text-align: left;
	padding: 0;
	background-color: var(--body-bg-color);
}

[tabindex="-1"]:focus:not(:focus-visible) {
	outline: 0 !important;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: var(--headings-font-weight, 700);
	text-transform: var(--headings-text-transform);
	line-height: var(--headings-line-height);
}

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

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

a {
	color: #FFFFFF;
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	text-decoration: none;
}

a:not([href]):not([class]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

pre,
code,
kbd,
samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

[role=button] {
	cursor: pointer;
}

select {
	word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
	cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type=radio],
input[type=checkbox] {
	box-sizing: border-box;
	padding: 0;
}

textarea {
	overflow: auto;
	resize: vertical;
}

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

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

.modal-open {
	overflow: hidden;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}

.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	-ms-transform: translate(0, -50px);
	transform: translate(0, -50px);
}

.modal.show .modal-dialog {
	-ms-transform: none;
	transform: none;
}

.modal.modal-static .modal-dialog {
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

.modal-dialog-scrollable {
	display: -ms-flexbox;
	display: flex;
	max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1rem);
	overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	height: min-content;
	content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
	content: none;
}

.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	-ms-flex-align: var(--modal-content-align-items);
	align-items: var(--modal-content-align-items);
	margin: auto;
	padding: var(--modal-content-padding);
	max-width: var(--modal-content-max-width, 500px);
	pointer-events: auto;
	background-color: #FFFFFF;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--modal-content-border-radius, 0.3rem);
	outline: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop.show {
	opacity: 0.5;
}

.modal-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: calc(0.3rem - 1px);
	border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.3;
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(0.3rem - 1px);
	border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
	margin: 0.25rem;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

.button-primary {
	margin: var(--btn-margin);
	font-size: var(--btn-font-size, 1.75rem);
	text-transform: var(--btn-text-transform);
	background-color: var(--btn-bg-color, var(--theme-color));
	background-image: var(--btn-bg-image, none);
	border: var(--btn-border, none);
	font-family: var(--btn-font-family);
	font-weight: var(--btn-font-weight, 700);
	color: var(--btn-color, var(--white));
	padding: var(--btn-paddingY, 0.63rem) var(--btn-paddingX, 1.88rem);
	border-radius: var(--btn-radius, 5.63rem);
	display: var(--btn-display, inline-flex);
	position: var(--btn-position, static);
	cursor: var(--btn-cursor, pointer);
	max-width: var(--btn-max-width, max-content);
	min-width: var(--btn-min-width);
	text-decoration: var(--btn-text-decoration, none);
	box-shadow: var(--btn-shadow, 0 4px 4px 0 rgba(0, 0, 0, 0.1));
	transition: var(--btn-transition, all 0.5s ease);
	height: var(--btn-height, auto);
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: var(--btn-letter-spacing, normal);
}

.button-primary:hover {
	background-color: var(--btn-hover-bg-color);
	border: var(--btn-hover-border, 2px solid var(--btn-hover-border-button));
	color: var(--btn-hover-color);
	text-decoration: none;
}

.button-secondary,
.forgot-password-link a,
.register-link a {
	background-color: var(--btn-secondary-bg, transparent);
	color: var(--btn-secondary-color, var(--theme-color));
	font-weight: var(--btn-secondary-font-weight, 700);
	text-decoration: var(--btn-secondary-text-decoration, underline);
	font-size: var(--btn-secondary-font-size, 1.13rem);
	font-family: var(--btn-secondary-font-family);
	text-transform: var(--btn-secondary-text-transform);
	letter-spacing: var(--btn-secondary-letter-spacing, normal);
}

.button-secondary:hover,
.forgot-password-link a:hover,
.register-link a:hover {
	color: var(--btn-secondary-hover-color, var(--theme-color));
	text-decoration: var(--btn-secondary-hover-text-decoration, underline);
}

.button-otp {
	font-family: var(--otp-button-font-family);
	font-size: var(--otp-button-font-size);
	margin-top: var(--otp-button-mt);
	background-color: var(--otp-button-bg-color, transparent);
	border: var(--otp-button-border, 0);
	font-weight: var(--otp-button-font-weight, 700);
	color: var(--otp-button-color, var(--theme-color));
}

.button-otp:disabled {
	color: var(--otp-button-disabled-color, var(--body-text-color));
	opacity: var(--otp-button-disabled-opacity, 0.5);
}

form.openid-connect-login-form input[type=submit] {
	margin: auto;
	font-family: var(--font-family-title);
	font-size: var(--font-size-button);
	text-transform: uppercase;
	background-color: var(--bg-color-button);
	font-weight: var(--font-weight);
	color: var(--color-button);
	padding: 0.63rem 2.5rem 0.94rem;
	border-radius: 5.63rem;
	display: block;
	cursor: pointer;
	max-width: max-content;
	text-decoration: none;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
}

.collapse {
	display: none;
}

.collapse.show {
	display: block;
}

.collapsing {
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}

html {
	font-size: var(--base-font-size, 16px);
	background-color: var(--white);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.visually-hidden {
	display: none !important;
}

.container {
	max-width: var(--container-width);
	width: 100%;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	margin-left: auto;
	margin-right: auto;
}

.container.small {
	max-width: var(--container-width-small);
}

ol,
ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

video {
	display: block;
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

.visually-hidden {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

.title-h1 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h1);
	line-height: var(--line-height-h1, normal);
	color: var(--font-title-color);
}

.title-h2 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2, normal);
	color: var(--font-title-color);
}

.title-h3 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h3);
	line-height: var(--line-height-h3, normal);
	color: var(--font-title-color);
}

.title-h4 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h4);
	line-height: var(--line-height-h4, normal);
	color: var(--font-title-color);
}

.title-h5 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h5);
	line-height: var(--line-height-h5, normal);
	color: var(--font-title-color);
}

.title-h6 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h6);
	line-height: var(--line-height-h6, normal);
	color: var(--font-title-color);
}

h1 {
	font-size: var(--font-size-h1);
}

h2 {
	font-size: var(--font-size-h2);
}

h3 {
	font-size: var(--font-size-h3);
}

h4 {
	font-size: var(--font-size-h4);
}

img {
	display: block;
	width: 100%;
	height: auto;
}

.paragraphs {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: var(--row-gap-paragraph);
	margin-bottom: var(--row-gap-paragraph);
}

.flex-gap-container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: var(--row-gap-paragraph);
}

.text {
	font-size: var(--default-font-size, 1.13rem);
}

.visual-mobile {
	display: none;
}

#custom-fullscreen-loader .loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--spinner-bg, rgba(0, 0, 0, 0.6));
	z-index: 9999;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.spinner {
	width: 60px;
	height: 60px;
	border: 6px solid #fff;
	border-top: 6px solid var(--spinner-color, var(--theme-color));
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

main {
	padding-top: var(--main-pagging-top, 3.75rem);
	min-height: var(--main-min-height, calc(100vh - 3.81rem - 55px));
}

.gpp-theme-logo {
	width: 100%;
	max-width: var(--theme-branding-width, 9.38rem);
}

.error-dialog {
	background-color: #FFF;
	border-radius: 3.13rem;
	padding: 3rem 2.5rem;
	text-align: center;
}

.error-dialog .error-message {
	font-size: 1.13rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.75rem;
}

.error-dialog .ui-widget-header {
	background-color: transparent;
	border: none;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 400;
	position: unset;
}

.error-dialog-titlebar {
	position: unset;
	padding: 0;
}

.error-dialog-title {
	float: none;
	text-overflow: unset;
	overflow: unset;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 400;
	font-family: var(--font-family-title);
	display: block;
	width: 100%;
}

.error-dialog-content {
	padding: 0;
}

.error-dialog .ui-dialog-titlebar-close {
	position: absolute;
	bottom: -50px;
	top: auto;
	left: 50%;
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.error-dialog .ui-dialog-titlebar {
	padding: 0;
}

.error-dialog .ui-dialog-titlebar-close {
	right: auto;
	width: 30px;
	margin: 0;
	padding: 1px;
	height: 30px;
	border-radius: 30px;
	border: none;
	background-color: var(--theme-color);
}

.error-dialog .ui-dialog-title {
	margin: 0;
	width: 100%;
	display: block;
	float: none;
	overflow: auto;
	text-overflow: unset;
	font-size: 2.5rem;
	font-family: var(--font-family-title);
	padding-bottom: 1rem;
}

.error-dialog .ui-dialog-content {
	padding: 0;
}

.ui-button .ui-icon {
	background-image: none;
}

.ui-button .ui-icon-closethick:after {
	content: "x";
	color: #FFF;
	position: absolute;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 3;
	text-indent: 0;
	font-size: 1.3rem;
}

.ui-button-icon-space {
	display: none;
}

.n-landing-page-full {
	padding-top: var(--lp-padding-top);
	padding-bottom: var(--lp-padding-bottom);
}

.n-landing-page-full.without-visual {
	--lp-padding-top: var(--lp-padding-top-without-visual);
	--lp-padding-bottom: var(--lp-padding-bottom-without-visual);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--input-placeholder-color, var(--body-text-color));
	opacity: var(--input-placeholder-opacity, 0.5);
}

input::placeholder,
textarea::placeholder {
	color: var(--input-placeholder-color, var(--body-text-color));
	opacity: var(--input-placeholder-opacity, 0.5);
}

select option:first-child {
	color: var(--input-placeholder-color, var(--body-text-color));
}

.flex-form {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	column-gap: var(--form-column-gap, 24px);
	row-gap: var(--form-row-gap, 32px);
	justify-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	max-width: var(--form-max-width, 100%);
	margin-top: var(--form-mt);
	padding: var(--form-padding, 0);
	background-color: var(--form-bg-color);
	box-shadow: var(--form-box-shadow);
	border-radius: var(--form-border-radius);
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
	color: var(--form-text-color, var(--body-text-color));
	-ms-flex-pack: var(--form-justify-content);
	justify-content: var(--form-justify-content);
}

.flex-form > div:not(.form-item):not(.form-item-wrapper) {
	width: 100%;
}

/**
 Form Item
 */

.form-item__label,
.form-item-wrapper__label,
.field--type-string__label {
	display: var(--form-item-label-display, block);
	font-family: var(--form-label-font-family);
	color: var(--form-label-color);
	font-size: var(--form-label-font-size);
	margin-bottom: var(--form-label-margin-bottom);
	font-weight: var(--form-label-font-weight);
}

.form-item__label.form-required:after,
.form-item-wrapper__label.form-required:after,
.field--type-string__label.form-required:after {
	content: "*";
	color: var(--error-label-color, var(--theme-color));
}

.form-item__label a,
.form-item-wrapper__label a,
.field--type-string__label a {
	text-decoration: underline;
	color: var(--form-label-link-color, var(--theme-color));
}

.form-item.error,
.form-item-wrapper.error,
.field--type-string.error {
	--form-text-border-color: var(--error-label-color, var(--theme-color));
}

.form-item.full,
.form-item-wrapper.full,
.field--type-string.full {
	width: 100%;
}

.form-item .form-item {
	--form-item-width: 100%;
}

.form-item .description {
	font-size: var(--form-description-font-size);
	margin-top: var(--form-description-margin-top, 0.5rem);
}

.form-item .description a {
	text-decoration: underline;
	color: var(--form-description-link-color, inherit);
}

/**
  Error messages
 */

.error-message,
.error-custom,
.form-item--error-message,
.messages--error {
	color: var(--error-label-color, var(--theme-color));
	font-size: var(--error-label-font-size, 0.88rem);
	font-weight: var(--error-label-font-weight, 700);
	margin-top: var(--error-label-mt, 4px);
	line-height: 1;
	display: inline-block;
	-ms-flex-order: var(--error-label-order);
	order: var(--error-label-order);
	text-align: var(--error-label-text-align);
	padding-left: var(--error-label-pl, 1.5rem);
	position: relative;
}

.error-message:before,
.error-custom:before,
.form-item--error-message:before,
.messages--error:before {
	position: absolute;
	left: 0;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	background-color: var(--error-label-color, var(--theme-color));
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.99805 0.5C3.58731 0.5 0 4.08601 0 8.49675C0 12.9075 3.58731 16.5 7.99805 16.5C12.4088 16.5 16 12.9075 16 8.49675C16 4.08601 12.4088 0.5 7.99805 0.5ZM7.99805 1.83344C11.6881 1.83344 14.6666 4.80665 14.6666 8.49675C14.6666 12.1868 11.6881 15.1653 7.99805 15.1653C4.30796 15.1653 1.33344 12.1868 1.33344 8.49675C1.33344 4.80665 4.30796 1.83344 7.99805 1.83344ZM8.00339 4.60841C7.91573 4.60806 7.82886 4.62501 7.74775 4.65828C7.66664 4.69155 7.5929 4.74049 7.53073 4.8023C7.46855 4.86411 7.41918 4.93757 7.38544 5.01848C7.35169 5.09939 7.33424 5.18616 7.33406 5.27383V9.33405C7.33372 9.42205 7.3508 9.50924 7.38431 9.5906C7.41783 9.67196 7.46712 9.74588 7.52934 9.80811C7.59156 9.87033 7.66548 9.91962 7.74685 9.95313C7.82821 9.98665 7.9154 10.0037 8.00339 10.0034C8.09095 10.003 8.17758 9.98545 8.25834 9.95163C8.3391 9.91781 8.41241 9.86841 8.47407 9.80626C8.53574 9.74411 8.58457 9.67042 8.61775 9.58939C8.65094 9.50837 8.66785 9.42161 8.66751 9.33405V5.27383C8.66716 5.09768 8.59713 4.92882 8.47269 4.80414C8.34826 4.67946 8.17954 4.60909 8.00339 4.60841ZM8.00339 10.7287C7.88458 10.7282 7.76684 10.7512 7.65697 10.7965C7.54711 10.8417 7.44728 10.9083 7.36327 10.9923C7.27925 11.0763 7.2127 11.1761 7.16746 11.286C7.12222 11.3959 7.09918 11.5136 7.09967 11.6324C7.10075 11.871 7.19656 12.0995 7.36603 12.2675C7.5355 12.4355 7.76476 12.5293 8.00339 12.5283C8.24067 12.5272 8.46793 12.4325 8.63571 12.2647C8.80349 12.0969 8.89823 11.8697 8.8993 11.6324C8.90029 11.3938 8.80647 11.1645 8.63846 10.9951C8.47046 10.8256 8.24202 10.7298 8.00339 10.7287Z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	mask-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7.99805 0.5C3.58731 0.5 0 4.08601 0 8.49675C0 12.9075 3.58731 16.5 7.99805 16.5C12.4088 16.5 16 12.9075 16 8.49675C16 4.08601 12.4088 0.5 7.99805 0.5ZM7.99805 1.83344C11.6881 1.83344 14.6666 4.80665 14.6666 8.49675C14.6666 12.1868 11.6881 15.1653 7.99805 15.1653C4.30796 15.1653 1.33344 12.1868 1.33344 8.49675C1.33344 4.80665 4.30796 1.83344 7.99805 1.83344ZM8.00339 4.60841C7.91573 4.60806 7.82886 4.62501 7.74775 4.65828C7.66664 4.69155 7.5929 4.74049 7.53073 4.8023C7.46855 4.86411 7.41918 4.93757 7.38544 5.01848C7.35169 5.09939 7.33424 5.18616 7.33406 5.27383V9.33405C7.33372 9.42205 7.3508 9.50924 7.38431 9.5906C7.41783 9.67196 7.46712 9.74588 7.52934 9.80811C7.59156 9.87033 7.66548 9.91962 7.74685 9.95313C7.82821 9.98665 7.9154 10.0037 8.00339 10.0034C8.09095 10.003 8.17758 9.98545 8.25834 9.95163C8.3391 9.91781 8.41241 9.86841 8.47407 9.80626C8.53574 9.74411 8.58457 9.67042 8.61775 9.58939C8.65094 9.50837 8.66785 9.42161 8.66751 9.33405V5.27383C8.66716 5.09768 8.59713 4.92882 8.47269 4.80414C8.34826 4.67946 8.17954 4.60909 8.00339 4.60841ZM8.00339 10.7287C7.88458 10.7282 7.76684 10.7512 7.65697 10.7965C7.54711 10.8417 7.44728 10.9083 7.36327 10.9923C7.27925 11.0763 7.2127 11.1761 7.16746 11.286C7.12222 11.3959 7.09918 11.5136 7.09967 11.6324C7.10075 11.871 7.19656 12.0995 7.36603 12.2675C7.5355 12.4355 7.76476 12.5293 8.00339 12.5283C8.24067 12.5272 8.46793 12.4325 8.63571 12.2647C8.80349 12.0969 8.89823 11.8697 8.8993 11.6324C8.90029 11.3938 8.80647 11.1645 8.63846 10.9951C8.47046 10.8256 8.24202 10.7298 8.00339 10.7287Z'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
	width: 1rem;
	height: 1rem;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.error-message a,
.error-custom a,
.form-item--error-message a,
.messages--error a {
	text-decoration: underline;
}

.select-wrapper {
	position: relative;
}

.select-wrapper:after {
	content: "";
	width: var(--select-arrow-size, 1.25rem);
	height: var(--select-arrow-size, 1.25rem);
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	right: var(--select-arrow-right, 0);
	top: 0.94rem;
	pointer-events: none;
	position: absolute;
}

.form-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.form-text,
.form-date,
.form-tel,
.form-email,
.form-select {
	width: 100%;
	font-family: var(--form-text-font-family);
	color: var(--form-text-color);
	font-size: var(--form-text-font-size, 1rem);
	padding: var(--form-text-padding);
	border-width: var(--form-text-border-width);
	border-style: var(--form-text-border-style);
	border-color: var(--form-text-border-color);
	border-radius: var(--form-text-border-radius);
	background-color: var(--form-text-background-color);
	transition: var(--form-text-transition);
	resize: var(--form-text-resize);
	height: var(--form-text-height);
}

.form-text:focus,
.form-date:focus,
.form-tel:focus,
.form-email:focus,
.form-select:focus {
	outline: none;
	border-color: var(--form-text-focus-border-color, var(--form-text-border-color));
	box-shadow: var(--form-text-focus-box-shadow);
}

.form-text:valid,
.form-date:valid,
.form-tel:valid,
.form-email:valid,
.form-select:valid {
	border-color: var(--form-text-valid-border-color, var(--form-text-border-color));
}

.form-type-checkbox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	--form-label-font-family: var(--form-type-checkbox-font-family, var(--base-font-family));
	--form-label-font-size: var(--form-checkbox-label-font-size, 1rem);
	--form-label-color: var(--form-checkbox-label-color, var(--body-text-color));
	--form-label-margin-bottom: 0;
	position: relative;
	gap: 1rem;
	padding-left: var(--form-checkbox-pl, 34px);
	min-height: 24px;
	--error-label-mt: 0;
	--error-label-order: 2;
	--form-item-width: 100%;
}

.form-type-checkbox.error {
	--form-checkbox-border-color: var(--error-label-color, var(--theme-color));
}

.form-type-checkbox input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
	z-index: -1;
}

.form-type-checkbox input:checked ~ .option:before {
	background-color: var(--form-checkbox-checked-color, var(--theme-secondary-color));
	border-color: var(--form-checkbox-checked-color, var(--theme-secondary-color));
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='13' viewBox='0 0 17 13' fill='none'%3E%3Cpath d='M1.5 7.5L5.5 11.5L15.5 1.5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form-type-checkbox .option {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-order: 1;
	order: 1;
}

.form-type-checkbox .option:before {
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: var(--form-checkbox-border-radius);
	border: var(--form-checkbox-border-width, 2px) solid var(--form-checkbox-border-color, var(--body-text-color));
}

.privacy-checkboxes-container {
	margin-top: var(--privacy-text-mt);
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: var(--content-privacy-gap, 1rem);
	--form-item-width: 100%;
	--form-label-font-weight: 400;
}

.privacy-checkboxes-container a {
	text-decoration: underline;
}

.form-upload {
	width: 100%;
	--form-item-label-display: var(--form-upload-label-display, none);
}

.form-upload__wrapper {
	padding-top: var(--form-upload-pt, 2.5rem);
	padding-bottom: var(--form-upload-pb, 2.5rem);
	padding-left: var(--form-upload-pl);
	padding-right: var(--form-upload-pr);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: var(--form-upload-align-items, center);
	align-items: var(--form-upload-align-items, center);
	-ms-flex-direction: var(--form-upload-flex-direction, column);
	flex-direction: var(--form-upload-flex-direction, column);
	position: relative;
	border-radius: var(--form-upload-border-radius, 30px);
	background-color: var(--form-upload-background-color, #FFF);
	border-width: var(--form-upload-border-width, 1px);
	border-style: var(--form-upload-border-style, dashed);
	gap: var(--form-upload-gap, 1.5rem);
	border-color: var(--form-upload-border-color, #828282);
	text-align: var(--form-upload-text-align, center);
	height: var(--form-upload-height, auto);
}

.form-upload .form-file {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 5;
	cursor: pointer;
}

.form-upload__upload-text {
	display: var(--form-upload-upload-text-display);
}

.form-upload__upload-icon {
	display: var(--form-upload-upload-icon-display);
}

.form-upload__upload-icon span {
	position: relative;
	padding: 0 1em;
}

.form-upload__upload-icon span:before,
.form-upload__upload-icon span:after {
	content: "";
	width: var(--form-upload-upload-icon-arrow-w, 6.25rem);
	height: 1px;
	background-color: var(--form-upload-upload-icon-arrow-color, var(--body-text-color));
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.form-upload__upload-icon span:after {
	left: 100%;
}

.form-upload__upload-icon span:before {
	right: 100%;
}

.form-upload .form-managed-file {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1rem;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	font-size: var(--form-upload-desc-size, 1rem);
	opacity: var(--form-upload-desc-opacity, 1);
}

.form-upload .form-managed-file.no-file {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.form-upload__desc {
	font-size: var(--form-upload-desc-size, 1rem);
	opacity: var(--form-upload-desc-opacity, 1);
	pointer-events: none;
}

.privacy-introduction {
	font-size: var(--privacy-introduction-size, 1rem);
}

@media (min-width: 1024px) {

.form-item,
.form-item-wrapper,
.field--type-string {
	width: var(--form-item-width, calc(50% - var(--form-column-gap, 24px) / 2));
}

}

@media (max-width: 1440px) {

html {
	--base-font-size: 1.1111111111vw;
}

}

@media (max-width: 1024px) {

html {
	--base-font-size: 16px;
}

}

@media (max-width: 1023px) {

:root {
	--font-size-h1: 2.5rem;
	--font-size-h2: 2.25rem;
	--font-size-h3: 1.88rem;
	--font-size-h4: 1.25rem;
	--container-padding: 20px;
}

.button-primary {
	padding: var(--btn-paddingYsm, 0.63rem) var(--btn-paddingXsm, 1.88rem);
	font-size: var(--btn-font-size-sm, 1.13rem);
}

.text {
	font-size: var(--default-font-size-mobile, 16px);
}

.visual {
	display: none;
}

.visual-mobile {
	display: block;
}

.error-dialog {
	width: 90% !important;
	left: 50% !important;
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.n-landing-page-full {
	--lp-padding-top: var(--lp-padding-top-mobile);
	--lp-padding-bottom: var(--lp-padding-bottom-mobile);
}

.n-landing-page-full.without-visual {
	--lp-padding-top-mobile: var(--lp-padding-top-without-visual-mobile);
	--lp-padding-bottom-mobile: var(--lp-padding-bottom-without-visual-mobile);
}

.form-item,
.form-item-wrapper,
.field--type-string {
	width: var(--form-item-width-mobile, 100%);
}

.select-wrapper:after {
	width: 18px;
	height: 18px;
}

}

@keyframes spin {

to {
	transform: rotate(360deg);
}

}

