@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,200..900;1,200..900&display=swap');

.source-sans-3-vkw {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

html {
  font-family: "Source Sans 3", sans-serif;
}
body { margin: 0; overflow: hidden;  font-family: "Source Sans 3", sans-serif; background-color: #2a2a2a; }

p { margin: 0;}

.goLeft {
  text-align: left !important;
}

.bodyModal {

  border-radius: 10px;
  background-color: transparent !important;
  min-height: 85%;
}

span {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  color: #111;
}

a span {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  color: #ffffff !important;
  text-shadow: 1px 1px 0 #111;
}

/* .table-striped > tbody > tr:nth-of-type(odd) > * {
 
  --bs-table-bg-type: #2f3b44;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
 
  --bs-table-bg-type: #5b5e61;
} */

.table-custom {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px; /* Adjust font size as needed */
  color: #143968 !important;  /* Choose a color, here it's a dark gray */
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: #486070;
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

.text-bg-primary {
  background-color: #323e4d !important;
  font-weight: 300 !important;
  font-size: 13px;
  font-family: "Source Sans 3", sans-serif;

}


.badge {border-radius: 10px; margin: 2px; padding: 6px !important;}

.bg-light {
 
  background-color: #ffffff00 !important;
}

#scene-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Make the container take the full viewport height */
  overflow: hidden; /* Ensure no overflow */
}

h1,h2,h3,h4,h5,h6 {
  color: #143968;
}

.fw700 {
  font-weight: 700 !important;
}
.fw900 {
  font-weight: 900 !important;
}
.fw300 {
  font-weight: 300 !important;
}
.fw400 {
  font-weight: 400 !important;
}
.fw500 {
  font-weight: 500 !important;
}
.gap-small {
    gap: 10px; 
}

.btn {
  max-height: 33px;
}

.shaWhite {
  text-shadow: 1px 1px 0 #fff;
}

.fadeinShort {
  opacity: 0; /* Initially hidden */
  animation: fadeInAnimation 1.5s ease-in 1s forwards; /* 2s animation, starts after 3s */
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeinMed {
  opacity: 0; /* Initially hidden */
  animation: fadeInAnimation 2s ease-in 2.1s forwards; /* 2s animation, starts after 3s */
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeinLong {
  opacity: 0; /* Initially hidden */
  animation: fadeInAnimation 2s ease-in 4s forwards; /* 2s animation, starts after 3s */
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.saturation {
  filter: grayscale(100%); /* Start with 0% saturation (grayscale) */
  animation: saturationAnimation 3s ease-in 2.5s forwards; /* 2s animation */
}

@keyframes saturationAnimation {
  from {
    filter: grayscale(100%); /* Start with grayscale */
  }
  to {
    filter: grayscale(0%); /* End with full color (normal saturation) */
  }
}


.stats {
  position: fixed !important;
  left: 10px !important;
  bottom: 20px !important;
  top: auto !important;
  right: auto !important;
  z-index: 10000 !important;
}

#fadeOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(20, 20, 20);
  opacity: 0; /* Start hidden */
  transition: opacity 1.5s ease; /* 1.5-second fade-out */
  z-index: 9999; /* Ensure it's on top of everything */
  pointer-events: none; /* Make sure it doesn't block interactions */
}

.logo {
    position: fixed;
    top: 12px;
    left: 15px;
    z-index: 9000;
}

.social {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 9000;
    scale: 0.8;
}

.p9, .p10, .p11, .p12, .p23, .p14, .p15, .p16 {
  font-family: "Source Sans 3", sans-serif;
}

.p9 {font-size: 9px;}
.p10 {font-size: 10px;}
.p11 {font-size: 11px;}
.p12 {font-size: 12px;}
.p13 {font-size: 13px;}
.p14 {font-size: 14px;}
.p15 {font-size: 15px;}
.p16 {font-size: 16px;}


canvas { display: none; } /* Hide the canvas initially */


.popup {
  display: none;
  position: absolute;
  top: 10%;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.88);
  padding: 20px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 10;
  width: 50% !important;
  border-radius: 16px;
  box-shadow: 0 0 15px #272727b0;
  height: 80dvh;
 
  animation: slideIn 1.0s ease forwards; /* Slide in animation */
  opacity: 0;
}

@keyframes slideIn {
  0% {
    right: -300px; /* Off-screen on the right */
    opacity: 0;
  }
  100% {
    right: 20px;   
    opacity: 1;
  }
}

.popup img {
  max-width: 100%;
}
.popup button {
  background-color:#d4d4d48f;
  padding: 6px;
  border-radius: 48px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  min-width: 32px;
  color: #292929;
  border:#3333335b 1px solid;
  position: absolute;
  top: 15px;
  right: 3%;
}

.popup button:hover {
  background-color:#25252588;
  padding: 6px;
  border-radius: 48px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  min-width: 32px;
  color: #1f1f1f;
  border:#424242bd 1px solid;
  position: absolute;
  top: 15px;
  right: 3%;
}


 text {
  padding-right: 6px;
 }



/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: #2c2c2c !important;
  font-family: "Roboto", sans-serif;
  color: #fff !important;
}
#progressBar {
  width: 12%;
  height: 10px;
  background: #504945;
  margin-top: 10px;
  color: #fff !important;
}
#progress {
  height: 100%;
  width: 0%;
  background-color: #f15d07;
  transition: width 0.3s;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
}

.imgBorder {
  border-radius: 10px;
}


.bodyModal {
  overflow: hidden !important; margin-top: 20px; display: flex;
}

@media (max-width: 680px) {

  .bodyModal {
    overflow: hidden !important; margin-top: -20px; display: block !important;
  }

  .table-custom {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    color: #143968 !important; 
  }

  .goLeftSmall {
    font-size: 12px;
    line-height: 17px !important;
  }

  .logo{
    transform: scale(0.55);
    margin-left: -45px;
  }

  .button2 {   
    color: #ffffff;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 300;
    padding: 3px;
    padding-left: 3px;
    padding-right: 3px;
    margin: 0px;   
    min-width: 50px;
    font-size: 11px;
    border-radius: 16px;
    margin-top: 10px;
  
  }  
  
  .button2:hover {
    background-color: #2861960a;
    color: #0e294b; 
    font-weight: 300;
    font-size: 11px;
    border: none;
    border: 1px solid #143968;
    }

    h2 {
      font-size: 21px;
    }
    h5 {
      font-size: 15px;
    }

    .popup img {
      max-width: 100%;
    }
    .popup button {
       transform: scale(0.7);
       top: 5px;
       right: 2%;
    }
    
    .popup button:hover {
      background-color:#25252588;   
      color: #1f1f1f;
      border:#424242bd 1px solid;
      transform: scale(0.7);
      top: 5px;
      right: 2%;
     
    }

    .popup {
      display: none;
      position: absolute;
      top: 10%;
      right: 5px;
      background-color: rgba(255, 255, 255, 0.88);
      padding: 14px;
      box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
      text-align: center;
      z-index: 10;
      width: 60% !important;
      border-radius: 16px;
      box-shadow: 0 0 15px #272727b0;
      height: 80dvh;
     
      animation: slideIn 1.0s ease forwards; /* Slide in animation */
      opacity: 0;
    }
    
      
    .popup img {
      max-width: 100% !important;
    }

    .easyMan {
      line-height: 16px !important; margin: 1px !important;
      font-size: 12px;
      text-align: justify;
    }
    
    .easyManSoft {
      line-height: 17px !important; margin: 2px !important;
      font-size: 12px;
      text-align: justify;
    }

 

}

.label {
  position: absolute;
  display: none;
  pointer-events: none; /* 💥 evita que el hover se active en el label entero */
  z-index: 10;
  font-family: sans-serif;
  background-color: transparent !important;
}

.hotspot-anchor {
  position: relative;
  display: inline-block;
  pointer-events: auto; /* ✅ el hover solo se activa sobre el contenido real */
}


.hotspot-container {
  display: flex;
  align-items: center;
  color: white;
  position: relative; /* Necesario para posicionar el texto relativo a este contenedor */
}

.hotspot-line {
  
  height: 1px;
  background-color: rgb(230, 68, 21);
  margin: 0 0px;
}

.hotspot-square {
  width: 10px;
  height: 10px;
  background-color: rgb(230, 68, 21);
  border-radius: 0px;
}

.hotspot-button {
  background-color: rgb(230, 68, 21); /* tu estilo ya definido puede sobrescribir esto */
  color: white;
  border: none;
  padding: 2px 10px;
  border-radius: 0px;
  font-size: 14px;
  cursor: pointer;
}

/* Extra: invertimos dirección si es hotspot-left */
.hotspot-left .hotspot-container {
  flex-direction: row;
}

.hotspot-right .hotspot-container {
  flex-direction: row-reverse;
}

.hotspot-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.hotspot-description {
  display: none;
  position: absolute;
  top: 100%;

  padding: 8px 0px;
  background-color: rgba(3, 3, 3, 0.0);
  color: white;
  font-size: 12px;
  max-width: 280px !important;
  width: 320px;
  font-weight: 300;
  line-height: 1.4;
  border-radius: 0px;
  font-family: "Roboto", sans-serif;
  z-index: 99;
  white-space: normal;
  pointer-events: none;
}

.hotspot-right .hotspot-description {
  left: 0;
  right: auto;
}
.hotspot-left .hotspot-description {
  left: auto;
  right: 0;
  text-align: right;
}

.label:hover .hotspot-description {
  display: block;
}

.roefix-title {
  
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 44px;
  font-weight: 700;
  color: white;
  z-index: 9999;
  font-family: "Roboto", sans-serif;
  pointer-events: none;
  text-align: center; 
  line-height: 1.2;  
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
  display: none;
}

.roefix-title2 {

  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white !important;
  z-index: 9999;
  font-family: "Roboto", sans-serif;
  pointer-events: none;
  text-align: center; 
  line-height: 1.2;  
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
}


.roefix-bottom {  
  position: fixed;
  bottom: 30px;
  right: 50px;

  font-size: 44px;
  font-weight: 700;
  color: white;
  z-index: 9999;
  font-family: "Roboto", sans-serif;
  pointer-events: none;
  text-align: center; 
  line-height: 1.2;  
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
  display: none;
}




@media (min-width: 576px) {
  .hotspot-anchor:hover .hotspot-description {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .hotspot-button {
    font-size: 10px;
    padding: 2px 6px;
  }

  .hotspot-description {
    font-size: 10px;
    line-height: 1.3;
    max-width: 280px !important;
    width: 260px;
    padding: 6px 0;
  }

  .hotspot-line {
    height: 1px;
  }

  .hotspot-square {
    width: 8px;
    height: 8px;
  }

  .roefix-title {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 700;
  color: white;
  z-index: 9999;
  font-family: "Roboto", sans-serif;
  pointer-events: none; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}
}