@charset "utf-8";
/* global fonts*/
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Thin.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Black.ttf");
  font-weight: 900;
}
/* Better Together Script */
@font-face {
  font-family: "BetterTogetherScript";
  src: url("./fonts/BetterTogetherScript.ttf");
}
/* Yanone */
@font-face {
  font-family: "Yanone";
  src: url("./fonts/YanoneKaffeesatz-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Yanone";
  src: url("./fonts/YanoneKaffeesatz-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Yanone";
  src: url("./fonts/YanoneKaffeesatz-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Yanone";
  src: url("./fonts/YanoneKaffeesatz-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Yanone";
  src: url("./fonts/YanoneKaffeesatz-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Yanone";
  src: url("./fonts/YanoneKaffeesatz-Bold.ttf");
  font-weight: 700;
}
/* axial variables*/
/* FRAMEWORK VARIABLES */
:root {
  /* colors */
  --white: #fff;
  --whiteLight: #f8f9fb;
  --black: #000;
  --blackLight: #111;
  --greyLight: #f2f3f4;
  --greyDark: #232323;
  --themeColor: #0463b1;
  /* body */
  --body___mainFont: "Outfit", sans-serif;
  --body___backgroundColor: var(--black);
  --body___textColor: var(--blackLight);
  /* header */
  --header___height: 80px;
  --header___paddingH: 20px;
  --header___paddingV: 10px;
  --header___backgroundColor: #000000;
  --header___color: var(--blackLight);
  --headerTitle___fontSize: 36px;
  --headerTitle___fontWeight: 700;
  /* header logo */
  --headerLogo___height: 54px;
  /* 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(--black);
  --footer___color: var(--white);
  /* footer legal */
  --footer___legal___direction: column;
  --footer___legal___justify: flex-start;
  --footer___legal___align: center;
  --footer___legal___gap: 6px;
  /* footer social */
  --footer___social___direction: column;
  --footer___social___justify: flex-start;
  --footer___social___align: center;
  --footer___social___gap: 6px;
  /* 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;
  /* charts */
  --charts___axisSize: 40px;
  /* 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);
  /* AxialWebApplication */
  /* menu panel */
  --webMenuPanel___width: 100%;
  --webMenuPanel___transform: translateX(100%);
  --webMenuPanel___transitionDuration: 500ms;
  --webMenuPanel___display: block;
  --webMenuPanel___backgroundColor: transparent;
}
/* global variables */
/* axial core & application : will be probably merged */
.axial_component_base {
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
  text-shadow: none;
}
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--body___mainFont);
  background-color: var(--body___backgroundColor);
  color: var(--body___textColor);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a {
  text-decoration: none;
  color: var(--body___textColor);
}
a:visited {
  text-decoration: none;
  color: var(--body___textColor);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--body___textColor);
}
input {
  -webkit-user-select: text;
  user-select: text;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  height: 42px;
  min-height: 42px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 4px;
  font-family: var(--body___mainFont);
  font-size: var(--input___fontSize);
  font-weight: var(--input___fontWeight);
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--greyDark);
  background-color: var(--whiteLight);
}
input::placeholder {
  font-size: var(--input___placeholderFontSize);
  font-weight: var(--input___placeholderFontWeight);
}
input:disabled {
  opacity: 0.5;
}
input[type="file"] {
  height: 42px;
  min-height: 42px;
  padding: unset;
  background-color: unset;
  border: none;
  font-size: 14px;
}
input[type="file" i] {
  font-family: var(--body___mainFont);
  color: var(--body___textColor);
}
input[type="file"]::file-selector-button {
  height: 42px;
  min-height: 42px;
  cursor: pointer;
  appearance: none;
  border: none;
  outline: none;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
  font-family: var(--body___mainFont);
  border-radius: var(--component___borderRadius);
  font-weight: var(--AxialButton___fontWeight);
  color: var(--AxialButton___textColor);
  background-color: var(--AxialButton___backgroundColor);
}
input[type="color"] {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  max-width: 120px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
}
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(--greyDark);
  background-color: var(--white);
}
.fa-color {
  color: #fff;
}
.ax_bo {
  font-weight: 600;
}
.ax_it {
  font-style: italic;
}
.ax_le {
  text-align: left;
}
.ax_ce {
  text-align: center;
}
.ax_ri {
  text-align: right;
}
/* 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: 200;
}
.axial_popup_layer {
  z-index: 300;
}
.axial_medias_layer {
  z-index: 400;
}
.axial_notification_layer {
  z-index: 500;
}
.axial_overlay_layer {
  z-index: 600;
}
.axial_tooltip_layer {
  z-index: 700;
}
.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);
  opacity: 1;
  transition-property: opacity;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.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%;
  font-size: var(--headerNavItem___fontSize);
  font-weight: var(--headerNavItem___fontWeight);
  cursor: pointer;
  color: #fff;
}
.axial_header_nav_item:visited {
  color: #fff;
}
.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;
}
/* mobile nav */
.axial_mobile_nav {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.axial_mobile_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 100%;
  font-size: 32px;
  font-weight: var(--headerNavItem___fontWeight);
  cursor: pointer;
  color: #fff;
}
.axial_mobile_nav_item:visited {
  color: #fff;
}
.axial_mobile_nav_item:first-child {
  margin-left: 0;
}
.axial_mobile_nav_item:last-child {
  margin-right: 0;
}
.axial_mobile_nav_item-label {
  margin-bottom: 4px;
  text-transform: uppercase;
  text-align: right;
}
.axial_mobile_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;
}
/* 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%;
  height: auto;
}
.axial_section_background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_section_content {
  position: relative;
  width: 100%;
  height: auto;
}
/* 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;
}
/* pre built section*/
/* HERO SECTION */
.axial_hero_section {
  height: 100vh;
}
.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;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.axial_footer_legal {
  display: flex;
  flex-direction: var(--footer___legal___direction);
  justify-content: var(--footer___legal___justify);
  align-items: var(--footer___legal___align);
  gap: var(--footer___legal___gap);
}
.axial_footer_legal_link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.axial_footer_legal_link:visited {
  color: #fff;
}
.axial_footer_social {
  display: flex;
  flex-direction: var(--footer___social___direction);
  justify-content: var(--footer___social___justify);
  align-items: var(--footer___social___align);
  gap: var(--footer___social___gap);
}
.axial_footer_social_link {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* utils */
.axial_100vh {
  height: 100vh;
}
.axial_spacer {
  flex-grow: 1;
}
/* parallax */
.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: 420ms;
  transition-timing-function: ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.axial_notifier_content {
  width: 100%;
  max-width: 600px;
  height: auto;
  padding: 20px;
  min-height: 40px;
  pointer-events: all;
  color: var(--greyDark);
  background-color: rgba(255, 253, 251, 0.23);
  backdrop-filter: blur(10px);
  background-blend-mode: overlay;
  border-radius: var(--component___borderRadius);
  box-shadow: 0px 1px 10px #919293;
}
/* 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;*/
  /*love this blue*/
  background-color: var(--themeColor);
}
.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);
}
/* Editors */
.axial_editor_base {
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
  padding-left: 10%;
  padding-right: 10%;
}
/* AxialWeekPlanning */
.axial_week_planning {
  position: relative;
  width: 100%;
  height: 100%;
}
.axial_week_planning-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(11, 48px);
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  text-align: left;
  background-color: #fff;
}
.axial_week_planning-cell {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 600;
  background-color: #dedede;
}
/* morning */
.awp_input {
  border: none;
  border-radius: unset;
  width: 100%;
  height: 100%;
}
.awp_subtotal {
  border: none;
  border-radius: unset;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 600;
  background-color: #b5e3fd;
}
.awp_total {
  border: none;
  border-radius: unset;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 600;
}
.axial_week_planning-morning {
  grid-row: 1;
  grid-column: 2 / span 3;
}
.axial_week_planning-morning_start {
  grid-row: 2;
  grid-column: 2;
}
.axial_week_planning-morning_end {
  grid-row: 2;
  grid-column: 3;
}
.axial_week_planning-morning_total {
  grid-row: 2;
  grid-column: 4;
}
.awp_morning_start-1 {
  grid-row: 3;
  grid-column: 2;
}
.awp_morning_start-2 {
  grid-row: 4;
  grid-column: 2;
}
.awp_morning_start-3 {
  grid-row: 5;
  grid-column: 2;
}
.awp_morning_start-4 {
  grid-row: 6;
  grid-column: 2;
}
.awp_morning_start-5 {
  grid-row: 7;
  grid-column: 2;
}
.awp_morning_start-6 {
  grid-row: 8;
  grid-column: 2;
}
.awp_morning_start-7 {
  grid-row: 9;
  grid-column: 2;
}
.awp_morning_end-1 {
  grid-row: 3;
  grid-column: 3;
}
.awp_morning_end-2 {
  grid-row: 4;
  grid-column: 3;
}
.awp_morning_end-3 {
  grid-row: 5;
  grid-column: 3;
}
.awp_morning_end-4 {
  grid-row: 6;
  grid-column: 3;
}
.awp_morning_end-5 {
  grid-row: 7;
  grid-column: 3;
}
.awp_morning_end-6 {
  grid-row: 8;
  grid-column: 3;
}
.awp_morning_end-7 {
  grid-row: 9;
  grid-column: 3;
}
.awp_morning_subtotal-1 {
  grid-row: 3;
  grid-column: 4;
}
.awp_morning_subtotal-2 {
  grid-row: 4;
  grid-column: 4;
}
.awp_morning_subtotal-3 {
  grid-row: 5;
  grid-column: 4;
}
.awp_morning_subtotal-4 {
  grid-row: 6;
  grid-column: 4;
}
.awp_morning_subtotal-5 {
  grid-row: 7;
  grid-column: 4;
}
.awp_morning_subtotal-6 {
  grid-row: 8;
  grid-column: 4;
}
.awp_morning_subtotal-7 {
  grid-row: 9;
  grid-column: 4;
}
.awp_noon_start-1 {
  grid-row: 3;
  grid-column: 5;
}
.awp_noon_start-2 {
  grid-row: 4;
  grid-column: 5;
}
.awp_noon_start-3 {
  grid-row: 5;
  grid-column: 5;
}
.awp_noon_start-4 {
  grid-row: 6;
  grid-column: 5;
}
.awp_noon_start-5 {
  grid-row: 7;
  grid-column: 5;
}
.awp_noon_start-6 {
  grid-row: 8;
  grid-column: 5;
}
.awp_noon_start-7 {
  grid-row: 9;
  grid-column: 5;
}
.awp_noon_end-1 {
  grid-row: 3;
  grid-column: 6;
}
.awp_noon_end-2 {
  grid-row: 4;
  grid-column: 6;
}
.awp_noon_end-3 {
  grid-row: 5;
  grid-column: 6;
}
.awp_noon_end-4 {
  grid-row: 6;
  grid-column: 6;
}
.awp_noon_end-5 {
  grid-row: 7;
  grid-column: 6;
}
.awp_noon_end-6 {
  grid-row: 8;
  grid-column: 6;
}
.awp_noon_end-7 {
  grid-row: 9;
  grid-column: 6;
}
.awp_noon_subtotal-1 {
  grid-row: 3;
  grid-column: 7;
}
.awp_noon_subtotal-2 {
  grid-row: 4;
  grid-column: 7;
}
.awp_noon_subtotal-3 {
  grid-row: 5;
  grid-column: 7;
}
.awp_noon_subtotal-4 {
  grid-row: 6;
  grid-column: 7;
}
.awp_noon_subtotal-5 {
  grid-row: 7;
  grid-column: 7;
}
.awp_noon_subtotal-6 {
  grid-row: 8;
  grid-column: 7;
}
.awp_noon_subtotal-7 {
  grid-row: 9;
  grid-column: 7;
}
/* totals */
.awp_morning_total {
  grid-row: 10;
  grid-column: 4;
  background-color: #51bfff;
}
.awp_noon_total {
  grid-row: 10;
  grid-column: 7;
  background-color: #51bfff;
}
.awp_week_total {
  grid-row: 11;
  grid-column: 7;
  background-color: #00456d;
  color: #fff;
}
/* noon */
.axial_week_planning-noon {
  grid-row: 1;
  grid-column: 5 / span 3;
}
.axial_week_planning-noon_start {
  grid-row: 2;
  grid-column: 5;
}
.axial_week_planning-noon_end {
  grid-row: 2;
  grid-column: 6;
}
.axial_week_planning-noon_total {
  grid-row: 2;
  grid-column: 7;
}
/* days */
.axial_week_planning-day {
  grid-row: 2;
  grid-column: 1;
}
.axial_week_planning-monday {
  grid-row: 3;
  grid-column: 1;
}
.axial_week_planning-tuesday {
  grid-row: 4;
  grid-column: 1;
}
.axial_week_planning-wednesday {
  grid-row: 5;
  grid-column: 1;
}
.axial_week_planning-thursday {
  grid-row: 6;
  grid-column: 1;
}
.axial_week_planning-friday {
  grid-row: 7;
  grid-column: 1;
}
.axial_week_planning-saturday {
  grid-row: 8;
  grid-column: 1;
}
.axial_week_planning-sunday {
  grid-row: 9;
  grid-column: 1;
}
/* AxialOpenHours */
.axial_open_hours {
  position: relative;
  width: 100%;
  height: 100%;
}
.axial_open_hours-holder {
  position: relative;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, 44px);
  align-items: center;
}
.axial_open_hours-amt {
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}
.axial_open_hours-pmt {
  grid-row: 1;
  grid-column: 3;
  justify-self: center;
}
.axial_open_hours-d1 {
  grid-row: 2;
  grid-column: 1;
}
.axial_open_hours-d2 {
  grid-row: 3;
  grid-column: 1;
}
.axial_open_hours-d3 {
  grid-row: 4;
  grid-column: 1;
}
.axial_open_hours-d4 {
  grid-row: 5;
  grid-column: 1;
}
.axial_open_hours-d5 {
  grid-row: 6;
  grid-column: 1;
}
.axial_open_hours-d6 {
  grid-row: 7;
  grid-column: 1;
}
.axial_open_hours-d7 {
  grid-row: 8;
  grid-column: 1;
}
.axial_open_hours-am1 {
  grid-row: 2;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm1 {
  grid-row: 2;
  grid-column: 3;
  text-align: center;
}
.axial_open_hours-am2 {
  grid-row: 3;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm2 {
  grid-row: 3;
  grid-column: 3;
  text-align: center;
}
.axial_open_hours-am3 {
  grid-row: 4;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm3 {
  grid-row: 4;
  grid-column: 3;
  text-align: center;
}
.axial_open_hours-am4 {
  grid-row: 5;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm4 {
  grid-row: 5;
  grid-column: 3;
  text-align: center;
}
.axial_open_hours-am5 {
  grid-row: 6;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm5 {
  grid-row: 6;
  grid-column: 3;
  text-align: center;
}
.axial_open_hours-am6 {
  grid-row: 7;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm6 {
  grid-row: 7;
  grid-column: 3;
  text-align: center;
}
.axial_open_hours-am7 {
  grid-row: 8;
  grid-column: 2;
  text-align: center;
}
.axial_open_hours-pm7 {
  grid-row: 8;
  grid-column: 3;
  text-align: center;
}
/* AxialSubscriptionCard */
.axial_subscription_card {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 20px;
  border: 4px solid #232323;
}
.axial_subscription_card-title {
  font-weight: 600;
}
.axial_subscription_card-image {
  width: 400px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* AxialWebApplicationBase Entry Point */
.axial_web_menu_button_holder {
  position: relative;
  width: auto;
  height: auto;
}
.axial_web_menu_button {
  position: absolute;
}
.axial_web_menu_panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  display: var(--webMenuPanel___display);
  width: var(--webMenuPanel___width);
  background-color: var(--webMenuPanel___backgroundColor);
  z-index: 11;
  transform: var(--webMenuPanel___transform);
  transition-property: transform;
  transition-duration: var(--webMenuPanel___transitionDuration);
  transition-timing-function: ease;
  pointer-events: none;
}
.axial_web_menu_panel-holder {
  position: absolute;
  width: 100%;
  top: var(--header___height);
  bottom: 0;
  background-color: #fff;
  pointer-events: all;
}
.axial_web_desktop_nav {
  width: auto;
  height: 100%;
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
/* 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 */
/* 2025 auth package */
/* AxialAuthRegister */
.axial_auth_register {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.axial_auth_register-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.axial_auth_register-formitem {
  width: 100%;
}
.axial_auth_register-input {
  margin-top: 6px;
}
.axial_auth_register-passholder {
  margin-top: 6px;
  position: relative;
  width: 100%;
  height: 42px;
}
.axial_auth_register-password {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-right: 50px;
}
.axial_auth_register-control {
  display: block;
}
.axial_auth_register-infotitle {
  font-weight: 500;
}
.axial_auth_register-info {
  padding-left: 10px;
}
.axial_auth_register-message {
  text-align: center;
}
.axial_auth_register-divider {
  width: 100%;
  height: 2px;
  background-color: #efefef;
}
.axial_auth_register-login {
  margin-top: 14px;
  text-align: center;
}
.axial_auth_register-link {
  font-weight: 600;
  text-decoration: underline;
}
.axial_auth_register-link:visited {
  font-weight: 600;
  text-decoration: underline;
}
/* AxialAuthLogin */
.axial_auth_login {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.axial_auth_login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.axial_auth_login-formitem {
  width: 100%;
}
.axial_auth_login-input {
  margin-top: 6px;
}
.axial_auth_login-passholder {
  margin-top: 6px;
  position: relative;
  width: 100%;
  height: 42px;
}
.axial_auth_login-password {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-right: 50px;
}
.axial_auth_login-message {
  text-align: center;
}
.axial_auth_login-divider {
  width: 100%;
  height: 2px;
  background-color: #efefef;
}
.axial_auth_login-register {
  margin-top: 14px;
  text-align: center;
}
.axial_auth_login-link {
  font-weight: 600;
  text-decoration: underline;
}
.axial_auth_login-link:visited {
  font-weight: 600;
  text-decoration: underline;
}
/* AxialAuthVerifyer */
.axial_auth_verifyer {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.axial_auth_verifyer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.axial_auth_verifyer-baseline {
  font-weight: 400;
  text-align: center;
}
.axial_auth_verifyer-email {
  font-weight: 600;
  text-align: center;
}
.axial_auth_verifyer-inputs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.axial_auth_verifyer-numinput {
  width: 40px;
  height: 48px;
  text-align: center;
}
.axial_auth_verifyer-message {
  text-align: center;
}
.axial_auth_verifyer-divider {
  width: 100%;
  height: 2px;
  background-color: #efefef;
}
/* SERVICE FORM 2025 */
/* AxialServiceFormItem */
.axial_service_form_item {
  position: relative;
  width: 100%;
  height: auto;
  /*
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #fff;
    */
}
.axial_service_form_item-holder {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  /*padding: 10px;*/
}
.axial_service_form_item-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.axial_service_form_item-label {
  font-weight: 600;
  flex-grow: 1;
}
.axial_service_form_item-action {
  flex-shrink: 1;
}
.axial_service_form_item-info {
  font-size: 16px;
}
.axial_service_form_item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.axial_service_form_item-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.axial_service_form_item-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.axial_service_form_item_image-file {
  height: 42px;
  width: 138px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.axial_service_form_item_image-placeholder {
  position: relative;
  display: block;
  width: 240px;
  height: 240px;
  border: 2px solid var(--greyDark);
  background-color: var(--whiteLight);
  border-radius: 6px;
  overflow: hidden;
}
.axial_service_form_item_image-image {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.axial_service_form_item_inputs-textarea {
  height: 90px;
  min-height: unset;
}
.axial_service_form_item-toggles {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
.axial_service_form_item-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.axial_service_form_item-grouprow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.axial_service_form_item-grouphtml {
  width: 100px;
  height: 42px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  text-align: right;
}
/* AxialServiceForm */
.axial_service_form {
  position: relative;
  width: 100%;
  height: auto;
}
.axial_service_form-holder {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* 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;
  gap: 10px;
  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;
}
.axial_button_icon {
  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.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 320ms;
  transition-timing-function: ease;
}
.axial_toggle_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  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;
}
/* AxialAccordionToggle */
.axial_accordion_toggle {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: 0;
  fill: #627183;
  border-bottom: 1px solid #627183;
}
.axial_accordion_toggle-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
}
.axial_accordion_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: ease;
}
.axial_accordion_toggle-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_accordion_toggle-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 240ms;
  transition-timing-function: ease;
}
.axial_accordion_toggle-path {
  fill: #627183;
}
.axial_accordion_toggle-content {
  flex-grow: 1;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.axial_accordion_toggle-label {
  width: auto;
  color: #627183;
  font-weight: var(--AxialToggleButton___fontWeight);
}
.axial_accordion_toggle-icon {
  position: relative;
  display: block;
}
.axial_accordion_toggle-icontoggle {
  position: relative;
  display: none;
}
/* AxialAccordionContainer */
.axial_accordion_container {
  position: relative;
  width: 100%;
  height: 0;
  transition-property: height;
  transition-duration: 400ms;
  transition-timing-function: ease;
  overflow: hidden;
}
.axial_accordion_container-content {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}
.axial_accordion_container-slot {
  width: 100%;
  height: auto;
}
/* AxialAccordionElement */
.axial_accordion_element {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
/* 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(--iceWhite);
  margin-right: 12px;
  border: solid 2px var(--black);
}
.axial_toggle_radio-circle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--black);
  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;
  padding: 4px;
  border: 2px solid var(--blackLight);
  background-color: var(--white);
  flex-shrink: 0;
  color: var(--themeColor);
  transition-property: background-color;
  transition-duration: 300ms;
}
.axial_toggle_switch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--blackLight);
  background-color: var(--white);
  position: relative;
  left: 0px;
  transition-property: left;
  transition-duration: 200ms;
}
/* AxialBurgerButton */
.axial_burger_button {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: var(--component___borderRadius);
  z-index: 23;
}
.axial_burger_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
}
.axial_burger_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.23);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 240ms;
  transition-timing-function: ease;
}
.axial_burger_button-border {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--component___borderRadius);
  border: 2px solid #fff;
}
.axial_burger_button-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.axial_burger_button-line {
  position: absolute;
  width: 22px;
  height: 2px;
  left: 10px;
  transform-origin: center;
  overflow: hidden;
  border-radius: 1px;
  transition-property: top, transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
  background-color: #fff;
}
.axial_burger_button-top {
  top: 13px;
}
.axial_burger_button-middle {
  top: 20.5px;
}
.axial_burger_button-bottom {
  top: 27px;
}
/* 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;
  gap: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_toggle_panel_button-label {
  width: auto;
  color: #627183;
  font-size: 16px;
  font-weight: 500;
}
.axial_button-icon_holder {
  /*
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    */
  width: 20px;
  height: 20px;
}
/* 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;
  gap: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_admin_toggle_bar_button-fill {
  fill: #627183;
}
.axial_admin_toggle_bar_button-label {
  width: auto;
  color: #627183;
  font-size: 16px;
  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: 16px;
}
.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-x: hidden;
  overflow-y: auto;
}
/* AxialViewer */
.axial_viewer {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}
.axial_viewer_holder {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* AxialView */
.axial_view {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
.axial_view_holder {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* Indicator */
.axial_viewer_indicator {
  position: relative;
  width: 100%;
  height: auto;
}
.axial_viewer_indicator-holder {
  position: absolute;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}
.axial_viewer_indicator-bar {
  position: absolute;
  width: 2px;
  left: 29px;
  top: 30px;
  background-color: #aaa;
}
.axial_viewer_indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background-color: var(--themeColor);
  transition-property: height;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
/* IndicatorStep */
.axial_viewer_indicator_step {
  position: relative;
  width: auto;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
}
.axial_viewer_indicator_step-holder {
  position: relative;
  width: auto;
  height: 100%;
}
.axial_viewer_indicator_step-content {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.axial_viewer_indicator_step-badge {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-size: 18px;
  font-weight: 800;
  padding-bottom: 2px;
  border: 2px solid #aaa;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  transition-property: color, border-color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}
.axial_viewer_indicator_step-label {
  color: #aaa;
  font-weight: 800;
  font-size: 18px;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}
.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;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  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_overlay_obfuscator {
  pointer-events: all;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(1px);
}
/* AxialConsentOverlay */
.axial_consent_overlay {
  width: 300px;
  height: auto;
  padding: 20px;
  border-radius: var(--component___borderRadius);
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.6);
  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;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.axial_consent_overlay-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.axial_consent_overlay-p {
  margin: 0;
  padding: 0;
}
.axial_consent_overlay-link {
  color: #fff;
  text-decoration: underline;
}
.axial_consent_overlay-link:hover {
  color: #fefefe;
  text-decoration: underline;
}
.axial_consent_overlay-link:visited {
  color: #fefefe;
  text-decoration: underline;
}
/* AxialDeletionOverlay */
.axial_deletion_overlay {
  width: 300px;
  height: auto;
  padding: 20px;
  border-radius: var(--component___borderRadius);
  border: 2px solid #cc0000;
  background-color: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(10px);
}
.axial_deletion_overlay-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.axial_deletion_overlay-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.axial_deletion_overlay-cookie {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_deletion_overlay-title {
  color: var(--body___textColor);
  font-weight: 600;
  font-size: 18px;
}
.axial_deletion_overlay-content {
  color: var(--body___textColor);
}
.axial_deletion_overlay-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
/* AxialListOverlay */
.axial_list_overlay {
  min-width: 200px;
  min-height: 40px;
  height: auto;
}
.axial_list_overlay-group {
  position: absolute;
  width: 100%;
  height: auto;
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--themeColor);
  background-color: #fff;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* 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%;
}
/* 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: 304px;
  height: 344px;
  border-radius: var(--component___borderRadius);
  overflow: hidden;
  border: 2px solid var(--themeColor);
}
/* 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;
}
/* CHARTS */
/* AxialChartElementBar */
.axial_chart_element_bar {
  position: relative;
  width: 140px;
  height: 100%;
}
.axial_chart_element_bar-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.axial_chart_element_bar-bar {
  min-width: 40px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  overflow: hidden;
  border-radius: 3px;
  background-color: var(--themeColor);
  color: #fff;
  font-weight: 500;
}
.axial_chart_element_bar-label {
  flex-shrink: 0;
  width: 100%;
  height: 30px;
  padding-top: 4px;
  padding-left: 2px;
  padding-right: 2px;
  font-size: 12px;
  overflow: hidden;
  display: block;
  text-align: center;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
/* AxialChart */
.axial_chart {
  position: relative;
  min-width: 320px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.axial_chart-container {
  flex-grow: 1;
  position: relative;
  width: 100%;
  height: 100%;
}
.axial_chart-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.axial_chart-header {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--adminBody___borderColor);
}
.axial_chart-title {
  font-size: 18px;
  font-weight: 600;
  flex-grow: 1;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
.axial_chart-action {
  flex-shrink: 0;
  font-weight: 800;
}
.axial_chart-main {
  position: relative;
  width: 100%;
  flex-grow: 1;
  border-bottom: 1px solid var(--adminBody___borderColor);
}
.axial_chart-area {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_chart-axis_area {
  position: absolute;
  left: 0;
  width: auto;
  top: 0;
  bottom: var(--charts___axisSize);
}
.axial_chart-axis_y {
  position: absolute;
  left: 0;
  width: var(--charts___axisSize);
  height: 100%;
  background-color: #f8f9fb;
}
.axial_chart-axis_scroll {
  position: absolute;
  left: var(--charts___axisSize);
  right: 0;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  /*background-color: #f00;*/
}
.axial_chart-axis_x {
  position: absolute;
  background-color: #f8f9fb;
  width: auto;
  height: var(--charts___axisSize);
  left: 0;
  bottom: 0;
  /*
    left: var(--charts___axisSize);
    right: 0;
    
    bottom: 0;
    
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100%;
    */
}
.axial_chart-step_x {
  position: absolute;
  min-width: 32px;
  height: 100%;
  padding-top: 2px;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.axial_chart-area_row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.axial_chart-area_column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* AxialChartAverageTime */
.axial_chart_average_time-area {
  font-size: 40px;
  font-weight: 800;
}
/* AxialChartTraffic */
.axial_chart_traffic-point {
  position: absolute;
  width: 14px;
  height: 14px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--themeColor);
  border: 2px solid #fff;
  transform: translate(-50%, 50%);
}
.axial_chart_traffic-line {
  position: absolute;
  height: 2px;
  background-color: var(--themeColor);
  transform-origin: left center;
  transform: translateY(1px);
}
.axial_chart_traffic-num {
  position: absolute;
  height: 24px;
  width: auto;
  color: #232323;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 2px;
  background-color: #f8f9fb;
  transform: translate(-50%, -14px);
}
.axial_chart_traffic-yline {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #ccc;
}
.axial_chart_traffic-ynum {
  position: absolute;
  height: 24px;
  width: 32px;
  color: #f8f9fb;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 2px;
  background-color: #232323;
  transform: translate(0, -12px);
}
/* framework responsiveness*/
@media screen and (min-width: 768px) {
  :root {
    /* footer legal */
    --footer___legal___direction: row;
    --footer___legal___justify: flex-start;
    --footer___legal___align: center;
    --footer___legal___gap: 20px;
    /* footer social */
    --footer___social___direction: row;
    --footer___social___justify: flex-start;
    --footer___social___align: center;
    --footer___social___gap: 20px;
  }
  .axial_form_utils_grid {
    display: grid;
  }
}
@media screen and (min-width: 992px) {
  .axial_header_nav {
    display: flex;
  }
}
@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;
  }
  :root .axial_admin_burger {
    display: none;
  }
  :root .axial_web_menu_button_holder {
    display: none;
  }
  :root .axial_web_desktop_nav {
    display: flex;
  }
}
@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 */
:root {
  /* GLOBALS */
  /* LOGO */
  --ft___logoTextHolderMarginLeft: 7px;
  --ft___logoTextHolderGap: 12px;
  --ft___logoFrenchSize: 40px;
  --ft___logoFrenchMarginTop: 7px;
  --ft___logoScriptSize: 46px;
  /* H2 */
  --ft___h2FontSize: 28px;
  /* TITLE */
  --ft___titleFontSize: 50px;
  --ft___titleLineHeight: 60px;
  --ft___titleMarginBottom: 20px;
}
.ft_logo_text_holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: var(--ft___logoTextHolderMarginLeft);
  gap: var(--ft___logoTextHolderGap);
}
.ft_logo_french {
  font-family: "Yanone";
  color: #fff;
  font-weight: 200;
  font-size: var(--ft___logoFrenchSize);
  margin-top: var(--ft___logoFrenchMarginTop);
}
.ft_logo_script {
  font-family: "BetterTogetherScript";
  color: #fff;
  font-size: var(--ft___logoScriptSize);
}
.ft_h2 {
  color: var(--themeColor);
  font-size: var(--ft___h2FontSize);
  text-decoration: underline;
  margin-top: 0;
  margin-bottom: 10px;
}
.ft_section_title {
  font-size: var(--ft___titleFontSize);
  line-height: var(--ft___titleLineHeight);
  margin-bottom: var(--ft___titleMarginBottom);
}
.ft_section_text {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}
.ft_white {
  color: #fff;
  fill: #fff;
}
.ft_menu_panel-background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ft_menu_panel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ft_menu_panel-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: rgba(0, 0, 0, 0.69);
}
@media screen and (min-width: 1200px) {
  :root {
    /* GLOBALS */
    /* LOGO */
    --ft___logoTextHolderMarginLeft: 10px;
    --ft___logoTextHolderGap: 20px;
    --ft___logoFrenchSize: 52px;
    --ft___logoFrenchMarginTop: 7px;
    --ft___logoScriptSize: 60px;
    /* H2 */
    --ft___h2FontSize: 40px;
    /* TITLE */
    --ft___titleFontSize: 80px;
    --ft___titleLineHeight: unset;
    --ft___titleMarginBottom: 20px;
  }
}
/* local page styles */
:root {
  /* GLOBALS */
  /* HERO SECTION */
  --ft___heroSectionWidth: 100%;
  --ft___h1FontSize: 60px;
  --ft___h1LineHeight: 64px;
  --ft___h1MarginTop: 40px;
  --ft___h1MarginBottom: 20px;
  --ft___heroAddressFontSize: 28px;
  --ft___heroButtonsDirection: column;
  --ft___heroButtonsAlign: flex-end;
  --ft___heroButtonsGap: 20px;
  /* STORY SECTION */
  --ft___storySectionHeight: auto;
  --ft___storyContentPadding: 20px;
  --ft___storyContentDirection: column;
  /* CONCEPT SECTION */
  --ft___conceptSectionHeight: 600px;
  --ft___conceptContentPaddingLeft: 30px;
  --ft___conceptBackgroundAttachment: unset;
  /* RESTAURANT SECTION */
  --ft___restaurantSectionHeight: 600px;
  --ft___restaurantHolderTop: unset;
  --ft___restaurantHolderBottom: -80px;
  --ft___reastaurantTextsJustify: flex-start;
  --ft___restaurantTextsPaddingRight: 30px;
  /* MENU SECTION */
  --ft___menuSectionHeight: auto;
  --ft___menuGridColumns: repeat(6, 1fr);
  --ft___menuGridRows: repeat(12, minmax(0, 64px));
  --ft___menuH2_r: 1;
  --ft___menuH2_c: 1 / span 2;
  --ft___menuTitle_r: 5 / span 2;
  --ft___menuTitle_c: 1 / span 6;
  --ft___menuBook_r: 4;
  --ft___menuBook_c: 1 / span 3;
  --ft___menuMenu_r: 7;
  --ft___menuMenu_c: 4 / span 3;
  --ft___menuImage1_r: 1 / span 2;
  --ft___menuImage1_c: 3 / span 2;
  --ft___menuImage2_r: 1 / span 2;
  --ft___menuImage2_c: 5 / span 2;
  --ft___menuImage3_r: 2 / span 2;
  --ft___menuImage3_c: 1 / span 2;
  --ft___menuImage4_r: 3 / span 2;
  --ft___menuImage4_c: 4 / span 3;
  --ft___menuImage5_r: 7 / span 3;
  --ft___menuImage5_c: 1 / span 3;
  --ft___menuImage6_r: 8;
  --ft___menuImage6_c: 4;
  --ft___menuImage7_r: 9;
  --ft___menuImage7_c: 4;
  --ft___menuImage8_r: 8 / span 2;
  --ft___menuImage8_c: 5 / span 2;
  --ft___menuImage9_r: 10 / span 3;
  --ft___menuImage9_c: 1 / span 3;
  --ft___menuImage10_r: 3;
  --ft___menuImage10_c: 3;
  --ft___menuImage11_r: 10 / span 3;
  --ft___menuImage11_c: 4 / span 3;
  /* ADDRESS SECTION */
  --ft___addressSectionHeight: auto;
  --ft___addressContentDisplay: flex;
  --ft___addressImageHeight: 320px;
  --ft___addressTextPadding: 20px;
  --ft___addressTextDisplay: flex;
  --ft___addressTextGap: 10px;
  --ft___addressPlacePaddingTop: 10px;
  --ft___addressHoursFontSize: 16px;
  /* TRATTORIA SECTION */
  --ft___trattoriaBackgroundAttachment: unset;
}
/* HERO SECTION */
.ft_hero_picture {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ft_hero_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ft_hero_content {
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  color: #fff;
  padding-left: 20px;
  width: var(--ft___heroSectionWidth);
}
.ft_hero_h1 {
  color: #fff;
  font-size: var(--ft___h1FontSize);
  line-height: var(--ft___h1LineHeight);
  margin-top: var(--ft___h1MarginTop);
  margin-bottom: var(--ft___h1MarginBottom);
}
.ft_hero_address {
  margin-bottom: 40px;
  text-align: right;
  font-size: var(--ft___heroAddressFontSize);
}
.ft_hero_buttons {
  display: flex;
  justify-content: flex-end;
  flex-direction: var(--ft___heroButtonsDirection);
  align-items: var(--ft___heroButtonsAlign);
  gap: var(--ft___heroButtonsGap);
}
.ft_hero_button {
  width: 220px;
}
.ft_hero_event {
  margin-top: 20px;
  width: auto;
  height: auto;
  border: 2px solid #fff;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  padding: 10px;
  text-align: center;
}
.ft_hero_event-title {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
}
.ft_hero_event-link {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: underline;
}
.ft_hero_event-link:visited {
  color: #fff;
}
/* STORY SECTION */
/*
.ft_story_section
{
    height: var(--ft___storySectionHeight);
    background-color: #fff;
}
.ft_story_content
{
    display: flex;   
    justify-content: center;
    align-items: center;

    height:         var(--ft___storySectionHeight);
    padding:        var(--ft___storyContentPadding);
    flex-direction: var(--ft___storyContentDirection);
    gap:            var(--ft___storyContentPadding);
}
.ft_story_pic
{
    width: 340px;
    height: 100%;
    background-color: #232323;
    flex-shrink: 0;
}
.ft_story_pic-top
{
    align-self: flex-start;
}
.ft_story_pic-bottom
{
    align-self: flex-end;
}
.ft_story_texts
{
    flex-grow: 1;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
*/
/* CONCEPT SECTION */
.ft_concept_section {
  height: var(--ft___conceptSectionHeight);
  background-attachment: var(--ft___conceptBackgroundAttachment);
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("./assets/images/concept.webp");
}
.ft_concept_content {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: var(--ft___conceptContentPaddingLeft);
}
/* RESTAURANT SECTION */
.ft_restaurant_section {
  height: var(--ft___restaurantSectionHeight);
  background-color: var(--themeColor);
}
.ft_restaurant_content {
  width: 100%;
  height: 100%;
}
.ft_restaurant_holder {
  position: absolute;
  width: 800px;
  height: 400px;
  top: var(--ft___restaurantHolderTop);
  bottom: var(--ft___restaurantHolderBottom);
  left: 0;
  z-index: 9;
  overflow: hidden;
}
.ft_restaurant_circle {
  position: absolute;
  width: 800px;
  height: 800px;
  background-color: #232323;
  border-radius: 50%;
  left: -100px;
  top: -200px;
  border: 4px solid #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("./assets/images/restaurant.webp");
  overflow: hidden;
}
.ft_restaurant_texts {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: var(--ft___reastaurantTextsJustify);
  align-items: flex-end;
  padding-top: 20px;
  padding-right: var(--ft___restaurantTextsPaddingRight);
  color: #fff;
  text-align: right;
}
.ft_restaurant_white {
  color: #fff;
  padding-left: 20px;
}
/* MENU SECTION */
.ft_menu_section {
  height: var(--ft___menuSectionHeight);
}
.ft_menu_background {
  background-color: var(--themeColor);
}
.ft_menu_content {
  padding-top: var(--header___height);
  width: 100%;
  height: 100%;
}
.ft_menu_grid {
  background-color: var(--whiteLight);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: var(--ft___menuGridColumns);
  grid-template-rows: var(--ft___menuGridRows);
  gap: 2px 2px;
}
.ft_menu_h2 {
  grid-row: var(--ft___menuH2_r);
  grid-column: var(--ft___menuH2_c);
  align-self: center;
  justify-self: center;
  margin-bottom: 0;
}
.ft_menu_title {
  grid-row: var(--ft___menuTitle_r);
  grid-column: var(--ft___menuTitle_c);
  align-self: center;
  justify-self: center;
  text-align: center;
  margin-bottom: 10px;
}
.ft_menu_action-book {
  grid-row: var(--ft___menuBook_r);
  grid-column: var(--ft___menuBook_c);
  align-self: center;
  justify-self: center;
}
.ft_menu_action-menu {
  grid-row: var(--ft___menuMenu_r);
  grid-column: var(--ft___menuMenu_c);
  align-self: center;
  justify-self: center;
}
.ft_menu_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ft_menu_image-t1 {
  grid-row: var(--ft___menuImage1_r);
  grid-column: var(--ft___menuImage1_c);
}
.ft_menu_image-t2 {
  grid-row: var(--ft___menuImage2_r);
  grid-column: var(--ft___menuImage2_c);
}
.ft_menu_image-t3 {
  grid-row: var(--ft___menuImage3_r);
  grid-column: var(--ft___menuImage3_c);
}
.ft_menu_image-t4 {
  grid-row: var(--ft___menuImage4_r);
  grid-column: var(--ft___menuImage4_c);
}
.ft_menu_image-t5 {
  grid-row: var(--ft___menuImage5_r);
  grid-column: var(--ft___menuImage5_c);
}
.ft_menu_image-t6 {
  grid-row: var(--ft___menuImage6_r);
  grid-column: var(--ft___menuImage6_c);
}
.ft_menu_image-t7 {
  grid-row: var(--ft___menuImage7_r);
  grid-column: var(--ft___menuImage7_c);
}
.ft_menu_image-t8 {
  grid-row: var(--ft___menuImage8_r);
  grid-column: var(--ft___menuImage8_c);
}
.ft_menu_image-t9 {
  grid-row: var(--ft___menuImage9_r);
  grid-column: var(--ft___menuImage9_c);
}
.ft_menu_image-t10 {
  grid-row: var(--ft___menuImage10_r);
  grid-column: var(--ft___menuImage10_c);
}
.ft_menu_image-t11 {
  grid-row: var(--ft___menuImage11_r);
  grid-column: var(--ft___menuImage11_c);
}
/*
.ft_menu_image-t12
{
    grid-row: 1;
    grid-column: 12;
}
.ft_menu_image-t13
{
    grid-row: 2;
    grid-column: 12;
}
.ft_menu_image-t14
{
    grid-row: 3;
    grid-column: 12;
}
*/
/* ADDRESS SECTION */
.ft_address_section {
  height: var(--ft___addressSectionHeight);
  background-color: #fff;
  overflow: hidden;
}
.ft_address_content {
  height: 100%;
  display: var(--ft___addressContentDisplay);
  flex-direction: column;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}
.ft_address_image {
  display: block;
  width: 100%;
  height: var(--ft___addressImageHeight);
  grid-row: 1;
  grid-column: 1;
  object-fit: cover;
}
.ft_address_text {
  padding: var(--ft___addressTextPadding);
  grid-row: 1;
  grid-column: 2 / span 2;
  display: flex;
  flex-direction: column;
}
.ft_address_grid {
  display: var(--ft___addressTextDisplay);
  gap: var(--ft___addressTextGap);
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  flex-direction: column;
}
.ft_address_place {
  padding-top: var(--ft___addressPlacePaddingTop);
  grid-column: 1 / span 2;
  grid-row: 1;
}
.ft_address_hours {
  grid-column: 3 / span 3;
  grid-row: 1;
}
.ft_address_hours_text {
  font-size: var(--ft___addressHoursFontSize);
}
/* TRATTORIA SECTION */
.ft_trattoria_section {
  height: 420px;
  background-color: #232323;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("./assets/images/trattoria-ambient.webp");
  background-attachment: var(--ft___trattoriaBackgroundAttachment);
}
.ft_trattoria_content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: row;
  background-color: rgba(0, 0, 0, 0.5);
}
.ft_trattoria_texts {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ft_trattoria_title {
  mix-blend-mode: difference;
}
.ft_trattoria_link {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  :root {
    /* HERO SECTION */
    --ft___heroSectionWidth: 60%;
    --ft___h1FontSize: 120px;
    --ft___h1LineHeight: 128px;
    --ft___h1MarginTop: 80px;
    --ft___h1MarginBottom: 40px;
    --ft___heroAddressFontSize: 36px;
    --ft___heroButtonsDirection: row;
    --ft___heroButtonsAlign: center;
    --ft___heroButtonsGap: 40px;
    /* STORY SECTION */
    --ft___storySectionHeight: 520px;
    --ft___storyContentPadding: 60px;
    --ft___storyContentDirection: row;
    --ft___storyPicHeight: 100%;
    /*reprendre ici*/
    /* CONCEPT SECTION */
    --ft___conceptSectionHeight: 420px;
    --ft___conceptContentPaddingLeft: 60px;
    --ft___conceptBackgroundAttachment: fixed;
    /* RESSTAURANT SECTION */
    --ft___restaurantSectionHeight: 320px;
    --ft___restaurantHolderTop: 0;
    --ft___restaurantHolderBottom: unset;
    --ft___reastaurantTextsJustify: center;
    --ft___restaurantTextsPaddingRight: 60px;
    /* MENU SECTION */
    --ft___menuSectionHeight: 100vh;
    --ft___menuGridColumns: repeat(12, 1fr);
    --ft___menuGridRows: repeat(9, minmax(0, 1fr));
    --ft___menuH2_r: 1;
    --ft___menuH2_c: 3 / span 2;
    --ft___menuTitle_r: 4;
    --ft___menuTitle_c: 6 / span 7;
    --ft___menuBook_r: 3;
    --ft___menuBook_c: 1 / span 2;
    --ft___menuMenu_r: 8;
    --ft___menuMenu_c: 6 / span 3;
    --ft___menuImage1_r: 1 / span 2;
    --ft___menuImage1_c: 1 / span 2;
    --ft___menuImage2_r: 2 / span 2;
    --ft___menuImage2_c: 3 / span 2;
    --ft___menuImage3_r: 4 / span 6;
    --ft___menuImage3_c: 1 / span 5;
    --ft___menuImage4_r: 1 / span 3;
    --ft___menuImage4_c: 5 / span 3;
    --ft___menuImage5_r: 9;
    --ft___menuImage5_c: 6;
    --ft___menuImage6_r: 9;
    --ft___menuImage6_c: 7;
    --ft___menuImage7_r: 5 / span 3;
    --ft___menuImage7_c: 6 / span 3;
    --ft___menuImage8_r: 5 / span 5;
    --ft___menuImage8_c: 9 / span 4;
    --ft___menuImage9_r: 1 / span 3;
    --ft___menuImage9_c: 8 / span 2;
    --ft___menuImage10_r: 9;
    --ft___menuImage10_c: 8;
    --ft___menuImage11_r: 1 / span 3;
    --ft___menuImage11_c: 10 / span 3;
    /* ADDRESS SECTION */
    --ft___addressSectionHeight: 640px;
    --ft___addressContentDisplay: grid;
    --ft___addressImageHeight: 100%;
    --ft___addressTextPadding: 40px;
    --ft___addressTextDisplay: grid;
    --ft___addressTextGap: 40px;
    --ft___addressPlacePaddingTop: 44px;
    --ft___addressHoursFontSize: 24px;
    /* TRATTORIA SECTION */
    --ft___trattoriaBackgroundAttachment: fixed;
  }
}
