#notif-mobile{
  display: none;
}

/* |||||||||||STYLES GENERAUX|||||||||||||| */
html{
  overflow: hidden;
}
*{
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    box-sizing : border-box;
}
body { margin: 0; padding: 0; background:#1E252E;color:#EBEBEB;}
#ui-map, #container-vue{
    display: none;
}
.glass{
    /* From https://css.glass */
    background: #10181D;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px); */
}
h3{
  font-size: 28px;
  margin:0;
  font-weight: 800;
}
h4{
    font-size: 17px;
    margin:3px 0;
}
p{
    font-size:14px;
    font-weight: 300;
}
.line-ui-mobile{
    width:50vw;
    height: 4px;
    border-radius: 200px;

    position: absolute;
    background: white;
    left: 0;
right: 0;
margin: auto;
}
.mapboxgl-ctrl-bottom-right{
  display: none;
}
/* |||||||||||STYLES ONBOARDING|||||||||||||| */
#container-onboarding{
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    /* gap: 30px; */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 20vh;
    padding-left: 15Vw;
    padding-right: 15vw;
    /* background: rgb(7,6,20);
    background: linear-gradient(
      to bottom right,
      hsl(244.29, 53.85%, 5.1%) 0%,
      hsla(244.29, 53.85%, 5.1%, 0.987) 8.1%,
      hsla(244.29, 53.85%, 5.1%, 0.951) 15.5%,
      hsla(244.29, 53.85%, 5.1%, 0.896) 22.5%,
      hsla(244.29, 53.85%, 5.1%, 0.825) 29%,
      hsla(244.29, 53.85%, 5.1%, 0.741) 35.3%,
      hsla(244.29, 53.85%, 5.1%, 0.648) 41.2%,
      hsla(244.29, 53.85%, 5.1%, 0.55) 47.1%,
      hsla(244.29, 53.85%, 5.1%, 0.45) 52.9%,
      hsla(244.29, 53.85%, 5.1%, 0.352) 58.8%,
      hsla(244.29, 53.85%, 5.1%, 0.259) 64.7%,
      hsla(244.29, 53.85%, 5.1%, 0.175) 71%,
      hsla(244.29, 53.85%, 5.1%, 0.104) 77.5%,
      hsla(244.29, 53.85%, 5.1%, 0.049) 84.5%,
      hsla(244.29, 53.85%, 5.1%, 0.013) 91.9%,
      hsla(244.29, 53.85%, 5.1%, 0) 100%
    ); */
    background-color: #10181d;
    background-image: url(/ASSETS/top-gradient.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}
/* top: 50vh;
    transform: translateY(50%); */
#container-onboarding img{
    width:250px;
    height: auto;
    border-radius: 10px;
}
#container-onboarding p{
    max-width: 800px;
    padding-bottom: 50px;
    font-size: 18px;
}
h1{
    font-size: 65px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 50px;
    max-width: 50vw;
}

#container-onboarding button{
    margin:auto;
    margin-left:0;
    margin-top: 0;
    padding: 15px 15px;
    font-size: 16px;
    color:#ffffff;
    border:solid 2px #0A94C1;
    border-radius: 7px;
    background-color: #0A94C1;
    transition: .2s ease-in-out 0s;

}
#container-onboarding button:hover{
    cursor: pointer;
    transform: scale(1.04);
    /* background: #96CD32;;
    color: #000; */
}
#container-onboarding .ptx{
    position: absolute;
    bottom: -100px;
    right: 250px;
    height: 105vh;
    width: auto;
    z-index: -1;
}
#credit{
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 5px 15px 7px 15px;
    border:1px solid #ffffff2e;
    text-align: center;
}
#credit span{
font-size: 10px;
color: #ffffff87;
}
#infos-line-mobile{
    display: none;
}

#map-loader {
  position: absolute;
  inset: 0;
  background: #000; /* ou autre couleur de fond */
  /* z-index: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s ease;
}

#map-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader-text {
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}


/* |||||||||||STYLES MAP|||||||||||||| */
#container-map{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100vw;
    height:100vh;
    z-index: -1;
    
}
#container-gradient{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100vw;
    height:100vh;
    pointer-events: none;
    opacity: 0;
}
#container-gradient .top-gradient{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100vw;
    height:30vh;
    background: rgb(7,6,20);
    background: 
        linear-gradient(
          to bottom,
          hsla(244.29, 53.85%, 5.1%, 0.6) 0%,
          hsla(244.29, 53.85%, 5.1%, 0.592) 8.1%,
          hsla(244.29, 53.85%, 5.1%, 0.571) 15.8%,
          hsla(244.29, 53.85%, 5.1%, 0.538) 23%,
          hsla(244.29, 53.85%, 5.1%, 0.495) 29.8%,
          hsla(244.29, 53.85%, 5.1%, 0.444) 36.4%,
          hsla(244.29, 53.85%, 5.1%, 0.389) 42.7%,
          hsla(244.29, 53.85%, 5.1%, 0.33) 48.8%,
          hsla(244.29, 53.85%, 5.1%, 0.27) 54.9%,
          hsla(244.29, 53.85%, 5.1%, 0.211) 60.9%,
          hsla(244.29, 53.85%, 5.1%, 0.156) 67%,
          hsla(244.29, 53.85%, 5.1%, 0.105) 73.1%,
          hsla(244.29, 53.85%, 5.1%, 0.062) 79.4%,
          hsla(244.29, 53.85%, 5.1%, 0.029) 86%,
          hsla(244.29, 53.85%, 5.1%, 0.008) 92.8%,
          hsla(244.29, 53.85%, 5.1%, 0) 100%
        );
    pointer-events: none;
}
#container-gradient .left-gradient{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 20vw;
    height:100vh;
    background: rgb(7,6,20);
    background: linear-gradient(
        to right,
        hsla(244.29, 53.85%, 5.1%, 0.6) 0%,
        hsla(244.29, 53.85%, 5.1%, 0.592) 8.1%,
        hsla(244.29, 53.85%, 5.1%, 0.571) 15.8%,
        hsla(244.29, 53.85%, 5.1%, 0.538) 23%,
        hsla(244.29, 53.85%, 5.1%, 0.495) 29.8%,
        hsla(244.29, 53.85%, 5.1%, 0.444) 36.4%,
        hsla(244.29, 53.85%, 5.1%, 0.389) 42.7%,
        hsla(244.29, 53.85%, 5.1%, 0.33) 48.8%,
        hsla(244.29, 53.85%, 5.1%, 0.27) 54.9%,
        hsla(244.29, 53.85%, 5.1%, 0.211) 60.9%,
        hsla(244.29, 53.85%, 5.1%, 0.156) 67%,
        hsla(244.29, 53.85%, 5.1%, 0.105) 73.1%,
        hsla(244.29, 53.85%, 5.1%, 0.062) 79.4%,
        hsla(244.29, 53.85%, 5.1%, 0.029) 86%,
        hsla(244.29, 53.85%, 5.1%, 0.008) 92.8%,
        hsla(244.29, 53.85%, 5.1%, 0) 100%
      ); 
    pointer-events: none;
}
#ui-map{
    overflow: hidden;
    max-height: 100vh;
    max-width: 100vh;
}
#ui-map header{
    position: absolute;
    display: flex;
    gap:40px;
    top: 50px;
    left : 50px;
    font-size:20px;
    line-height: 0;
}
#ui-map header img{
    width:60px;
    height: 60px;
}
#ui-map header h2{
    display: flex;
    align-items: center;
    gap:20px;
    font-weight: 700;
}
#ui-map header i::before{
    font-size:23px;
    cursor: pointer;
}


#reset-north{
  background:none;
  border:none;
  top: 120px;
  position: absolute;
  right: 20px;
}
#reset-north img{
  width: 90px;
}
#reset-north:hover{
  cursor: pointer;
}
#controls-map{
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 50px;
    top: 40%;
    background: #10181D;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border-radius: 10px;

}

#controls-map button {
  background: transparent;
    border:none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    margin: 0;
  padding-top: 16px;
  padding-bottom: 32px;
  height: auto;
  padding:  12px 0;
}
#controls-map button:hover {
    cursor: pointer;
    background: #2b2e35;
}
#controls-map button img{
  height: 23px;
}
#controls-map button:first-child{
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
#controls-map button:last-child{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

#legende-map {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  flex-flow:column wrap;
  padding: 20px;
  justify-content: space-around;
  gap: 11px;
}
#legende-map div{
  display: flex;
  flex-direction: column;
  gap: 0px;
}
#legende-map .ele-legend{
  display: flex;
  flex-direction: row;
  height: 20px;
}
#legende-map h3 {
    line-height: 1;
    margin: 0;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#legende-map h3 .iconoir-nav-arrow-down {
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* Position normale */
}


#legende-map .ele-legend{
    font-weight: 300;
    font-size: 12px;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
#legende-map .ele-legend img{
    height: 20px;
    width: 20px;
}
#legende-map .line{
    height: 4px;
    width: 30px;
    border-radius:100px;
  
}
.pnt{
  display: block;
  height: 10px;
  width: 10px;
  border-radius:200px;
  margin:auto;
  margin-top: -3px;
  border: 0.5px white solid;
}

#legende-map .new{    background-color: #00A6D9;}
#legende-map .road{    background-color: #FFFF00;}
#legende-map .old{    background-color: #055D7A;}

#legende-map-mobile ul {
    list-style: none;
    padding-left:0;
    margin-top:0;
}
#legende-map-mobile ul li{
    font-weight: 300;
    
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
#legende-map-mobile ul li img{
    height: 30px;
    width: 30px;
}

#legende-map-mobile .line{
    height: 4px;
    width: 30px;
    border-radius:100px;
  
}
#legende-map-mobile .new{    background-color: #00A6D9;}
#legende-map-mobile .road{    background-color: #FFFF00;}
#legende-map-mobile .old{    background-color: #055D7A;}

.mapboxgl-popup-content{
  padding: 7px 10px;
  background: #202226;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.mapboxgl-popup-close-button span{
    color: white;
    font-size: 30px;
    line-height: 0;
}
.mapboxgl-popup-close-button {
  padding: 10px;
}
.mapboxgl-popup-content h4{
 min-width: 150px;
 display: inline-block;
 font-size: 16px;
}
.mapboxgl-popup-tip{
    border-top-color: rgba(72, 95, 121, 0.2) !important; /* Même couleur que le fond */
}
#desc-projet{
    position: absolute;
    top: 150px;
    left:50px;
    display: flex;
    flex-direction: column;
    width:300px;
    padding: 20px;
}
#desc-projet p{
  margin: 0;
}
#infos-line{
    position: absolute;
    left: 50px;
    top: 335px;
    display: flex;
    flex-direction: column;
    width:300px;
    padding: 20px;
    display: none;
    /* margin-top: 50%;
    transform: translateY(-50%); */
    /* animation: none; */
}
#info-line-block-image{
  display: flex;
  justify-content: center;
  margin: -20px -20px 0 -20px;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  background-color: #6184d90d;
  overflow: hidden;
}
#infos-line img.item{
  text-align: center;
  margin: 0;
  height: 35vh;
  width: auto;
  pointer-events: none;
}
#infos-line-carac{
  display: flex;
  gap:10px;
  padding-top: 20px;
}
#infos-line-line-color{
  width: 40px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#infos-line-line-color-rond{
  height: 33px;
  width: 30px;
  border-radius:1000px;
  background:#96CD32;
  z-index: 3;
  -webkit-box-shadow:0px 0px 12px 0px rgba(77,77,77,1);
  -moz-box-shadow: 0px 0px 12px 0px rgba(77,77,77,1);
  box-shadow: 0px 0px 12px 0px rgba(77,77,77,1);
  border : solid 3px white;
}
#infos-line-line-color-ligne{
  width: 15px;
  min-height: 60px;
  height: 100%;
  background:#96CD32;
  margin-top: -10px;
  position: relative;
}
#infos-line-line-color-ligne-deg{
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg,rgba(16, 24, 29, 1) 0%, rgba(16, 24, 29, 0) 100%);
}
#infos-line-block{
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
#infos-line-block div{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#infos-line-block div#infos-line-plus-1{
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}
#infos-line-etat{
  font-size: 11px;
  font-weight: 400;
  color: #00A6D9;
  border:1px solid #00A6D9;
  padding:2px 15px;
  border-radius:3px;
  text-align: center;
  height: 20px;
  margin: 0;
  text-transform: uppercase;
}
#infos-line-plus img{
  width: 30px;
  color: #00A6D9;
}
#infos-line-puissance, #infos-line-hauteur{
  display: flex;
  align-items: end;
  font-size: 24px;
  font-weight: 800;
  background-color: #15252C;
  padding: 5px 7px 5px 0;
  border-radius: 7px;
}
#infos-line-hauteur span, #infos-line-puissance span{
  font-weight: 800;
}
#infos-line-cables{
  font-size: 12px;
  justify-content: flex-start!important;
}
#infos-line-cables span{
  font-weight: 300;
}
#infos-reduce{
  position: absolute;
  height: 45px;
  width: 30px;
  right: -20px;
  bottom: 0px;
  background-color:#10181D ;
  border-radius: 0 10px 10px 0;
}
#infos-reduce img{
  width: 20px;
  height: 20px;
  margin: 12px auto 12px 5px;
}
#infos-reduce:hover{
  cursor: pointer;
}
body.is-measuring .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: crosshair !important;
}
#distance {
  display: none;
  position: absolute;
  flex-direction: column;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px ;
  pointer-events: none;
  transition: transform 0.05s ease-out;
  line-height: 0;
  border-radius: 5px;
}

#distance.pre {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  width: 300px;
}
.pov-marker {
  opacity: 1;
  transition: opacity 0.5s ease-in-out; /* 👈 Transition fluide */
}

.pov-marker.hidden {
  opacity: 0;
  pointer-events: none; /* 👈 Empêche les interactions quand invisible */
}
#toggle-info{
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translatex(-50%);
  height: 50px;
}
.switch-toggle-info {
    --width: 300px;
    --height: 50px;
    --offset: 0px;
    --radius: 16px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: var(--width);
    height: var(--height);
    background: #202226;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    font-style: normal;
    place-items: center;
    cursor: pointer;
    overflow: hidden;
  }
  
  /* Cache l'input mais il est cliquable */
  .switch-toggle-info input[type=checkbox] {
    appearance: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
  }
  
  /* Libellés */
  .switch-toggle-info span:not(.switch-toggle-thumb-info) {
    position: relative;
    z-index: 3;
    transition: color 0.2s;
    text-align: center;
    pointer-events: none;
  }
  
  /* Le curseur (fond mobile) */
  .switch-toggle-thumb-info {
    position: absolute;
    top: var(--offset);
    left: var(--offset);
    bottom: var(--offset);
    width: calc(50% - var(--offset));
    background: #0A94C1;
    border-radius: 8px;
    transition: transform 250ms cubic-bezier(0.93, 0.26, 0.07, 0.69);
    z-index: 1;
  }
  
  /* Quand activé (checked), on translate le curseur */
  .switch-toggle-info input[type=checkbox]:checked ~ .switch-toggle-thumb-info {
    transform: translateX(100%);
  }


/* |||||||||||STYLES VUES|||||||||||||| */


#vue-loader {
  position: absolute;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease; /* 👈 transition fluide */
  z-index: 9999; /* pour qu’il passe au-dessus */
}

#vue-loader.hidden {
  opacity: 0;
  pointer-events: none;
}


#vue-loader-text {
  animation: pulse 1.2s infinite;
}


#container-vue{
  display: none;
  position: absolute;
  left: 0;
  top:0;
  height: 100vh;
  width: 100vw;
  z-index: 2;
  background: #1E252E;
}
#container-vue header{
  position: absolute;
  display: flex;
  align-items: center;
  gap:20px;
  top: 50px;
  left : 50px;
  font-size:20px;
  line-height: 0;
}
#container-vue header div{
  display: flex;
  flex-direction: column;
  gap:10px;
  border-left: 1.5px solid rgb(108, 108, 119);
  padding-left: 20px;
}
#container-vue header img{
  width:80px;
  height: 80px;
}
#container-vue header h2, #container-vue header p{
 margin: 0;
 line-height: 1;
}
#container-vue header p{
 font-size: 12px;
 }

#container-vue button{
  position: absolute;
  right: 50px;
  top: 50px;
  color: white;
  font-size: 30px;
  line-height: 0;
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  margin: 0;
    padding:0;
}
#ui-vue{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
} 
#ui-vue >*  {
  pointer-events: all;
}
#vue-pano-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  z-index: -1; /* Place en arrière-plan */
  pointer-events: none; /* Empêche toute interaction */
}

#vue-pano {
    position: relative;
    
  }
#vue-pano {
  width: 100%;
  height: 100vh; /* ou une hauteur spécifique */
  display: block;
}
#ui-left-vue{
  position: absolute;
  top: 200px;
  left: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#infos-vue{
  width: 260px;
  display: inline-block;
  overflow:hidden;
  padding:  20px;
}
#infos-vue p{
  font-size: 12px;
  margin-bottom: 0;
}
#toggle-vue{
  top: 350px;
  left: 50px;
  height: 50px;
}
#gradient-vue{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height:100vh;
  pointer-events: none;
  /* background-color: rebeccapurple; */
}
#gradient-vue .top-gradient{
  position: absolute;
  display: flex;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height:30vh;
  background: rgb(7,6,20);
  background: 
      linear-gradient(
        to bottom,
        hsla(244.29, 53.85%, 5.1%, 0.6) 0%,
        hsla(244.29, 53.85%, 5.1%, 0.592) 8.1%,
        hsla(244.29, 53.85%, 5.1%, 0.571) 15.8%,
        hsla(244.29, 53.85%, 5.1%, 0.538) 23%,
        hsla(244.29, 53.85%, 5.1%, 0.495) 29.8%,
        hsla(244.29, 53.85%, 5.1%, 0.444) 36.4%,
        hsla(244.29, 53.85%, 5.1%, 0.389) 42.7%,
        hsla(244.29, 53.85%, 5.1%, 0.33) 48.8%,
        hsla(244.29, 53.85%, 5.1%, 0.27) 54.9%,
        hsla(244.29, 53.85%, 5.1%, 0.211) 60.9%,
        hsla(244.29, 53.85%, 5.1%, 0.156) 67%,
        hsla(244.29, 53.85%, 5.1%, 0.105) 73.1%,
        hsla(244.29, 53.85%, 5.1%, 0.062) 79.4%,
        hsla(244.29, 53.85%, 5.1%, 0.029) 86%,
        hsla(244.29, 53.85%, 5.1%, 0.008) 92.8%,
        hsla(244.29, 53.85%, 5.1%, 0) 100%
      );
  pointer-events: none;
} 
.switch-toggle {
    --width: 260px;
    --height: 50px;
    --offset: 2px;
    --radius: 16px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: var(--width);
    height: var(--height);
    background: #202226;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    font-style: normal;
    place-items: center;
    cursor: pointer;
    overflow: hidden;
  }
  
  /* Cache l'input mais il est cliquable */
  .switch-toggle input[type=checkbox] {
    appearance: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
  }
  
  /* Libellés */
  .switch-toggle span:not(.switch-toggle-thumb) {
    position: relative;
    z-index: 3;
    transition: color 0.2s;
    text-align: center;
    pointer-events: none;
  }
  
  /* Le curseur (fond mobile) */
  .switch-toggle-thumb {
    position: absolute;
    top: var(--offset);
    left: var(--offset);
    bottom: var(--offset);
    width: calc(50% - var(--offset));
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 250ms cubic-bezier(0.93, 0.26, 0.07, 0.69);
    z-index: 1;
  }
  
  /* Quand activé (checked), on translate le curseur */
  .switch-toggle input[type=checkbox]:checked ~ .switch-toggle-thumb {
    transform: translateX(100%);
  }

  #pano-compass {
    position: absolute;
    top:  120px;
    right: 30px;
    width: 90px;
    height: 90px;
    z-index: 10;
    pointer-events: none;
  }
  #pano-compass img {
    width: 100%;
    height: auto;
    transform: rotate(0deg);
    transition: transform 0.2s ease-out;
  }
  #vue-compass {
 
    width: 100%;
    height: 100%;
    background-image: url('ASSETS/PICTOS/nord.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10;
  }
  #hotspot-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* pour que les clics passent à travers sauf sur hotspots */
    z-index: 10;
  }
  #hotspot-layer .hotspot {
    pointer-events: auto; /* activer les clics sur les vrais hotspots */
  }
  .hotspot {
    position: absolute;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: auto;
    cursor: pointer;
    white-space: nowrap;
  }

  .hotspot-info {
    background: #202226;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }

  .hotspot-container {
    position: absolute;
  }
  
  .hotspot-link,
  .hotspot-info {
    position: absolute;
    transform: translate(-50%, -50%);
  }
  
  .hotspot-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #96CD32;
    border: 2px solid white;
    cursor: pointer;
    position: relative;
  }
  
  .hotspot-link::after {
    content: attr(data-label);
    position: absolute;
    bottom: 140%; /* au-dessus du point */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.75);
    color: white;
    padding: 5px 10px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
  }
  
  .hotspot-link:hover::after {
    opacity: 1;
  }
  .hotspots-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none; /* pour ne pas bloquer interactions image */
  }

  .hotspot-info-text {
  background: rgba(30, 32, 36, 0.9);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  margin-top: 6px;
  /* max-width: 220px; */
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  pointer-events: none; /* évite que le texte gène le clic de fermeture */
}
  .hotspot-info-text p{
    margin: 0;
  }
.hotspot-info.glass {
  cursor: pointer;
}

/* |||||||||||ANIMATIONS|||||||||||||| */

/* ----------------------------------------------
 * Generated by Animista on 2025-3-6 16:45:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-left {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
  }
  @keyframes slide-out-left {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
  }
  .slide-out-left {
	-webkit-animation: slide-out-left 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-left 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.slide-out-left-fast {
	-webkit-animation: slide-out-left .5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-left .5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-3-6 16:55:39
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-right
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
  }
  @keyframes slide-out-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
  }
  .slide-out-right {
	-webkit-animation: slide-out-right 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-right 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}  
/* ----------------------------------------------
 * Generated by Animista on 2025-3-6 16:59:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-out
 * ----------------------------------------
 */
 @-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      display: none;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      display: none;
    }
  }
  .fade-out {
	-webkit-animation: fade-out 1s ease-out both;
	        animation: fade-out 1s ease-out both;
}  
/* ----------------------------------------------
 * Generated by Animista on 2025-3-10 20:43:44
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
 @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}  
/* ----------------------------------------------
 * Generated by Animista on 2025-3-10 21:31:21
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  .slide-in-right {
	-webkit-animation: slide-in-right 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
	        animation: slide-in-right 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-3-11 12:15:29
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  .slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  

.fade-in {
    animation: fade-in 1s ease forwards;
  }
  
  .fade-out {
    animation: fade-out 1s ease forwards;
  }
  
  @keyframes fade-in {
    from { opacity: 0 }
    to { opacity: 1 }
  }
  
  @keyframes fade-out {
    from { opacity: 1 }
    to { opacity: 0 }
  }
  /* ----------------------------------------------
 * Generated by Animista on 2025-4-25 18:23:45
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.slide-in-bottom {
	-webkit-animation: slide-in-bottom 0.7s cubic-bezier(0.860, 0.000, 0.070, 1.000) both;
	        animation: slide-in-bottom 0.7s cubic-bezier(0.860, 0.000, 0.070, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-4-28 23:7:55
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}
.slide-out-bottom {
	-webkit-animation: slide-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}