@charset "utf-8";
/* global fonts*/
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.ttf");
  font-weight: 800;
}
/* axial variables*/
/* FRAMEWORK VARIABLES */
:root {
  /* colors */
  --white: #fff;
  --whiteLight: #f8f9fb;
  --black: #000;
  --blackLight: #111;
  --greyLight: #f2f3f4;
  --greyDark: #232323;
  --themeColor: #4a7b9d;
  /* body */
  --body___mainFont: "Manrope", sans-serif;
  --body___backgroundColor: var(--white);
  --body___textColor: var(--blackLight);
  /* header */
  --header___height: 80px;
  --header___paddingH: 20px;
  --header___paddingV: 10px;
  --header___backgroundColor: var(--white);
  --header___color: var(--blackLight);
  --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(--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%;
  min-height: 100svh;
  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: 100svh;
  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: 100svh;
  background-color: var(--main___backgroundColor);
}
/* section */
.axial_section {
  position: relative;
  width: 100%;
  min-height: 100svh;
}
.axial_section_background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_section_content {
  position: relative;
  width: 100%;
  min-height: 100svh;
}
/* 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 animation */
/* 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: auto;
  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;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.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(--greyLight);
  border: solid 2px var(--themeColor);
  flex-shrink: 0;
}
.axial_toggle_radio-circle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--themeColor);
  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;
}
.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: 90px;
  top: 0;
  left: 0;
  padding-left: 40px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
  background-color: #fff;
}
.axial_agenda_header-label {
  flex-grow: 1;
  color: #000;
  font-weight: 800;
  font-size: 26px;
}
.axial_agenda_header-nav {
  margin-top: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.axial_agenda-days {
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: 40px repeat(7, 1fr);
  grid-template-rows: 60px;
  gap: 0 0;
  border-bottom: 1px solid #ccc;
  overflow-y: scroll;
}
.axial_agenda-days::-webkit-scrollbar {
  visibility: hidden;
}
.axial_agenda-hours {
  grid-column: 1;
  grid-row: 1 / span 24;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.axial_agenda-times {
  grid-column: 1;
  grid-row: 1 / span 24;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.axial_agenda-content {
  position: absolute;
  width: 100%;
  top: 150px;
  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: 0 0;
}
/* AxialAgendaDay */
.axial_agenda_day {
  position: relative;
  height: 60px;
  background-color: #fff;
  border-left: 1px solid #ccc;
}
.axial_agenda_day-background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_agenda_day-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.axial_agenda_day-dayname {
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.axial_agenda_day-datenum {
  font-size: 24px;
  font-weight: 800;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* AxialAgendaHour */
.axial_agenda_hour {
  position: relative;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #fff;
}
.axial_agenda_hour-background {
  position: absolute;
}
/* AxialAgendaTime */
.axial_agenda_time {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.axial_agenda_time-label {
  font-size: 11px;
  font-weight: 600;
  background-color: #fff;
}
/* AxialAgendaCell */
.axial_agenda_cell {
  position: relative;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.axial_agenda_cell-background {
  position: absolute;
}
.axial_agenda_cell-over {
  position: absolute;
  width: 100%;
  height: 100%;
  /*background-color: rgba(3, 150, 218, 0.46);*/
}
/* 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 {
    /* ADMIN */
    /* panel */
    --adminPanel___width: 320px;
    --adminPanel___transform: translateX(0);
    --adminPanel___transitionDuration: 0ms;
    --adminMain___left: 320px;
    /* 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;
  }
  .axial_admin_burger {
    display: none;
  }
}
@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 */
/*  FORM */
.car_charger_form {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.car_charger_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* FORM ITEM */
.car_charger_form_item {
  display: block;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8fbf9;
}
.car_charger_form_item-holder {
  display: flex;
  flex-direction: column;
  /*align-items: flex-start;*/
  /*gap: 14px;*/
}
.car_charger_form_item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.car_charger_form_item-label {
  font-size: 20px;
  font-weight: 500;
  flex-grow: 1;
}
.car_charger_form_item-infos {
  display: none;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #232323;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.car_charger_form_item-toggles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0px 20px;
}
.car_charger_form_item-inputs {
  margin-top: 10px;
  width: auto;
  min-height: 42px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.car_charger_form_item_input-row {
  width: 100%;
  height: 42px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.car_charger_form_item_input-column {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.car_charger_form_item_input-max {
  flex-grow: 1;
}
.car_charger_form_item_input-stepper {
  flex-grow: 1;
}
.car_charger_form_item-subs {
  display: none;
  width: 100%;
  height: auto;
}
/* FORM ITEM SUB */
.car_charger_form_item_sub {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition-property: height;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.car_charger_form_item_sub-holder {
  position: absolute;
  width: 100%;
  height: auto;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
}
.car_charger_form_item_sub-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.car_charger_form_item_sub-label {
  font-size: 20px;
  font-weight: 500;
  flex-grow: 1;
}
.car_charger_form_item_sub-toggles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.car_charger_form_item_sub-inputs {
  width: auto;
  height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
/* INPUTS UTILS */
.car_charger_form_utils-mininput {
  width: 64px;
  text-align: center;
}
/* Car charger Overlay */
.car_charger_overlay {
  max-width: 400px;
  max-height: 320px;
  height: auto;
  padding: 14px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.93);
  color: #fff;
  font-weight: 600;
  /*
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    */
}
.car_charger_overlay_holder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.car_charger_overlay_image {
  width: auto;
  max-width: 372px;
  max-height: 292px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}
.car_charger_overlay_title {
  font-size: 18px;
}
.car_charger_overlay_desc {
  font-size: 15px;
  font-weight: 400;
}
/* main component */
.cc_admin_project_comp {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cc_admin_project_comp-root {
  width: 100%;
  height: auto;
}
.cc_admin_project_comp-title {
  width: max-content;
  margin: 0;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 32px;
  background: linear-gradient(90deg, #0ec484, #059faa);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cc_admin_project_comp-section {
  margin-bottom: 14px;
}
@media screen and (min-width: 992px) {
  .car_charger_form_item-toggles {
    flex-direction: row;
  }
  .car_charger_form_item_sub-toggles {
    flex-direction: row;
  }
}
/* local page styles */
:root {
  /* globals */
  --sim___viewHeadingSize: 24px;
  /* header */
  --sim___headerImageDispay: none;
  /* block */
  --sim___headerEldoDisplay: none;
  /* indicator */
  --indicator___circleSize: 48px;
  --indicator___width: 100%;
  --indicator___height: 160px;
  --indicator___top: 0;
  --indicator___bottom: unset;
  --indicator___left: -100%;
  --indicator___paddingTop: 90px;
  /*110px*/
  --indicator___paddingbottom: 10px;
  /*80px*/
  --indicator___paddingLeft: 10px;
  /*20px*/
  --indicator___paddingRight: 10px;
  /*20px*/
  --indicator___direction: row;
  /* column */
  --indicator___align: center;
  /* flex-end */
  --indicator___lineWidth: 100%;
  /* 6px */
  --indicator___lineHeight: 6px;
  /* 100% */
  --indicator___lineMarginRight: 0;
  /* calc( var(--indicator___circleSize) / 2 - 3px ); */
  --indicator___labelDisplay: none;
  --indicator___stepDirection: row;
  /* WARNING */
  --indicator___stepWidth: auto;
  /* 100% */
  /* viewer */
  --sim___viewerTop: 0;
  --sim___viewerBottom: 0;
  --sim___viewerPaddingTop: 80px;
  /*20px*/
  --sim___viewerPaddingBottom: 20px;
  /*20px*/
  --sim___viewerPaddingLeft: 20px;
  /*360px*/
  --sim___viewerPaddingRight: 20px;
  /*40px*/
  /* view home ambient */
  --sim___ambientImageDisplay: none;
  --sim___ambientImageWidth: 70px;
  /* view home gouv */
  --sim___viewHomeLeft: 0;
  --sim___viewHomeDisplay: flex;
  --sim___viewHomeDirection: column-reverse;
  --sim___viewHomePadding: 20px;
  /* view home army */
  --sim___viewHomeArmyDirection: column;
  /* view home gouv */
  --sim___viewHomeGouvDirection: column;
  --sim___viewHomeGouvTitleSize: 24px;
  /* 30 */
  --sim___viewHomeGouvLinkSize: 16px;
  /* 20 */
  /* view profile */
  --sim___viewProfileDisplay: flex;
  /* grid */
  --sim___viewProfileSummaryPosition: relative;
  /* absolute */
  /* view price */
  --sim___viewPriceDisplay: flex;
  /* grid */
}
h2,
h3 {
  margin: 0;
}
.red_square {
  background-color: #f00;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: none;
}
.axial_header_background {
  background: radial-gradient(circle at top left, #4a7b9d 0%, #92dce5 100%);
}
.axial_left {
  text-align: left;
}
.axial_center {
  text-align: center;
}
.axial_right {
  text-align: right;
}
.ca_header_flex {
  justify-content: space-between;
}
.ca_header_nav {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.ca_header_actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  width: 142px;
}
.ca_header_button {
  height: 44px;
}
.ca_header_eldo {
  display: var(--sim___headerEldoDisplay);
  position: absolute;
  z-index: 3232;
  top: 20px;
  right: 40px;
  visibility: hidden;
  pointer-events: none !important;
}
.ca_main_section {
  position: absolute;
  width: 100%;
  top: var(--header___height);
  bottom: 0;
}
.ca_viewer {
  position: absolute;
  width: 100%;
  top: var(--sim___viewerTop);
  bottom: var(--sim___viewerBottom);
}
/* SUMMARY */
.car_charger_summary_item {
  display: flex;
  flex-direction: row;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}
.car_charger_summary_item-question {
  flex-grow: 1;
  font-size: 18px;
}
.car_charger_summary_item-answer {
  flex-shrink: 0;
  width: 120px;
  font-size: 17px;
  font-weight: 600;
  text-align: right;
}
/* INDICATOR */
.car_charger_indicator {
  position: absolute;
  top: var(--indicator___top);
  bottom: var(--indicator___bottom);
  left: var(--indicator___left);
  width: var(--indicator___width);
  height: var(--indicator___height);
  border-right: 1px solid #ccc;
  background-color: #f8f9fb;
  transition-property: left;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.car_charger_indicator-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: var(--indicator___paddingTop);
  padding-bottom: var(--indicator___paddingbottom);
  padding-left: var(--indicator___paddingLeft);
  padding-right: var(--indicator___paddingRight);
  display: flex;
  flex-direction: var(--indicator___direction);
  align-items: var(--indicator___align);
}
.car_charger_indicator-line {
  width: var(--indicator___lineWidth);
  height: var(--indicator___lineHeight);
  background-color: #232323;
  margin-right: var(--indicator___lineMarginRight);
  position: relative;
}
.car_charger_indicator-progress {
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #0ec484;
  transition-property: height;
  transition-duration: 800ms;
  transition-timing-function: ease-out;
}
.car_charger_indicator-fg {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: var(--indicator___paddingTop);
  padding-bottom: var(--indicator___paddingbottom);
  padding-left: var(--indicator___paddingLeft);
  padding-right: var(--indicator___paddingRight);
  display: flex;
  flex-direction: var(--indicator___direction);
  justify-content: space-between;
  align-items: var(--indicator___align);
}
.car_charger_indicator-step {
  width: var(--indicator___stepWidth);
  height: var(--indicator___circleSize);
  display: flex;
  flex-direction: var(--indicator___stepDirection);
  justify-content: var(--indicator___align);
  align-items: center;
  gap: 20px;
}
.car_charger_indicator-label {
  display: var(--indicator___labelDisplay);
  font-weight: 800;
  font-size: 24px;
  flex-grow: 1;
  text-align: right;
  transform: scale(1);
  transform-origin: right center;
  transition-duration: 100ms;
  transition-timing-function: linear;
}
.car_charger_indicator-num {
  flex-shrink: 0;
  width: var(--indicator___circleSize);
  height: var(--indicator___circleSize);
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 4px solid #333;
  outline: 0px solid #0ec484;
  font-size: 24px;
  font-weight: 800;
  transition-property: border-width, outline-width;
  transition-duration: 100ms;
  transition-timing-function: linear;
}
/* VIEW GLOBALS */
.car_charger_view {
  background-color: #fff;
  padding-top: var(--sim___viewerPaddingTop);
  padding-bottom: var(--sim___viewerPaddingBottom);
  padding-left: var(--sim___viewerPaddingLeft);
  padding-right: var(--sim___viewerPaddingRight);
}
.car_charger_view-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
}
.car_charger_view-title {
  width: max-content;
  margin: 0;
  font-weight: 800;
  font-size: var(--sim___viewHeadingSize);
  /* R 48px*/
  background: linear-gradient(90deg, #0ec484, #059faa);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.car_charger_view-main {
  position: relative;
  flex-grow: 1;
}
.car_charger_view-form {
  position: absolute;
  width: 100%;
  height: 100%;
}
.car_charger_view-footer {
  padding-top: 20px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
/* CarChargerViewHome */
.car_charger_view_home {
  padding: 0;
}
.car_charger_view_home-h2 {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  font-size: 32px;
}
.car_charger_form-home {
  height: auto;
}
.car_charger_view_home-left {
  display: var(--sim___ambientImageDisplay);
  width: var(--sim___ambientImageWidth);
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.car_charger_view_home-left_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/simulator/simulator-ambient.webp");
}
.car_charger_view_home-left_fg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 3, 1, 0.73);
}
.car_charger_view_home-infos {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.car_charger_view_home-main {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--sim___viewHomeLeft);
  /* R 320px*/
  right: 0;
  padding-top: 20px;
  padding-left: var(--sim___viewHomePadding);
  padding-right: var(--sim___viewHomePadding);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: auto;
}
.car_charger_view_home-header {
  margin: 0;
  font-weight: 800;
}
.car_charger_view_home-heading {
  margin: 0;
  font-weight: 800;
  font-size: var(--sim___viewHeadingSize);
  background: linear-gradient(90deg, #0ec484, #059faa);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.car_charger_view_home-grid {
  flex-grow: 1;
  display: var(--sim___viewHomeDisplay);
  /* R grid */
  flex-direction: var(--sim___viewHomeDirection);
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 40px;
}
.car_charger_view_home-desc {
  flex-grow: 1;
  height: auto;
}
.car_charger_view_home-desc_title {
  margin-bottom: 20px;
}
.car_charger_view_home-desc_item {
  font-size: 20px;
  font-weight: 800;
}
.car_charger_view_home-desc_accent {
  font-size: 24px;
  color: #059faa;
}
.car_charger_view_home-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.car_charger_view_home-intro_column {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.car_charger_view_home-intro_row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 14px;
  padding-left: 20px;
}
.car_charger_view_home-certif_text {
  flex-shrink: 0;
}
.car_charger_view_home-certif_holder {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.car_charger_view_home-certif_image {
  display: var(--sim___headerImageDispay);
  height: 60px;
}
.car_charger_view_home_iconitem {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.car_charger_view_home_iconitem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.car_charger_view_home_iconitem-text {
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 8px;
}
.car_charger_view_home_kolai {
  width: 220px;
  height: 152px;
  flex-shrink: 0;
  border: 2px solid var(--themeColor);
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../assets/simulator/charles-desmidt.webp");
}
.row_army {
  justify-content: flex-end;
}
.car_charger_view_home_army {
  display: flex;
  width: 260px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  margin-right: 40px;
}
.car_charger_view_home_army-title {
  font-size: 20px;
  font-weight: 800;
  text-align: right;
}
.car_charger_view_home_army-desc {
  color: #444;
  text-align: right;
  font-size: 18px;
  font-weight: 600;
}
.car_charger_view_home_client {
  display: block;
  height: 32px;
  width: auto;
}
.car_charger_view_home_client-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.car_charger_view_home-card {
  height: auto;
  /*100%*/
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}
.car_charger_view_home-start {
  /*
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    */
  position: relative;
  display: flex;
  flex-direction: column;
  transition-property: left;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
.car_charger_view_home-start_form {
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 20px;
  background-color: #003c40;
  border-radius: 10px;
}
.car_charger_view_home-contact {
  display: none;
  position: absolute;
  left: 100%;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #f8f9fb;
  transition-property: left;
  transition-duration: 500ms;
  transition-timing-function: ease;
  overflow-y: auto;
}
.car_charger_view_home-thanks {
  display: none;
  position: absolute;
  left: 100%;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition-property: left;
  transition-duration: 500ms;
  transition-timing-function: ease;
  background-color: #059faa;
  color: #fff;
}
.car_charger_view_home-contact_header {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.car_charger_view_home-contact_title {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.car_charger_view_home-house {
  margin-top: 20px;
  display: none;
  flex-grow: 1;
}
.car_charger_view_home-enterprise {
  margin-top: 20px;
  display: none;
  flex-grow: 1;
}
.car_charger_view_home-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.car_charger_view_home-footer {
  width: 100%;
  height: 60px;
  border-top: 1px solid #232323;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.car_charger_view_home-link {
  font-size: 12px;
  color: #232323;
}
/* HOME CHANGES */
.car_charger_view_home-next {
  margin-top: 20px;
}
.car_charger_view_home-specific {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 6px;
}
.car_charger_view_home-specific_icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.car_charger_view_home-specific_text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.car_charger_view_home-specific_bold {
  font-weight: 800;
  font-size: 21px;
}
.car_charger_view_home-proborder {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 1px;
  background-color: #fff;
}
.car_charger_view_home-pro {
  border-top: 1px solid #fff;
  margin-top: 10px;
  padding-top: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.car_charger_view_home-prolink {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 9px;
  padding-bottom: 10px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}
.car_charger_view_home-prolink:visited {
  color: #fff;
}
/* CarChargerViewProfile */
.car_charger_view_profile-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: var(--sim___viewProfileDisplay);
  flex-direction: column-reverse;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 100%;
  gap: 20px;
  overflow: auto;
}
.car_charger_view_profile-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.car_charger_view_profile-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.car_charger_view_profile-title {
  color: #0ec484;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
}
.car_charger_view_profile-infos {
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}
.car_charger_view_profile-container {
  position: var(--sim___viewProfileSummaryPosition);
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
/* summary */
.car_charger_summary_title {
  font-size: 22px;
  margin-top: 8px;
  font-weight: 600;
  color: #059faa;
}
.car_charger_summary_question {
  font-size: 18px;
}
.car_charger_summary_answer {
  font-size: 17px;
  font-weight: 600;
  text-align: right;
}
/* CarChargerViewPrice */
.car_charger_view_price {
  padding: 0;
}
.car_charger_view_price_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: var(--sim___viewerPaddingTop);
  padding-bottom: var(--sim___viewerPaddingBottom);
  padding-left: var(--sim___viewerPaddingLeft);
  padding-right: var(--sim___viewerPaddingRight);
  overflow: hidden;
}
.car_charger_view_price-main {
  position: relative;
  width: 100%;
  height: 100%;
}
.car_charger_view_price-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: var(--sim___viewPriceDisplay);
  flex-direction: column;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 180px;
  gap: 20px;
  overflow: auto;
}
.car_charger_view_price-left {
  grid-column: 1 / span 5;
  grid-row: 1;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.car_charger_view_price-desc {
  font-size: 24px;
  font-weight: 500;
}
.car_charger_view_price-ttc {
  text-align: center;
  font-size: 72px;
  font-weight: 800;
}
.car_charger_view_price-ht {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
.car_charger_view_price-infos-bold {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #0ec484;
}
.car_charger_view_price-infos {
  font-size: 24px;
  margin-top: 20px;
  font-weight: 500;
}
.car_charger_view_price-list {
  font-size: 24px;
  font-weight: 500;
}
.car_charger_view_price_gouv {
  grid-column: 1 / span 3;
  grid-row: 2;
  order: 4;
  width: 100%;
  height: auto;
  padding: 14px;
  border-radius: 12px;
  border: 3px solid #054caa;
  background-color: #f8f9fb;
  display: flex;
  flex-direction: var(--sim___viewHomeGouvDirection);
  align-items: center;
  justify-content: space-evenly;
  gap: 14px;
}
.car_charger_view_price_gouv-image {
  width: auto;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.car_charger_view_price_gouv-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.car_charger_view_price_gouv-info {
  font-size: var(--sim___viewHomeGouvTitleSize);
  font-weight: 800;
  color: #054caa;
}
.car_charger_view_price_gouv-link {
  color: #111;
  font-size: var(--sim___viewHomeGouvLinkSize);
  font-weight: 500;
  text-decoration: underline;
}
.car_charger_view_price-right {
  grid-column: 4 / span 2;
  grid-row: 1;
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.car_charger_view_price-right_holder {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 20px;
  border-radius: 10px;
  background-color: #edfdf7;
  border: 2px solid #0ec484;
  color: #111;
}
#giftButton {
  width: 100%;
}
.car_charger_view_price_valid-gift {
  font-size: 120px;
}
.car_charger_view_price_valid-title {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #003c40;
  font-weight: 800;
  font-size: 28px;
}
.car_charger_view_price_valid-desc {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.car_charger_view_price_valid-descitem {
  text-align: left;
}
.car_charger_view_price_partners {
  grid-column: 4 / span 2;
  grid-row: 2;
  order: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.car_charger_view_price_partners-title {
  font-size: 20px;
  font-weight: 800;
}
.car_charger_view_price_partners-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.car_charger_view_price_partners-client {
  display: block;
  height: 44px;
  width: auto;
}
.car_charger_view_price-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #059faa;
  transform: translateY(0);
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 800ms;
}
.car_charger_view_price-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #059faa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transform: translateY(0);
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 800ms;
}
.car_charger_view_price-loader_title {
  color: #fff;
}
.car_charger_view_price-loader_line {
  font-size: 32px;
  font-weight: 800;
}
.car_charger_view_price-loader_circle {
  position: relative;
  width: 60px;
  height: 60px;
}
.car_charger_view_price-loader_quarter {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  animation: quarter-animation 2.83s ease infinite;
}
.car_charger_view_price-loader_hemi {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  animation: hemi-animation 2.83s ease infinite;
}
/* AxialToggleCheck */
.axial_toggle_check {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  min-height: 42px;
  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: #fff;
  margin-right: 12px;
  border: solid 2px #003c40;
  flex-shrink: 0;
}
.axial_toggle_check-sign {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #003c40;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 200ms;
}
.axial_toggle_check-label {
  color: #111;
}
/* THANKS */
.car_charger_thanks_popup {
  width: 100%;
  height: 100%;
  background-color: #059faa;
  color: #fff;
}
.car_charger_thanks_popup-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.car_charger_thanks_popup-logo {
  max-width: 300px;
  padding: 20px;
  padding-right: 26px;
  background-color: #fff;
  border-radius: 6px;
}
.car_charger_thanks_popup-left {
  width: 558px;
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.car_charger_thanks_popup-thanks {
  text-align: left;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 900;
}
.car_charger_thanks_popup-baseline {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
}
.car_charger_thanks_popup-link {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #003c40;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 9px;
  padding-bottom: 9px;
  border: 2px solid #003c40;
  border-radius: 6px;
}
.car_charger_thanks_popup-right {
  width: 480px;
  height: 540px;
  display: flex;
  flex-direction: column;
}
/* PRO */
.car_charger_pro_popup {
  width: 100%;
  height: 100%;
  background-color: #f7f8f9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
}
.car_charger_pro_popup-holder {
  display: block;
  width: 100%;
  max-width: 740px;
  height: auto;
}
.car_charger_pro_popup-header {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.car_charger_pro_popup-form {
  height: auto;
}
.car_charger_pro_popup-desc {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}
.car_charger_pro_popup-message {
  font-size: 16px;
  margin-top: 20px;
}
@keyframes quarter-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1080deg);
  }
}
@keyframes hemi-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-720deg);
  }
}
@keyframes next-button-animation {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.05);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (min-width: 1200px) {
  :root {
    /* globals */
    --sim___viewHeadingSize: 48px;
    /* 24px */
    /* header */
    --sim___headerImageDispay: block;
    /* none */
    --sim___headerEldoDisplay: block;
    /* none */
    /* indicator */
    --indicator___circleSize: 48px;
    --indicator___width: 320px;
    /* 100% */
    --indicator___height: unset;
    /* 160px */
    --indicator___top: 0;
    --indicator___bottom: 0;
    --indicator___left: -320px;
    --indicator___paddingTop: 110px;
    /*90px*/
    --indicator___paddingbottom: 80px;
    /*10px*/
    --indicator___paddingLeft: 8px;
    /*10px*/
    --indicator___paddingRight: 20px;
    /*10px*/
    --indicator___direction: column;
    /* row */
    --indicator___align: flex-end;
    /* center */
    --indicator___lineWidth: 6px;
    /* 100% */
    --indicator___lineHeight: 100%;
    /* 6px */
    --indicator___lineMarginRight: calc(var(--indicator___circleSize) / 2 - 3px);
    --indicator___labelDisplay: block;
    --indicator___stepWidth: 100%;
    /* auto */
    /* viewer */
    --sim___viewerTop: 0;
    --sim___viewerBottom: 0;
    --sim___viewerPaddingTop: 20px;
    /*80px*/
    --sim___viewerPaddingBottom: 20px;
    /*20px*/
    --sim___viewerPaddingLeft: 360px;
    /*20px*/
    --sim___viewerPaddingRight: 40px;
    /*20px*/
    /* view home ambient */
    --sim___ambientImageDisplay: none;
    --sim___ambientImageWidth: 320px;
    /* view home gouv */
    --sim___viewHomeLeft: 0;
    /*0*/
    --sim___viewHomeDisplay: grid;
    /* flex */
    --sim___viewHomeDirection: column-reverse;
    --sim___viewHomePadding: 20px;
    /* view home army */
    --sim___viewHomeArmyDirection: row;
    /* column */
    /* view home gouv */
    --sim___viewHomeGouvDirection: row;
    /* column */
    --sim___viewHomeGouvTitleSize: 24px;
    /* 30 */
    --sim___viewHomeGouvLinkSize: 16px;
    /* 20 */
    /* view profile */
    --sim___viewProfileDisplay: grid;
    /* flex */
    --sim___viewProfileSummaryPosition: absolute;
    /* relative */
    /* view price */
    --sim___viewPriceDisplay: grid;
    /* flex */
  }
}
@media screen and (min-width: 1400px) {
  :root {
    /* globals */
    --sim___viewHeadingSize: 48px;
    /* 24px */
    /* header */
    --sim___headerImageDispay: block;
    /* none */
    --sim___headerEldoDisplay: block;
    /* none */
    /* indicator */
    --indicator___circleSize: 48px;
    --indicator___width: 320px;
    /* 100% */
    --indicator___height: unset;
    /* 160px */
    --indicator___top: 0;
    --indicator___bottom: 0;
    --indicator___left: -320px;
    --indicator___paddingTop: 110px;
    /*90px*/
    --indicator___paddingbottom: 80px;
    /*10px*/
    --indicator___paddingLeft: 8px;
    /*10px*/
    --indicator___paddingRight: 20px;
    /*10px*/
    --indicator___direction: column;
    /* row */
    --indicator___align: flex-end;
    /* center */
    --indicator___lineWidth: 6px;
    /* 100% */
    --indicator___lineHeight: 100%;
    /* 6px */
    --indicator___lineMarginRight: calc(var(--indicator___circleSize) / 2 - 3px);
    --indicator___labelDisplay: block;
    --indicator___stepWidth: 100%;
    /* auto */
    /* viewer */
    --sim___viewerTop: 0;
    --sim___viewerBottom: 0;
    --sim___viewerPaddingTop: 20px;
    /*80px*/
    --sim___viewerPaddingBottom: 20px;
    /*20px*/
    --sim___viewerPaddingLeft: 360px;
    /*20px*/
    --sim___viewerPaddingRight: 40px;
    /*20px*/
    /* view home ambient */
    --sim___ambientImageDisplay: block;
    /* view home gouv */
    --sim___viewHomeLeft: 320px;
    /*0*/
    --sim___viewHomeDisplay: grid;
    /* flex */
    --sim___viewHomeDirection: column-reverse;
    --sim___viewHomePadding: 20px;
    /* view home army */
    --sim___viewHomeArmyDirection: row;
    /* column */
    /* view home gouv */
    --sim___viewHomeGouvDirection: row;
    /* column */
    --sim___viewHomeGouvTitleSize: 24px;
    /* 30 */
    --sim___viewHomeGouvLinkSize: 16px;
    /* 20 */
    /* view profile */
    --sim___viewProfileDisplay: grid;
    /* flex */
    --sim___viewProfileSummaryPosition: absolute;
    /* relative */
    /* view price */
    --sim___viewPriceDisplay: grid;
    /* flex */
  }
}
@media screen and (min-width: 1600px) {
  :root {
    /* globals */
    --sim___viewHeadingSize: 48px;
    /* 24px */
    /* header */
    --sim___headerImageDispay: block;
    /* none */
    --sim___headerEldoDisplay: block;
    /* none */
    /* indicator */
    --indicator___circleSize: 48px;
    --indicator___width: 320px;
    /* 100% */
    --indicator___height: unset;
    /* 160px */
    --indicator___top: 0;
    --indicator___bottom: 0;
    --indicator___left: -320px;
    --indicator___paddingTop: 110px;
    /*90px*/
    --indicator___paddingbottom: 80px;
    /*10px*/
    --indicator___paddingLeft: 8px;
    /*10px*/
    --indicator___paddingRight: 20px;
    /*10px*/
    --indicator___direction: column;
    /* row */
    --indicator___align: flex-end;
    /* center */
    --indicator___lineWidth: 6px;
    /* 100% */
    --indicator___lineHeight: 100%;
    /* 6px */
    --indicator___lineMarginRight: calc(var(--indicator___circleSize) / 2 - 3px);
    --indicator___labelDisplay: block;
    --indicator___stepWidth: 100%;
    /* auto */
    /* viewer */
    --sim___viewerTop: 0;
    --sim___viewerBottom: 0;
    --sim___viewerPaddingTop: 20px;
    /*80px*/
    --sim___viewerPaddingBottom: 20px;
    /*20px*/
    --sim___viewerPaddingLeft: 360px;
    /*20px*/
    --sim___viewerPaddingRight: 40px;
    /*20px*/
    /* view home ambient */
    --sim___ambientImageDisplay: block;
    /* view home gouv */
    --sim___viewHomeLeft: 320px;
    /*0*/
    --sim___viewHomeDisplay: grid;
    /* flex */
    --sim___viewHomeDirection: column-reverse;
    --sim___viewHomePadding: 20px;
    /* view home army */
    --sim___viewHomeArmyDirection: row;
    /* column */
    /* view home gouv */
    --sim___viewHomeGouvDirection: row;
    /* column */
    --sim___viewHomeGouvTitleSize: 24px;
    /* 30 */
    --sim___viewHomeGouvLinkSize: 16px;
    /* 20 */
    /* view profile */
    --sim___viewProfileDisplay: grid;
    /* flex */
    --sim___viewProfileSummaryPosition: absolute;
    /* relative */
    /* view price */
    --sim___viewPriceDisplay: grid;
    /* flex */
  }
}
