@charset "utf-8";
/* global fonts*/
@font-face {
  font-family: "Magnetik";
  src: url("./fonts/Magnetik-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Magnetik";
  src: url("./fonts/Magnetik-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Magnetik";
  src: url("./fonts/Magnetik-Bold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-ExtraLightItalic.ttf");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
/* axial variables*/
/* FRAMEWORK VARIABLES */
:root {
  /* colors */
  --white: #fff;
  --whiteLight: #f8f9fb;
  --black: #000;
  --blackLight: #111;
  --greyLight: #f2f3f4;
  --greyDark: #232323;
  --themeColor: #0463b1;
  /* body */
  --body___mainFont: "Magnetik", sans-serif;
  --body___backgroundColor: var(--white);
  --body___textColor: var(--blackLight);
  /* header */
  --header___height: 80px;
  --header___paddingH: 20px;
  --header___paddingV: 10px;
  --header___backgroundColor: #32342F;
  --header___color: var(--white);
  --headerTitle___fontSize: 36px;
  --headerTitle___fontWeight: 700;
  /* header logo */
  --headerLogo___height: 60px;
  /* 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(--blackLight);
  /* main */
  --main___backgroundColor: var(--whiteLight);
  --main___color: var(--blackLight);
  /* 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%;
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--body___mainFont);
  font-weight: 500;
  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);
  font-weight: 600;
}
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: var(--black);
}
/* 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;
  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;
}
.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;
}
/* 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;
}
/* 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;
}
/* 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 */
/* local page styles */
:root {
  --svs___bgPosition: 72% center;
  --svs___mainTop: 68px;
  --svs___mainLeft: 24px;
  --svs___mainRight: unset;
  --svs___mainWidth: 194px;
  --svs___actionTop: unset;
  --svs___actionRight: 7px;
  --svs___actionBottom: 36px;
  --svs___svgTopHeight: 98%;
  --svs___svgBottomHeight: 66%;
  --svs___svgTopWidth: 78%;
  --svs___svgBottomWidth: 78%;
  --svs___svgTransform: scale(0.98);
  --svs___copyrightDisplay: none;
  --svs___legalCopyrightDisplay: block;
  --svs___titleFontSize: 25px;
  --svs___titleLineHeight: 26px;
  --svs___titleLetterSpacing: 2.4px;
  --svs___baselineFontSize: 14px;
  --svs___actionFontSize: 20px;
  --svs___actionFontColor: #000;
  --svs___actionFontWeight: 500;
  --svs___actionLetterSpacing: 2px;
  --svs___actionDividerWidth: 2.4px;
  --svs___actionDividerHeight: 15px;
  --svs___actionDividerGap: 6px;
  /* legal */
  --svs___legalFontSize: 8px;
  --svs___legalFontWeight: 500;
  --svs___legalLetterSpacing: 0.4px;
  --svs___legalDividerWidth: 1px;
  --svs___legalDividerheight: 6px;
  --svs___legalGap: 3px;
  --svs___legalAlign: flex-start;
  --svs___legalLeft: 24px;
  --svs___legalRight: 16px;
  --svs___addressFontColor: #000;
  --svs___addressFontSize: 13px;
  --svs___addressFontWeight: 500;
  --svs___addressLetterSpacing: 1px;
  /* overlays */
  --svs___overlayWidth: 80%;
  --svs___overlayPadding: 0;
}
.svs_bg {
  position: absolute;
  width: 100%;
  height: 100svh;
  background-repeat: no-repeat;
  background-position: var(--svs___bgPosition);
  background-size: cover;
  background-image: url("./assets/svs-background.webp");
}
.svs_section {
  position: absolute;
  width: 100%;
  height: 100svh;
}
.svs_svgs {
  position: absolute;
  width: 100%;
  height: 100svh;
}
.svs_svg_top {
  position: absolute;
  width: 1263px;
  height: 516px;
  /*
    height: var(--svs___svgTopHeight);
    width: var(--svs___svgTopWidth);
    /*
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    */
}
.svs_svg_bottom {
  position: absolute;
  width: 1350px;
  height: 738px;
}
.svs_svg_inner {
  height: 100%;
}
.svs_svg_inner_top {
  margin-top: auto;
  transform: scale(1);
  /*transform-origin: left;*/
}
.svs_svg_inner_bottom {
  margin-bottom: auto;
  transform: scale(1);
  /*transform-origin: left;*/
}
.svs_content {
  position: absolute;
  width: 100%;
  height: 100%;
}
.svs_copyright {
  position: absolute;
  display: var(--svs___copyrightDisplay);
  left: 20px;
  bottom: 100px;
  color: #000;
  transform-origin: left top;
  transform: rotate(-90deg);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 800;
}
.svs_main {
  position: absolute;
  width: var(--svs___mainWidth);
  top: var(--svs___mainTop);
  left: var(--svs___mainLeft);
  right: var(--svs___mainRight);
  text-align: right;
}
.svs_title {
  color: #fff;
  font-size: var(--svs___titleFontSize);
  line-height: var(--svs___titleLineHeight);
  letter-spacing: var(--svs___titleLetterSpacing);
}
.svs_baseline {
  font-size: var(--svs___baselineFontSize);
  font-weight: 300;
  color: #fff;
  /*letter-spacing: 2px;*/
  padding-right: 4px;
  margin-top: 3px;
}
.svs_actions {
  position: absolute;
  top: var(--svs___actionTop);
  right: var(--svs___actionRight);
  bottom: var(--svs___actionBottom);
  display: flex;
  flex-direction: column;
  /*
    justify-content: flex-end;
    align-items: center;
    gap: var(--svs___actionDividerGap);
    */
}
.svs_actions_row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: var(--svs___actionDividerGap);
}
.svs_action_link {
  color: var(--svs___actionFontColor);
  font-size: var(--svs___actionFontSize);
  font-weight: var(--svs___actionFontWeight);
  letter-spacing: var(--svs___actionLetterSpacing);
  text-decoration: underline;
}
.svs_adress {
  text-align: right;
  color: var(--svs___addressFontColor);
  font-size: var(--svs___addressFontSize);
  font-weight: var(--svs___addressFontWeight);
  letter-spacing: var(--svs___addressLetterSpacing);
}
.svs_action_link:visited {
  color: var(--svs___actionFontColor);
  font-size: var(--svs___actionFontSize);
  text-decoration: underline;
}
.svs_action_divider {
  width: var(--svs___actionDividerWidth);
  height: var(--svs___actionDividerHeight);
  background-color: var(--svs___actionFontColor);
}
.svs_legals {
  position: absolute;
  right: 20px;
  left: 20px;
  bottom: 16px;
  display: flex;
  flex-direction: row;
  justify-content: var(--svs___legalAlign);
  align-items: center;
  gap: var(--svs___legalGap);
}
.svs_legal_link {
  font-size: var(--svs___legalFontSize);
  letter-spacing: var(--svs___legalLetterSpacing);
  font-weight: var(--svs___legalFontWeight);
  color: #000;
}
.svs_legal_link_copyright {
  display: var(--svs___legalCopyrightDisplay);
}
.svs_legal_divider {
  width: var(--svs___legalDividerWidth);
  height: var(--svs___legalDividerheight);
  background-color: #000;
}
.svs_legal_divider_copyright {
  display: var(--svs___legalCopyrightDisplay);
}
.svs_overlay_holder {
  width: 300px;
  height: auto;
  padding: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.93);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.svs_overlay_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.svs_overlay_text {
  z-index: 2;
  width: var(--svs___overlayWidth);
  padding-left: var(--svs___overlayPadding);
  color: #fff;
  font-size: 24px;
}
.svs_overlay_closer {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.svs_overlay_musik {
  width: 268px;
}
.svs_overlay_marken {
  width: 211px;
}
.svs_overlay_rights {
  width: 189px;
}
.svs_underline {
  text-decoration: underline;
  cursor: pointer;
}
.janis {
  display: none;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
@media screen and (min-width: 390px) {
  :root {
    --svs___bgPosition: 72% center;
    --svs___mainTop: 118px;
    --svs___mainLeft: 20px;
    --svs___mainRight: unset;
    --svs___mainWidth: 190px;
    --svs___actionTop: unset;
    --svs___actionRight: 7px;
    --svs___actionBottom: 36px;
    --svs___svgTopHeight: 98%;
    --svs___svgBottomHeight: 66%;
    --svs___svgTopWidth: 79%;
    --svs___svgBottomWidth: 79%;
    --svs___copyrightDisplay: none;
    --svs___legalCopyrightDisplay: block;
    --svs___titleFontSize: 25px;
    --svs___titleLineHeight: 26px;
    --svs___titleLetterSpacing: 2px;
    --svs___baselineFontSize: 14px;
    --svs___actionFontSize: 20px;
    --svs___actionFontColor: #000;
    --svs___actionFontWeight: 500;
    --svs___actionLetterSpacing: 2px;
    --svs___actionDividerWidth: 2.4px;
    --svs___actionDividerHeight: 15px;
    --svs___actionDividerGap: 6px;
    /* legal */
    --svs___legalFontSize: 9px;
    --svs___legalFontWeight: 500;
    --svs___legalLetterSpacing: 1px;
    --svs___legalDividerWidth: 1px;
    --svs___legalDividerheight: 5px;
    --svs___legalGap: 2px;
    --svs___legalAlign: flex-start;
    --svs___addressFontColor: #000;
    --svs___addressFontSize: 13px;
    --svs___addressFontWeight: 500;
    --svs___addressLetterSpacing: 1px;
    /* overlays */
    --svs___overlayWidth: 80%;
    --svs___overlayPadding: 0;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --svs___bgPosition: 72% center;
    --svs___mainTop: 17%;
    --svs___mainLeft: 20px;
    --svs___mainRight: unset;
    --svs___mainWidth: 370px;
    --svs___actionTop: unset;
    --svs___actionRight: 20px;
    --svs___actionBottom: 14px;
    --svs___svgTopHeight: 90%;
    --svs___svgBottomHeight: 68%;
    --svs___svgTopWidth: 62%;
    --svs___svgBottomWidth: 67%;
    --svs___copyrightDisplay: none;
    --svs___legalCopyrightDisplay: block;
    --svs___titleFontSize: 41px;
    --svs___titleLineHeight: 40px;
    --svs___titleLetterSpacing: 3px;
    --svs___baselineFontSize: 16px;
    --svs___actionFontSize: 30px;
    --svs___actionFontColor: #000;
    --svs___actionFontWeight: 500;
    --svs___actionLetterSpacing: 3px;
    --svs___actionDividerWidth: 3px;
    --svs___actionDividerHeight: 21px;
    --svs___actionDividerGap: 12px;
    /* legal */
    --svs___legalFontSize: 16px;
    --svs___legalFontWeight: 800;
    --svs___legalLetterSpacing: 3px;
    --svs___legalDividerWidth: 3px;
    --svs___legalDividerheight: 11px;
    --svs___legalGap: 7px;
    --svs___legalAlign: flex-start;
    /* overlays */
    --svs___overlayWidth: 80%;
    --svs___overlayPadding: 0;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --svs___bgPosition: 72% center;
    --svs___mainTop: 17%;
    --svs___mainLeft: 20px;
    --svs___mainRight: unset;
    --svs___mainWidth: 370px;
    --svs___actionTop: unset;
    --svs___actionRight: 20px;
    --svs___actionBottom: 14px;
    --svs___svgTopHeight: 61%;
    --svs___svgBottomHeight: 61%;
    --svs___svgTopWidth: 65%;
    --svs___svgBottomWidth: 59%;
    --svs___copyrightDisplay: none;
    --svs___legalCopyrightDisplay: block;
    --svs___titleFontSize: 48px;
    --svs___titleLineHeight: 43px;
    --svs___titleLetterSpacing: 3px;
    --svs___baselineFontSize: 19px;
    --svs___actionFontSize: 36px;
    --svs___actionFontColor: #000;
    --svs___actionFontWeight: 500;
    --svs___actionLetterSpacing: 3px;
    --svs___actionDividerWidth: 3px;
    --svs___actionDividerHeight: 25px;
    --svs___actionDividerGap: 12px;
    /* legal */
    --svs___legalFontSize: 20px;
    --svs___legalFontWeight: 800;
    --svs___legalLetterSpacing: 3px;
    --svs___legalDividerWidth: 3px;
    --svs___legalDividerheight: 15px;
    --svs___legalGap: 7px;
    --svs___legalAlign: flex-start;
    /* overlays */
    --svs___overlayWidth: 80%;
    --svs___overlayPadding: 0;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --svs___bgPosition: center;
    --svs___mainTop: 17.8%;
    --svs___mainLeft: 3%;
    --svs___mainRight: unset;
    --svs___mainWidth: auto;
    --svs___actionTop: unset;
    --svs___actionRight: 20px;
    --svs___actionBottom: 14px;
    --svs___svgTopHeight: 55%;
    --svs___svgBottomHeight: 67%;
    --svs___svgTopWidth: 74%;
    --svs___svgBottomWidth: 76%;
    --svs___copyrightDisplay: none;
    --svs___legalCopyrightDisplay: block;
    --svs___titleFontSize: 48px;
    --svs___titleLineHeight: 43px;
    --svs___titleLetterSpacing: 3px;
    --svs___baselineFontSize: 19px;
    --svs___actionFontSize: 36px;
    --svs___actionFontColor: #000;
    --svs___actionFontWeight: 500;
    --svs___actionLetterSpacing: 3px;
    --svs___actionDividerWidth: 3px;
    --svs___actionDividerHeight: 25px;
    --svs___actionDividerGap: 12px;
    /* legal */
    --svs___legalFontSize: 20px;
    --svs___legalFontWeight: 800;
    --svs___legalLetterSpacing: 3px;
    --svs___legalDividerWidth: 3px;
    --svs___legalDividerheight: 15px;
    --svs___legalGap: 7px;
    --svs___legalAlign: flex-start;
    /* overlays */
    --svs___overlayWidth: 60%;
    --svs___overlayPadding: 10%;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    --svs___bgPosition: center;
    --svs___mainTop: 17.8%;
    --svs___mainLeft: 9%;
    --svs___mainRight: unset;
    --svs___mainWidth: auto;
    --svs___actionTop: unset;
    --svs___actionRight: 20px;
    --svs___actionBottom: 14px;
    --svs___svgTopHeight: 53.2%;
    --svs___svgBottomHeight: 78.35%;
    --svs___svgTopWidth: 75.5%;
    --svs___svgBottomWidth: 81.7%;
    --svs___copyrightDisplay: none;
    --svs___legalCopyrightDisplay: block;
    --svs___titleFontSize: 48px;
    --svs___titleLineHeight: 43px;
    --svs___titleLetterSpacing: 3px;
    --svs___baselineFontSize: 19px;
    --svs___actionFontSize: 36px;
    --svs___actionFontColor: #000;
    --svs___actionFontWeight: 500;
    --svs___actionLetterSpacing: 3px;
    --svs___actionDividerWidth: 3px;
    --svs___actionDividerHeight: 25px;
    --svs___actionDividerGap: 12px;
    /* legal */
    --svs___legalFontSize: 20px;
    --svs___legalFontWeight: 800;
    --svs___legalLetterSpacing: 3px;
    --svs___legalDividerWidth: 3px;
    --svs___legalDividerheight: 15px;
    --svs___legalGap: 7px;
    --svs___legalAlign: flex-start;
    /* overlays */
    --svs___overlayWidth: 60%;
    --svs___overlayPadding: 10%;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --svs___bgPosition: center;
    --svs___mainTop: 17.8%;
    --svs___mainLeft: 9%;
    --svs___mainRight: unset;
    --svs___mainWidth: auto;
    --svs___actionTop: 31.5%;
    --svs___actionRight: 20px;
    --svs___actionBottom: unset;
    --svs___svgTopHeight: 53.2%;
    --svs___svgBottomHeight: 78.35%;
    --svs___svgTopWidth: 75.5%;
    --svs___svgBottomWidth: 81.7%;
    --svs___copyrightDisplay: block;
    --svs___legalCopyrightDisplay: none;
    --svs___titleFontSize: 41px;
    --svs___titleLineHeight: 40px;
    --svs___titleLetterSpacing: 3px;
    --svs___baselineFontSize: 15.3px;
    --svs___actionFontSize: 30px;
    --svs___actionFontColor: #fff;
    --svs___actionFontWeight: 500;
    --svs___actionLetterSpacing: 3px;
    --svs___actionDividerWidth: 3px;
    --svs___actionDividerHeight: 21px;
    --svs___actionDividerGap: 12px;
    /* legal */
    --svs___legalFontSize: 16px;
    --svs___legalFontWeight: 800;
    --svs___legalLetterSpacing: 2px;
    --svs___legalDividerWidth: 2px;
    --svs___legalDividerheight: 11px;
    --svs___legalGap: 5px;
    --svs___legalAlign: flex-end;
    --svs___addressFontColor: #fff;
    --svs___addressFontSize: 18px;
    --svs___addressFontWeight: 500;
    --svs___addressLetterSpacing: 1px;
    /* overlays */
    --svs___overlayWidth: 60%;
    --svs___overlayPadding: 10%;
  }
}
