@charset "utf-8";
/* CSS Document */

html, body {
  color:rgba(0,0,0,1.00);
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: 700
}
.modal input{
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.modal label{
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.modal button{
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.tooltip > .tooltip-inner {
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
  color:#3da2fd;
  background-color: #F5F7F6;;
}
h2 {
  text-align: center;
}
#renderCanvas {
    width: 100%;
    height: 100%;
    touch-action: none;
}

.project-choice-popup{
  position:absolute;
  top:50%;
  right:clamp(180px, 18vw, 320px);
  width:164px;
  height:238px;
  box-sizing:border-box;
  padding:40px 12px 16px;
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:20px;
  background:rgba(245, 247, 246, .8);
  border-radius:15px;
  font-family:"Space Grotesk", sans-serif;
  z-index:900;
  transform:translateY(-50%);
}

.project-choice-popup.is-visible{
  display:flex;
}

.project-choice-popup.is-hidden{
  display:none;
}

.project-choice-close{
  position:absolute;
  top:12px;
  right:12px;
  width:20px;
  height:20px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:9px;
  background:#3DA2FD;
  color:#fff;
  font-family:"Space Grotesk", sans-serif;
  font-size:15px;
  line-height:20px;
  font-weight:700;
  cursor:pointer;
}

.project-choice-action{
  width:128px;
  height:81px;
  padding:0 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  border-radius:12px;
  background:#3DA2FD;
  color:#fff;
  font-family:"Space Grotesk", sans-serif;
  font-size:12px;
  line-height:1.1;
  font-weight:700;
  text-align:center;
  cursor:pointer;
}

.project-choice-action svg{
  flex:0 0 auto;
  color:#fff;
}

.toolBox{
  position:absolute;
  top:0px;
  left:35px; 
  background-color:#F5F7F6;;
  display:none;
  padding:4px;
  height:34px;
}
.toolBoxBtn{
  margin: 2px;
  padding:0;
  width:23px;
  height:23px;
  justify-content: center;
    align-items: center;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}
.itemsCatalogue img {
  width: 165px;
  height: 165px;
  object-fit: contain;
}
.menuItems{
  float:right;
  margin-right: 20px;
}


/* =========================
   INFOSBOX (version clean)
   ========================= */

#infosBox{
  position: absolute;
  left:108px;
  top: 50%;
  transform: translateY(-50%);
  width:183px;
  box-sizing:border-box;

  background: #F5F7F6;

  border-radius:15px;

  padding:6px;
  box-shadow:0 10px 22px rgba(0,0,0,.14);

  display:flex;
  flex-direction:column;
  gap:10px;

  overflow:hidden !important;
  z-index:1000;
}

/* IMPORTANT : on scope tout sous #infosBox */
#infosBox #moduleName{
  display:flex;
  align-items:center;
  margin-top: 4px;
  height:20px;            /* ajuste: 28/30/32 selon ton feeling */
  padding:0 4px;

  font-size:13px;
  line-height:13px;       /* important avec align-items:center */
  font-weight:700;
  color:#0b0f1a;

  /* gestion des noms longs */
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

#infosBox #moduleInfos{
  flex:1 1 auto;
  min-height:0;       /* indispensable pour scroll en flex */
  overflow:auto;

  /* le panneau gris clair de la maquette */
  
  border-radius:12px;
  padding:0px;

  display:flex;
  flex-direction:column;
  gap:8px;
  overflow:hidden;
  color:#0b0f1a;
  font-size:12px;
  line-height:14px;
  font-weight:600;
}

/* lignes (si on injecte en rows plus tard) */
#infosBox #moduleInfos .infoRow{
  background: #E3E6E5;
  border-radius:10px;
  padding:5px 10px;
  color: #696969;

  display:flex;
  flex-direction:column;   /* ← clé : empile key + value */
  align-items:flex-start;
  gap:2px;
}

/* label (Dimensions, Profondeur, etc.) */
#infosBox #moduleInfos .infoKey{
  color:#0086ff;
  font-weight:700;
  font-size:12px;
  line-height:14px;

  padding-bottom:4px;
  margin-bottom:4px;

  border-bottom:1px solid #6E6B6B21;  /* ← trait séparateur */
  width:100%;                         /* ← pour que le trait prenne toute la largeur */
}

#infosBox #moduleInfos .infoVal{
  color:#696969;
  font-weight:700;
  font-size:11px;
  line-height:14px;
  
  width:100%;       
  text-align:center;

  display:block;  
}

.mi-infoList{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.infoRow{
  background:#f4f6f6;
  border-radius:10px;
  padding:6px 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.infoKey{
  color:#0086ff;
  font-weight:700;
  font-size:12px;
}

.infoVal{
  color:#0b0f1a;
  font-weight:700;
  font-size:12px;
  text-align:right;
}

.is-price{
  position:static
}
.mi-priceBadge{
  position:absolute;
  right:10px;
  top:78px;
  padding:3px 8px;
  border-radius:6px;
  background:#0F59E0;
  color:#fff;
  font-weight:700;
  font-size:12px;
  white-space:nowrap;
}

#infosBox .is-price .infoVal{
  display:inline-block;

  padding:3px 8px;
  border-radius:6px;

  background:#0F59E0;
  color:#ffffff !important;

  font-weight:700;
  font-size:12px;
  line-height:14px;

  white-space:nowrap;
}







.form-check-input {
  background-color: #b2daff;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #3da2fd;
}

.dropend a{
  min-width: 223px;
  white-space: normal;
}
.dropdown-item ul{
  list-style: none;
  padding-left: 2px;
  display: inline;
  color:#3da2fd;
}
.dropdown-item h4{
  margin-bottom: 6px;
  width:165px;
  padding-top:6px;
  text-align: center;
  white-space: normal;
  border-top: solid #3da2fd;
  color:#3da2fd;
}
.itemsList{
  margin-left:-24px;
  flex-direction: column;
}
.itemsList img{
  cursor: grab;
  background-color: #3da2fd;
}
.itemPersons{
  /*background-color: white;
  -webkit-mask-image: url(../images/man.svg);
  mask-image: url(../images/man.svg);
  mask-repeat: no-repeat;*/
  color:#3da2fd;
  background-image: url(../images/manBlue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  padding-left:26px;
  margin-top:6px;
  margin-left:-134px;
}
.itemPrice{
  color:#3da2fd;
  background-image: url(../images/ticket-liBlue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  padding-left:26px;
  margin-top:-20px;
  margin-right: -94px;
}

.icon{
  color:#3da2fd;
}
.icon-blue {
  width: 27px;
  height: 27px;
  color: #0086FF;
}

.divider {
  border-left: 2px solid #d3d3d4;
  width:1px;
  height:20px;
  margin:0 10px;
}
.dividerCategories {
  border-top: 1px solid #3da2fd;
  width:150px;
  height:1px;
  margin-left:44px;
}
.labelSettings{
  margin-left:44px; 
  margin-bottom: 2px;
}
.inputSettings{
  margin-left:44px; 
  max-width: 170px;
  padding: 0;
}
.projects{
  cursor: pointer;
}
.environnements{
  cursor: pointer;
}
#modal-notice {
  font-weight:400;
}
.notice-item {
  list-style: inside;
  list-style-position: outside
}
/* HTML: <div class="loader"></div> */
#loader {
  position:absolute;
  top: 50%;
  left: 50%;
  display:none;
}
/* HTML: <div class="loader"></div> */
*{margin:0;padding:0;text-decoration:none;list-style:none;box-sizing:border-box;}
.loader {
 width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 
.logoBoaz {
  padding: 0;
  cursor:pointer;
}
button{
  justify-content: center;
  align-items: center;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  color: white;
  font-family: 'Arial Black';
  transition: color .4s ease;
}
.btnLogicielLandingPage {
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: bold;
  cursor: pointer;
  border: 0px solid rgb(187, 204, 0);
  font-size: 15px;
  color: rgb(255, 255, 255);
  padding: 8px 30px;
  transition: 208ms;
  width: 240px;
  height:40px;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 8px;
  background: rgb(0, 136, 255);
  border-color: rgb(214, 214, 214);
  border-width: 1px;
  border-style: solid;
  --hover-bgc: #ffffff;
  --hover-color: #0088ff;
  --hover-borderc: #d6d6d6;
  --hover-width: 335px;
  --hover-borderSize: 1px;
}

.btnLogicielLandingPage:hover{
color: rgb(0, 136, 255);
background: rgb(255, 255, 255);

} 
.btnLandingPage {
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: bold;
  cursor: pointer;
  border: 0px solid rgb(187, 204, 0);
  font-size: 15px;
  color: rgb(0, 136, 255);
  padding: 8px 30px;
  transition: 208ms;
  width: 240px;
  height:40px;
  margin-left: 25px;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 8px;
  background: rgb(255, 255, 255);
  border-color: rgb(0, 136, 255);
  border-width: 1px;
  border-style: solid;
  --hover-bgc: #ffffff;
  --hover-color: #0088ff;
  --hover-borderc: #d6d6d6;
  --hover-width: 335px;
  --hover-borderSize: 1px;
  }

.btnLandingPage:hover{
  color: rgb(255, 255, 255);
  background: rgb(0, 136, 255);
  fill: red;
}

#gallery{
  width:100%;
  height:100%;
  position: absolute;
  background-color: rgba(255,255,255,1.00);
  z-index:1400;
  overflow: auto;
}
#gallery .page-header.d-print-none{
  position: relative;
  margin-top: 0 !important;
  padding: 40px 0 40px;
  background: #ffffff;
}
#gallery .page-header.d-print-none::after{
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: transparent;
}
#gallery .page-header.d-print-none .container-xl{
  max-width: 1320px;
}
#gallery .page-header.d-print-none .row.g-2{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}
#gallery .page-header.d-print-none .row.g-2 > .col{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  grid-column: 1 / -1;
}
#gallery #logoGallery{
  cursor: pointer;
}
#gallery #galleryLogicielBtn_1{
  float: none !important;
  margin-left: auto;
  min-width: 240px;
}
#gallery .page-header.d-print-none .row.g-2 > div[style*="font-size: 40px"]{
  margin-top: 0 !important;
  color: #0088ff !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem) !important;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: none;
  white-space: nowrap;
  align-self: center;
}
#gallery .gallery-controls-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
#gallery .gallery-actions-group,
#gallery .gallery-results-filters{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: auto;
}
#gallery .gallery-results-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
#gallery .gallery-shared-title{
  text-align: left;
  color: #182433;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
#gallery .gallery-results-title{
  flex: 1 1 auto;
  min-width: 0;
}
#gallery .gallery-category-tabs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}
#gallery .gallery-category-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #ffffff;
  transform: scale(1);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
#gallery .gallery-category-tab:hover{
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(17, 95, 176, 0.12);
}
#gallery .gallery-category-tab.is-active,
#gallery .gallery-category-tab.active{
  transform: scale(1.04);
  box-shadow: 0 14px 28px rgba(17, 95, 176, 0.18);
}
#gallery .gallery-category-tab:focus-visible{
  outline: 2px solid rgba(0, 136, 255, 0.28);
  outline-offset: 3px;
}
#gallery .gallery-category-tab[data-category="parcs-aquatiques"],
#gallery .gallery-category-tab[data-category="centre-aquatique"]{
  background: linear-gradient(135deg, #14a8e9 0%, #24b7f2 100%);
}
#gallery .gallery-category-tab[data-category="bases-nautiques"]{
  background: linear-gradient(135deg, #1c54d6 0%, #2b6ce9 100%);
}
#gallery .gallery-category-tab[data-category="baignade-naturelle"]{
  background: linear-gradient(135deg, #15d778 0%, #26df85 100%);
}
#gallery .gallery-category-tab:not(.is-active){
  opacity: 0.92;
}
#gallery .page-header.d-print-none .nav-link{
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  margin-left: auto;
  width: min(100%, 360px);
  flex: 0 0 min(100%, 360px);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0, 136, 255, 0.24);
  border-radius: 999px;
  align-self: center;
  box-shadow: 0 18px 45px rgba(0, 78, 146, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
#gallery .page-header.d-print-none .nav-link:hover,
#gallery .page-header.d-print-none .nav-link:focus-within{
  border-color: rgba(0, 136, 255, 0.45);
  box-shadow: 0 22px 50px rgba(0, 78, 146, 0.12);
  transform: translateY(-1px);
}
#gallery .page-header.d-print-none .nav-link-icon{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #6d7b8f;
  flex: 0 0 auto;
}
#gallery .page-header.d-print-none .nav-link-title{
  flex: 1 1 auto;
  position: relative;
}
#gallery .gallery-filter-control{
  position: relative;
  flex: 0 0 auto;
}
#gallery .gallery-filter-trigger{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 283px;
  min-width: 283px;
  height: 31px;
  padding: 0 16px;
  border: 1px solid rgba(0, 136, 255, 0.3);
  border-radius: 14px;
  background: #ffffff;
  color: #0b63ce;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(17, 95, 176, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
#gallery .gallery-filter-trigger:hover,
#gallery .gallery-filter-control.is-open .gallery-filter-trigger{
  border-color: rgba(0, 136, 255, 0.46);
  box-shadow: 0 16px 28px rgba(17, 95, 176, 0.12);
  transform: translateY(-1px);
}
#gallery .gallery-filter-trigger svg{
  color: #0b63ce;
  transition: transform 0.2s ease;
}
#gallery .gallery-filter-control.is-open .gallery-filter-trigger svg{
  transform: rotate(180deg);
}
#gallery .gallery-filter-panel{
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  width: 283px;
  height: 92px;
  padding: 20px 14px 12px;
  border: 1px solid rgba(0, 136, 255, 0.22);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(10, 73, 145, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#gallery .gallery-filter-control.is-open .gallery-filter-panel{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#gallery .gallery-filter-values{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #0b63ce;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
#gallery .gallery-filter-slider{
  margin: 4px 2px 0;
}
#gallery .gallery-filter-slider.noUi-target{
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 136, 255, 0.16);
  box-shadow: none;
}
#gallery .gallery-filter-slider .noUi-connect{
  background: #0088ff;
}
#gallery .gallery-filter-slider .noUi-handle{
  width: 16px;
  height: 16px;
  top: -7px;
  right: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #0088ff;
  box-shadow: 0 0 0 2px rgba(0, 136, 255, 0.18);
}
#gallery .gallery-filter-slider .noUi-handle::before,
#gallery .gallery-filter-slider .noUi-handle::after{
  display: none;
}
#gallery .gallery-section-title-hidden{
  display: none;
}
#gallery #searchModeles{
  height: 100%;
  padding: 0 34px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left !important;
  color: #17324d;
}
#gallery .gallery-search-clear{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a97a8;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, color 0.18s ease;
}
#gallery .gallery-search-clear.is-visible{
  opacity: 1;
  pointer-events: auto;
}
#gallery .gallery-search-clear:hover{
  color: #17324d;
}
#gallery #searchModeles::placeholder{
  color: #8a97a8;
  font-weight: 400;
}
#gallery #searchModeles:focus{
  outline: none;
  box-shadow: none;
}
#gallery .page-body{
  padding-top: 0;
  padding-bottom: 48px;
}
#gallery .page-body .container-xl{
  max-width: 1320px;
}
#gallery .row.row-cards{
  row-gap: 26px;
}
#gallery .row.row-cards > .gallery-section-title{
  width: 100%;
  margin: 10px 0 -2px;
}
#gallery .row.row-cards > .gallery-section-title:first-of-type{
  margin-top: 0;
}
@media (max-width: 991.98px){
  #gallery .page-header.d-print-none{
    padding: 28px 0 18px;
  }
  #gallery .page-header.d-print-none .row.g-2{
    gap: 16px;
  }
  #gallery .page-header.d-print-none .row.g-2 > .col{
    flex-wrap: wrap;
  }
  #gallery .gallery-controls-row{
    flex-direction: column;
    align-items: stretch;
  }
  #gallery .gallery-actions-group{
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }
  #gallery .gallery-results-toolbar{
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  #gallery .gallery-results-filters{
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }
  #gallery #galleryLogicielBtn_1{
    min-width: 0;
    width: 100%;
  }
  #gallery .page-header.d-print-none .nav-link{
    width: 100%;
    flex-basis: auto;
  }
  #gallery .gallery-filter-control{
    flex: 1 1 180px;
  }
  #gallery .gallery-filter-trigger{
    width: 100%;
    min-width: 0;
  }
  #gallery .gallery-filter-panel{
    left: 0;
    right: auto;
  }
}
@media (max-width: 767.98px){
  #gallery .gallery-category-tabs{
    gap: 10px;
  }
  #gallery .gallery-category-tab{
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }
  #gallery .page-header.d-print-none .nav-link{
    min-height: 48px;
    height: 48px;
    padding: 0 18px;
  }
  #gallery .gallery-actions-group{
    gap: 10px;
  }
  #gallery .gallery-results-title{
    font-size: 1.8rem;
  }
  #gallery .gallery-filter-panel{
    width: min(100vw - 48px, 262px);
  }
  #gallery #searchModeles{
    font-size: 1rem;
  }
  #gallery .row.row-cards > .gallery-section-title{
    margin-top: 2px;
  }
}
#landingPage{
  width:100%;
  height:100%;
  position: absolute;
  opacity:1;
  background:#fff;
  z-index:1500;
}

.landing-loader{
  position:absolute;
  top:50%;
  left:50%;
  z-index:20;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:1;
  pointer-events:none;
  transform:translate(-50%, -50%);
  transition:opacity .2s ease;
}

.landing-loader span{
  width:32px;
  height:32px;
  border:3px solid rgba(0, 136, 255, .18);
  border-top-color:#0088ff;
  border-radius:50%;
  animation:landingLoaderSpin .8s linear infinite;
}

@keyframes landingLoaderSpin{
  to{
    transform:rotate(360deg);
  }
}

body.is-landing-ready .landing-loader{
  opacity:0;
}

body.is-landing-ready .landing-loader span{
  animation-play-state:paused;
}

body.is-language-loading #landingPage .home-v2-header,
body.is-language-loading #landingPage .home-v2{
  opacity:0;
  pointer-events:none;
}

#landingPageContainer {
  z-index:1000; 
  width:1200px;
  margin:110px 0 0 300px;
  position: absolute; 
  background-image: linear-gradient(to right, rgba(255,255,255,0.85), rgba(255,255,255,0));
}
#landingPageContainer > div {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
#landingLeftColumn {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Colonne droite */
#landingRightColumn {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nav-link{
  cursor:pointer;
}
.dispNoneNavItems,
.dispNone {
  display: none !important;
}

/* force style slider budget (spécificité + neutralisation) */
#budgetRange.noUi-target,
#budgetRange .noUi-target {
  height: 4px !important;
  background: #e9ecef !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 999px !important;
}

/* couches internes */
#budgetRange .noUi-base,
#budgetRange .noUi-connects,
#budgetRange .noUi-connect {
  height: 4px !important;
}

#budgetRange .noUi-connect {
  background: var(--tblr-primary) !important;
  border-radius: 999px !important;
}

/* poignées */
#budgetRange .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tblr-primary) !important;
  border: 2px solid #fff !important;
  box-shadow: 0 0 0 2px rgba(var(--tblr-primary-rgb), 0.3) !important;
}

#budgetRange .noUi-handle:before,
#budgetRange .noUi-handle:after {
  display: none !important;
}

/* centrage vertical poignée */
#budgetRange.noUi-horizontal .noUi-handle,
#budgetRange .noUi-horizontal .noUi-handle {
  top: -7px !important; /* (18/2)-(4/2) */
}



 /* Durée pilotée par variable CSS (surchargée via JS) */
#toolBoxID{ --tbx-dur:350ms; }

/* État initial / ouvert (entrée = slide gauche, sans scale) */
#toolBoxID{
  opacity: 0;
  transform: translateX(-10px);  /* -12px → -10px */
  pointer-events: none;
  border-radius: 15px;
  transition:
    opacity var(--tbx-dur) cubic-bezier(.22,.61,.36,1),
    transform var(--tbx-dur) cubic-bezier(.22,.61,.36,1);
}
#toolBoxID.is-open{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Fermeture finale du container : FADE SEUL (pas de translate) */
#toolBoxID.is-closing{
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tbx-dur) cubic-bezier(.22,.61,.36,1);
}

/* === Entrées enfants === */
#toolBoxID #moduleName{
  opacity: 0;
  transform: translateX(-8px);   /* -10px → -8px */
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}
#toolBoxID.stage-name #moduleName{
  opacity: 1;
  transform: translateX(0);
}

#toolBoxID #xtremTowerPanel{
  opacity: 0;
  transform: translateY(8px);    /* 10px → 8px */
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}
#toolBoxID.stage-panel #xtremTowerPanel{
  opacity: 1;
  transform: translateY(0);
}

/* moduleInfos : entrée top -> bottom (10px → 8px) */
#toolBoxID #moduleInfos{
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}
#toolBoxID.info-open #moduleInfos{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* === xtColorBox : droite → gauche (10px → 8px) === */
#toolBoxID #xtremTowerPanel #xtColorBox{
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}
#toolBoxID.stage-color #xtremTowerPanel #xtColorBox{
  opacity: 1;
  transform: translateX(0);
}

/* === Fermeture séquencée (ordre : color → panel → name → container) === */

/* Étape 1 : xtColorBox repart à droite (10px → 8px) */
#toolBoxID.closing-color #xtremTowerPanel #xtColorBox{
  opacity: 0;
  transform: translateX(8px);
}

/* Étape 2 : panel descend + infos remontent (10px → 8px) */
#toolBoxID.closing-panel #xtremTowerPanel{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}
#toolBoxID.closing-panel #moduleInfos{
  opacity: 0;
  transform: translateY(-8px);
}

/* Étape 3 : moduleName repart à gauche (10px → 8px) */
#toolBoxID.closing-name #moduleName{
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}

/* Étape 4 : container → fade only via .is-closing (ci-dessus) */


/* Étape 4: fade final du conteneur (il disparait) */
#toolBoxID.is-closing{
  opacity:0; /* <-- uniquement l'opacité ici */
  /* on peut garder une légère translation si tu veux, sinon retire : */
  transform: translateX(-10px) scale(.98);
  pointer-events:none;
}
/* État initial de la box couleurs (cachée, prête à glisser depuis la gauche) */
#toolBoxID #xtremTowerPanel #xtColorBox{
  opacity: 0;
  transform: translateX(10px); /* vient de la droite */
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}
#toolBoxID.stage-color #xtremTowerPanel #xtColorBox{
  opacity: 1;
  transform: translateX(0);
}

/* --- FERMETURE SÉQUENCÉE --- */
/* ÉTAPE 1 : d'abord xtColorBox (droite) */
#toolBoxID.closing-color #xtremTowerPanel #xtColorBox{
  opacity: 0;
  transform: translateX(10px);
}

/* ÉTAPE 2 : puis xtremTowerPanel (bas) */
#toolBoxID.closing-panel #xtremTowerPanel{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}

/* ÉTAPE 3 : puis moduleName (gauche) */
#toolBoxID.closing-name #moduleName{
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--tbx-dur) ease, transform var(--tbx-dur) ease;
}

/* ÉTAPE 4 : enfin le container (fade seul) */
#toolBoxID.is-closing{
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tbx-dur) cubic-bezier(.22,.61,.36,1);
}
.mi-doc {
  display:flex !important;
  width:100% !important;

  justify-content:center !important;
  align-items:center !important;

  margin:0 !important;

  text-align:center; /* au cas où */
  transition: color 0.2s ease;
  color:#0086ff;
}

.mi-doc svg {
  stroke: #0086ff;
  margin-right:4px;
  transition: transform 0.2s ease;
}

.mi-doc:hover {
  text-decoration: underline;
}

.mi-doc:hover svg {
  transform: translateX(6px);
}
.mi-thumb {
  cursor: pointer;
  transition: transform 0.18s ease;
  will-change: transform;
}

.mi-thumb:hover {
  transform: translateY(-3px) scale(1.03);
}

.mi-thumb:active {
  transform: translateY(0) scale(0.97);
}
/* image */
.mi-lb-img{
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  display: inline-block;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 1;
  transition: opacity .18s ease;
}

.mi-lb-img.is-fading{
  opacity: 0.5;
}


/* zone modal-body : flèches en overlay */
.mi-lb-body{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* flèches */
.mi-lb-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  transition: transform .18s ease, background .18s ease;
}

.mi-lb-arrow:hover{
  background: rgba(255,255,255,.18);
}

/* déplacement directionnel */
.mi-lb-prev:hover{
  transform: translateY(-50%) translateX(-4px);
}

.mi-lb-next:hover{
  transform: translateY(-50%) translateX(4px);
}
.mi-lb-prev:hover svg{
  transform: translateX(-6px);
}

.mi-lb-next:hover svg{
  transform: translateX(6px);
}
.mi-lb-prev{ left: 14px; }
.mi-lb-next{ right: 14px; }

.mi-lb-arrow svg{
  width: 72px; 
  height: 72px;  
  transition: transform .18s ease;
}

#carouselParc {
  position: absolute;
  top: 110px;
  right: 40px;
  width: 700px;
  height: 350px; 
  overflow: hidden;
}

/* Base */
#carouselParc .carousel-track {
  width: 100%;
  height: 100%;
}

#carouselParc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;      /* non cliquable */
}

/* ========== MODE BLUR (fondu + flou) ========== */

#carouselParc.mode-blur .carousel-track {
  position: relative;
}

#carouselParc.mode-blur img {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 1.2s ease-in-out,
    filter 1.2s ease-in-out;
}

#carouselParc.mode-blur img.active {
  opacity: 1;
  filter: blur(0);
}

/* ========== MODE SLIDE (transition position) ========== */

#carouselParc.mode-slide .carousel-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform var(--slide-duration, 0.8s) ease-in-out;
}

#carouselParc.mode-slide img {
  position: relative;
  flex: 0 0 100%;   /* chaque image = 100% de la largeur */
  opacity: 1;
  filter: none;
}

/* ========================= SETTINGS PANEL ========================= */

:root{
	--boaz-blue:#0086FF;
	--boaz-blue-rgb:0,134,255;
	--boaz-gray:#F5F7F6;;
	--boaz-text:#0b0f1a;
	--tblr-primary:var(--boaz-blue);
	--tblr-primary-rgb:var(--boaz-blue-rgb);
}

.tooltip > .tooltip-inner{
	font-family:"Space Grotesk","Helvetica Neue",Helvetica,Arial,"sans-serif";
	color:#3da2fd;
	background-color:#F5F7F6;;
}

/* =========================
	SETTINGS PANEL (Tabler)
	========================= */

.settings-panel{
	position:absolute;
	top:74px;
	right:20px;
	width:173px;
	height:540px;
	display:flex;
	flex-direction:column;
	border-radius:15px;
	overflow:hidden;
}

.settings-panel.hidden{
	display:none;
}

.settings-panel .card-header{
	flex:0 0 auto;
	justify-content:center;
	position:relative;
	display:flex;
	align-items:center;
}

.settings-panel .card-body{
	flex:1 1 auto;
	overflow-y:auto;
	overflow-x:hidden;
	padding:6px 15px !important;
}

.settings-panel .mb-2{
	margin-bottom:4px !important;
}

#settingsTxt{
	font-family:"Space Grotesk",sans-serif;
	font-weight:700;
	font-size:13px;
	line-height:13px;
	letter-spacing:0;
	text-align:center;
	display:block;
	width:100%;
	margin:0;
	color:var(--boaz-blue);
}

.settings-panel .card-actions{
	position:absolute;
	right:6px;
}

.settings-panel .form-label{
	margin:0 0 2px 7px;
	padding:0;
	font-size:11px;
	font-weight:700;
	color:var(--boaz-text);
}

.settings-panel .form-control,
.settings-panel .form-control-sm{
	width:100%;
	margin:0 !important;
	padding:0 6px !important;
	height:20px !important;
	min-height:20px !important;
	line-height:20px !important;
	font-size:11px;
	border-radius:5px !important;
	background-color:#f1f3f5 !important;
}

.settings-panel .form-control:hover{
	background-color:#eceff2 !important;
}

.settings-panel .form-control:focus{
	background-color:#eef6ff !important;
	border-color:var(--tblr-primary) !important;
	outline:none;
	box-shadow:0 0 0 1px rgba(var(--tblr-primary-rgb),.25) !important;
}

.settings-panel img{
	margin:0 !important;
}

/* devise pills: répartir sur toute la largeur */
#devise-radioBtn{
	display:flex !important;
	width:100% !important;
	gap:4px;
	margin:0 !important;
	padding:0 !important;
}

#devise-radioBtn > .form-selectgroup-item{
	flex:1 1 0 !important;
	min-width:0 !important;
	display:flex !important;
	margin-left:0 !important;
	margin-right:0 !important;
}

#devise-radioBtn > .form-selectgroup-item > .form-selectgroup-label{
	width:100% !important;
	display:flex !important;
	align-items:center;
	justify-content:center;
	text-align:center;
	padding:2px 0 !important;
	font-size:11px;
}

/* selectgroups généraux */
.settings-panel .form-selectgroup{
	gap:2px;
}

.settings-panel .form-selectgroup-label{
	padding:2px 6px !important;
	font-size:11px;
}

.settings-panel .form-selectgroup-boxes .form-selectgroup-label{
	padding:3px 6px !important;
	font-size:11px;
}

/* ENV selectgroup vertical */
.settings-panel .env-selectgroup{
	display:block !important;
	padding:0 8px 0 0;
}

.settings-panel .env-selectgroup .form-selectgroup-item{
	display:block !important;
	width:100% !important;
	margin:0 0 4px 0 !important;
}

.settings-panel .env-selectgroup .form-selectgroup-label{
	width:100%;
	box-sizing:border-box;
}

/* flags centrés + espacés */
.flags-row{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:20px;
	margin-top:2px;
	margin-bottom:2px;
}

.flags-row img{
	display:block;
}

/* scrollbar fine */
.settings-panel .card-body::-webkit-scrollbar{
	width:6px;
}

.settings-panel .card-body::-webkit-scrollbar-thumb{
	background:rgba(0,0,0,0.2);
	border-radius:3px;
}

.settings-panel .card-body::-webkit-scrollbar-track{
	background:transparent;
}

/* =========================
	ENV CAROUSEL (vignette + flèches overlay)
	========================= */

#envTitleTxt{
	padding-top:12px;
	font-weight:700;
}

.env-carousel{
	display:block;
	margin-top:4px;
}

.env-viewport{
	position:relative;
	width:100%;
	height:86px;
	border-radius:6px;
	overflow:hidden;
	background:#f1f3f5;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
}

.env-viewport img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

.env-arrow{
	position:absolute;
	bottom:4px;
	width:18px;
	height:18px;
	padding:0;
	border:none;
	background:rgba(255,255,255,0.75);
	border-radius:4px;
	color:#6c757d;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	z-index:2;
}

.env-arrow:hover{
	background:rgba(255,255,255,0.95);
	color:var(--boaz-blue);
}

.env-arrow-left{
	left:4px;
}

.env-arrow-right{
	right:4px;
}

/* =========================
	TOP ACTIONS (icônes crayon + trash)
	========================= */

.top-actions-box{
	display:flex;
	align-items:center;
	background-color:var(--boaz-gray);
	padding:6px 10px;
	margin:0 20px 0 0;
	border-radius:15px;
}

.top-actions-icons{
	display:flex;
	align-items:center;
	gap:14px;
}

.icon-btn{
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0;
	border:none;
	background:transparent;
	cursor:pointer;
	border-radius:6px;
}

.icon-btn:hover{
	background:rgba(0,0,0,0.06);
}

.icon-btn:active{
	background:rgba(0,0,0,0.12);
}

.icon-btn svg{
	display:block;
}

/* =========================
	MODALS (charte)
	========================= */

.modal-content{
	border-radius:15px;
	border:0;
	overflow:hidden;
}

.modal-header{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	border-bottom:0;
	padding:16px 18px;
}

.modal-body{
	padding:12px 16px !important;
}

.modal-footer{
	border-top:0;
	padding:0 16px 16px 16px;
}

.modal-title{
	font-weight:700;
}

.modal .btn-close{
	position:absolute;
	right:16px;
	opacity:.45;
}

.modal .btn-close:hover{
	opacity:.8;
}

/* enlever les cadres gris Tabler à l’intérieur des modals */
.modal .card,
.modal .card-md,
.modal .form-fieldset,
.modal fieldset{
	border:none !important;
	box-shadow:none !important;
	background:transparent !important;
	padding:0 !important;
	margin:0 !important;
}

/* inputs modals */
.modal .form-label{
	font-weight:700;
	color:var(--boaz-text);
}

.modal .form-control,
.modal .form-select{
	border-radius:10px !important;
	border:2px solid var(--boaz-blue) !important;
	box-shadow:none !important;
}

.modal .form-control:focus,
.modal .form-select:focus{
	border-color:var(--boaz-blue) !important;
	box-shadow:0 0 0 2px rgba(var(--boaz-blue-rgb),.18) !important;
}

.modal .btn-primary{
	background:var(--boaz-blue);
	border-color:var(--boaz-blue);
	border-radius:10px;
	font-weight:700;
}

.modal a{
	color:var(--boaz-blue);
	font-weight:700;
	text-decoration:none;
}

.modal a:hover{
	text-decoration:underline;
}

/* logo centré (sans toucher au HTML) */
.modal-header .navbar-brand-image{
	position:absolute;
	top:20px;
	left:50%;
	transform:translateX(-50%);
	width:141px;
	height:53px;
	object-fit:contain;
}

/* =========================
	PASSWORD “EYE” (input-group-flat)
	- halo suit le groupe
	- hover remplit tout le bloc droite
	- border bleu comme les autres inputs
	========================= */

.modal .input-group.input-group-flat{
	border:2px solid var(--boaz-blue) !important;
	border-radius:10px !important;
	overflow:hidden;
	background:#fff;
	transition:border-color .15s ease, box-shadow .15s ease;
}

.modal .input-group.input-group-flat:focus-within{
	border-color:var(--boaz-blue) !important;
	box-shadow:0 0 0 2px rgba(var(--boaz-blue-rgb),.18) !important;
}

.modal .input-group.input-group-flat .form-control{
	border:0 !important;
	border-radius:0 !important;
	box-shadow:none !important;
}

.modal .input-group.input-group-flat .input-group-text{
	border:0 !important;
	border-radius:0 !important;
	background:transparent;
	padding:0 !important;
	display:flex;
	align-items:stretch;
}

.modal .input-group.input-group-flat .input-group-text a[data-bs-toggle="tooltip"]{
	width:40px;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}

.modal .input-group.input-group-flat .input-group-text:hover{
	background:rgba(var(--boaz-blue-rgb),0.08);
}
.modal .input-group-text a{
	cursor:pointer;
}

/* ===== Preview unique (167px) + flèches ===== */
.mi-preview{
  position: relative;
  width: 167px;
  height: 88px;           /* ajuste si tu veux plus haut */
  margin: 6px auto 10px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #e9ecef;
}

.mi-preview-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

/* petites flèches overlay */
.mi-preview-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;

  background: rgba(255,255,255,.75);
  color: #0086ff;
  font-size: 16px;
  line-height: 22px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-preview-prev{ left: 6px; }
.mi-preview-next{ right: 6px; }

.mi-preview-arrow:hover{
  background: rgba(255,255,255,.92);
}

.mi-preview-arrow:active{
  transform: translateY(-50%) scale(.96);
}

.mi-carousel{
  position: relative;
  width: 167px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-car-preview{
  width: 167px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.mi-car-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  cursor: pointer;
  font-weight: 800;
  line-height: 22px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-car-prev{ left: 6px; }
.mi-car-next{ right: 6px; }

/* viewport */
.mi-viewport{
  position:relative;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* image */
.mi-car-preview{
  width:100%;
  height:105px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

/* flèches */
.mi-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:26px;
  height:26px;

  border:none;
  border-radius:50%;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(2px);

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  color:#0F59E0;
  transition:.15s;
}

/* hover */
.mi-arrow:hover{
  background:rgba(255,255,255,.95);
}

/* positions */
.mi-arrow-left{
  left:6px;
}

.mi-arrow-right{
  right:6px;
}

/* svg */
.mi-arrow svg{
  width:14px;
  height:14px;
  stroke-width:2.5;
}


/* =========================================
   XtremTower Panel — Harmonisation Figma
   (override inline styles)
   ========================================= */

#xtremTowerPanel{
  position:absolute; 
  left:108px; 
  top:-245px;
  z-index:1500;
  width:280px !important;
  padding:12px !important;
  height:auto !important;

  background:#f4f6f6 !important;
  border-radius:15px !important;
  border:1px solid #6E6B6B21 !important;
  box-shadow:0 10px 24px rgba(0,0,0,.14) !important;

  box-sizing:border-box !important;
}

/* Tous les blocs internes: on autorise le retour ligne */
#xtremTowerPanel *{
  box-sizing:border-box;
}

/* Titres de section (tu as des <div style="font-size:12px;font-weight:600...">) */
#xtremTowerPanel > div[style*="font-weight:600"]{
  font-size:12px !important;
  font-weight:700 !important;
  color:#0086FF !important;
  margin:0 0 8px 0 !important;
  white-space:normal !important;
}

/* =========================
   Couleurs (xtColorBox)
   ========================= */
#xtremTowerPanel #xtColorBox{
  position:static !important;
  width:100% !important;
  padding:0 !important;
  margin:0 0 10px 0 !important;

  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}

/* le titre "Couleurs XtremTower" (1er div dans xtColorBox) */
#xtremTowerPanel #xtColorBox > div:first-child{
  font-size:12px !important;
  font-weight:700 !important;
  color:#0086FF !important;
  margin:0 0 8px 0 !important;
  white-space:normal !important;
}

/* labels/selects */
#xtremTowerPanel #xtColorBox label{
  font-size:12px !important;
  font-weight:600 !important;
  color:#0086FF !important;
  margin:0 0 4px 0 !important;
}

#xtremTowerPanel #xtColorBox select{
  width:100% !important;
  height:26px !important;
  padding:0 8px !important;
  font-size:12px !important;

  border-radius:8px !important;
  border:1px solid #6E6B6B21 !important;
  background:#fff !important;
}

/* =========================
   Switches en “pilules”
   ========================= */
#xtremTowerPanel .form-check.form-switch{
  margin:8px 0 !important;
  padding:8px 10px !important;

  background:#E6E9EA !important;
  border:1px solid #6E6B6B21 !important;
  border-radius:12px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:10px !important;

  white-space:normal !important; /* override nowrap */
}

/* on met le label à gauche, toggle à droite */
#xtremTowerPanel .form-check-input{
  order:2;
  margin:0 !important;
  flex:0 0 auto !important;
}

#xtremTowerPanel .form-check-label{
  order:1;
  margin:0 !important;
  font-size:12px !important;
  font-weight:600 !important;
  color:#0086ff !important;

  line-height:1.15 !important;
  white-space:normal !important;
}

/* =========================
   Total bandeau
   ========================= */
#xt_price_total{
  margin-top:10px !important;
  padding:8px 10px !important;

  background:#cfe4ff !important;
  border:1px solid #6E6B6B21 !important;
  border-radius:12px !important;

  font-size:13px !important;
  font-weight:700 !important;
  color:#1e1e1e !important;

  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}
#xtremTowerPanel .form-check-label{
  display:flex;
  flex-direction:column;
  justify-content:center;
  white-space:normal;
  cursor:pointer;
}

.xtLabelName{
  font-size:10px;
  font-weight:600;
  color:#0086FF;
  line-height:1.2;
}

.xtLabelPrice{
  font-size:10px;
  font-weight:700;
  color:#696969;
}

/* =========================
   Landing page v2
   ========================= */
#landingPage{
  overflow:hidden;
  font-family:"Space Grotesk", Arial, sans-serif;
}

.home-v2-header{
  position:absolute;
  top:0;
  left:0;
  z-index:5;
  width:100%;
  height:112px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

#landingPage .home-v2-header,
#landingPage .home-v2-title,
#landingPage .home-v2-signature{
  opacity:0;
  pointer-events:none;
  transition:
    opacity .6s cubic-bezier(.2,.8,.2,1),
    transform .6s cubic-bezier(.2,.8,.2,1);
}

#landingPage .home-v2-header{
  transform:translateY(-50px);
  transition-delay:0s;
}

#landingPage .home-v2-title{
  transform:translateY(-50px);
  transition-delay:.16s;
}

#landingPage .home-v2-signature{
  transform:translateY(50px);
  transition-delay:.25s;
}

body.is-landing-ready #landingPage .home-v2-header,
body.is-landing-ready #landingPage .home-v2-title,
body.is-landing-ready #landingPage .home-v2-signature{
  opacity:1;
  pointer-events:auto;
  transform:translate(0, 0);
}

body.is-landing-leaving #landingPage .home-v2-header,
body.is-landing-leaving #landingPage .home-v2-title,
body.is-landing-leaving .home-v2-card.btnLogicielLandingPage,
body.is-landing-leaving #landingPage .home-v2-signature{
  transition-delay:0ms !important;
}

body.is-landing-leaving #landingPage .home-v2-header{
  opacity:0;
  pointer-events:none;
  transform:translateY(-50px);
}

body.is-landing-leaving #landingPage .home-v2-title{
  opacity:0;
  pointer-events:none;
  transform:translateY(50px);
}

body.is-landing-leaving #landingPage .home-v2-signature{
  opacity:0;
  pointer-events:none;
  transform:translateY(50px);
}

.home-v2-header #toBoazConcept{
  position:absolute;
  right:86px;
  top:50%;
  display:none;
  align-items:center;
  transform:translateY(-50%);
}

.home-v2-language-switcher{
  position:absolute;
  top:32px;
  right:36px;
  z-index:8;
}

.home-v2-logo{
  width:220px;
  height:auto;
}

.home-v2-boaz-link{
  width:44px;
  height:auto;
}

.home-v2-bg{
  position:absolute;
  width:835px;
  height:853px;
  border-radius:50%;
  transform:rotate(158.82deg);
  pointer-events:none;
}

.home-v2-bg-left{
  left:-375px;
  top:-383px;
  opacity:.91;
  background:radial-gradient(43.33% 43.33% at 60.03% 53.63%, #d1e9fe 26.92%, rgba(255,255,255,.1) 100%);
}

.home-v2-bg-right{
  right:-210px;
  bottom:-230px;
  opacity:.58;
  background:radial-gradient(43.33% 43.33% at 60.03% 53.63%, rgba(0,136,255,.82) 0%, rgba(0,136,255,.55) 28%, rgba(255,255,255,0) 72%);
}

.home-v2-grid{
  position:absolute;
  z-index:1;
  width:760px;
  opacity:.34;
  pointer-events:none;
}

.home-v2-grid-left{
  left:0;
  top:112px;
}

.home-v2-grid-right{
  right:-140px;
  bottom:30px;
  transform:scaleX(-1);
}

#landingPageContainer.home-v2{
  position:relative;
  z-index:3;
  width:1260px;
  min-height:calc(100vh - 112px);
  margin:112px auto 0;
  padding:32px 0 34px;
  background:transparent;
}

#landingPageContainer.home-v2 .home-v2-title{
  position:relative;
  z-index:4;
  display:block !important;
  text-align:center;
  color:#070768;
  margin:0 auto 66px;
}

#landingPageContainer.home-v2 .home-v2-title h1{
  display:block;
  margin:0;
  font-size:42px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:0;
}

#landingPageContainer.home-v2 .home-v2-title p{
  display:block;
  margin:4px 0 0;
  font-size:24px;
  line-height:1.18;
  font-weight:700;
}

#landingLeftColumn.home-v2-cards{
  position:relative;
  z-index:3;
  display:grid !important;
  grid-template-columns:repeat(4, 290px);
  gap:18px;
  align-items:end;
  justify-content:center;
  margin:0 auto;
}

.home-v2-card.btnLogicielLandingPage{
  --landing-enter-x:0px;
  --landing-enter-y:0px;
  --landing-hover-y:0px;
  position:relative;
  z-index:5;
  display:flex;
  flex-direction:column;
  width:290px;
  height:332px;
  min-width:0;
  padding:0;
  overflow:visible;
  border:0;
  border-radius:32px 32px 8px 8px;
  background:#fff;
  box-shadow:0 4px 9px rgba(0,0,0,.28);
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:
    translate3d(var(--landing-enter-x), var(--landing-enter-y), 0)
    translateY(var(--landing-hover-y));
  transition:
    opacity .6s cubic-bezier(.2,.8,.2,1),
    transform .6s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s cubic-bezier(.2,.8,.2,1);
  transition-delay:0s;
}

body:not(.is-landing-ready):not(.is-landing-leaving) .home-v2-card#logicielBtn_3{
  --landing-enter-x:-100px;
}

body:not(.is-landing-ready):not(.is-landing-leaving) .home-v2-card#logicielBtn_1{
  --landing-enter-y:100px;
}



body:not(.is-landing-ready):not(.is-landing-leaving) .home-v2-card#logicielBtn_2{
  --landing-enter-y:100px;
}



body:not(.is-landing-ready):not(.is-landing-leaving) .home-v2-card#logicielBtn_4{
  --landing-enter-x:100px;
}


body:not(.is-landing-entering) .home-v2-card.btnLogicielLandingPage{
  transition-delay:0s;
}

body.is-landing-ready .home-v2-card.btnLogicielLandingPage{
  --landing-enter-x:0px;
  --landing-enter-y:0px;
  opacity:1;
  pointer-events:auto;
}

body.is-landing-leaving .home-v2-card#logicielBtn_3{
  opacity:0;
  --landing-enter-x:-100px;
  --landing-enter-y:0px;
}

body.is-landing-leaving .home-v2-card#logicielBtn_1,
body.is-landing-leaving .home-v2-card#logicielBtn_2{
  opacity:0;
  --landing-enter-x:0px;
  --landing-enter-y:100px;
}

body.is-landing-leaving .home-v2-card#logicielBtn_4{
  opacity:0;
  --landing-enter-x:100px;
  --landing-enter-y:0px;
}

.home-v2-card.btnLogicielLandingPage:hover,
.home-v2-card.btnLogicielLandingPage:focus-visible{
  --landing-hover-y:-8px;
  box-shadow:0 16px 28px rgba(0,0,0,.22);
  outline:0;
  transition-delay:0s;
}

.home-v2-badge{
  position:absolute;
  top:-29px;
  left:50%;
  z-index:6;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:50%;
  box-shadow:none;
  transform:translateX(-50%) translateY(0);
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s cubic-bezier(.2,.8,.2,1);
}

.home-v2-card.btnLogicielLandingPage:hover .home-v2-badge,
.home-v2-card.btnLogicielLandingPage:focus-visible .home-v2-badge{
  transform:translateX(-50%) translateY(40px);
  box-shadow:0 8px 18px rgba(0,0,0,.16);
}

.home-v2-card-image{
  width:100%;
  height:calc(100% - 48px);
  overflow:hidden;
  border-radius:32px 32px 0 0;
  flex:1 1 auto;
  min-height:0;
}

.home-v2-card-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}

.home-v2-card.btnLogicielLandingPage:hover .home-v2-card-image img,
.home-v2-card.btnLogicielLandingPage:focus-visible .home-v2-card-image img{
  transform:scale(1.06);
}


.home-v2-card-label{
  display:flex;
  flex:0 0 48px;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  margin:0;
  padding:0 18px;
  border-radius:0 0 8px 8px;
  color:#fff;
  font-size:19px;
  line-height:1.1;
  font-weight:800;
  text-align:center;
  white-space:nowrap;
}

.home-v2-label-blue{
  background:#0f59e0;
}

.home-v2-label-cyan{
  background:#00bbff;
}

.home-v2-label-green{
  background:#0fe880;
}

.home-v2-badge{
  position:absolute;
  top:-29px;
  left:50%;
  z-index:6;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:50%;
  box-shadow:none;
  transform:translateX(-50%);
}

.home-v2-badge img{
  display:block;
  width:58px;
  height:58px;
  object-fit:contain;
}

.home-v2-badge-blue{
  box-sizing:border-box;
  background:#0f59e0;
  border:3px solid #f5f7f6;
}

.home-v2-badge-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:auto;
  overflow:visible;
  color:#f5f7f6;
}

.home-v2-badge-icon > svg{
  display:block;
  flex:0 0 auto;
}

.home-v2-badge-icon-base{
  width:32px;
  height:27px;
  transform:translateX(-1px);
}

.home-v2-badge-icon-aquapark{
  width:32px;
  height:33px;
  transform:translate(-1px, 1px);
}
.home-v2-badge-icon-baignade{
  width:32px;
  height:33px;
  transform:translate(0px, -1px);
}

.home-v2-badge-icon > svg{
  display:block;
  width:100%;
  height:100%;
  flex:0 0 auto;
}

.home-v2-badge-cyan{
  box-sizing:border-box;
  background:#00bbff;
  border:3px solid #f5f7f6;
}

.home-v2-badge-green{
  box-sizing:border-box;
  background:#0fe880;
  border:3px solid #f5f7f6;
}

.home-v2-actions{
  display:none !important;
  justify-content:center;
  margin-top:22px;
}

.home-v2-models-btn{
  width:auto;
  min-height:38px;
  height:auto;
  margin-left:0;
  padding:0 18px;
  border:0;
  border-radius:8px;
  background:#070768;
  color:#fff;
  font-weight:700;
}

.home-v2-signature{
  position:absolute;
  right:-33px;
  top:max(516px, calc(100% - 70px));
  bottom:auto;
  z-index:2;
  display:block !important;
  pointer-events:none;
}

.home-v2-signature img{
  width:332px;
  height:auto;
}

@media (prefers-reduced-motion: reduce){
  .landing-loader span{
    animation:none;
  }

  #landingPage .home-v2-header,
  #landingPage .home-v2-title,
  #landingPage .home-v2-signature,
  .home-v2-card.btnLogicielLandingPage{
    transition:none !important;
    transition-delay:0s !important;
  }

  #landingPage .home-v2-header,
  #landingPage .home-v2-title,
  #landingPage .home-v2-signature{
    transform:translate(0, 0);
  }

  .home-v2-card.btnLogicielLandingPage{
    --landing-enter-x:0px;
    --landing-enter-y:0px;
  }

  body.is-landing-ready #landingPage .home-v2-header,
  body.is-landing-ready #landingPage .home-v2-title,
  body.is-landing-ready #landingPage .home-v2-signature,
  body.is-landing-ready .home-v2-card.btnLogicielLandingPage{
    opacity:1;
    pointer-events:auto;
  }
}

#landingPageContainerLegacy,
#parcLandpage,
#carouselParc{
  display:none !important;
}
