@charset "utf-8";
/* global fonts*/
/* INTER */
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-ExtraBold.ttf");
  font-weight: 800;
}
/* axial variables*/
/* FRAMEWORK VARIABLES */
:root {
  /* colors */
  --white: #fff;
  --whiteLight: #fefff6;
  --black: #000;
  --blackLight: #111;
  --greyLight: #f2f3f4;
  --greyDark: #232323;
  --themeColor: #0463b1;
  /* body */
  --body___mainFont: "Inter", sans-serif;
  --body___backgroundColor: var(--whiteLight);
  --body___textColor: var(--black);
  /* header */
  --header___height: 80px;
  --header___paddingH: 20px;
  --header___paddingV: 10px;
  --header___backgroundColor: var(--whiteLight);
  --header___color: var(--black);
  --headerTitle___fontSize: 36px;
  --headerTitle___fontWeight: 700;
  /* header logo */
  --headerLogo___height: 40px;
  /* header nav item */
  --headerNavItem___fontSize: 21px;
  --headerNavItem___fontWeight: 600;
  --headerNavItem___marginH: 10px;
  /* footer */
  --footer___paddingH: 20px;
  --footer___paddingV: 20px;
  --footer___sectionDirection: column;
  --footer___backgroundColor: var(--whiteLight);
  --footer___color: var(--black);
  /* main */
  --main___backgroundColor: var(--whiteLight);
  --main___color: var(--black);
  /* section */
  --section___paddingH: 20px;
  --section___paddingV: 20px;
  /* input */
  --input___fontSize: 17px;
  --input___fontWeight: 500;
  --input___placeholderFontSize: 16px;
  --input___placeholderFontWeight: 400;
  /* components */
  --component___borderRadius: 6px;
  --container___borderRadius: 10px;
  /* AxialButton */
  --AxialButton___textColor: var(--white);
  --AxialButton___backgroundColor: var(--themeColor);
  --AxialButton___fontWeight: 500;
  /* AxialToggleButton */
  --AxialToggleButton___textColor: var(--white);
  --AxialToggleButton___backgroundColor: var(--themeColor);
  --AxialToggleButton___fontWeight: 500;
  /* AxialBurgerButton */
  --AxialBurgerButton___lineColor: var(--themeColor);
  --AxialBurgerButton___backgroundColor: var(--white);
  /* AxialToggleCheck */
  --AxialToggleCheck___textColor: var(--white);
  /* AxialToggleRadio */
  --AxialToggleRadio___color: var(--greyDark);
}
/* global variables */
/* axial core & application : will be probably merged */
.axial_component_base {
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
  text-shadow: none;
}
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--body___mainFont);
  background-color: var(--body___backgroundColor);
  color: var(--body___textColor);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a {
  text-decoration: none;
  color: var(--body___textColor);
}
a:visited {
  text-decoration: none;
  color: var(--body___textColor);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--body___textColor);
}
input {
  -webkit-user-select: text;
  user-select: text;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  height: 42px;
  min-height: 42px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 4px;
  font-family: var(--body___mainFont);
  font-size: var(--input___fontSize);
  font-weight: var(--input___fontWeight);
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--greyDark);
  background-color: var(--whiteLight);
}
input::placeholder {
  font-size: var(--input___placeholderFontSize);
  font-weight: var(--input___placeholderFontWeight);
}
input:disabled {
  opacity: 0.5;
}
input[type="file"] {
  height: 42px;
  min-height: 42px;
  padding: unset;
  background-color: unset;
  border: none;
  font-size: 14px;
}
input[type="file" i] {
  font-family: var(--body___mainFont);
  color: var(--body___textColor);
}
input[type="file"]::file-selector-button {
  height: 42px;
  min-height: 42px;
  cursor: pointer;
  appearance: none;
  border: none;
  outline: none;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
  font-family: var(--body___mainFont);
  border-radius: var(--component___borderRadius);
  font-weight: var(--AxialButton___fontWeight);
  color: var(--AxialButton___textColor);
  background-color: var(--AxialButton___backgroundColor);
}
textarea {
  display: block;
  resize: none;
  outline: none;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 10px;
  font-family: var(--body___mainFont);
  font-size: var(--input___fontSize);
  font-weight: var(--input___fontWeight);
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--greyDark);
  background-color: var(--whiteLight);
}
select {
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  height: 42px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 4px;
  font-family: var(--body___mainFont);
  font-size: var(--input___fontSize);
  font-weight: var(--input___fontWeight);
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--themeColor);
  background-color: var(--white);
}
/* layers */
.axial_layer_base {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.axial_background_layer {
  background-color: transparent;
}
.axial_3d_layer {
  background-color: transparent;
}
.axial_main_layer {
  position: relative;
  min-width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.axial_intro_layer {
  z-index: 20;
}
.axial_popup_layer {
  z-index: 30;
}
.axial_medias_layer {
  z-index: 40;
}
.axial_notification_layer {
  z-index: 50;
}
.axial_overlay_layer {
  z-index: 60;
}
.axial_tooltip_layer {
  z-index: 70;
}
.axial_transition_layer {
  z-index: 999999999;
  pointer-events: all;
  transform: translateY(0%);
  transition-property: transform;
  transition-duration: 600ms;
  transition-timing-function: ease;
  background-color: #fefff6;
}
/* header */
.axial_header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header___height);
  z-index: 10;
  color: var(--header___color);
  border-bottom: 1px solid #e1e6f0;
  transition-property: top;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
.axial_header_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--header___backgroundColor);
}
.axial_header_content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: var(--header___paddingH);
  padding-right: var(--header___paddingH);
  padding-top: var(--header___paddingV);
  padding-bottom: var(--header___paddingV);
}
.axial_header_title {
  font-size: var(--headerTitle___fontSize);
  font-weight: var(--headerTitle___fontWeight);
}
.axial_header_logo {
  display: flex;
  height: var(--headerLogo___height);
  width: auto;
}
.axial_header_logo_svg {
  display: block;
  height: var(--headerLogo___height);
  width: auto;
}
.axial_header_logo_img {
  display: block;
  height: var(--headerLogo___height);
  width: auto;
}
.axial_header_nav {
  height: 100%;
  width: auto;
  display: none;
  flex-direction: row;
  align-items: center;
}
.axial_header_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 100%;
  margin-left: var(--headerNavItem___marginH);
  margin-right: var(--headerNavItem___marginH);
  font-size: var(--headerNavItem___fontSize);
  font-weight: var(--headerNavItem___fontWeight);
  cursor: pointer;
}
.axial_header_nav_item:first-child {
  margin-left: 0;
}
.axial_header_nav_item:last-child {
  margin-right: 0;
}
.axial_header_nav_item-label {
  margin-bottom: 4px;
}
.axial_header_nav_item-line {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
  transition-property: transform;
  transition-duration: 420ms;
  transition-timing-function: ease;
}
.axial_header_nav_item:hover .axial_header_nav_item-line {
  transform: scaleX(1);
}
.axial_header_nav_item_separator {
  margin-left: 10px;
  margin-right: 10px;
}
/* breadcrumbs */
.axial_breadcrumbs {
  padding-left: var(--section___paddingH);
  padding-right: var(--section___paddingH);
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
  min-height: 40px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--themeColor);
}
.axial_breadcrumbs_item {
  color: var(--white);
}
.axial_breadcrumbs_link {
  color: var(--white);
  text-decoration: underline;
}
.axial_breadcrumbs_link:visited {
  color: var(--white);
  text-decoration: underline;
}
.axial_breadcrumbs_link:visited:hover {
  color: var(--white);
  text-decoration: underline;
}
.axial_breadcrumbs_separator {
  color: var(--white);
  margin-left: 10px;
  margin-right: 10px;
}
/* main */
.axial_main {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: var(--main___backgroundColor);
}
/* section */
.axial_section {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.axial_section_background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_section_content {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
/* section utils */
.axial_section_padding {
  padding-top: var(--header___height);
  padding-left: var(--section___paddingH);
  padding-right: var(--section___paddingH);
  padding-bottom: var(--section___paddingV);
}
.axial_section_temp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 48px;
}
.axial_section_subtitle {
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: center;
}
.axial_section_title {
  font-size: 48px;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 14px;
}
.axial_section_map {
  width: 100%;
  height: 600px;
}
.axial_section_mapframe {
  width: 100%;
  height: 100%;
}
/* footer */
.axial_footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: var(--footer___color);
}
.axial_footer_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--footer___backgroundColor);
  color: var(--footer___color);
}
.axial_footer_content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: var(--footer___paddingH);
  padding-right: var(--footer___paddingH);
}
.axial_footer_section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: var(--footer___sectionDirection);
  justify-content: space-between;
  border-top: 1px solid var(--greyDark);
  padding-top: 40px;
  padding-bottom: 40px;
}
.axial_footer_legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.axial_footer_legal_link {
  font-size: 14px;
  font-weight: 600;
}
.axial_footer_social {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.axial_footer_social_link {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* utils */
.axial_spacer {
  flex-grow: 1;
}
.axial_parallax {
  will-change: transform;
  /*transform: translate3d(0, 0, 0);*/
  translate: 0px 0px;
  scale: 1;
}
/* Notifier */
.axial_notifier {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.axial_notifier_holder {
  position: absolute;
  width: 100%;
  height: auto;
  padding: 20px;
  bottom: 0px;
  transform: translateY(100%);
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: ease;
}
.axial_notifier_content {
  width: 100%;
  height: auto;
  padding: 10px;
  min-height: 40px;
  color: var(--greyDark);
  background-color: var(--greyLight);
  border-radius: var(--component___borderRadius);
  box-shadow: 0px 1px 3px var(--black);
}
/* AxialInformationBar */
.axial_information_bar {
  position: fixed;
  width: 100%;
  top: 0;
  height: auto;
  z-index: 1;
  transition-property: top;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
.axial_information_bar-holder {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  background-color: #028ed4;
}
.axial_information_bar-content {
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.axial_information_bar-closer {
  position: absolute;
  top: 0;
  right: 10px;
  width: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_information_bar-svg {
  cursor: pointer;
  fill: #fff;
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
.axial_information_bar-svg:hover {
  transform: rotate(90deg);
}
/* axial aniimation */
/* POPUPS ANIMATIONS */
/* Obfuscator fader */
@keyframes axial_obfuscator_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes axial_obfuscator_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Popup fader */
@keyframes axial_popup_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes axial_popup_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Popup translate_up */
@keyframes axial_popup_translate_up-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes axial_popup_translate_up-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
/* Popup translate_down */
@keyframes axial_popup_translate_down-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes axial_popup_translate_down-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/* Popup translate_left */
@keyframes axial_popup_translate_left-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes axial_popup_translate_left-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
/* Popup translate_right */
@keyframes axial_popup_translate_right-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes axial_popup_translate_right-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Popup fade_translate_up */
@keyframes axial_popup_fade_translate_up-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_up-out {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
/* Popup fade_translate_down */
@keyframes axial_popup_fade_translate_down-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_down-out {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/* Popup fade_translate_left */
@keyframes axial_popup_fade_translate_left-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_left-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* Popup fade_translate_right */
@keyframes axial_popup_fade_translate_right-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_right-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
/**/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**/
@keyframes translate_up-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate_up-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/**/
@keyframes translate_down-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate_down-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
/* axial components */
/* form utils */
.axial_form_utils_grid {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1;
  gap: 0px 20px;
}
.axial_form_utils_column-1 {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
.axial_form_utils_column-2 {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
/* AxialLoginForm */
.axial_login_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
  padding: 0px;
}
.axial_login_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_login_form-holder {
  position: relative;
  width: 100%;
  height: 42px;
}
.axial_login_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_login_form-password {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-right: 50px;
}
/* AxialRegistrationForm */
.axial_registration_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
  padding: 0px;
}
.axial_registration_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_registration_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_registration_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialMessageForm */
.axial_message_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
  padding: 0px;
}
.axial_message_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_message_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_message_form-toggle {
  margin-bottom: 14px;
}
.axial_message_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialContactForm */
.axial_contact_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
}
.axial_contact_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_contact_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_contact_form-toggle {
  margin-bottom: 14px;
}
.axial_contact_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialButtonBase */
.axial_button_base {
  cursor: pointer;
}
/* AxialButton */
.axial_button {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  fill: #fff;
}
.axial_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--AxialButton___backgroundColor);
}
.axial_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: ease;
}
.axial_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_button-label {
  width: auto;
  color: var(--AxialButton___textColor);
  font-weight: var(--AxialButton___fontWeight);
}
.axial_button-icon {
  position: relative;
}
.axial_button-icon_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
}
/* AxialToggleButton */
.axial_toggle_button {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  fill: #fff;
}
.axial_toggle_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--AxialToggleButton___backgroundColor);
}
.axial_toggle_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition-property: background-color;
  transition-duration: 240ms;
  transition-timing-function: linear;
}
.axial_toggle_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_toggle_button-label {
  width: auto;
  color: var(--AxialToggleButton___textColor);
  font-weight: var(--AxialToggleButton___fontWeight);
}
.axial_toggle_button-icon {
  position: relative;
  display: block;
}
.axial_toggle_button-icontoggle {
  position: relative;
  display: none;
}
.axial_toggle_button_helper-icon_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
}
/* AxialToggleCheck */
.axial_toggle_check {
  width: -moz-fit-content;
  width: fit-content;
  /*min-width: 42px;*/
  height: 42px;
  min-height: 42px;
  /*padding: 4px;*/
  display: flex;
  flex-direction: row;
  align-items: center;
}
.axial_toggle_check-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: #111;
  margin-right: 12px;
  border: solid 2px #fff;
  flex-shrink: 0;
}
.axial_toggle_check-sign {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #fff;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 200ms;
}
.axial_toggle_check-label {
  color: var(--AxialToggleCheck___textColor);
}
/* AxialToggleRadio */
.axial_toggle_radio {
  width: -moz-fit-content;
  width: fit-content;
  height: 42px;
  min-height: 42px;
  padding: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.axial_toggle_radio-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--black);
  margin-right: 12px;
  border: solid 2px var(--white);
}
.axial_toggle_radio-circle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  transform: scale(0);
  transition-property: transform;
  transition-duration: 200ms;
}
.axial_toggle_radio-label {
  color: var(--AxialToggleRadio___color);
}
/* AxialToggleSwitch */
.axial_toggle_switch {
  width: 46px;
  min-height: 30px;
  height: 30px;
  border-radius: 15px;
  border: 2px solid var(--white);
  padding: 4px;
  background-color: var(--black);
}
.axial_toggle_switch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: relative;
  left: 0px;
  transition-property: left;
  transition-duration: 200ms;
}
/* AxialBurgerButton */
.axial_burger_button {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: var(--component___borderRadius);
  z-index: 1000;
}
.axial_burger_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--AxialBurgerButton___backgroundColor);
}
.axial_burger_button-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.axial_burger_button-line {
  position: absolute;
  width: 26px;
  height: 2px;
  overflow: hidden;
  left: 11px;
  transform-origin: center;
  transition-property: top, transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
  background-color: var(--AxialBurgerButton___lineColor);
}
.axial_burger_button-top {
  top: 13px;
}
.axial_burger_button-middle {
  top: 23px;
}
.axial_burger_button-bottom {
  top: 33px;
}
/* PROBABLY MISS SOMETHING ABOVE */
/* AxialTogglePasswordButton */
.axial_toggle_password_button {
  overflow: hidden;
  position: absolute;
  width: 40px;
  height: 38px;
  top: 2px;
  right: 2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  box-shadow: none;
  fill: #fff;
}
/* AxialTogglePanelButton */
.axial_toggle_panel_button {
  overflow: hidden;
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  box-shadow: none;
  fill: #627183;
}
.axial_toggle_panel_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.axial_toggle_panel_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 218, 218, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: linear;
}
.axial_toggle_panel_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_toggle_panel_button-label {
  width: auto;
  color: #627183;
  font-size: 14px;
  font-weight: 500;
}
/* AxialAdminToggleBarButton */
.axial_admin_toggle_bar_button {
  overflow: hidden;
  position: relative;
  margin-left: 4px;
  margin-right: 4px;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  box-shadow: none;
  fill: #627183;
}
.axial_admin_toggle_bar_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.axial_admin_toggle_bar_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 218, 218, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: linear;
}
.axial_admin_toggle_bar_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_admin_toggle_bar_button-label {
  width: auto;
  color: #627183;
  font-size: 14px;
  font-weight: 500;
}
/* AxialDropdownButton */
.axial_dropdown {
  display: inline-block;
  position: relative;
}
.axial_dropdown-holder {
  position: absolute;
  width: 100%;
  height: 0;
  top: calc(100% + 4px);
  overflow: hidden;
  transition-property: height;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
.axial_dropdown-content {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}
/* AxialDropdownList */
.axial_dropdown_list-group {
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--themeColor);
  background-color: var(--iceWhite);
  width: 100%;
  height: auto;
  bottom: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* AxialDropdownCalendar */
.axial_dropdown_calendar {
  width: 300px;
}
/* AxialDropdownButton */
.axial_dropdown_button {
  position: relative;
  width: 240px;
  min-width: 240px;
}
.axial_dropdown_button-button {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  fill: #fff;
  transition-property: opacity;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.axial_dropdown_button-button_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--AxialToggleButton___backgroundColor);
}
.axial_dropdown_button-button_foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 218, 218, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: linear;
}
.axial_dropdown_button-button_content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_dropdown_button-button_label {
  width: auto;
  color: var(--AxialToggleButton___textColor);
  font-weight: var(--AxialToggleButton___fontWeight);
}
.axial_dropdown_button-button_icon {
  position: relative;
  display: block;
}
.axial_dropdown_button-dropdown {
  position: absolute;
  width: 100%;
  height: 0;
  top: calc(100% + 4px);
  overflow: hidden;
  transition-property: height;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
.axial_dropdown_button-dropdown_group {
  position: absolute;
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--themeColor);
  background-color: var(--iceWhite);
  width: 100%;
  height: auto;
  bottom: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* AxialDropdownToggle */
.axial_dropdown_toggle {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  fill: #627183;
}
.axial_dropdown_toggle-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.axial_dropdown_toggle-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 218, 218, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: linear;
}
.axial_dropdown_toggle-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
}
.axial_dropdown_toggle-label {
  width: auto;
  color: #627183;
  font-weight: 400;
  font-size: 13px;
}
.axial_dropdown_toggle-icon {
  position: relative;
  width: 0;
  height: 18px;
  margin-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-property: width, margin-right;
  transition-duration: 320ms;
  transition-timing-function: ease;
}
.axial_dropdown_toggle-check {
  transform: scale(0);
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-property: transform;
  transition-duration: 320ms;
  transition-timing-function: ease;
}
/* AxialServiceButton */
.axial_service_button {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  /*box-shadow: var(--AxialButton___boxShadow);*/
  fill: #fff;
}
.axial_service_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--themeColor);
  border: 2px solid var(--themeColor);
  border-radius: var(--component___borderRadius);
}
.axial_service_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 218, 218, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: ease;
  border-radius: var(--component___borderRadius);
}
.axial_service_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_service_button-label {
  width: auto;
  color: var(--AxialButton___textColor);
  font-weight: var(--AxialButton___fontWeight);
  font-size: 14px;
}
.axial_service_button-icon {
  position: relative;
  width: 0;
  height: 22px;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition-property: width, margin-right;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.axial_service_button-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-right: 3px solid transparent;
}
@keyframes axialServiceButtonIndicatorAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
/* AxialViewerBase */
.axial_viewer_base {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}
/* AxialViewBase */
.axial_view_base {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
/* AxialViewer */
.axial_viewer {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}
.axial_viewer_holder {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* AxialView */
.axial_view {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
.axial_view_holder {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.axial_loader_layer {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  visibility: hidden;
}
.axial_loader_background {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.axial_loader_content {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_loader_holder {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}
.axial_loader_icon {
  width: 40px;
  height: 40px;
  margin: 20px;
  border-radius: 50%;
  border-top: 5px solid #000;
  border-left: 5px solid #000;
  border-bottom: 5px solid #000;
  border-right: 5px solid transparent;
}
.axial_loader_number {
  width: 100%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.axial_loader_text {
  width: 100%;
  font-weight: 600;
  text-align: center;
}
@keyframes axial_loader_icon_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* NEW SHADOW */
/*
.axial_popup_layer
{
    position: absolute;
    
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    pointer-events: none;
}
*/
.axial_popup_obfuscator {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.73);
  visibility: hidden;
  opacity: 0;
  pointer-events: all;
}
.axial_popup_base {
  position: absolute;
  visibility: hidden;
  pointer-events: all;
}
.axial_popup_arrow {
  position: absolute;
  display: none;
}
/* arrow up */
.axial_popup_base_arrow-bottom {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
/* arrow down */
.axial_popup_base_arrow-top {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* arrow left */
.axial_popup_base_arrow-right {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
}
/* arrow right */
.axial_popup_base_arrow-left {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
}
/* AxialPopupBurger */
.axial_popup_burger {
  width: 300px;
  height: 100%;
  background-color: var(--white);
  padding-top: var(--header___height);
}
.ax-progress-element {
  box-sizing: border-box;
  padding: 0;
  /*overflow: hidden;*/
}
.ax-progress-bar {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  transition-property: width;
  transition-duration: 800ms;
}
.ax-progress-indicator {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  transition-property: left;
  transition-duration: 800ms;
}
/* TOOLTIP NEW 2024 */
.axial_tooltip_base {
  position: absolute;
  visibility: hidden;
  opacity: 1;
  transform: translate(0%, 0%);
  transition-property: none;
  transition-duration: 500ms;
  transition-timing-function: ease;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 1px solid #000;
  background-color: rgba(0, 0, 0, 0.93);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
/* OVERLAY NEW 2024 */
.axial_overlay_base {
  position: absolute;
  visibility: hidden;
  opacity: 1;
  transform: translate(0%, 0%);
  transition-property: none;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
/* AxialConsentOverlay */
.axial_consent_overlay {
  width: 300px;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.83);
  backdrop-filter: blur(10px);
}
.axial_consent_overlay-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.axial_consent_overlay-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.axial_consent_overlay-cookie {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_consent_overlay-title {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.axial_consent_overlay-content {
  color: #fff;
}
.axial_consent_overlay-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
/* experimental */
/* AxialCrossContainer */
.axial_cross_container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_cross_container_element {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_cross_container-center {
  transform: translate(0%, 0%);
}
.axial_cross_container-top {
  transform: translate(0%, -100%);
}
.axial_cross_container-right {
  transform: translate(100%, 0%);
}
.axial_cross_container-bottom {
  transform: translate(0%, 100%);
}
.axial_cross_container-left {
  transform: translate(-100%, 0%);
}
/* AxialRateStars */
.axial_rate_stars {
  width: 200px;
  height: 34px;
}
.axial_rate_stars-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.axial_rate_stars-symbol {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_rate_stars-fill {
  fill: #fff;
}
/* AxialNavigationHelper*/
.axial_navigation_helper {
  height: 100%;
  width: auto;
}
/* Axial3DViewer : to move in a specific css */
.axial_3d_viewer {
  position: relative;
  display: block;
  width: 300px;
  height: 150px;
  min-width: 300px;
  min-height: 150px;
}
.axial_3d_viewer-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.axial_3d_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* AxialAccordionElement */
.axial_accordion_element {
  position: relative;
  width: 100%;
  height: 0;
  min-width: 100px;
  transition-property: height;
  transition-duration: 400ms;
  transition-timing-function: ease;
  overflow: hidden;
}
.axial_accordion_element-content {
  width: 100%;
  height: auto;
  bottom: 0;
}
.axial_accordion_element-slot {
  width: 100%;
  height: auto;
  padding: 10px;
}
/* AxialFlipbookBase */
.axial_flipbook_base {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 300px;
  min-height: 120px;
  overflow: visible;
}
/* AxialFlipbookPageBase */
.axial_flipbook_page_base {
  position: absolute;
  left: 50%;
  width: 50%;
  height: 100%;
  display: none;
  background-color: var(--greyLight);
}
/* AxialToggleCalendarDate */
.axial_toggle_calendar_date {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_toggle_calendar_date-holder {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  overflow: hidden;
}
.axial_toggle_calendar_date-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
}
.axial_toggle_calendar_date-middleground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--themeColor);
  opacity: 0;
}
.axial_toggle_calendar_date-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_toggle_calendar_date-num {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #232323;
}
/* AxialCalendarGrid */
.axial_calendar_grid_base {
  width: 280px;
  height: 240px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  background-color: #fff;
}
/* AxialOverlayCalendar */
.axial_overlay_calendar {
  position: absolute;
  width: 300px;
  height: 340px;
  border-radius: var(--container___borderRadius);
  overflow: hidden;
}
/* AxialCalendar */
.axial_calendar {
  position: relative;
  width: 300px;
  height: 340px;
  border-radius: var(--container___borderRadius);
  overflow: hidden;
}
.axial_calendar-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.axial_calendar-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.axial_calendar-header {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.axial_calendar-label {
  flex-grow: 1;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding-left: 4px;
}
.axial_calendar-nav {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.axial_calendar-days {
  width: 100%;
  height: 40px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 1fr;
  column-gap: 4px;
}
.axial_calendar-day {
  color: #000;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.axial_calendar-dates {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
}
.axial_calendar-date {
  color: #000;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
/* AxialAgenda */
.axial_agenda {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.axial_agenda-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ccc;
}
.axial_agenda-main {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_agenda-header {
  width: 100%;
  height: 40px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
  background-color: #fff;
}
.axial_agenda-days {
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: 40px repeat(7, 1fr);
  grid-template-rows: 60px;
  gap: 0 1px;
  border-bottom: 1px solid #ccc;
  overflow-y: scroll;
}
.axial_agenda-hours {
  grid-column: 1;
  grid-row: 1 / span 24;
  display: flex;
  flex-direction: column;
  background-color: #f00;
}
.axial_agenda-content {
  position: absolute;
  width: 100%;
  top: 100px;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.axial_agenda-grid {
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: 40px repeat(7, 1fr);
  grid-template-rows: repeat(24, 60px);
  gap: 1px 1px;
}
/* AxialAgendaDay */
.axial_agenda_day {
  background-color: #fff;
}
/* AxialAgendaHour */
.axial_agenda_hour {
  background-color: #fff;
}
/* AxialAgendaCell */
.axial_agenda_cell {
  background-color: #fff;
}
/* AxialInfinity */
.axial_infinity {
  position: relative;
  width: 100%;
  height: 100%;
}
.axial_infinity-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  perspective: 200px;
  transform-style: preserve-3d;
}
/* AxialInfinityItem */
.axial_infinity_item {
  position: absolute;
  z-index: 100;
}
.axial_infinity_item-holder {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.23);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 800;
}
/* CHARTS */
/* AxialChartElementBar */
.axial_chart_element_bar {
  position: relative;
  width: 140px;
  height: 100%;
}
.axial_chart_element_bar-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.axial_chart_element_bar-bar {
  min-width: 40px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  overflow: hidden;
  border-radius: 3px;
  background-color: var(--themeColor);
  color: #fff;
  font-weight: 500;
}
.axial_chart_element_bar-label {
  flex-shrink: 0;
  width: 100%;
  height: 30px;
  padding-top: 4px;
  padding-left: 2px;
  padding-right: 2px;
  font-size: 12px;
  overflow: hidden;
  display: block;
  text-align: center;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
/* AxialChart */
.axial_chart {
  position: relative;
  padding: 10px;
  /*
    width: 200px;
    height: 200px;
    */
  min-width: 320px;
  min-height: 300px;
  border-radius: var(--component___borderRadius);
  background-color: #fff;
  box-shadow: 0 1px 1px 0 rgba(118, 135, 154, 0.24), 0 3px 8px 0 rgba(118, 135, 154, 0.08);
  display: flex;
  flex-direction: column;
}
.axial_chart-container {
  flex-grow: 1;
  position: relative;
  width: 100%;
  height: 100%;
}
.axial_chart-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.axial_chart-header {
  width: 100%;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.axial_chart-title {
  font-weight: 400;
  flex-grow: 1;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
.axial_chart-action {
  flex-shrink: 0;
  font-weight: 800;
}
.axial_chart-main {
  position: relative;
  width: 100%;
  flex-grow: 1;
}
.axial_chart-area {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_chart-area_row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.axial_chart-area_column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* AxialChartAverageTime */
.axial_chart_average_time-area {
  font-size: 40px;
  font-weight: 800;
}
/* framework responsiveness*/
@media screen and (min-width: 768px) {
  .axial_form_utils_grid {
    display: grid;
  }
}
@media screen and (min-width: 992px) {
  .axial_header_nav {
    display: flex;
  }
  /* AxialBurgerButton */
  .axial_burger_button {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    /* header */
    --header___paddingH: 4%;
    --header___paddingV: 10px;
    /* header nav item */
    --headerNavItem___fontSize: 20px;
    /* footer */
    --footer___paddingH: 4%;
    --footer___paddingV: 0px;
    --footer___sectionDirection: row;
    /* sections */
    --section___paddingH: 4%;
    --section___paddingV: 40px;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    /* header */
    --header___paddingH: 4%;
    --header___paddingV: 10px;
    /* header nav item */
    --headerNavItem___fontSize: 21px;
    /* footer */
    --footer___paddingH: 4%;
    --footer___paddingV: 0px;
    --footer___sectionDirection: row;
    /* sections */
    --section___paddingH: 4%;
    --section___paddingV: 40px;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    /* header */
    --header___paddingH: 10%;
    --header___paddingV: 10px;
    /* header nav item */
    --headerNavItem___fontSize: 23px;
    /* footer */
    --footer___paddingH: 10%;
    --footer___paddingV: 0px;
    --footer___sectionDirection: row;
    /* sections */
    --section___paddingH: 10%;
    --section___paddingV: 40px;
  }
}
/* global project styles */
/* supervision */
:root {
  --svcomp___formLabelColor: #000;
  --svcomp___formInputColor: #fefff6;
  --svcomp___formBackgroundColor: #000;
  --svcomp___formBorderColor: #000;
  --svcomp___formInputColorFocus: #000;
  --svcomp___formBackgroundColorFocus: #fefff6;
}
/* SuperVisionKontaktForm */
.supervision_kontakt_form {
  display: block;
  min-width: 280px;
  width: 100%;
  height: auto;
  padding: 0px;
}
.supervision_kontakt_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  font-family: var(--sv___headingFont);
  font-weight: var(--sv___headingFontWeight);
  color: var(--svcomp___formLabelColor);
}
.supervision_kontakt_form-item {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.supervision_kontakt_form-label {
  width: 100%;
  font-size: 16px;
  line-height: 14px;
}
.supervision_kontakt_form-comp {
  width: 100%;
  margin-top: 6px;
  margin-left: 0px;
}
.supervision_kontakt_form-input {
  width: 100%;
  min-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 2px;
  background-color: var(--svcomp___formBackgroundColor);
  color: var(--svcomp___formInputColor);
  -webkit-text-fill-color: var(--svcomp___formInputColor);
  text-fill-color: var(--svcomp___formInputColor);
  border-radius: 0;
  border: solid 2px var(--svcomp___formBorderColor);
  outline: none;
  font-family: var(--sv___headingFont);
  font-weight: 700;
}
.supervision_kontakt_form-input:is(:-webkit-autofill, :autofill) {
  background-color: var(--svcomp___formBackgroundColor);
  color: var(--svcomp___formInputColor);
  border: solid 2px var(--svcomp___formBorderColor);
  box-shadow: 0 0 0 50px #000 inset;
}
.supervision_kontakt_form-input:focus {
  color: var(--svcomp___formInputColorFocus);
  -webkit-text-fill-color: var(--svcomp___formInputColorFocus);
  text-fill-color: var(--svcomp___formInputColor);
  border: solid 2px var(--svcomp___formBorderColor);
  background-color: var(--svcomp___formBackgroundColorFocus);
  box-shadow: 0 0 0 50px #fefff6 inset;
}
.supervision_kontakt_form-area {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 10px;
  background-color: var(--svcomp___formBackgroundColor);
  color: var(--svcomp___formInputColor);
  resize: none;
  border-radius: 0;
  border: solid 2px var(--svcomp___formBorderColor);
  outline: none;
  font-family: var(--sv___headingFont);
  font-weight: 700;
}
.supervision_kontakt_form-area:focus {
  color: var(--svcomp___formInputColorFocus);
  border: solid 2px var(--svcomp___formBorderColor);
  background-color: var(--svcomp___formBackgroundColorFocus);
}
.supervision_kontakt_form-button {
  align-self: flex-end;
  width: 96px;
  text-align: right;
  margin-top: 10px;
  color: #fff;
  background-color: #000;
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* SupervisionInfinityItem */
.supervision_infinity_item {
  cursor: default;
}
.supervision_infinity_item-holder {
  filter: blur(0);
  transition-property: filter;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
/* should be in main/page.less */
.sv_infinity_item-holder {
  filter: blur(0);
  transition-property: filter;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
.sv_infinity_item_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sv_infinity_item_media {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateY(0%);
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.sv_infinity_item_title {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 23px;
  line-height: 26px;
  letter-spacing: 1px;
  color: #000;
  transform: translateY(101%);
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.sv_infinity_item_area {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  cursor: pointer;
}
/* local page styles */
:root {
  /* GLOBAL CONSTANTS */
  --sv___menuColor: #fefff6;
  --sv___menuBackground: #000;
  --sv___menuFontSize: 18px;
  --svp___bodyBackgroundColor: #fefff6;
  --svp___bodyColor: #120716;
  --svp___bodyCornerMargin: 30px;
  /* GLOBAL VARIABLES */
  --sv___subpageTitleFontSize: 20px;
  --sv___subpageTitleLineHeight: 22px;
  --sv___scrollFontSize: 14px;
  --sv___scrollHeight: 34px;
  --sv___scrollTextDisplayMini: flex;
  --sv___scrollTextDisplayNormal: none;
  /* SUBPAGE 3D */
  --sv___3d___mainRowDirection: column;
  --sv___3d___gwVideoTransform: scale(1.2);
  --sv___3d___gwVideoTransformOrigin: top center;
  --sv___3d___columnMarginTop_1: 0px;
  --sv___3d___columnWidth_1: 100%;
  --sv___3d___columnWidth_2: 100%;
  --sv___3d___itemWidth_gw: 100%;
  --sv___3d___itemHeight_gw: auto;
  --sv___3d___itemWidth_burger: 100%;
  --sv___3d___itemHeight_burger: auto;
  --sv___3d___overflowY: auto;
  /* SUBPAGE WEB */
  --sv___web___display: flex;
  --sv___web___overflow: auto;
  --sv___web___gap: 6px;
  --sv___web___itemHeight: auto;
  /* 100%*/
  /* SUBPAGE STUFF */
  /*
    --sv___stuff___logoWidth_1: 90%;
    --sv___stuff___logoHeight_1: auto;

    --sv___stuff___logoWidth_2: 90%;
    --sv___stuff___logoHeight_2: auto;
    */
  --sv___stuff___logoWidth_1: 100%;
  --sv___stuff___logoHeight_1: 100%;
  --sv___stuff___logoWidth_2: 100%;
  --sv___stuff___logoHeight_2: 100%;
  /* SUBPAGE PRINT */
  --sv___print___landscapeDisplay: none;
  /* item */
  --sv___print___justify: center;
  --sv___print___rowMargin: 20px;
  --sv___print___posterHeight: 120px;
  /*200*/
  --sv___print___shirtHeight: 110px;
  /*190*/
  --sv___print___charPosition: static;
  --sv___print___charTransform: none;
  --sv___print___charFontSize: 26px;
  --sv___print___charLineHeight: 26px;
  --sv___print___charLeft: unset;
  /*38*/
  --sv___print___charBottom: unset;
  /*44*/
  /* SUBPAGE BRANDING */
  --sv___branding___overflow: auto;
  --sv___branding___mainDirection: column;
  --sv___branding___brandingGlwWidth: 100%;
  --sv___branding___brandingGlwHeight: auto;
  --sv___branding___middleWidth: 100%;
  --sv___branding___middleHeight: auto;
  --sv___branding___middleTopHeight: 200px;
  --sv___branding___middleBottomDirection: column;
  --sv___branding___middleBottomHeight: auto;
  --sv___branding___apollonDirection: row;
  --sv___branding___apollonImageWidth: 100%;
  /*380px*/
  --sv___branding___apollonImageHeight: 100%;
  /*100%*/
  --sv___branding___apollonLogoAllWidth: 100%;
  --sv___branding___apollonLogoAllHeight: 108px;
  --sv___branding___apollonLogoWidth: 50%;
  --sv___branding___apollonLogoHeight: auto;
  --sv___branding___kgoWidth: 100%;
  --sv___branding___kgoHeight: auto;
  --sv___branding___lastWidth: 100%;
  --sv___branding___lastHeight: auto;
  --sv___branding___shirtHeight: 400px;
}
body {
  background-color: var(--svp___bodyBackgroundColor);
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.8px;
  overflow: hidden;
}
.axial_main_layer {
  height: 100svh;
  min-height: 100svh;
}
.axial_main {
  height: 100svh;
  min-height: 100svh;
}
.sv_loader_holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sv_loader_image {
  width: 90%;
  height: auto;
}
.sv_icon_map {
  position: absolute;
  top: -423px;
  left: -567px;
}
.corner_top_left {
  position: absolute;
  top: var(--svp___bodyCornerMargin);
  left: var(--svp___bodyCornerMargin);
  transform-origin: top left;
  transform: scale(0.5);
}
.corner_top_right {
  position: absolute;
  top: var(--svp___bodyCornerMargin);
  right: var(--svp___bodyCornerMargin);
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.corner_socials {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.corner_social_item {
  width: 22px;
  height: 22px;
  background-color: #000;
  fill: #fefff6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.corner_social_item_icon {
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.corner_bottom_left {
  position: absolute;
  bottom: var(--svp___bodyCornerMargin);
  left: var(--svp___bodyCornerMargin);
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: ease-in;
}
.corner_bottom_left_contact {
  font-size: 22px;
  cursor: pointer;
}
.corner_bottom_left_row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.corner_bottom_left_privacy {
  font-weight: 500;
  font-size: 6px;
  letter-spacing: unset;
  padding-left: 0.8px;
  color: #000;
}
.corner_bottom_left_privacy:visited {
  color: #000;
}
.corner_bottom_left_legal {
  font-weight: 500;
  font-size: 6px;
  letter-spacing: unset;
  color: #000;
}
.corner_bottom_left_legal:visited {
  color: #000;
}
.corner_bottom_right {
  position: absolute;
  bottom: var(--svp___bodyCornerMargin);
  right: var(--svp___bodyCornerMargin);
  width: auto;
  height: var(--sv___scrollHeight);
  overflow: hidden;
}
.corner_bottom_right_holder {
  height: var(--sv___scrollHeight);
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 500ms;
}
.corner_bottom_right_text_mini {
  display: var(--sv___scrollTextDisplayMini);
  height: var(--sv___scrollHeight);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.corner_bottom_right_text_normal {
  display: var(--sv___scrollTextDisplayNormal);
  height: var(--sv___scrollHeight);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  background-color: #000;
  color: #fff;
}
.corner_bottom_right_text {
  font-size: var(--sv___scrollFontSize);
  width: auto;
  height: var(--sv___scrollHeight);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  background-color: #000;
  color: #fff;
}
.back_button {
  height: var(--sv___scrollHeight);
  flex-shrink: 0;
  cursor: pointer;
}
/* SUBPAGE */
.sv_subpage {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.sv_subpage_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-left: var(--svp___bodyCornerMargin);
  padding-right: var(--svp___bodyCornerMargin);
  padding-top: 90px;
  padding-bottom: 90px;
  perspective: 400px;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.sv_subpage_title {
  font-size: var(--sv___subpageTitleFontSize);
  line-height: var(--sv___subpageTitleLineHeight);
  color: #000;
  transform: translateZ(200px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-delay: 500ms;
  transition-duration: 1000ms;
  transition-timing-function: ease-out;
}
.axial_tz {
  transform: translateZ(200px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-delay: 500ms;
  transition-duration: 1000ms;
  transition-timing-function: ease-out;
}
.sv_subpage_content {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 400px;
  transform-style: preserve-3d;
}
.janis {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  visibility: hidden;
}
/* SUBPAGE 3D */
.sv_subpage_content-3d {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  perspective: 800px;
  overflow-x: hidden;
  overflow-y: var(--sv___3d___overflowY);
}
.d3_holder {
  width: 100%;
  height: 100%;
  perspective: 800px;
}
.d3_row {
  display: flex;
  flex-direction: var(--sv___3d___mainRowDirection);
}
.d3_row_main {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  perspective: 800px;
  gap: 10px;
}
.d3_column {
  display: flex;
  flex-direction: column;
  perspective: 400px;
}
.d3_column-1 {
  margin-top: var(--sv___3d___columnMarginTop_1);
  width: var(--sv___3d___columnWidth_1);
  height: 100%;
  justify-content: space-between;
  gap: 10px;
}
.d3_column-2 {
  width: var(--sv___3d___columnWidth_2);
  height: 100%;
  justify-content: space-between;
}
.d3_item {
  background-color: transparent;
}
.d3_item_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d3_item_video_test {
  background-color: transparent;
}
.d3_item-gw {
  width: var(--sv___3d___itemWidth_gw);
  height: var(--sv___3d___itemHeight_gw);
  display: none;
}
.d3_item_video-gw {
  object-fit: contain;
  transform: var(--sv___3d___gwVideoTransform);
  transform-origin: var(--sv___3d___gwVideoTransformOrigin);
}
.d3_item-ghost {
  width: var(--sv___3d___itemWidth_gw);
  height: var(--sv___3d___itemHeight_gw);
  display: block;
}
.d3_item-burger {
  width: var(--sv___3d___itemWidth_burger);
  height: 100%;
  /*background-color: #ccc;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.d3_item_image {
  width: 100%;
}
.d3_item-recondite {
  width: 100%;
  height: auto;
}
.d3_item-apollon {
  width: 100%;
  height: auto;
}
/* SUBPAGE WEB */
.sv_subpage_content-web {
  position: absolute;
  width: 100%;
  height: 100%;
  perspective: 800px;
  display: var(--sv___web___display);
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr 1fr 190px;
  gap: var(--sv___web___gap);
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: var(--sv___web___overflow);
  visibility: hidden;
}
.sv_subpage_web_item {
  background-color: #000;
  flex-shrink: 0;
  position: relative;
}
.sv_subpage_web_item-1 {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: var(--sv___web___itemHeight);
  background-color: transparent;
}
.sv_subpage_web_item-2 {
  grid-row: 1;
  grid-column: 2;
  width: 100%;
  height: var(--sv___web___itemHeight);
  background-color: transparent;
}
.sv_subpage_web_item-3 {
  grid-row: 1;
  grid-column: 3;
  width: 100%;
  height: var(--sv___web___itemHeight);
  background-color: transparent;
}
.sv_subpage_web_item-4 {
  grid-row: 1;
  grid-column: 4;
  width: 100%;
  height: 100%;
}
.sv_subpage_web_items_infos {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.sv_subpage_web_items_infos-title {
  color: #fefff6;
  flex-grow: 1;
  text-align: right;
}
.sv_subpage_web_items_infos-text {
  color: #fefff6;
  flex-shrink: 0;
  text-align: left;
}
.sv_subpage_web_video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv_subpage_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* SUBPAGE PRINT */
.sv_subpage_content-print {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
}
.print_row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: var(--sv___print___justify);
  perspective: 600px;
}
.print_row_posters {
  display: none;
  height: var(--sv___print___posterHeight);
  margin-left: var(--sv___print___rowMargin);
}
.print_row_shirts {
  display: none;
  height: var(--sv___print___shirtHeight);
  margin-left: var(--sv___print___rowMargin);
}
.print_portrait {
  display: block;
  width: 100%;
  flex-grow: 1;
  padding-bottom: 20px;
}
.print_poster {
  display: block;
  height: 100%;
  width: auto;
}
.print_poster_landscape {
  display: var(--sv___print___landscapeDisplay);
}
.print_shirt {
  display: block;
  height: 100%;
  width: auto;
}
.print_shirt_landscape {
  display: var(--sv___print___landscapeDisplay);
}
.print_char {
  font-weight: 900;
  letter-spacing: 0;
  font-size: var(--sv___print___charFontSize);
  line-height: var(--sv___print___charLineHeight);
}
.print_row_char {
  position: var(--sv___print___charPosition);
  transform-origin: left bottom;
  transform: var(--sv___print___charTransform);
  left: var(--sv___print___charLeft);
  bottom: var(--sv___print___charBottom);
}
/* SUBPAGE BRANDING */
.sv_subpage_content-branding {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: var(--sv___branding___mainDirection);
  justify-content: space-between;
  gap: 20px;
  visibility: hidden;
  perspective: 800px;
  overflow-y: var(--sv___branding___overflow);
  overflow-x: hidden;
}
.branding_glw {
  width: var(--sv___branding___brandingGlwWidth);
  height: 100%;
  object-fit: cover;
}
.branding_middle {
  width: var(--sv___branding___middleWidth);
  height: var(--sv___branding___middleHeight);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.branding_middle_top {
  width: 100%;
  height: var(--sv___branding___middleTopHeight);
  display: flex;
  flex-direction: row;
  gap: 20px;
  perspective: 800px;
}
.branding_bottle {
  position: relative;
  flex-shrink: 0;
  width: 20%;
  height: 100%;
  overflow: hidden;
}
.branding_bottle_webp {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}
.branding_eden {
  display: block;
  flex-grow: 1;
  height: 100%;
  object-fit: cover;
}
.branding_middle_bottom {
  width: 100%;
  height: var(--sv___branding___middleBottomHeight);
  display: flex;
  flex-direction: var(--sv___branding___middleBottomDirection);
  gap: 20px;
  perspective: 800px;
}
.branding_apollon {
  height: var(--sv___branding___apollonImageHeight);
  width: var(--sv___branding___apollonImageWidth);
  object-fit: cover;
}
.branding_apollon_logos {
  height: var(--sv___branding___apollonLogoAllHeight);
  width: var(--sv___branding___apollonLogoAllWidth);
  display: flex;
  flex-direction: var(--sv___branding___apollonDirection);
  justify-content: space-between;
}
.branding_apollon_logo_solo {
  display: block;
  width: var(--sv___branding___apollonLogoWidth);
  height: var(--sv___branding___apollonLogoHeight);
  object-fit: contain;
}
.branding_kgo {
  width: var(--sv___branding___kgoWidth);
  height: var(--sv___branding___kgoHeight);
  object-fit: cover;
}
.branding_last {
  width: var(--sv___branding___lastWidth);
  height: var(--sv___branding___lastHeight);
  display: flex;
  flex-direction: column;
  gap: 20px;
  perspective: 800px;
}
.branding_shirts_holder {
  position: relative;
  width: 100%;
  height: var(--sv___branding___shirtHeight);
}
.branding_shirt {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.branding_shirt_none {
  display: none;
}
.branding_medal {
  display: flex;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.branding_rhenania {
  display: flex;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* SUBPAGE STUFF */
.sv_subpage_content-stuff {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.stuff_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stuff_logo {
  display: block;
  height: var(--sv___stuff___logoHeight_1);
  width: var(--sv___stuff___logoWidth_1);
  object-fit: contain;
}
.stuff_logo_2 {
  display: block;
  height: var(--sv___stuff___logoHeight_2);
  width: var(--sv___stuff___logoWidth_2);
  object-fit: contain;
}
.stuff_logo_none {
  display: none;
}
/* social */
.sv_subpage_content-social {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  perspective: 400px;
}
.sv_subpage_content-social_info {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fefff6;
  font-size: 24px;
  text-align: center;
}
/* kontakt */
.sv_subpage_content-kontakt {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  perspective: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}
.sv_subpage_content-kontakt_holder {
  display: block;
  /*
    overflow-x: hidden;
    overflow-y: auto;
    */
}
/* INFINITY */
.infinity_test {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sv_infinity_item {
  cursor: default;
}
.sv_infinity_item-holder {
  filter: blur(0);
  transition-property: filter;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
.sv_infinity_item_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sv_infinity_item_media {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateY(0%);
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.sv_infinity_item_title {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 23px;
  line-height: 26px;
  letter-spacing: 1px;
  color: #000;
  transform: translateY(101%);
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.sv_infinity_item_area {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  cursor: pointer;
}
.image_item {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.test_apollon {
  filter: invert(1);
}
.video_item_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video_item {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* specific item cases */
.item_kgo {
  padding: 30px;
}
.item_print {
  padding: 20px;
}
.item_textil {
  transform: scale(1.5);
}
.item_logos {
  transform: scale(2.7);
}
.item_svvideos {
  transform: scale(1.8);
}
.item_webdesign {
  padding: 10px;
}
.item_face {
  padding: 10px;
}
/* menu */
.menu_holder {
  position: absolute;
  width: auto;
  height: auto;
  top: var(--svp___bodyCornerMargin);
  right: var(--svp___bodyCornerMargin);
  transform: translateX(0);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: ease-in;
}
.menu_item {
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 4px;
  cursor: pointer;
  font-size: var(--sv___menuFontSize);
  color: var(--sv___menuColor);
  background-color: var(--sv___menuBackground);
}
.axial_preload {
  color: #000;
}
@media screen and (min-width: 390px) {
  :root {
    /* GLOBAL CONSTANTS */
    --sv___menuColor: #fefff6;
    --sv___menuBackground: #000;
    --svp___bodyBackgroundColor: #fefff6;
    --svp___bodyColor: #120716;
    --svp___bodyCornerMargin: 30px;
    /* GLOBAL VARIABLES */
    --sv___subpageTitleFontSize: 20px;
    --sv___subpageTitleLineHeight: 22px;
    --sv___scrollFontSize: 14px;
    --sv___scrollHeight: 18px;
    --sv___scrollTextDisplayMini: none;
    --sv___scrollTextDisplayNormal: flex;
    /* SUBPAGE 3D */
    --sv___3d___mainRowDirection: column;
    --sv___3d___gwVideoTransform: scale(1.2);
    --sv___3d___gwVideoTransformOrigin: top center;
    --sv___3d___columnMarginTop_1: 0px;
    --sv___3d___columnWidth_1: 100%;
    --sv___3d___columnWidth_2: 100%;
    --sv___3d___itemWidth_gw: 100%;
    --sv___3d___itemHeight_gw: auto;
    --sv___3d___itemWidth_burger: 100%;
    --sv___3d___overflowY: auto;
    /* SUBPAGE WEB */
    --sv___web___display: flex;
    --sv___web___overflow: auto;
    --sv___web___gap: 10px;
    --sv___web___itemHeight: auto;
    /* 100%*/
    /* SUBPAGE STUFF */
    /*
        --sv___stuff___logoWidth_1: 90%;
        --sv___stuff___logoHeight_1: auto;

        --sv___stuff___logoWidth_2: 90%;
        --sv___stuff___logoHeight_2: auto;
        */
    --sv___stuff___logoWidth_1: 80%;
    --sv___stuff___logoHeight_1: 80%;
    --sv___stuff___logoWidth_2: 80%;
    --sv___stuff___logoHeight_2: 80%;
    /* SUBPAGE PRINT */
    --sv___print___landscapeDisplay: none;
    /* item */
    --sv___print___justify: center;
    --sv___print___rowMargin: 20px;
    --sv___print___posterHeight: 200px;
    /*200*/
    --sv___print___shirtHeight: 190px;
    /*190*/
    --sv___print___charPosition: static;
    --sv___print___charTransform: none;
    --sv___print___charFontSize: 34px;
    --sv___print___charLineHeight: 34px;
    --sv___print___charLeft: unset;
    /*38*/
    --sv___print___charBottom: unset;
    /*44*/
    /* SUBPAGE BRANDING */
    --sv___branding___overflow: auto;
    --sv___branding___mainDirection: column;
    --sv___branding___brandingGlwWidth: 100%;
    --sv___branding___brandingGlwHeight: auto;
    --sv___branding___middleWidth: 100%;
    --sv___branding___middleHeight: auto;
    --sv___branding___middleTopHeight: 200px;
    --sv___branding___middleBottomDirection: column;
    --sv___branding___middleBottomHeight: auto;
    --sv___branding___apollonDirection: row;
    --sv___branding___apollonImageWidth: 100%;
    /*380px*/
    --sv___branding___apollonImageHeight: 100%;
    /*100%*/
    --sv___branding___apollonLogoAllWidth: 100%;
    --sv___branding___apollonLogoAllHeight: 108px;
    --sv___branding___apollonLogoWidth: 50%;
    --sv___branding___apollonLogoHeight: auto;
    --sv___branding___kgoWidth: 100%;
    --sv___branding___kgoHeight: auto;
    --sv___branding___lastWidth: 100%;
    --sv___branding___lastHeight: auto;
    --sv___branding___shirtHeight: 400px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    /* GLOBAL VARIABLES */
    --sv___subpageTitleFontSize: 22px;
    --sv___subpageTitleLineHeight: 24px;
    --sv___scrollFontSize: 22px;
    --sv___scrollHeight: 26px;
    --sv___scrollTextDisplayMini: none;
    --sv___scrollTextDisplayNormal: flex;
    /* SUBPAGE 3D */
    --sv___3d___mainRowDirection: row;
    --sv___3d___gwVideoTransform: scale(1.2);
    --sv___3d___gwVideoTransformOrigin: center center;
    --sv___3d___columnMarginTop_1: 0;
    --sv___3d___columnWidth_1: 36%;
    --sv___3d___columnWidth_2: 12%;
    --sv___3d___itemWidth_gw: 21%;
    --sv___3d___itemHeight_gw: 100%;
    --sv___3d___itemWidth_burger: 25%;
    --sv___3d___itemHeight_burger: 100%;
    --sv___3d___overflowY: hidden;
    /* SUBPAGE WEB */
    --sv___web___display: grid;
    --sv___web___overflow: hidden;
    --sv___web___gap: 26px;
    --sv___web___itemHeight: 100%;
    /* SUBPAGE STUFF */
    --sv___stuff___logoWidth_1: auto;
    --sv___stuff___logoHeight_1: 280px;
    --sv___stuff___logoWidth_2: auto;
    --sv___stuff___logoHeight_2: 220px;
    /* SUBPAGE PRINT */
    --sv___print___landscapeDisplay: block;
    --sv___print___justify: space-between;
    --sv___print___rowMargin: 0;
    --sv___print___posterHeight: 173px;
    --sv___print___shirtHeight: 158px;
    --sv___print___charPosition: static;
    --sv___print___charTransform: unset;
    --sv___print___charFontSize: 110px;
    --sv___print___charLineHeight: 100px;
    --sv___print___charLeft: unset;
    /*38*/
    --sv___print___charBottom: unset;
    /*44*/
    /* SUBPAGE BRANDING */
    --sv___branding___overflow: hidden;
    --sv___branding___mainDirection: row;
    --sv___branding___brandingGlwWidth: 380px;
    --sv___branding___brandingGlwHeight: 100%;
    --sv___branding___middleWidth: 500px;
    --sv___branding___middleHeight: 100%;
    --sv___branding___middleTopHeight: 46%;
    /*352px*/
    --sv___branding___middleBottomDirection: row;
    --sv___branding___middleBottomHeight: calc(54% - 20px);
    /*310px*/
    --sv___branding___apollonDirection: column;
    --sv___branding___apollonImageWidth: 380px;
    --sv___branding___apollonImageHeight: 100%;
    --sv___branding___apollonLogoAllWidth: 150px;
    --sv___branding___apollonLogoAllHeight: 100%;
    --sv___branding___apollonLogoWidth: 100%;
    --sv___branding___apollonLogoHeight: auto;
    --sv___branding___kgoWidth: 380px;
    --sv___branding___kgoHeight: 100%;
    --sv___branding___lastWidth: 250px;
    --sv___branding___lastHeight: 100%;
    --sv___branding___shirtHeight: 50%;
  }
  .d3_item-gw {
    display: block;
  }
  .d3_item-ghost {
    display: none;
  }
  .print_row_shirts {
    display: flex;
  }
  .print_row_posters {
    display: flex;
  }
  .print_portrait {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    /*
        --sv___print___posterHeight: 200px;
        --sv___print___shirtHeight: 190px;
        */
    --sv___print___charFontSize: 130px;
    --sv___print___charLineHeight: 116px;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --sv___print___posterHeight: 238px;
    --sv___print___shirtHeight: 225px;
    --sv___print___charFontSize: 155px;
    --sv___print___charLineHeight: 128px;
    --sv___branding___middleTopHeight: 352px;
    --sv___branding___middleBottomDirection: row;
    --sv___branding___middleBottomHeight: 310px;
  }
}
