* {
  --white: white;
  --darkRed: #8B0000;
  --red: #FA141A;
  --pastel: #fb6468;
  --palePastel: #fc9d9f;
  --hoverPalePastel: #FDC4C5;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: "Raleway", sans-serif;
}

a:link, a:visited {
  color: var(--white);
}

#desc-container {
  max-width: 500px;
  max-height: 500px;
  min-width: 200px;
  min-height: 250px;
  background: var(--white);
  color: #000;
  border-radius: 3px;
  overflow: auto;
}

#desc-container > img {
  border: none;
  width: 100%;
}

/*   Bar de chargement   */
#progress {
  width: 0;
  height: 5px;
  position: fixed;
  top: 0;
  background: var(--white);
  transition: opacity 0.5s ease;
}

#progress.finish {
  opacity: 0;
}

/*   Variables globales   */
.center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-inline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rotate {
  rotate: 90deg;
}

.center-text {
  text-align: center;
}

/*  Navbar classes    */
#navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, var(--red) 0%, var(--darkRed) 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  visibility: visible !important;
  display: block !important;
}
#navigation.active {
  transform: translateX(0) !important;
}

.container-logo {
  display: flex;
  justify-content: center;
  border: none;
}

.bg-responsive-logo {
  flex-grow: 1;
  background-color: var(--red);
  padding: 0;
  margin: 0;
}

.responsive-logo {
  padding: 0;
  margin: 0;
  max-height: 16rem;
  display: block;
}

.navigation-logo {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: top;
}

@media (min-width: 600px) {
  #navigation {
    width: 250px;
  }
}
@media (min-width: 800px) {
  #navigation {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  #navigation {
    max-width: 200px;
    width: 200px;
  }
}
.navigation-logo {
  height: auto;
  width: 100%;
  max-width: 13rem;
}

.open-navigation {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--red);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  transform: scale(1);
  visibility: visible !important;
  display: flex !important;
  cursor: pointer;
}
.open-navigation:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.open-navigation:active {
  transform: scale(0.95);
}

.btn-navigation {
  color: var(--white);
  border: none;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.btn-navigation:hover {
  color: var(--pastel);
  transition: all 0.3s ease;
}

.close-navigation {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.close-navigation:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/*menu de navigation*/
.navigation-menu {
  padding: 2rem 0;
  height: calc(100vh - 4rem);
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ul-navigation-menu {
  list-style: none;
  width: 100%;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.li-navigation-menu {
  list-style: none;
  width: inherit;
  cursor: pointer;
}

.navigation-menu-element {
  position: relative;
  padding: 1rem 2rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.navigation-menu-element::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--white);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navigation-menu-element:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}
.navigation-menu-element:hover::before {
  opacity: 1;
}
.navigation-menu-element a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.navigation-menu-element:hover {
  background-color: var(--palePastel);
  animation-iteration-count: infinite;
}

.center-transition {
  position: absolute;
  left: 1.25rem;
  transition: all 0.3s ease-in-out;
}

.navigation-menu-element:hover .center-transition {
  left: 50%;
  transform: translateX(-50%);
}

/*menu de sous navigation*/
.navigation-menu-focus-element {
  text-align: left;
  justify-content: left;
  height: 2rem;
  width: 100%;
  transition: 0.3s ease-in-out;
  background: inherit;
  border: none;
  color: var(--white);
}
.navigation-menu-focus-element a {
  text-decoration: none;
  color: var(--white);
}

.ul-navigation-menu-focus {
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.li-navigation-menu-focus {
  margin: 0.3rem 0;
}
.li-navigation-menu-focus .navigation-menu-focus-element {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9em;
}
.li-navigation-menu-focus .navigation-menu-focus-element:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.li-navigation-menu-focus .navigation-menu-focus-element a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.selected .navigation-menu-element {
  background-color: var(--palePastel);
  text-align: center;
}

.selected .navigation-menu-element .center-transition {
  left: 50%;
  transform: translateX(-50%);
}

.selected .ul-navigation-menu-focus {
  display: block;
  transition: all 0.3s ease-in-out;
}

.span-alignement {
  padding-left: 10%;
}

/* infospot & autre*/
#textVideo {
  max-width: 500px;
  background: var(--white);
  color: #000000;
  border-radius: 3px;
  text-align: justify;
}

#textVideo > iframe {
  border: none;
  width: 100%;
}

.title {
  font-size: 1.5em;
  text-align: center;
}

.text {
  padding: 0 20px 20px 20px;
}

#download {
  background: var(--white);
  border-radius: 3px;
  width: auto;
  height: auto;
}

#download p {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #000;
}

.hidden {
  /*display: none !important;*/
  visibility: hidden;
}

.no-display {
  display: none;
}

.card-infospot {
  width: -moz-min-content;
  width: min-content;
  min-width: 300px;
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  color: black;
}

.video-infospot {
  padding: 56.25% 0 0 0;
  position: relative;
}

.img-container-infospot {
  width: 100%;
  padding: 0;
  margin: 0;
  max-height: 25vh;
  text-align: center;
}

.img-infospot {
  max-height: 25vh;
  min-width: 15vh;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: auto;
  max-width: 300px;
}

.iframe-infospot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  max-width: 450px;
}

.title-infospot {
  font-size: 1.5rem;
  text-align: center;
  margin: 0.6rem 0 0 0;
  padding: 0;
}

.text-infospot {
  font-size: 1rem;
  text-align: justify;
  padding: 0.5rem 2rem 1rem 2rem;
  margin: 0;
}

@media (min-width: 600px) {
  .card-infospot {
    width: 375px;
  }
  .img-infospot {
    max-width: 375px;
  }
}
@media (min-width: 800px) {
  .card-infospot {
    width: 450px;
  }
  .img-infospot {
    max-width: 450px;
  }
}
.info {
  background: var(--white);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  font-size: 1em;
  padding: 0.5em;
  border-radius: 0.5em;
  margin: 1rem;
  color: black;
}

.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--white);
  background: #2c3e50;
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  outline: none;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin-left: 0.7rem;
}
.btn:hover {
  background: var(--white);
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.copied {
  background: #178e57;
  border: 2px solid #178e57;
  color: var(--white);
}
.copied:hover {
  background: #178e57;
  border: 2px solid #178e57;
  color: var(--white);
  cursor: default;
}

.info-click {
  padding: 0.5rem;
}

.text-info {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.container-copy-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.btn-disabled {
  background: #8b95a4;
  border: 2px solid var(--white);
  color: var(--white);
  cursor: not-allowed;
}
.btn-disabled:hover {
  background: #48535f;
  border: 2px solid var(--white);
  color: var(--white);
}

.li-navigation-menu.active-room {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Styles pour les hotspots */
.custom-hotspot {
  width: 10px;
  height: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}
.custom-hotspot:hover {
  transform: scale(1.2);
}

.hotspot-icon {
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, -100%);
}
.hotspot-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--hotspot-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Style pour s'assurer que les hotspots sont visibles */
.pnlm-hotspot {
  opacity: 1 !important;
  z-index: 10;
  background: none !important;
}

/* Style pour l'affichage du texte dans les hotspots */
.pnlm-hotspot-tooltip {
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  max-width: 200px;
  z-index: 12;
}

.custom-hotspot {
  height: 5px;
  width: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

div.custom-tooltip span {
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
  text-align: center;
  max-width: 200px;
  padding: 5px 10px;
  margin-left: -220px;
  cursor: default;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
div.custom-tooltip:hover span {
  visibility: visible;
}
div.custom-tooltip:hover span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}/*# sourceMappingURL=visite-virtuelle.css.map */