:root {
  --gradient-geolabs_iconsbtns: linear-gradient(to right,
      #607E7B 0%,
      #657C78 15%,
      #607673 30%,
      #596B6B 45%,
      #526062 60%,
      #4A565B 80%,
      #485258 100%);
}

#cont_dashboard {
  /*max-width: 100%;
  max-height: 600px;*/
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

#cont_dashboard::-webkit-scrollbar {
  -webkit-appearance: none;
}

#cont_dashboard::-webkit-scrollbar:vertical {
  width: 10px;
}

#cont_dashboard::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
  display: none;
}

#cont_dashboard::-webkit-scrollbar:horizontal {
  height: 10px;
}

#cont_dashboard::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
  border: 2px solid #f1f2f3;
}

#cont_dashboard::-webkit-scrollbar-track {
  border-radius: 10px;
}

/*css progress bar DEM INICIO*/
.rangeslider input[type='range'] {
  width: 100%;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

.rangeslider input[type='range'],
.rangeslider input[type='range']::-webkit-slider-runnable-track,
.rangeslider input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: none;
}

.rangeslider input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background: #003D7C;
}

.rangeslider input[type='range']:nth-child(2)::-webkit-slider-runnable-track {
  background: none;
}

.rangeslider input[type='range']::-webkit-slider-thumb {
  position: relative;
  height: 15px;
  width: 15px;
  margin-top: -7px;
  background: #fff;
  border: 1px solid #003D7C;
  border-radius: 25px;
  z-index: 1;
}


.rangeslider input[type='range']:nth-child(1)::-webkit-slider-thumb {
  z-index: 2;
}

.rangeslider {
  position: relative;
  height: 43px;
  /*width: 210px;*/
  width: 100%;
  display: inline-block;
  margin-top: 4px;
}

.rangeslider input {
  position: absolute;
}

.rangeslider {}

.rangeslider span {
  position: absolute;
  margin-top: 30px;
  left: 0;
  color: #fff;
}

.rangeslider .right {
  position: relative;
  float: right;
  margin-right: -5px;
}


/* Proof of concept for Firefox */
@-moz-document url-prefix() {
  .rangeslider::before {
    content: '';
    width: 100%;
    height: 3px;
    background: #05b8a6;
    display: block;
    position: relative;
    top: 16px;
  }

  .rangeslider input[type='range']:nth-child(1) {
    position: absolute;
    top: 38px !important;
    overflow: visible !important;
    height: 0;
  }

  .rangeslider input[type='range']:nth-child(2) {
    position: absolute;
    top: 38px !important;
    overflow: visible !important;
    height: 0;
  }

  .rangeslider input[type='range']::-moz-range-thumb {
    position: relative;
    height: 15px;
    width: 15px;
    margin-top: -7px;
    background: #fff;
    border: 1px solid #003D7C;
    border-radius: 25px;
    z-index: 1;
  }

  .rangeslider input[type='range']:nth-child(1)::-moz-range-thumb {
    transform: translateY(-20px);
  }

  .rangeslider input[type='range']:nth-child(2)::-moz-range-thumb {
    transform: translateY(-20px);
  }
}

/*css progress bar DEM FIN*/
/*29-12-2021 loader aerovista inicio*/
a {
  color: #F8FAFB;
}

.loader-ae svg {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
  width: 130px;
  height: 130px;
}

.loader-ae .stroke-still {
  stroke: #232323;
}

.loader-ae .stroke-animation {
  -webkit-animation: stroke-spacing 1.2s ease-in, stroke-color 4.8s linear;
  animation: stroke-spacing 1.2s ease-in, stroke-color 4.8s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@-webkit-keyframes stroke-spacing {
  0% {
    stroke-dasharray: 0 200;
  }

  45% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200 200;
  }

  90% {
    stroke-dashoffset: -200;
    stroke-dasharray: 200 200;
  }

  100% {
    stroke-dashoffset: -200;
    stroke-dasharray: 200 200;
  }
}

@keyframes stroke-spacing {
  0% {
    stroke-dasharray: 0 200;
  }

  45% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200 200;
  }

  90% {
    stroke-dashoffset: -200;
    stroke-dasharray: 200 200;
  }

  100% {
    stroke-dashoffset: -200;
    stroke-dasharray: 200 200;
  }
}

@-webkit-keyframes stroke-color {
  0% {
    stroke: #3498DB;
  }

  24% {
    stroke: #643232;
  }

  25% {
    stroke: #327864;
  }

  49% {
    stroke: #327864;
  }

  50% {
    stroke: #32326e;
  }

  74% {
    stroke: #32326e;
  }

  75% {
    stroke: #78325a;
  }

  99% {
    stroke: #78325a;
  }
}

@keyframes stroke-color {
  0% {
    stroke: #3498DB;
  }

  24% {
    stroke: #643232;
  }

  25% {
    stroke: #327864;
  }

  49% {
    stroke: #327864;
  }

  50% {
    stroke: #32326e;
  }

  74% {
    stroke: #32326e;
  }

  75% {
    stroke: #78325a;
  }

  99% {
    stroke: #78325a;
  }
}

.loader-ae .img1 {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(1deg) scale(1);
  width: 120px;
}

/* CONTENEDOR GENERAL */
.gl-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0c1015 0%, #05070a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* HALO DE FONDO */
.gl-loader-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent 70%);
  filter: blur(40px);
}

/* CONTENEDOR CENTRAL */
.gl-loader-center {
  position: relative;
  width: 120px;
  height: 120px;
}

/* LOGO CENTRADO PERFECTO */
.gl-loader-logo {
  position: absolute;
  top: 52%;
  left: 50%;

  width: 80px;

  transform: translate(-50%, -50%);
  z-index: 2;

  animation: floatLogo 2.5s ease-in-out infinite;
}

/* ANILLO / PULSO PERFECTAMENTE CENTRADO */
.gl-loader-pulse {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 110px;
  height: 110px;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  border: 2px solid rgba(20, 184, 166, 0.35);

  animation: pulseRing 2s ease-out infinite;
}

/* TEXTO */
.gl-loader-text {
  margin-top: 25px;
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  text-align: center;
}

/* ANIMACIÓN SUAVE DEL LOGO */
@keyframes floatLogo {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-6px);
  }
}

/* ANIMACIÓN DEL PULSO */
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/*29-12-2021 loader aerovista fin*/
/*cambios de menu flotante inicio 28-12-2021*/
/*.sidebar-mini.sidebar-collapse .main-sidebar {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 0px !important;
    z-index: 850;
}
.sidebar-mini.sidebar-collapse .content-wrapper, .sidebar-mini.sidebar-collapse .right-side, .sidebar-mini.sidebar-collapse .main-footer {
    margin-left: 0px !important;
    z-index: 840;
}
.sidebar-expanded-on-hover .main-footer, .sidebar-expanded-on-hover .content-wrapper {
    margin-left: 0px !important;
}*/
.skin-blue-light .main-header .navbar {
  background: linear-gradient(to right,
      #34393f,
      #363d41,
      #373b42,
      #2a2d32,
      #1e1f23,
      #131417,
      #101216),
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.01) 0px,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px,
      transparent 2px);
}

.strog_opt_grouplayer {
  padding: 9px 0px 0px 0px;
  margin: -11px -13px -11px 0px;
}

.main-header .navbar {
  -webkit-transition: margin-left 0.3s ease-in-out;
  -o-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  margin-bottom: 0;
  margin-left: 0px;
  border: none;
  min-height: 63px;
  border-radius: 0;
  align-content: center;
}

.content-wrapper,
.main-footer {
  -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  margin-left: 0px;
  z-index: 820;
}

/*cambios de menu flotante fin 28-12-2021*/
/*nuevos cambios menu flotantes inicio 02-01-2022*/
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  /*padding-left: 220px;*/
}

#sidebar-wrapper {
  z-index: 1050;
  left: 220px;
  width: 0;
  height: 100%;
  margin-left: -220px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #413f41;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
  width: 220px;
}

/*#page-content-wrapper {
    width: 100%;
    padding-top: 70px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}*/

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  position: relative;
  line-height: 20px;
  /*display: inline-block;*/
  width: 100%;
}

/*.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}*/
/*.sidebar-nav li:first-child a {
    color: #fff;
    background-color: #1a1a1a;
}*/
/*.sidebar-nav li:nth-child(2):before {
    background-color: #ec1b5a;   
}
.sidebar-nav li:nth-child(3):before {
    background-color: #79aefe;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #314190;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #279636;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #7d5d81;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #ead24c;   
}
.sidebar-nav li:nth-child(8):before {
    background-color: #2d2366;   
}
.sidebar-nav li:nth-child(9):before {
    background-color: #35acdf;   
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}*/

.sidebar-nav li a {
  display: block;
  color: #ddd;
  text-decoration: none;
  /*padding: 10px 15px 10px 30px;    */
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}

.sidebar-nav>.sidebar-brand {
  height: 50px;
  /*font-size: 20px;
    line-height: 44px;*/
}

.divider {
  height: 1px;
  width: 100%;
  display: block;
  /* for use on default inline elements like span */
  /*margin: 9px 0;*/
  overflow: hidden;
  /*background-color: #8c8d9b;*/
  background: linear-gradient(to right, transparent 0%, #6b7280 20%, #9ca3af 50%, #6b7280 80%, transparent 100%);
}

/*.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}*/

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: relative;
  top: 15px;
  z-index: 999;
  display: block;
  width: 20px;
  height: 23px;
  margin-left: 12px;
  background: transparent;
  border: none;
  float: left;
  margin-right: 12px;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}

/*.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}*/

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #f5ecec;
}

.hamburger.is-closed .hamb-top {
  top: 5px;
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -1px;
}

.hamburger.is-closed .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all .35s ease-in-out;
}

/*.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}*/
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #fbf6f6;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}

.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73, 1, .28, .08);
}

.hamburger.is-open .hamb-middle {
  display: none;
}

.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73, 1, .28, .08);
}

.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 78, 89, 0.8);
  z-index: 1040;
}

.overlay_comp {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 78, 89, 0.8);
  z-index: 1003;
}

.overlay_comp_multimedia {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 78, 89, 0.8);
  z-index: 1003;
}

#optcerrar_comp_multimedia {
  position: fixed;
  top: 145px;
  right: 18px;
  z-index: 1003;
  font-size: 35px;
  color: #fff;
  border: 2px solid #665c5b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  align-content: center;
  align-items: center;
  display: grid;
  padding: 0px 2px 5px 2px;
  background-color: #665c5b;
  opacity: 1 !important;
}

#optcerrar_report_2d {
  position: fixed;
  top: 145px;
  right: 18px;
  z-index: 1003;
  font-size: 35px;
  color: #fff;
  border: 2px solid #665c5b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  align-content: center;
  align-items: center;
  display: grid;
  padding: 0px 2px 5px 2px;
  background-color: #665c5b;
  opacity: 1 !important;
}

/*.main-header {
    position: relative;
    max-height: 100px;
    z-index: 1000;
}*/
/*nuevos cambios menu flotantes fin 02-01-2022*/
/*CSS Juanca inicio*/
.ms-text {
  font-size: 8.5px;
  font-weight: bold;
}

.md-icon {
  font-size: 20px;
}

.link_a {
  color: #444;
}

.link_a:hover {
  color: #0089DB;
}

.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
  stroke: #fff !important;
}

.ct-perfect-fourth {
  display: block;
  position: initial !important;
  width: 100%;
}

.box-header_jc {
  color: #444;
  display: block;
  padding: 0px;
  position: relative;
}

#menu_map_jc {
  align-content: center;
  align-items: center;
  counter-reset: stepCount;
  display: flex;
  justify-content: space-around;
  /*margin: 10vh auto 20vh; */
  margin: 15px 49px 40px -20px;
}

#menu_map_jc li {
  background: #eeeff0;
  color: #eeeff0;
  content: ' ';
  display: flex;
  flex-grow: 1;
  height: .3em;
  line-height: 1em;
  margin: 0;
  position: relative;
  text-align: right;
  /*z-index: -1;*/
  font-weight: bold;
}

#menu_map_jc li::before {
  color: white;
  background: #eeeff0;
  border-radius: 50%;
  /*counter-increment: stepCount;
  content: counter(stepCount);*/
  content: '\f070';
  font-weight: 400;
  font-family: "FontAwesome";
  color: #464748;
  height: 2em;
  /*left: -2em;*/
  line-height: 2em;
  position: absolute;
  text-align: center;
  top: -.85em;
  width: 2em;
}

/*#menu_map_jc li.active {
  background-color: lightblue;
}*/
#menu_map_jc li.active::before {
  font-size: 1em;
  background: #6a6a6c;
  box-shadow: 0px 0px 3px 2px #0089DB;
  font-weight: 400;
  content: "\f06e";
  font-family: "FontAwesome";
  color: #f6f6f9;
}

/*
#menu_map_jc li.active ~ li {
  background-color: lightblue;
}
#menu_map_jc li.active ~ li::before {
  background-color: lightblue;
}*/
#menu_map_jc li:last-child {
  flex-basis: 0;
  flex-grow: 0;
  flex-shrink: 1;
}

.descmenu {
  /*position: relative;
top: 20px;
left: -1px;
width: 28px;*/
  position: absolute;
  top: 20px;
  left: -21px;
  width: 69px;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  display: none !important;
}

.selectedGrafic {
  border: 10px solid gold;
}

/*CSS Grafica PERFIL DE ELEVACION INICIO*/
.ct-label {
  fill: #fff !important;
  color: #fff !important;
  font-size: .75rem !important;
  line-height: 1 !important;
}

.ct-series-a .ct-area,
.ct-series-a .ct-slice-donut-solid,
.ct-series-a .ct-slice-pie {
  fill: #fff !important;
}

.my-cool-point {
  fill-opacity: 1 !important;
  stroke-width: 0px;
  stroke: #1cc6e1;
  transition: all 0.2s linear;
}

.my-cool-point:hover {
  r: 4;
  stroke-opacity: 0.3;
  stroke-width: 15px;
}

/*CSS Grafica PERFIL DE ELEVACION FIN*/
#popup-form .leaflet-container a.leaflet-popup-close-button {
  display: none !important;
}

/*Nuevo estilo de Menu con opciones de scroll horizontal Inicio*/
.left_menu {
  align-content: center;
  align-items: center;
  width: 8%;
  /*border: 1px solid black;*/
  height: 50px;
  display: flex;
  gap: 12px;
  width: auto;
}

.center_menu {
  width: 84%;
  height: 45px;
  overflow: hidden;
  white-space: nowrap;
}

.right_menu {
  align-content: center;
  align-items: center;
  width: 8%;
  /*border: 1px solid black;*/
  height: 50px;
  /*display: flex;*/
  /*display: grid;*/
  right: 0px;
  padding: 0;
  width: auto;
}

/*#content_menu{
  align-content: center;
  
  counter-reset: stepCount;
  display: flex;
  padding-top: 11px;
  padding-left: 0px;
  padding-right: 0px;
}
#content_menu div {
  background: #eeeff0;
  color: #eeeff0;
  content: ' ';
  display: flex;
  flex-grow: 1;
  height: .3em;
  line-height: 1em;
  margin: 0;
  text-align: center !important;
  font-weight: bold;
}
#content_menu div::before {
  background: #eeeff0;
  border-radius: 50%;
  counter-increment: stepCount;
  content: counter(stepCount);
 
  font-weight: 400;
  font-family: "FontAwesome";
  color: #464748;
  height: 2em;
  left: 50%;
  line-height: 2em;
  position: relative;
  text-align: center;
  top: -0.80em;
  width: 3em;
  cursor:pointer !important;
}
#content_menu .mapaactual::before  {
  background: #413f41;
  border-radius: 50%;
  content: '\f06e';
  font-weight: 400;
  font-family: "FontAwesome";
  color: #FFF;
  height: 2em;
  left: 50%;
  line-height: 2em;
  position: relative;
  text-align: center;
  top: -0.80em;
  width: 3em;
}*/
/*#content_menu div:last-child {
  flex-basis: 0;
  flex-grow: 0;
  flex-shrink: 1;
}*/
/*.internal{

 width: 100%;
 position: relative;
 top: 25px;
}*/
/*Nuevo estilo de Menu con opciones de scroll horizontal Fin*/
.cont_map {
  margin-bottom: 0px !important;
}

.no_active {
  color: red;
}

/* 27-10-2021 inicio */
.box.box-solid {
  background: #ecf0f5 !important;
}

.internal {
  color: #fff;
}

#right-button {
  color: #fff !important;
}

#left-button {
  color: #fff !important;
  margin: auto;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) {
  ...
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) {
  ...
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) {}

#contmenu_lateral {
  max-width: 100%;
  /*max-height: 600px; */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

#contmenu_lateral::-webkit-scrollbar {
  -webkit-appearance: none;
}

#contmenu_lateral::-webkit-scrollbar:vertical {
  width: 10px;
}

#contmenu_lateral::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
  display: none;
}

#contmenu_lateral::-webkit-scrollbar:horizontal {
  height: 10px;
}

#contmenu_lateral::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
  border: 2px solid #f1f2f3;
}

#contmenu_lateral::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* 27-10-2021 fin */
/*11-11-2021 INICIO*/
.flotante {
  /*display:scroll;*/
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 1000;
  border: 2.5px solid #ccc;
  border-radius: 3px;
  padding: 3px;
  background: #fff;
  transition: all 500ms ease;
  display: block;
}

#anotaciones_comp {
  /*max-width: 100%;*/
  /*max-height: 600px; */
  /*overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;*/
}

@media (min-width: 1024px) {

  /*#menu_lateral {
    max-height: 638px;
  }
  #contmenu_lateral{
    max-height: 538px;
  }*/
  #anotaciones_comp {
    max-height: 538px;
  }
}

@media (min-width: 1280px) {

  /*#menu_lateral {
    max-height: 770px;
  }
  #contmenu_lateral{
    max-height: 670px;
  }*/
  #anotaciones_comp {
    max-height: 670px;
  }
}

/*@media only screen and (min-width: 1280px) and (min-height: 900px)  {
  #contmenu_lateral {
    max-height: 565px !important;
  }
}*/
@media (min-width: 1920px) {

  /*#menu_lateral {
    max-height: 797px;
  }
  #contmenu_lateral{
    max-height: 697px;
  }*/
  #anotaciones_comp {
    max-height: 697px;
  }
}

.icon_compare {
  border: 2px solid white;
  border-radius: 50%;
  width: 30px;
  text-align: center;
  height: 30px;
  align-items: center;
  align-content: center;
  display: grid;
  color: white;
  margin: auto;
}

.icon_agregar {
  border: 2px solid white;
  border-radius: 50%;
  width: 30px;
  text-align: center;
  height: 30px;
  align-items: center;
  align-content: center;
  display: grid;
  color: white;
  margin: auto;
}

.active_comp {
  background: #05b8a6;
  /*color: #fff;*/
}

.mapa_full {
  width: 100% !important;
  height: 500px !important;
}

.link_disabled {
  /*pointer-events: none; 
  cursor: default; */
  pointer-events: none;
  opacity: 0.8;
}

/*11-11-2021 FIN*/

.leaflet-legend-expanded .leaflet-legend-contents {
  display: block;
  padding: 0px !important;
}

.leaflet-legend-title {
  margin: 3px;
  padding-bottom: 0px !important;
  font-size: 17px !important;
}

/*24-11-2021*/
.ct-line {
  fill: none;
  stroke-width: 3px !important;
}

.ct-series-b .ct-bar,
.ct-series-b .ct-line,
.ct-series-b .ct-point,
.ct-series-b .ct-slice-donut {
  stroke: #05b8a6;
}

.ct-series-b .ct-area,
.ct-series-b .ct-slice-donut-solid,
.ct-series-b .ct-slice-pie {
  fill: #05b8a6;
}

/*CSS NUEVOS ESTILOS DE BTN ICONOS DE COMPARAR-COMPARTIR-OPT PROYECTO INICIO*/
.cont_icon_tools {
  /*width: 14px;*/
}

.img_tool_share {
  height: 30px;
  width: 30px;
  padding: 3px;
  border: 2px solid white;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  align-content: center;
  display: grid;
  cursor: pointer;
}

.img_tool_share:hover {
  border: 2px solid #05b8a6;
}

.right_menu table td {
  padding: 4px;
}

.notbefore::before {
  display: none !important;
}

.notbefore::after {
  display: none !important;
}

.img_tool_comp {
  padding: 3px;
  width: 25px;
  height: 25px;
}

.icon_compare:hover {
  border: 2px solid #05b8a6;
}

.icon_agregar:hover {
  border: 2px solid #05b8a6;
  color: white !important;
}

/*CSS NUEVOS ESTILOS DE BTN ICONOS DE COMPARAR-COMPARTIR-OPT PROYECTO FIN*/
/*29-11-2021*/
#content_menu .slider.slider-horizontal {
  /*width: 150%;*/
  height: 20px;
  /*margin-bottom: 20px;*/
  margin-bottom: 24px;
  margin-left: 30px;
}

#content_menu .slider.slider-horizontal .slider-track {
  height: 4px;
  width: 100%;
  margin-top: 16px;
  top: 0%;
  left: 0;
}

#content_menu .slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  /*margin-left: -10px !important;*/
  /*margin-top: -6px !important;/*Cambiar esto para produccion*/
  margin-top: 12px !important;
  * //*Cambiar esto para desarrollo dev*/
}

#content_menu .slider-tick-label-container {
  position: relative !important;
  top: 5px !important;
  font-size: 12px !important;
  /*margin-left: -77.75px !important;*/
}

#content_menu .slider-tick {
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  border: 0px solid transparent;
}

#content_menu .slider-tick.in-selection {
  background-color: #05b8a6;
  background-image: -moz-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
  opacity: 1;
}

#content_menu .slider-handle {
  background-color: #0478b2;
  background-image: -moz-linear-gradient(top, #0480BE, #036fa5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0480BE), to(#036fa5));
  background-image: -webkit-linear-gradient(top, #0480BE, #036fa5);
  background-image: -o-linear-gradient(top, #0480BE, #036fa5);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0480BE', endColorstr='#036fa5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #0480BE;
  border: 0px solid transparent;
}

#content_menu .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 0px;
  display: inline-block;
  text-align: center;
}

#content_menu .slider-selection.tick-slider-selection {
  background-color: #05b8a6 !important;
  background-image: -moz-linear-gradient(top, #05b8a6, #05b8a6) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
}

/*30-11-2021*/
/*CSS LINEA DE TIEMPO DASHBOARD INICIO*/

.center_menu {
  width: 84%;
  height: 42px;
  overflow: hidden;
  white-space: nowrap;
}

@media only screen and (max-width: 1400px) {

  /*0 a 1400px*/
  .center_menu {
    width: 70% !important;
  }
}

.center_menu .slider .tooltip.top {
  margin-top: 4px !important;
}

#content_menu_dash .slider.slider-horizontal {
  /*width: 150%;*/
  height: 20px;
  /*margin-bottom: 20px;*/
  margin-bottom: 24px;
  margin-left: 30px;
}

#content_menu_dash .slider.slider-horizontal .slider-track {
  height: 4px;
  width: 100%;
  margin-top: 16px;
  top: 0%;
  left: 0;
}

#content_menu_dash .slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  /*margin-left: -10px !important;*/
  /*margin-top: -6px !important;/*Cambiar esto para produccion*/
  margin-top: 12px !important;
  /*Cambiar esto para desarrollo dev*/
}

#content_menu_dash .slider-tick-label-container {
  position: relative !important;
  top: 5px !important;
  font-size: 12px !important;
  /*margin-left: -77.75px !important;*/
}

#content_menu_dash .slider-tick {
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  border: 0px solid transparent;
}

#content_menu_dash .slider-tick.in-selection {
  background-color: #05b8a6;
  background-image: -moz-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
  opacity: 1;
}

#content_menu_dash .slider-handle {
  background-color: #0478b2;
  background-image: -moz-linear-gradient(top, #0480BE, #036fa5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0480BE), to(#036fa5));
  background-image: -webkit-linear-gradient(top, #0480BE, #036fa5);
  background-image: -o-linear-gradient(top, #0480BE, #036fa5);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0480BE', endColorstr='#036fa5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #0480BE;
  border: 0px solid transparent;
}

#content_menu_dash .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 0px;
  display: inline-block;
  text-align: center;
}

#content_menu_dash .slider-selection.tick-slider-selection {
  background-color: #05b8a6 !important;
  background-image: -moz-linear-gradient(top, #05b8a6, #05b8a6) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
}

#right-button3 {
  color: #fff !important;
  margin: auto;
}

#left-button3 {
  color: #fff !important;
  margin: auto;
}

.skin-blue-light .main-sidebar {
  border-right: none !important;
}

.link_disabled_insp {
  pointer-events: none;
  opacity: 0.8;
  color: #3b3b3b;
}

/*CSS LINEA DE TIEMPO DASHBOARD FIN*/
/*CSS LINEA DE TIEMPO 3D INICIO*/
#content_menu_3d .slider.slider-horizontal {
  /*width: 150%;*/
  height: 20px;
  /*margin-bottom: 20px;*/
  margin-bottom: 24px;
  margin-left: 30px;
}

#content_menu_3d .slider.slider-horizontal .slider-track {
  height: 4px;
  width: 100%;
  margin-top: 16px;
  top: 0%;
  left: 0;
}

#content_menu_3d .slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  /*margin-left: -10px !important;*/
  /*margin-top: -6px !important;/*Cambiar esto para produccion*/
  margin-top: 12px !important;
  /*Cambiar esto para desarrollo dev*/
}

#content_menu_3d .slider-tick-label-container {
  position: relative !important;
  top: 5px !important;
  font-size: 12px !important;
  /*margin-left: -77.75px !important;*/
}

#content_menu_3d .slider-tick {
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  border: 0px solid transparent;
}

#content_menu_3d .slider-tick.in-selection {
  background-color: #05b8a6;
  background-image: -moz-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
  opacity: 1;
}

#content_menu_3d .slider-handle {
  background-color: #0478b2;
  background-image: -moz-linear-gradient(top, #0480BE, #036fa5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0480BE), to(#036fa5));
  background-image: -webkit-linear-gradient(top, #0480BE, #036fa5);
  background-image: -o-linear-gradient(top, #0480BE, #036fa5);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0480BE', endColorstr='#036fa5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #0480BE;
  border: 0px solid transparent;
}

#content_menu_3d .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 0px;
  display: inline-block;
  text-align: center;
}

#content_menu_3d .slider-selection.tick-slider-selection {
  background-color: #05b8a6 !important;
  background-image: -moz-linear-gradient(top, #05b8a6, #05b8a6) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
}

#right-button3d {
  color: #fff !important;
  margin: auto;
}

#left-button3d {
  color: #fff !important;
  margin: auto;
}

.skin-blue-light .main-sidebar {
  border-right: none !important;
}

.link_disabled_3d {
  pointer-events: none;
  opacity: 0.8;
  color: #3b3b3b;
}

/*CSS LINEA DE TIEMPO 3D FIN*/
/*CSS CUZTOM DE HEADER INICIO*/
/*.menu-header-cuztom .nav > li > a:hover,
.menu-header-cuztom .nav > li > a:active,
.menu-header-cuztom .nav > li > a:focus {
  background-color: transparent !important;
}*/
/*CSS CUZTOM DE HEADER FIN*/
.leaflet-legend-title {
  margin: 3px;
  padding-bottom: 5px;
  display: none !important;
}

.leaflet-legend-column {
  float: left;
  margin-left: 0 !important;
}

.leaflet-legend-item i {
  display: inline-block;
  padding: 0 !important;
  position: relative;
  vertical-align: middle;
}

.leaflet-legend-item span {
  vertical-align: middle;
  display: table-cell;
  word-break: keep-all;
  white-space: nowrap;
  background-color: transparent;
  text-align: left;
  font-size: 15px !important;
  padding: 2px !important;
}

.disableddiv {
  background-color: rgba(73, 78, 89, 0.8);
  pointer-events: none;
  opacity: 0.4;
}

.center_menu .slider .tooltip.top {
  margin-top: 4px !important;
}

.panel-group {
  margin-bottom: 0px;
}

#control_layers .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_layers .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_layers .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_layers .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_layers .leaflet-control-layers-base {
  display: none !important;
}

#control_layers .leaflet-control-layers-separator {
  display: none !important;
}

#control_webtiledem .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_webtiledem .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_webtiledem .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_webtiledem .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_webtiledem .leaflet-control-layers-base {
  display: none !important;
}

#control_webtiledem .leaflet-control-layers-separator {
  display: none !important;
}

#control_webtiledem .leaflet-control-layers-group-name {
  display: none !important;
}

#control_newcapas .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_newcapas .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_newcapas .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_newcapas .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_newcapas .leaflet-control-layers-base {
  display: none !important;
}

#control_newcapas .leaflet-control-layers-separator {
  display: none !important;
}

.iconnormal {
  font-size: 17px;
  font-weight: bolder;
}

.iconrotate {
  transform: rotate(-90deg);
  font-size: 17px;
  font-weight: bolder;
}

/*CSS UPDATE TOOL LEAFLET DRAW INCIO*/
.leaflet-draw-toolbar {
  background: #5E5F5F !important;
  padding: 8px !important;
  border-radius: 8px !important;
  box-shadow: 0px 0px 4px 2px rgb(0 0 0 / 25%) !important;
  border: none !important;
}

.leaflet-draw-toolbar a {
  background-color: transparent !important;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon {
  background-position: -30px -1px !important;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.leaflet-touch .leaflet-bar a {
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  border: 1px solid #93FCE9 !important;
  border-radius: 50% !important;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker {
  border-bottom-left-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
  background-position: -60px -1px !important;
}

/*CSS UPDATE TOOL LEAFLET DRAW FIN*/
/*css control KML comparacion inicio*/
#kml_control_left .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#kml_control_left .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#kml_control_left .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#kml_control_left .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#kml_control_left .leaflet-control-layers-base {
  display: none !important;
}

#kml_control_left .leaflet-control-layers-separator {
  display: none !important;
}

#kml_control_right .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#kml_control_right .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#kml_control_right .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#kml_control_right .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#kml_control_right .leaflet-control-layers-base {
  display: none !important;
}

#kml_control_right .leaflet-control-layers-separator {
  display: none !important;
}

/*css control KML comparacion fin*/
/*CSS new opts layers*/
span:has(> .nomlayergroup) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nomlayergroup {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

/*03-01-2021 css mapa herramientas inicio*/
/*#map .leaflet-top .leaflet-control {
    margin-top: 52px !important;
}*/
.leaflet-top:has(> .leaflet-draw) {
  top: 40% !important;
}

.leaflet-touch .leaflet-right .leaflet-draw-actions {
  right: 54px !important;
  left: auto;
}

#map .leaflet-draw {
  /*margin-top: 124px !important;*/
}

#map_com .leaflet-top .leaflet-control {
  margin-top: 63px !important;
}

#map_com_tl .leaflet-top .leaflet-control {
  margin-top: 63px !important;
}

#map .leaflet-control-styleeditor {
  margin-top: 11px !important;
}

.leaflet-styleeditor {
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
  height: 100%;
  left: 0;
  background-color: white;
  width: 0;
  position: absolute;
  margin: 0px;
  margin-top: 42px !important;
  overflow: hidden;
  -webkit-transition-property: -webkit-transform, width;
  transition-property: transform, width;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -ms-transform: translatex(0);
  -webkit-transform: translatex(0);
  transform: translatex(0);
  z-index: 1000;
  /*margin-top: 42px;*/
}

.leaflet-control-zoom {
  border: none !important;
}

.leaflet-control-zoom .leaflet-control-zoom-in {
  border-radius: 50% !important;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: rgba(59, 47, 47, 0.76);
  color: white;
  line-height: 25px !important;
}

.leaflet-control-zoom .leaflet-control-zoom-out {
  border-radius: 50% !important;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: rgba(59, 47, 47, 0.76);
  color: white;
  line-height: 25px !important;
}

.leaflet-control-layers {
  border: none !important;
}

.leaflet-control-layers-expanded {
  border: 2px solid rgba(0, 0, 0, 0.2) !important;
  background: white !important;
}

.leaflet-control-layers-toggle {
  border-radius: 50% !important;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(59, 47, 47, 0.76) !important;
  color: white;
}

.leaflet-draw-section>.leaflet-draw-toolbar .leaflet-bar .leaflet-draw-toolbar-top {
  margin-top: 62px !important;
}

.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: transparent !important;
  background-clip: border-box;
  border-radius: 5px;
}

.leaflet-control-layers-expanded {
  background-color: #444444 !important;
  color: #fff !important;
}

.btn_primary_geolabs {
  background-color: #3b3b3b;
  border-color: #3b3b3b;
  color: #fff;
}

.btn_primary_geolabs:hover {
  background-color: #3b3b3b;
  border-color: #3b3b3b;
  color: #fff;
}

.btn_geolabs {
  background-color: #05b8a6 !important;
  border-color: #05b8a6 !important;
}

.btn_geolabs:hover {
  background-color: #05b8a6 !important;
  border-color: #05b8a6 !important;
  color: #fff !important;
}

.btn_geolabs_dark {
  background-color: #262626 !important;
  border-color: #262626 !important;
}

.btn_geolabs_dark:hover {
  background-color: #262626 !important;
  border-color: #262626 !important;
  color: #fff !important;
}

#divnocomp .panel-default {
  border-color: #444444 !important;
}

#divnocomp .panel {
  margin-bottom: 0px !important;
  background-color: #444444 !important;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

#divnocomp .panel-default>.panel-heading {
  color: #333;
  background-color: #3b3b3b;
  /*border-color: #696969;*/
  border: 1px solid transparent;
  /* 🔥 clave */
  /*padding: 0px 18px 0px 10px;*/
  width: 100%;
  display: grid;
  align-items: center;
  border-radius: 10px;
}

#divnocomp .panel-default>.panel-heading:hover {
  background: var(--gl-bg-hover);
  border: 1px solid var(--gl-accent-soft);
  /* 🔥 clave */
}

#divnocomp .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #444444;
}

#divnocomp .leaflet-control-layers-overlays {
  background-color: #444444 !important;
}

#divnocomp .leaflet-control-layers-list {
  background-color: #444444 !important;
}

/*input[type="checkbox"]:checked {
  background-color: red;
  box-shadow: 0 0 0 3px hotpink !important;
}*/
#divnocomp a {
  color: #fff !important;
}

.btn_ctrllayers {
  border: none !important;
  background: transparent !important;
  font-size: 15px !important;
  cursor: pointer;
}

/*#anotaciones .panel-heading{
  background: transparent !important;
}*/
#datoslinea td {
  color: #fff;
}

#datospoint td {
  color: #fff;
}

#anotaciones .box-header>.fa,
.box-header>.glyphicon,
.box-header>.ion,
.box-header .box-title {
  display: inline-block;
  font-size: 14px;
  margin: 0;
  line-height: 1;
}

#optcerrar_comp {
  position: fixed;
  top: 145px;
  right: 18px;
  z-index: 1003;
  font-size: 35px;
  color: #fff;
  border: 2px solid #665c5b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  align-content: center;
  align-items: center;
  display: grid;
  padding: 0px 2px 5px 2px;
  background-color: #665c5b;
  opacity: 1 !important;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #3b3b3b !important;
  border-radius: 4px;
}

.internal:hover {
  outline: none !important;
  text-decoration: none !important;
  color: #05b8a6 !important;
}

.modal-content {
  position: relative;
  background-color: #3b3b3b;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-header {
  border-bottom-color: #8c8d9b;
  color: #fff;
}

.modal-footer {
  border-top-color: #8c8d9b;
  color: #fff;
}

#chatcontainer {
  background-color: #3b3b3b !important;
}

.direct-chat-name {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.right .direct-chat-text {
  margin-right: 0px;
  margin-left: 50px;
}

.direct-chat-text {
  border-radius: 5px;
  position: relative;
  padding: 5px 10px;
  background: #d2d6de;
  background-color: rgb(210, 214, 222);
  border: 1px solid #d2d6de;
  margin: 5px 50px 0 0;
  color: #444444;
}

.right .direct-chat-text::after,
.right .direct-chat-text::before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #05b8a6;
}

.direct-chat-text::after,
.direct-chat-text::before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-top-width: medium;
  border-right-color: transparent;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-right-color: #696969;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}

.act_ti_box {
  background-color: #05b8a6 !important;
}

/*.leaflet-control-layers-base{
   background: white !important;
}*/
/*03-01-2021 css mapa herramientas fin*/
/*09-01-2022 inicio*/
/*input[type=checkbox] {
  visibility: hidden;
}
.checkbox-1 {
  background: #ededed;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
}*/

/*input[type=checkbox] + label{
  cursor:pointer;
}

label:before{
  content:'';
  background:transparent;
  border: 3px solid #88c64b;
  border-radius: 25px;
  display: inline-block;
  height: 15px;
  width: 15px;
  text-align:center;
  text-shadow:4px -2px 3px gray;
  vertical-align:middle;
  
  float: left;
}*/

input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #05b8a6;
  margin: 3px 4px 0px 0px;
  font: inherit;
  color: #05b8a6;
  width: 1.18em;
  height: 1.18em;
  /*border: 0.15em solid cadetblue;*/
  border-radius: 25em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  float: left;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  /*box-shadow: inset 1em 1em var(--form-control-color);*/
  /* Windows High Contrast Mode */
  background-color: white;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 13px;
  height: 13px;
  padding: 1px;
  background-clip: content-box;
  border: 2px solid #99a4a3;
  background-color: #fff;
  border-radius: 50%;
}

/* appearance for checked radiobutton */
input[type="radio"]:checked {
  background-color: #05b8a6;
}

/*input[type="checkbox"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}*/

input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);

  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.leaflet-legend {
  background-color: #696969 !important;
}

#contmenu_lateral_comp {
  max-width: 100%;
  /*max-height: 600px;*/
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

.leaflet-legend-item span {
  vertical-align: middle;
  display: table-cell;
  word-break: keep-all;
  white-space: nowrap;
  background-color: transparent;
  text-align: left;
  color: #fff;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #fff !important;
  background-color: #3b3b3b !important;
  background-image: none;
  border: 1px solid #8c8d9b !important;
  border-top-color: rgb(140, 141, 155);
  border-right-color: rgb(140, 141, 155);
  border-bottom-color: rgb(140, 141, 155);
  border-left-color: rgb(140, 141, 155);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #3b3b3b !important;
  color: #fff !important;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #3b3b3b;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.swal2-icon.swal2-warning {
  border-color: #ff334c !important;
  color: #ff334c !important;
}

.alerta_suscripcion .swal2-styled.swal2-cancel {
  background-color: transparent !important;
}

.alerta_chatsuport_geolabs .swal2-actions {
  display: grid !important;
}

.alerta_chatsuport_geolabs .swal2-styled.swal2-cancel {
  background-color: transparent !important;
  text-decoration: underline !important;
}

.alerta_chatsuport_geolabs .swal2-icon.swal2-info {
  border-color: #cdcdcd;
  color: #cdcdcd;
}

.custom-loader_swalgeolabs {
  animation: none;
  border-width: 0;
}

.sidebar-mini.sidebar-collapse .content-inspeccion,
.sidebar-mini.sidebar-collapse .right-side,
.sidebar-mini.sidebar-collapse .main-footer {
  margin-left: 50px !important;
  z-index: 840;
}

/*css suich inicio*/
div.btn-container-suich_optdem {
  display: block;
  /*vertical-align: middle;*/
  /*text-align: center;*/
  margin-top: 10px;
  margin-right: 15px;
}

div.btn-container-suich_optdem i {
  display: inline-block;
  position: relative;
  top: -6px;
  font-size: 25px;
}

.btn-container-suich_optdem label {
  font-size: 13px;
  color: #484646;
  font-weight: 500;
}

.btn-container-suich_optdem .btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 120px;
  height: 25px;
  background: #ffff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 4px;
  right: 17px;

}

.btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 74px;
  height: 21px;
  background: #05b8a6;
  /*background: var(--gradient-geolabs_iconsbtns);*/
  border-radius: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 0px 0px;
  color: #fff;
}

.btn-container-suich_optdem .btn-color-mode-switch>.alert {
  display: none;
  background: #FF9800;
  border: none;
  color: #fff;
}

.btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  background: #ffff;
  /*color: #fff;*/
}

.btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 67px;
  background: #05b8a6;
  /*background: var(--gradient-geolabs_iconsbtns);*/
}

.btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  /*background: #66BB6A; */
  /*color: #fff;*/
}

.btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked~.alert {
  display: block;
}

@media only screen and (max-width: 1024px) {

  /*css 0 a 1024*/
  .btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner::after {
    width: 40px;
  }

  .btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner::before {
    right: 12px;
  }

  .btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::before {
    left: 12px;
  }

  .btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::after {
    left: 46px;
  }
}

@media only screen and (min-width: 1025px) {

  /*css 1025 en adelante*/
  .btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner::after {
    width: 60px;
  }

  .btn-container-suich_optdem .btn-color-mode-switch>label.btn-color-mode-switch-inner::before {
    right: 17px;
  }

  .btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::before {
    left: 12px;
  }

  .btn-container-suich_optdem .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::after {
    left: 58px;
  }
}

/*css suich fin*/
/*css suich inicio*/
div.btn-container-suich_optproc {
  display: block;
  /*vertical-align: middle;*/
  /*text-align: center;*/
  margin-top: 10px;
  /*margin-right: 15px;*/
}

div.btn-container-suich_optproc i {
  display: inline-block;
  position: relative;
  top: -6px;
  font-size: 23px;
}

.btn-container-suich_optproc label {
  font-size: 13px;
  color: #484646;
  font-weight: 500;
}

.btn-container-suich_optproc .btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 142px;
  height: 25px;
  background: #ffff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 4px;
  right: 17px;

}

.btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 74px;
  height: 21px;
  background: #05b8a6;
  border-radius: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 0px 0px;
  color: #fff;
}

.btn-container-suich_optproc .btn-color-mode-switch>.alert {
  display: none;
  background: #FF9800;
  border: none;
  color: #fff;
}

.btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  background: #ffff;
  /*color: #fff;*/
}

.btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 67px;
  background: #05b8a6;
}

.btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  /*background: #66BB6A; */
  /*color: #fff;*/
}

.btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked~.alert {
  display: block;
}

@media only screen and (max-width: 1024px) {

  /*css 0 a 1024*/
  .btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner::after {
    width: 70px;
  }

  .btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner::before {
    right: 10px;
  }

  .btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::before {
    left: 12px;
  }

  .btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::after {
    left: 70px;
  }
}

@media only screen and (min-width: 1025px) {

  /*css 1025 en adelante*/
  .btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner::after {
    width: 70px;
  }

  .btn-container-suich_optproc .btn-color-mode-switch>label.btn-color-mode-switch-inner::before {
    right: 10px;
  }

  .btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::before {
    left: 12px;
  }

  .btn-container-suich_optproc .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::after {
    left: 70px;
  }
}

/*css suich fin*/
/*css suich inicio*/
div.btn-container-suich_opt3dmodel {
  display: block;
  margin-top: 10px;
}

div.btn-container-suich_opt3dmodel i {
  display: inline-block;
  position: relative;
  top: -6px;
  font-size: 23px;
}

.btn-container-suich_opt3dmodel label {
  font-size: 13px;
  color: #484646;
  font-weight: 500;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 160px;
  height: 25px;
  background: #ffff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 4px;
  right: 17px;

}

.btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 80px;
  height: 21px;
  background: #05b8a6;
  border-radius: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 0px 0px;
  color: #fff;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch>.alert {
  display: none;
  background: #FF9800;
  border: none;
  color: #fff;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  background: #ffff;
  /*color: #fff;*/
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 67px;
  background: #05b8a6;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  /*background: #66BB6A; */
  /*color: #fff;*/
}

.btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked~.alert {
  display: block;
}

@media only screen and (max-width: 1024px) {

  /*css 0 a 1024*/
  .btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner::after {
    width: 80px;
  }

  .btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner::before {
    right: 10px;
  }

  .btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::before {
    left: 12px;
  }

  .btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::after {
    left: 78px;
  }
}

@media only screen and (min-width: 1025px) {

  /*css 1025 en adelante*/
  .btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner::after {
    width: 80px;
  }

  .btn-container-suich_opt3dmodel .btn-color-mode-switch>label.btn-color-mode-switch-inner::before {
    right: 10px;
  }

  .btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::before {
    left: 22px;
  }

  .btn-container-suich_opt3dmodel .btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner::after {
    left: 78px;
  }
}

/*css suich fin*/
/*CSS MODAL URLS ARCGIS INICIO*/
.icon-urlsarcgis {
  width: 19px;
  height: 19px;
}

.desc_links_arcgis {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: normal;
  color: #ffff;
}

.txt_truncate_arcgis {
  width: 235px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/*CSS MODAL URLS ARCGIS FIN*/
/*CSS URLS MODAL PROCESAMIENTO INICIO*/
.url_gcp_tutorial {
  color: #06b8a6;
  cursor: pointer;
}

.url_gcp_costo {
  color: #06b8a6;
  cursor: pointer;
}

/*CSS URLS MODAL PROCESAMIENTO FIN*/
/*CSS MODULO SECCION HALLAZGOS INICIO*/
.sidebar-mini.sidebar-collapse .content-dashboard,
.sidebar-mini.sidebar-collapse .right-side,
.sidebar-mini.sidebar-collapse .main-footer {
  margin-left: 50px !important;
  z-index: 840;
}

#sec_dashboard .sidebar-menu {
  background-color: #3b3b3b !important;
}

#sec_dashboard .sidebar-menu {
  background-color: #3b3b3b !important;
}

#sec_dashboard .sidebar a {
  color: #fff !important;
}

#sec_dashboard #optpanoram a {
  background-color: #3b3b3b !important;
}

#sec_dashboard .sidebar a:hover {
  color: #fff !important;
  /*background-color: #3b3b3b !important;*/
}

/*CSS MODULO SECCION HALLAZGOS FIN*/
/*CSS MODULO 3D INICIO*/
#sec_3d .sidebar-menu {
  background-color: #3b3b3b !important;
}

#sec_3d .sidebar a {
  color: #fff !important;
}

#sec_3d #optpanoram a {
  background-color: #3b3b3b !important;
}

#sec_3d .sidebar a:hover {
  color: #fff !important;
  background-color: #3b3b3b !important;
}

/*CSS MODULO 3D fin*/

#sec_inspecc .sidebar-menu {
  background-color: #3b3b3b !important;
}

#sec_inspecc .sidebar a {
  color: #fff !important;
}

#sec_inspecc #optpanoram a {
  background-color: #3b3b3b !important;
}

#sec_inspecc .sidebar a:hover {
  color: #fff !important;
  /*background-color: #3b3b3b !important;*/
}

.skin-blue-light .sidebar-menu>li:hover>a,
.skin-blue-light .sidebar-menu>li.active>a {
  color: #000000;
  background: #05b8a6;
}

.item_optinsp_active a {
  background: #05b8a6;
}

/*CSS LINEA DE TIEMPO INSPECCIONES INICIO*/
.center_menu {
  width: 84%;
  height: 42px;
  overflow: hidden;
  white-space: nowrap;
}

.center_menu .slider .tooltip.top {
  margin-top: 4px !important;
}

#cont_menu_inspc .slider.slider-horizontal {
  /*width: 150%;*/
  height: 20px;
  /*margin-bottom: 20px;*/
  margin-bottom: 24px;
  margin-left: 30px;
}

#cont_menu_inspc .slider.slider-horizontal .slider-track {
  height: 4px;
  width: 100%;
  margin-top: 16px;
  top: 0%;
  left: 0;
}

#cont_menu_inspc .slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  /*margin-left: -10px !important;*/
  /*margin-top: -6px !important;/*Cambiar esto para produccion*/
  margin-top: 12px !important;
  /*Cambiar esto para desarrollo dev*/
}

#cont_menu_inspc .slider-tick-label-container {
  position: relative !important;
  top: 5px !important;
  font-size: 12px !important;
  /*margin-left: -77.75px !important;*/
}

#cont_menu_inspc .slider-tick {
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  border: 0px solid transparent;
}

#cont_menu_inspc .slider-tick.in-selection {
  background-color: #05b8a6;
  background-image: -moz-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
  opacity: 1;
}

#cont_menu_inspc .slider-handle {
  background-color: #0478b2;
  background-image: -moz-linear-gradient(top, #0480BE, #036fa5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0480BE), to(#036fa5));
  background-image: -webkit-linear-gradient(top, #0480BE, #036fa5);
  background-image: -o-linear-gradient(top, #0480BE, #036fa5);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0480BE', endColorstr='#036fa5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #0480BE;
  border: 0px solid transparent;
}

#cont_menu_inspc .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 0px;
  display: inline-block;
  text-align: center;
}

#cont_menu_inspc .slider-selection.tick-slider-selection {
  background-color: #05b8a6 !important;
  background-image: -moz-linear-gradient(top, #05b8a6, #05b8a6) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
  background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
  background-image: linear-gradient(to bottom, #05b8a6, #05b8a6) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd', GradientType=0);
}

#right-button1 {
  color: #fff !important;
  margin: auto;
}

#left-button1 {
  color: #fff !important;
  margin: auto;
}

.skin-blue-light .main-sidebar {
  border-right: none !important;
}

.link_disabled_insp {
  pointer-events: none;
  opacity: 0.8;
  color: #3b3b3b;
}

/*CSS LINEA DE TIEMPO INSPECCIONES FIN*/
/*CSS MODULO DE INSPECCIONES INGE INICIO*/
.containerthumb {
  border: 0px solid #DDDDDD;
  height: 100px;
  width: 133px;
  /*TEST*/
  position: relative;
  float: left;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 11px;
}

.tag {
  float: left;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1000;
  background-color: #696969;
  padding: 5px;
  color: #FFFFFF;
  font-weight: bold;
}

.nroanot {
  float: right;
  position: absolute;
  left: 0px;
  top: 85px;
  z-index: 900;
  background-color: #F60;
  padding: 5px;
  color: #FFFFFF;
  font-weight: bold;
}

.image-container {
  z-index: 2;
  position: relative;
  max-width: 100%;
  vertical-align: top;

}

.image-container:hover {
  background-color: #cde;
}

.image {
  background-position: center;
  background-repeat: no-repeat;

  cursor: crosshair;

  max-width: 100%;

  width: 100em;
}

.rubberBand {
  position: fixed;
  z-index: 100;
  visibility: hidden;
  width: 0px;
  height: 0px;
  border: 2px solid red;
}

.CENTRODIV {
  text-align: center;
}

.nivelseveridad {
  text-align: justify;
  width: 100%;
}

.beds-baths span.icon {
  opacity: 1;
  color: #909090;
  font-size: 32px;
  width: 27px;
  display: block;
  margin: 0 auto;
  height: 24px;
  line-height: 24px;
}

.icon-blank-space {
  text-indent: -9999px
}

.beds-baths.active span.icon {
  opacity: 0;
  color: #fff;
  font-size: 20px;
  width: 27px;
}

.beds-baths-group .beds-baths.active:first-child span.icon {
  opacity: 1;
  color: #909090;
  font-size: 32px;
  width: 27px;
  display: block;
  margin: 0 auto;
  height: 24px;
  line-height: 24px;
}

.beds-baths-group .beds-baths:first-child,
.beds-baths-group .beds-baths:hover:first-child,
.beds-baths-group .beds-baths:active:first-child,
.beds-baths-group .beds-baths:focus:first-child {
  background: #F3F3F3;
  border-color: #ccc;
  box-shadow: none;
  -webkit-box-shadow: none;
  cursor: default;
  color: #909090;
}




.beds-baths.active {
  background: #7bb712;
}

.beds-baths {
  width: 20%
}

.beds-baths-group {
  width: 100%
}

.beds-baths-word {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 34px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  color: #909090;
}

.beds-baths.active .beds-baths-word {
  color: #3b3b3b;
  background: #33ccff;
}

.mobile-br {
  display: block;
}

.beds-baths-clearfix {
  display: none;
  clear: both;
}

/*CSS DE POPUPS TUTORIALES INICIO*/
.popover-title {
  color: black !important;
}

/*CSS DE POPUPS TUTORIALES FIN*/
@media (max-width: 600px) {

  .beds-baths {
    text-align: left;
    margin-bottom: 0px !important;
  }

  .beds-baths-word {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    font-size: 17px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-weight: bold;
    text-align: center;
  }

  .beds-baths-1,
  .beds-baths-2,
  .beds-baths-3,
  .beds-baths-4,
  .beds-baths-5,
  .beds-baths-6,
  .beds-baths-7,
  .beds-baths-8 {
    width: 50% !important;
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .beds-baths-2,
  .beds-baths-4,
  .beds-baths-6,
  .beds-baths-8 {
    float: right !important;
  }

  .beds-baths-1,
  .beds-baths-3,
  .beds-baths-5,
  .beds-baths-7 {
    float: left !important;

  }

  .beds-baths-1.active {
    background: #0C3;
  }

  .bed-baths-9 {
    width: 100% !important;
  }

  .beds-baths.active .beds-baths-word {
    color: #fff;
  }

  .beds-baths-clearfix {
    display: block;
    clear: both;
  }

  .mobile-br {
    display: none;
  }

  #cont_inspc {
    max-width: 100%;
    /*max-height: 600px; */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
    scrollbar-width: thin;
  }

  #cont_inspc::-webkit-scrollbar {
    -webkit-appearance: none;
  }

  #cont_inspc::-webkit-scrollbar:vertical {
    width: 10px;
  }

  #cont_inspc::-webkit-scrollbar-button:increment,
  .contenedor::-webkit-scrollbar-button {
    display: none;
  }

  #cont_inspc::-webkit-scrollbar:horizontal {
    height: 10px;
  }

  #cont_inspc::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
  }

  #cont_inspc::-webkit-scrollbar-track {
    border-radius: 10px;
  }

  #sec_inspecc .treeview a:hover {
    background-color: #3b3b3b !important;
  }

  #sec_inspecc .treeview a>li a:hover {
    background-color: #3b3b3b !important;
  }
}

/*CSS MODULO DE INSPECCIONES INGE FIN*/
.menu_process {
  background-color: #3b3b3b !important;
  color: white !important;
  border-color: #3b3b3b !important;
}

.menu_process .header {
  background-color: #3b3b3b !important;
  color: white !important;
  text-transform: uppercase;
}

.menu_process .footer>a {
  background-color: #3b3b3b !important;
  color: white !important;
  border-color: #3b3b3b !important;
}

.menu_process>li .menu>li>a>h3 {
  color: #ffff !important;
}

.menu_process>li .menu>li>a>h3>div>small {
  color: #ffff !important;
}

.menu_process>li .menu>li>a {
  border-bottom: 1px solid #918c8c !important;
}

.menu_process>li .menu>li>a:hover {
  background: transparent !important;
  text-decoration: none;
  opacity: 50%;
  color: white !important;
}

/*CSSESTILO PARA PROGRESO DE PROCESAMIENTO*/

.progress_init {
  background-color: #bfbfbf;
}

/*CSS PARA COMPARACION INICIO*/
/*.content_comparation {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.content_comparation .fila0 {
  flex:1;
  display:flex;
} 
.content_comparation .fila1 {
  flex:1;
  display:flex;
} */
#row_comp_up {
  border-bottom: 1px solid #5c5959;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.3);
}

.newstylecomp .panel {
  margin-bottom: 0px !important;
  background-color: #696969 !important;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.newstylecomp .panel-default {
  border-color: #696969 !important;
}

.newstylecomp .panel-default>.panel-heading {
  color: #333;
  background-color: #3b3b3b;
  border-color: #696969;
}

.newstylecomp .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #696969;
}

.newstylecomp a {
  color: #fff !important;
}

.newstylecomp .leaflet-control-layers-overlays {
  background-color: #696969 !important;
}

.newstylecomp .leaflet-control-layers-expanded {
  background-color: transparent !important;
}

#control_dataset1_webtile .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_dataset1_webtile .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_dataset1_webtile .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_dataset1_webtile .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_dataset1_webtile .leaflet-control-layers-base {
  display: none !important;
}

#control_dataset1_webtile .leaflet-control-layers-separator {
  display: none !important;
}

#control_dataset1_dems .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_dataset1_dems .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_dataset1_dems .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_dataset1_dems .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_dataset1_dems .leaflet-control-layers-base {
  display: none !important;
}

#control_dataset1_dems .leaflet-control-layers-separator {
  display: none !important;
}

#control_dataset1_dems .leaflet-control-layers-group-name {
  display: none !important;
}

#control_dataset2_webtile .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_dataset2_webtile .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_dataset2_webtile .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_dataset2_webtile .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_dataset2_webtile .leaflet-control-layers-base {
  display: none !important;
}

#control_dataset2_webtile .leaflet-control-layers-separator {
  display: none !important;
}

#control_dataset2_dems .leaflet-control-layers-expanded {
  padding: 0px;
  color: #fff;
  background: none;
  width: 100%;
  font-size: 12px;
  border: none !important;
}

#control_dataset2_dems .leaflet-control-layers {
  box-shadow: none !important;
  background: none;
  border-radius: 5px;
}

#control_dataset2_dems .leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  overflow: hidden;
}

#control_dataset2_dems .leaflet-control-layers label div span span {
  width: 70% !important;
  height: 15px !important;
  color: #fff !important;
  font-size: 8pt !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  display: inline-block !important;
  top: 4px !important;
  position: relative !important;
}

#control_dataset2_dems .leaflet-control-layers-base {
  display: none !important;
}

#control_dataset2_dems .leaflet-control-layers-separator {
  display: none !important;
}

#control_dataset2_dems .leaflet-control-layers-group-name {
  display: none !important;
}

/*CSS PARA COMPARACION FIN*/
.time_line_disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn_close_tour {
  color: black;
  position: absolute;
  top: -16px;
  right: -15px;
  font-size: 16px;
  background: #05b8a6;
  padding: 0px 4px 0px 4px;
}

/*CSS PARA CHECK BOX PERSONALIZADO INICIO*/
.checkboxgeolas {
  align-items: center;
  border-radius: 100px;
  /*display: flex;*/
  display: inline-flex;
  font-weight: 700;
  margin-bottom: 16px;
  /*width: 275px;*/
}

.checkboxgeolas:last-of-type {
  margin: 0;
}

.checkboxgeolas__input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkboxgeolas__input:not([disabled]):active+.checkboxgeolas-track,
.checkboxgeolas__input:not([disabled]):focus+.checkboxgeolas-track {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #06b8a6;
}

.checkboxgeolas__input:disabled+.checkboxgeolas-track {
  cursor: not-allowed;
  opacity: 0.7;
}

.checkboxgeolas-track {
  background: #797171;
  border: 1px solid #e5e6ef;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  height: 30px;
  margin-right: 12px;
  position: relative;
  width: 60px;
}

.checkboxgeolas-indicator {
  align-items: center;
  background: #e6e2e2;
  border-radius: 24px;
  bottom: 2px;
  display: flex;
  height: 24px;
  justify-content: center;
  left: 2px;
  outline: solid 2px transparent;
  position: absolute;
  transition: 0.25s;
  width: 24px;
}

.checkMarkgeolabs {
  fill: #fff;
  height: 20px;
  width: 20px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.checkboxgeolas__input:checked+.checkboxgeolas-track .checkboxgeolas-indicator {
  background: #05b8a6;
  transform: translateX(30px);
}

.checkboxgeolas__input:checked+.checkboxgeolas-track .checkboxgeolas-indicator .checkMarkgeolabs {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

@media screen and (-ms-high-contrast: active) {
  .checkboxgeolas-track {
    border-radius: 0;
  }
}

.checkboxgeolas__input:checked+.checkboxgeolas-track {
  background-color: #3b3b3b;
}

/*CSS PARA CHECK BOX PERSONALIZADO FIN*/
/*CSS PARA MODAL DE ESTILOS DE POLIGONOS INICIO*/
.leaflet-styleeditor-colorpicker_geolabs {
  width: 190px;
  display: grid;
  /*padding-left: 5px;*/
  grid-template-columns: repeat(4, 0fr);
  gap: 3px;
  justify-content: center;
  align-items: center;
}

.leaflet-styleeditor-color_geolabs {
  height: 35px;
  width: 30px;
  float: left;
  border: 1px solid white;
  cursor: pointer;
}

.style-panel_geolabs {
  position: absolute;
  top: 100px;
  right: 10px;
  background: #3b3b3b;
  padding: 10px;
  border: 1px solid #4f4c4c;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  color: white;
}

.boxColor {
  height: 40px;
  width: 45px;
  border: 1px solid white;
  background: #3b3b3b;
  display: inline-block;
}

#overlayBlock {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1040;
}

/*CSS PARA MODAL DE ESTILOS DE POLIGONOS FIN*/
/*ICONO DE BTN DXF INICIO*/
.icon_dxf_geolabs {
  background: white;
  border-radius: 5px;
  color: #262626;
  padding: 2px;
  font-size: 11px;
  font-weight: 900;
}

/*ICONO DE BTN DXF FIN*/
/*CSS LOADER GEOLABS SHARE INICIO*/
.loader_geolabs_visor {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  min-height: 100vh;
  position: fixed;
  width: 100%;
  margin-top: -8px;
  margin-left: -8px;
  background: #0f1115;
  color: #e6e8ed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  margin: 0px !important;
}

.loader-screen_geolabs {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  padding: 40px 20px;
}

/* Contenido centrado */
.loader-center_geolabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dial {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 6px auto 16px;
  display: grid;
  place-items: center;
}

.dial svg {
  position: absolute;
  inset: 0;
}


.center-logo_geolabs {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 36px;
  color: white;
  background: #0f1115;
  box-shadow: 0 8px 20px #06b8a6;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.brand {
  font-size: 23px;
  font-weight: 700;
  margin-top: 10px;
}

.status_loader_geolabs {
  margin-top: 6px;
  color: #9aa3b2;
  font-size: 20px
}

.percent {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  margin-top: 6px;
}

.progressbar_geolabs {
  height: 10px;
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  overflow: hidden;
}

.progressbar_geolabs>i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #19e86a, #09b8a6);
  border-radius: 999px;
  transition: width .25s ease;
}

.dots::after {
  content: "";
  animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
  0% {
    content: ""
  }

  25% {
    content: "."
  }

  50% {
    content: ".."
  }

  75% {
    content: "..."
  }

  100% {
    content: ""
  }
}

/* Barra fija abajo */
.loader-footer_geolabs {
  width: 100%;
  max-width: 600px;
}

/*CSS LOADER GEOLABS SHARE FIN*/
/*css suich inicio*/
div.btn-container-suich {
  display: block;
  /*vertical-align: middle;*/
  text-align: center;
  margin-top: 10px;
}

div.btn-container-suich i {
  display: inline-block;
  position: relative;
  top: -6px;
  font-size: 25px;
}

.btn-container-suich label {
  font-size: 13px;
  color: #484646;
  font-weight: 500;
}

.btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-color-mode-switch>label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 160px;
  height: 30px;
  background: #ffff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-color-mode-switch>label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 6px;
  right: 10px;

}

.btn-color-mode-switch>label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 76px;
  height: 26px;
  background: #05b8a6;
  border-radius: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 4px 0px;
  color: #fff;
}

.btn-color-mode-switch>.alert {
  display: none;
  background: #FF9800;
  border: none;
  color: #fff;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  background: #ffff;
  /*color: #fff;*/
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 82px;
  background: #05b8a6;
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
  /*background: #66BB6A; */
  /*color: #fff;*/
}

.btn-color-mode-switch input[type="checkbox"]:checked~.alert {
  display: block;
}

/* Aplica opacidad y cursor cuando el switch esté deshabilitado */
.btn-color-mode-switch input[disabled]+.btn-color-mode-switch-inner {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(50%);
}


/*css suich fin*/
/*CSS new mod 3D start*/
.container_menu_side {
  display: flex;
  background-color: #444;
  flex-direction: column;
  /*height: 100vh; */
  height: calc(100vh - 63px) !important;
  color: white;
}

.container_menu_side>.row:first-child,
.container_menu_side>.row:last-child {
  flex-shrink: 0;
}

.center_menu_side {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  margin-left: 0px;
  margin-right: 0px;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

.inside_center_menu_center {
  padding-left: 0px;
  padding-right: 0px;
  background-color: #444444;
}

.inside_center_menu_center .panel {
  margin-bottom: 0px !important;
  background-color: #444444 !important;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  margin-top: 5px;
  /*Esto genera un borde en con box-shadow en los panel*/
}

.inside_center_menu_center .panel-default>.panel-heading {
  color: #333;
  background-color: #3b3b3b;
  border-color: #444444;
  border: 1px solid transparent;
  border-radius: 10px;
}

/****/
.inside_center_menu_center .panel-default>.panel-heading:hover {
  background: var(--gl-bg-hover);
  border: 1px solid var(--gl-accent-soft);
  /* 🔥 clave */
}

.inside_center_menu_center a {
  color: #fff !important;
}

/**/
.render_model3d {
  height: calc(100vh - 63px) !important;
}

.truncate_text_css {
  width: 245px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffff;
}

/*CSS new mod 3D end*/
/*Herramientas de Dibujo INICIO*/
.geodraw-top:has(> .geolabs3d-draw) {
  top: 40% !important;
}

.geodraw-right {
  right: 0;
}

.geodraw-top,
.geodraw-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.geodraw-right .geodraw-control {
  margin-right: 10px;
}

.geodraw-top .geodraw-control {
  margin-top: 10px;
}

.geodraw-right .geodraw-control {
  float: right;
}

.geodraw-popup-pane,
.geodraw-control {
  cursor: auto;
}

.geodraw-control {
  float: left;
  clear: both;
}

.geodraw-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
}

.geodraw-draw-section {
  position: relative;
}

.geodraw-draw-toolbar {
  background: #5E5F5F !important;
  padding: 8px !important;
  border-radius: 8px !important;
  box-shadow: 0px 0px 4px 2px rgb(0 0 0 / 25%) !important;
  border: none !important;
}

.geodraw-bar a {
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  border: 1px solid #93FCE9 !important;
  border-radius: 50% !important;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.geolabs3d-draw a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.geodraw-draw-toolbar a {
  background-image: url('../../assets/css/images/spritesheet.png');
  background-image: linear-gradient(transparent, transparent), url('../../assets/css/images/spritesheet.svg');
  background-repeat: no-repeat;
  background-size: 300px 30px;
  background-clip: padding-box;
}

.geodraw-draw-toolbar a {
  background-color: transparent !important;
}

.geolabs3d-draw a .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.geodraw-draw-toolbar .geodraw-draw-draw-polyline {
  background-position: 0 -1px;
}

.geodraw-touch .geodraw-draw-toolbar .geodraw-draw-draw-polyline {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.geodraw-draw-toolbar .geodraw-draw-draw-polygon {
  background-position: -30px -1px !important;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

.geodraw-draw-toolbar .geodraw-draw-draw-marker {
  border-bottom-left-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
  background-position: -60px -1px !important;
}

.geodraw-draw-toolbar .geodraw-draw-draw-polygon {
  background-position: -30px -1px !important;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

#flyMenu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-50%) scale(.96);
  background: #7a7a6f;
  /* Fondo gris verdoso */
  border-radius: 4px;
  /* Bordes suaves */
  display: none;
  z-index: 9999;
  opacity: 0;
  transition: transform .15s ease, opacity .15s ease;
  padding: 0;
  /* Sin padding extra */
}

#flyMenu.show {
  display: flex;
  /* Flex para alinear botones en fila */
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

#flyMenu button {
  background: transparent;
  /* Transparente, usa el fondo del menú */
  border: none;
  color: white;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  /* Separador */
}

#flyMenu button:last-child {
  border-right: none;
  /* El último no tiene borde */
}

#flyMenu button:hover {
  background: rgba(255, 255, 255, 0.15);
  /* Efecto hover sutil */
}

#info_modo_3d {
  position: absolute;
  bottom: 20px;
  right: 14px;
  z-index: 9999;
  background: rgba(85, 80, 80, 0.7);
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
}

/*Herramientas de Dibujo FIN*/
/*Herramientas de Dibujo alternativas 3D INICIO*/
.geodraw-top_extra:has(> .geolabs3d-draw_extra) {
  top: 65% !important;
}

.geodraw-right_extra {
  right: 0;
}

.geodraw-top_extra,
.geodraw-bottom_extra {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.geodraw-right_extra .geodraw-control_extra {
  margin-right: 10px;
}

.geodraw-top_extra .geodraw-control_extra {
  margin-top: 10px;
}

.geodraw-right_extra .geodraw-control_extra {
  float: right;
}

.geodraw-popup-pane_extra,
.geodraw-control_extra {
  cursor: auto;
}

.geodraw-control_extra {
  float: left;
  clear: both;
}

.geodraw-control_extra {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
}

.geodraw-draw-section_extra {
  position: relative;
}

.geodraw-draw-toolbar_extra {
  background: #5E5F5F !important;
  padding: 8px !important;
  border-radius: 8px !important;
  box-shadow: 0px 0px 4px 2px rgb(0 0 0 / 25%) !important;
  border: none !important;
}

.geodraw-bar_extra a {
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  border: 1px solid #93FCE9 !important;
  border-radius: 50% !important;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.geolabs3d-draw_extra a {
  display: block;
  text-align: center;
  text-decoration: none;
}

/*.geodraw-draw-toolbar_extra a {
  background-image: url('../../assets/css/images/spritesheet.png');
  background-image: linear-gradient(transparent, transparent), url('../../assets/css/images/spritesheet.svg');
  background-repeat: no-repeat;
  background-size: 300px 30px;
  background-clip: padding-box;
}*/
.geodraw-draw-toolbar_extra a {
  background-color: transparent !important;
}

.geolabs3d-draw_extra a .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.csv-processing {
  color: #f1c40f !important;
  pointer-events: none;
  opacity: 0.7;
}

.csv-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.potree_menu_toggle {
  display: none;
}

/*Herramientas de Dibujo alternativas 3D FIN*/
/*Comparacion de elementos 3D INICIO*/
.overlay_comp_3d {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(73, 78, 89, 0.8);
  z-index: 1003;
}

/*CSS Modulo de Comparacion INICIO*/
/*#potree_container_comp3d { width:100%; height:100%; position:relative; }*/
#splitLine {
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0b0b0a9e;
  cursor: ew-resize;
  z-index: 50;
}

#splitHandle {
  width: 25px;
  height: 25px;
  top: 50%;
  position: absolute;
  background: #121212;
  border-radius: 5px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.icon_svg_divider_geolabs {
  width: 25px;
  height: 25px;
  pointer-events: none;
}

/*#sidebar_comp3d {
      position: absolute;
      top: 0;
      left: 0;
      width: 16.66%;
      min-width: 16.66%;
      height: 100%;
      background: #696969;
      color: white;
      font-family: sans-serif;
      
      box-sizing: border-box;
      z-index: 200;
      overflow-y: auto;
      padding-top: 99px;
    }
    #sidebar_comp3d h2 {
      margin-top: 0;
      font-size: 16px;
      border-bottom: 1px solid #555;
      padding-bottom: 5px;
    }
    #sidebar_comp3d label {
      display: block;
      margin: 10px 0;
      cursor: pointer;
    }
    #sidebar_comp3d input[type="range"] {
      width: 100%;
    }
    #potree_container_comp3d {
      margin-left: 16.66%;
      width: calc(100% - 16.66%);
      top: 42px !important;
      height: calc(100% - 42px);
    }*/
#optcerrar_comp_3d {
  position: fixed;
  top: 145px;
  right: 18px;
  z-index: 1003;
  font-size: 35px;
  color: #fff;
  border: 2px solid #665c5b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  align-content: center;
  align-items: center;
  display: grid;
  padding: 0px 2px 5px 2px;
  background-color: #665c5b;
  opacity: 1 !important;
}

#potree_container_comp3d {
  height: calc(100vh - 63px) !important;
  width: 100%;
}

#sidebar_comp3d {
  height: calc(100vh - 63px) !important;
  width: 100%;
  background-color: #444444;
}

.compare3D {
  display: none;
}

.geolabs3d-view-panel {
  position: relative;
}

.glc-skeleton_geolabsCompare3D {
  z-index: 1004;
}

/* Solo afecta al slider con id="opacityLeft" */
#opacityLeft {
  -webkit-appearance: none;
  width: 396px;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  outline: none;
}

/* Chrome/Safari/Edge */
#opacityLeft::-webkit-slider-runnable-track {
  background: #05b8a6;
  height: 6px;
  border-radius: 3px;
}

#opacityLeft::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #05b8a6;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

/* Firefox */
#opacityLeft::-moz-range-track {
  background: #05b8a6;
  height: 6px;
  border-radius: 3px;
}

#opacityLeft::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #05b8a6;
  border-radius: 50%;
  cursor: pointer;
}

#opacityRight {
  -webkit-appearance: none;
  width: 396px;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  outline: none;
}

/* Chrome/Safari/Edge */
#opacityRight::-webkit-slider-runnable-track {
  background: #05b8a6;
  height: 6px;
  border-radius: 3px;
}

#opacityRight::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #05b8a6;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

/* Firefox */
#opacityRight::-moz-range-track {
  background: #05b8a6;
  height: 6px;
  border-radius: 3px;
}

#opacityRight::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #05b8a6;
  border-radius: 50%;
  cursor: pointer;
}

.newstylecomp3d a {
  color: #fff !important;
}

.newstylecomp3d .panel {
  margin-bottom: 0px !important;
  background-color: #444444;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  color: white;
}

.newstylecomp3d .panel-default>.panel-heading {
  color: #333;
  background-color: #3b3b3b;
  border-color: #696969;
  border: 1px solid transparent;
  width: 100%;
  display: grid;
  align-items: center;
  border-radius: 10px;
}

.newstylecomp3d .panel_custom {
  padding: 16px 15px !important;
}

.newstylecomp3d .panel-default>.panel-heading:hover {
  background: var(--gl-bg-hover);
  border: 1px solid var(--gl-accent-soft);
  /* 🔥 clave */
}

.divider3d {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
  font-size: 90%;
  letter-spacing: 1px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 1px;
  margin-bottom: 1px;
  padding: 1px !important;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #6b7280 20%, #9ca3af 50%, #6b7280 80%, transparent 100%);
}

.legend3d_left {
  position: absolute;
  top: 65px;
  left: 25%;
  transform: translateX(-50%);
  background: transparent;
  padding: 0;
  border: none;
  z-index: 1000;
  color: white;
  pointer-events: none;
}

.legend3d_right {
  position: absolute;
  top: 65px;
  left: 75%;
  right: auto;
  transform: translateX(-50%);
  background: transparent;
  padding: 0;
  border: none;
  z-index: 1000;
  color: white;
  pointer-events: none;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.legend-color {
  width: 10px;
  height: 10px;
  margin-right: 0;
  border: none;
  border-radius: 50%;
}

.legend3d_left span,
.legend3d_right span {
  white-space: nowrap;
}

/*Comparacion de elementos 3D FIN*/
/*CSS de inspeccion INICIO*/
.video-thumb-wrapper {
  position: relative;
  display: inline-block;
}

.video-thumb-img {
  display: block;
  background: #3b3b3b;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

.video-play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/*CSS de inspeccion FIN*/
/*CSS new timeline START*/
/*.slider-tick {
    position: relative;
}


.slider-tick::after {
    content: "";
    
    width: 16px;
    
    height: 16px;
    border-radius: 50%;
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}


.slider-tick::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;

    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.slider-tick.estado-base {
    background: transparent !important;
    border: none !important;
}
.slider-tick.estado-base::after {
    background: transparent !important;
    border: none !important;
}

.slider-tick.estado-base::before {
    content: "\f015"; 
    color: #7fffd4;
}

.slider-tick.estado-2::before {
    content: "\f058";
    color: #05b8a6;
}
.slider-tick.estado-2::after {
    background: #ffff;
}

.slider-tick.estado-1::before {
    content: "\f141"; 
    color: #ffff;
}
.slider-tick.estado-1::after {
    background: #96b2c0;
}

.slider-tick.estado-0::before {
    content: "\f071"; 
    color: #ffff;
    font-size: 12px;
    top: -2px;
    left: 48.5%;
}
.slider-tick.estado-0::after {
    background: #f69000;
}
.bg-estado-not {
  display: none;
}
.bg-estado-0 {
  background-color: #f69000 !important;
}
.bg-estado-1 {
  background-color: #96b2c0 !important;
}
.bg-estado-2 {
  background-color: #05b8a6 !important;
}*/
/* =========================================================
   MERGED SLIDER TICK STYLES (OLD + NEW "CANVAS" APPROACH)
   - ::after = background circle (16x16)
   - ::before = FontAwesome icon drawn in the SAME 16x16 space
   ========================================================= */

.slider-tick {
  position: relative;
}

/* --- SHARED CENTERING LOGIC --- */
.slider-tick::after,
.slider-tick::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- BACKGROUND CIRCLE (::after) --- */
.slider-tick::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 1;
}

/* --- ICON "CANVAS" (::before) --- */
/* Make the icon box EXACTLY the same size as the circle (16px),
   so both share the same coordinate space and always align perfectly. */
.slider-tick::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  width: 16px;
  height: 16px;

  line-height: 16px;
  /* vertical centering inside the 16px box */
  text-align: center;
  /* horizontal centering */

  z-index: 2;
}

/* =========================================================
   STATE STYLES (Colors + Content + Optical Nudges)
   ========================================================= */

/* --- BASE: House (no circle) --- */
.slider-tick.estado-base {
  background: transparent !important;
  border: none !important;
}

.slider-tick.estado-base::after {
  background: transparent !important;
  border: none !important;
}

.slider-tick.estado-base::before {
  content: "\f015";
  color: #7fffd4;
  font-size: 14px;
  margin-top: -1px;
  /* optical nudge */
}

/* --- STATUS 2: Done (Circle Check) --- */
.slider-tick.estado-2::before {
  content: "\f058";
  color: #05b8a6;
  font-size: 17px;
}

.slider-tick.estado-2::after {
  background: #ffff;
}

/* --- STATUS 1: Loading (Dots) --- */
.slider-tick.estado-1::before {
  content: "\f141";
  color: #ffff;
  font-size: 14px;
  margin-top: -1px;
  /* optical nudge */
}

.slider-tick.estado-1::after {
  background: #96b2c0;
}

/* --- STATUS 0: Warning (Triangle) --- */
.slider-tick.estado-0::before {
  content: "\f071";
  color: #ffff;
  font-size: 12px;
  margin-top: -1px;
  /* optical nudge */
}

.slider-tick.estado-0::after {
  background: #f69000;
}

/* =========================================================
   BG HELPER CLASSES (kept from old styles)
   ========================================================= */
.bg-estado-not {
  display: none;
}

.bg-estado-0 {
  background-color: #f69000 !important;
}

.bg-estado-1 {
  background-color: #96b2c0 !important;
}

.bg-estado-2 {
  background-color: #05b8a6 !important;
}

.bg-estado--1 {
  background-color: #009881 !important;
}

/*CSS new timeline END*/
.view-switch-geolabs {
  position: absolute;
  left: 55%;
  bottom: 20px;
  z-index: 1002;
  display: inline-flex;
  background: #696969;
  border-radius: 6px;
  padding: 2px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.15);
  user-select: none;
}

.view-switch {}

.view-btn-geolabs {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fdfcfc;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.view-btn-geolabs.view-disabled-geolabs {
  opacity: 0.35;
  cursor: not-allowed;
  color: #c7c7c7;
}

.view-btn-geolabs.view-disabled-geolabs:hover {
  background: transparent;
}

.view-active-geolabs {
  background: #3b3b3b;
  color: #8be5d5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.view-btn-geolabs:not(.active):hover {
  background: rgba(0, 0, 0, 0.05);
}

/*EXPERIMENTAL DE MODULO DE PROCESAMIENTO START*/
.full-height {
  height: calc(100vh - 63px) !important;
}

.map-container {
  height: calc(100vh - 63px) !important;
  padding: 0;
}

#map_procesamiento {
  height: calc(100vh - 63px) !important;
}

.dropzone-pro {
  border: 2px dashed #f7f8f9;
  padding: 40px;
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
}

.dropzone-pro * {
  pointer-events: none;
}

.alone-upload-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  padding: 11px 12px;
  background: #142522;
  border: 1px solid rgba(20, 184, 166, 0.55);
  border-left: 4px solid #14b8a6;
  border-radius: 7px;
  color: #e7fffb;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.alone-upload-notice>i {
  color: #2dd4bf;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 1px;
}

.alone-upload-notice span {
  flex: 1;
}

.alone-upload-step-notice {
  margin-bottom: 0;
}

.alone-upload-discard {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -4px -4px -4px 6px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 6px;
  color: #fca5a5;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.alone-upload-discard:hover,
.alone-upload-discard:focus {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}

.alone-upload-discard i {
  font-size: 13px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #14b8a6;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-box {
  background: #14532d;
  padding: 10px;
  margin-bottom: 10px;
}

.option-card {
  background: #334155;
  padding: 10px;
  margin-top: 10px;
}

/*.mode-switch { display:flex; }
.mode-btn { flex:1; padding:10px; cursor:pointer; }
.mode-btn.active { background:#14b8a6; }*/
/* CONTENEDOR */
.mode-switch {
  display: flex;
  background: #2f3740;
  border-radius: 10px;
  padding: 4px;
  margin-top: 10px;
}

/* BOTONES */
.mode-btn {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* ACTIVO */
.mode-btn.active {
  background: #14b8a6;
  color: #ffffff;
  font-weight: 500;
}

/* HOVER */
.mode-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.05);
}

.mode-switch-disabled {
  opacity: 0.82;
  cursor: not-allowed;
}

.mode-switch-disabled .mode-btn {
  cursor: not-allowed;
  pointer-events: none;
}

.mode-switch-disabled .mode-btn:not(.active) {
  color: #6f7d8d;
}

.log-box {
  background: black;
  color: #00ff88;
  height: 120px;
  overflow: auto;
}

/* CONTENEDOR */
.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
}

/* STEP */
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
}

/* CÍRCULO */
.circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* LINEA */
.line {
  flex: 1;
  height: 1px;
  background: white;
  margin: 0 10px;
}

/* ACTIVO */
.step.active {
  color: #14b8a6;
}

.step.active .circle {
  background: #14b8a6;
  color: white;
}

/* COMPLETADO */
.step.completed {
  color: #22c55e;
}

.step.completed .circle {
  background: #22c55e;
  color: white;
}

/* SIDEBAR BASE */

.sidebar_procesamiento {
  height: calc(100vh - 63px) !important;
  display: flex;
  flex-direction: column;
  background: #3b3b3b;
  color: white;
}

/* HEADER */
.sidebar-header {
  padding: 15px;
  border-bottom: 1px solid #334155;
}

/* CONTENIDO */
.sidebar-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 15px;
}

/* SCROLL SOLO AQUÍ */
.sidebar-content-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  margin-top: 10px;
}

/* FOOTER */
.sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px;
  border-top: 1px solid #334155;

  background: #262626;
}

/* TEXTO CENTRO */
.footer-center {
  font-size: 12px;
  color: #94a3b8;
}

/* BOTÓN NEXT */
.btn-next {
  background: #14b8a6;
  color: white;
  border: none;
}

.btn-next:hover {
  background: #0d9488;
}

/* HEADER */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 15px;
  border-bottom: 1px solid #334155;
  background: #262626;
}

/* IZQUIERDA */
.header-left {
  display: flex;
  flex-direction: column;
}

.header-title {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
}

.header-subtitle {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.dot-sep {
  margin: 0 5px;
}

/* DERECHA */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* STATUS BADGE */
.status-badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ESTADOS */
.status-idle {
  background: #334155;
  color: #94a3b8;
}

.status-ready {
  background: #14532d;
  color: #4ade80;
}

.status-processing {
  background: #78350f;
  color: #facc15;
  animation: pulse 1.5s infinite;
}

.status-done {
  background: #14532d;
  color: #22c55e;
}

/* ANIMACIÓN */
@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* ICONOS */
.header-actions {
  display: flex;
  gap: 6px;
}

.header-icon {
  font-size: 13px;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: 0.2s;
}

.header-icon:hover {
  background: #334155;
  color: white;
}

.sidebar_procesamiento.expanded {
  width: 100% !important;
  position: absolute;
  z-index: 999;
}


/* CARD */
.file-item {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #2a3138;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;

  transition: 0.2s;
}

.file-item:hover {
  background: #313a44;
}

/* THUMB */
.file-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.file-icon img.thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  /* 🔥 clave */
  border-radius: 6px;
}

/* INFO */
.file-info {
  flex: 1;
  min-width: 0;
  /* 🔥 evita overflow raro */
}

.file-name {
  font-size: 13px;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  color: #94a3b8;
  font-size: 12px;
  margin-left: 5px;
}

/* PROGRESS */
.progress-min {
  height: 4px;
  margin-top: 6px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
}

/* ACCIONES */
.file-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BOTÓN DELETE */
.btn-delete {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: 0.2s;
}

.btn-delete:hover {
  background: #334155;
  color: #ef4444;
}

.highlight {
  border: 2px solid #05B8A6;
}

/*////////CODIGO DE CHECK GCP/////////*/
/* ============================= */
/* CARD BASE */
/* ============================= */
.option-card {
  background: #2a3138;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 10px;

  display: flex;
  flex-direction: column;
  /* 🔥 FIX PRINCIPAL */
}

/* HEADER */
.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TEXTO */
.option-left {
  color: #e2e8f0;
  font-size: 13px;
}

/* ICONO INFO */
.info-icon {
  color: #94a3b8;
  margin-left: 6px;
  cursor: pointer;
}

/* ============================= */
/* SWITCH */
/* ============================= */
.switchgcpContainer {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switchgcpContainer input {
  display: none;
}

/* fondo */
.slidergcpContainer {
  position: absolute;
  cursor: pointer;
  background-color: #3b4550;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}

/* círculo */
.slidergcpContainer:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background-color: #cbd5e1;
  border-radius: 50%;
  transition: 0.3s;
}

/* ACTIVO */
.switchgcpContainer input:checked+.slidergcpContainer {
  background-color: #14b8a6;
}

.switchgcpContainer input:checked+.slidergcpContainer:before {
  transform: translateX(20px);
  background-color: #ffffff;
}

/* ============================= */
/* CONTENIDO GCP */
/* ============================= */
.gcp-content {
  margin-top: 10px;
  width: 100%;
}

/* ============================= */
/* BOTÓN UPLOAD */
/* ============================= */
.gcp-upload {
  background: #3a424c;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 13px;
  transition: 0.2s;
}

.gcp-upload:hover {
  background: #475569;
}

/* ============================= */
/* FILE CARGADO */
/* ============================= */
.gcp-file {
  background: #14532d;
  border-radius: 8px;
  padding: 10px;
  color: #4ade80;
  font-size: 13px;

  display: flex;
  align-items: center;

  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.2);
}

.gcp-file i {
  margin-right: 6px;
}

/* hover (reemplazar archivo) */
.gcp-file:hover {
  opacity: 0.85;
  cursor: pointer;
}

/* ============================= */
/* TEXTO DESCRIPTIVO */
/* ============================= */
.gcp-text {
  margin-top: 8px;
  font-size: 12px;
  color: #94a3b8;
}

/* ============================= */
/* ANIMACIÓN */
/* ============================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gcp-content {
  animation: fadeIn 0.2s ease;
}

.upload-header {
  margin-top: 10px;
}

/* barra fondo */
.upload-progress-bar {
  height: 6px;
  background: #1e293b;
  border-radius: 6px;
  overflow: hidden;
}

/* barra activa */
#globalProgressBar {
  height: 100%;
  width: 0%;
  background: #14b8a6;
  transition: width 0.3s ease;
}

/* stats */
.upload-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 4px;
  color: #94a3b8;
}

.log-box {
  max-height: 150px;
  overflow-y: auto;
  font-size: 12px;
}

.log-item {
  padding: 4px 6px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.log-uploading {
  color: #f4c715;
}

.log-success {
  color: #4ade80;
}

.log-error {
  color: #f87171;
}

.log-pending {
  color: #f4f4f4;
}

/* BASE */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 12px;
  /*border-radius: 8px;*/

  font-size: 12px;
  margin-bottom: 0px;
  margin-top: 10px;

  background: #1e293b;
  color: #cbd5e1;

  transition: all 0.3s ease;
}

/* oculto */
.hidden {
  display: none;
}

/* icono */
.status-left i {
  margin-right: 6px;
}

/* UPLOADING */
.status-uploading {
  color: #ffffff;
}

/* OFFLINE */
.status-offline {
  background: #7f1d1d;
  color: #fca5a5;
}

/* RECONNECTING */
.status-reconnecting {
  color: #facc15;
}

/* DONE */
.status-done {
  color: #4ade80;
}

/* animación spinner */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(20, 184, 166, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

.start-process-split {
  display: flex;
  margin-top: 10px;
}

.start-process-split.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.18);
}

#btnStartProcess,
#btnStartProcessToggle {
  background: #14b8a6;
  border: none;
}

#btnStartProcess {
  flex: 1;
  margin-top: 10px;
  font-weight: bold;
}

#btnStartProcessToggle {
  width: 38px;
  margin-top: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 0;
  padding-right: 0;
}

#btnStartProcess:hover,
#btnStartProcessToggle:hover,
#btnStartProcess:focus,
#btnStartProcessToggle:focus {
  background: #0d9488;
  color: #ffffff;
}

.start-process-menu {
  width: 100%;
  min-width: 100%;
  background: #141b22;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 7px;
  padding: 5px;
  margin-top: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.geolabs-process-menu {
  left: 0;
  right: 0;
}

.start-process-menu>li>a {
  color: #e7fffb;
  padding: 9px 12px;
  font-size: 13px;
  border-radius: 5px;
  transition: background 0.15s ease, color 0.15s ease;
}

.start-process-menu>li.active>a,
.start-process-menu>li.active>a:hover,
.start-process-menu>li.active>a:focus {
  background: #14b8a6;
  color: #ffffff;
  font-weight: 600;
}

.start-process-menu>li>a:hover,
.start-process-menu>li>a:focus {
  background: rgba(20, 184, 166, 0.18);
  color: #ffffff;
}

:root {
  --gl-bg-main: #0c1015;
  --gl-bg-panel: #14191f;
  --gl-bg-hover: #1e293b;

  --gl-accent: #1e293b;
  --gl-accent-soft: #14b8a6;

  --gl-text: #e5e7eb;
  --gl-text-muted: #94a3b8;

  --gl-border: rgba(255, 255, 255, 0.06);
}

/* CONTENEDOR */
.gl-select {
  position: relative;
  display: inline-block;
  font-family: inherit;
  top: -5px;
}

/* BOTÓN */
.gl-select-btn {
  background: var(--gl-bg-panel);
  color: var(--gl-text);
  border: 1px solid var(--gl-border);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;

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

  min-width: 250px;

  transition: all 0.2s ease;
}

.gl-select-btn:hover {
  background: var(--gl-bg-hover);
  border-color: var(--gl-accent-soft);
}

/* TEXTO DEL BOTÓN */
.gl-select-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FLECHA */
.gl-select-btn .arrow {
  font-size: 12px;
  transition: transform 0.25s ease;
}

/* ROTACIÓN FLECHA */
.gl-select.active .arrow {
  transform: rotate(180deg);
}

/* MENÚ */
.gl-select-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;

  padding: 8px;

  background: rgba(20, 25, 31, 0.9);
  backdrop-filter: blur(10px);

  border: 1px solid var(--gl-border);
  border-radius: 12px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);

  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  pointer-events: none;

  z-index: 999;

  transition:
    opacity 0.2s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ACTIVO */
.gl-select.active .gl-select-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* OPCIONES */
.gl-option {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 8px;

  cursor: pointer;

  color: var(--gl-text);

  transition: all 0.2s ease;
}

/* ICONOS */
.gl-option i {
  color: var(--gl-text-muted);
  width: 16px;
  text-align: center;
}

/* HOVER */
.gl-option:hover {
  background: var(--gl-accent-soft);
  color: white;
}

.gl-option:hover i {
  color: var(--gl-accent);
}

/* SELECCIONADO */
.gl-option.selected {
  background: var(--gl-accent-soft);
  color: white;
  font-weight: 500;
}

.gl-option.selected i {
  color: var(--gl-accent);
}

/* SCROLL (si hay muchas opciones) */
.gl-select-menu {
  max-height: 250px;
  overflow-y: auto;
}

/* SCROLLBAR MODERNO */
.gl-select-menu::-webkit-scrollbar {
  width: 6px;
}

.gl-select-menu::-webkit-scrollbar-thumb {
  background: var(--gl-accent);
  border-radius: 10px;
}

.gl-select-menu::-webkit-scrollbar-track {
  background: transparent;
}

/*EXPERIMENTAL DE MODULO DE PROCESAMIENTO END*/
/*NEW UX CSS START*/
.pd_gral {
  padding: 30px;
}

.pd_top {
  padding: 10px;
}

.pd_bottom {
  padding-bottom: 10px;
}

.geolabs-btn-gral {
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.geolabs-btn-gral:hover {
  background: var(--gl-bg-hover);
  border-color: var(--gl-accent-soft);
}

.panel-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  text-decoration: none;
}

/* lado izquierdo */
.panel-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* icono izquierda */
.panel-left i {
  color: #cbd5e1;
  font-size: 14px;
}

/* texto */
.panel-left strong {
  color: #fff;
}

/* botón derecha */
.icon-btn {
  width: 32px;
  height: 32px;

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

  border-radius: 34%;
  /*background: #2a3138;*/
  background: var(--gradient-geolabs_iconsbtns);
  border: 1px solid #3b4550;

  cursor: pointer;
}

/* hover */
.icon-btn:hover {
  border-color: #14b8a6;
}

.icon-btn:hover i {
  color: #14b8a6;
}

.panel-checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
}

.panel-checkbox:hover {
  border-color: #14b8a6;
  cursor: pointer;
}

.time_line_geolabs {
  background: rgba(25, 25, 26, 0.72);
  border-radius: 0px;
  padding-top: 0px;
  position: absolute;
  z-index: 1002;
  width: 100%;
  box-sizing: border-box;
}

/*new timeline start*/
/* WRAPPER */
.timeline-geolabs .timeline-wrapper {
  position: relative;
  /*padding: 20px 0 30px;*/
  padding: 7px 0 3px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.timeline-geolabs .timeline-wrapper::-webkit-scrollbar {
  display: none;
}

.timeline-geolabs .timeline-wrapper {
  -webkit-overflow-scrolling: touch;
  /* iOS */
  will-change: scroll-position;
}

/* línea base */
/*.timeline-geolabs .timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
}*/

/* progreso */
.timeline-geolabs .timeline-progress {
  position: absolute;
  top: 108px;
  left: 40px;
  height: 4px;
  width: 0%;
  background: linear-gradient(to right,
      #54cbb3,
      #3bb39f,
      #2c3433);
  z-index: 1;
  transition: width 0.4s ease;
}

/* contenedor */
.timeline-geolabs .timeline-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 0 40px;
}

/* ITEM */
.timeline-geolabs .tl-item {
  text-align: center;
  cursor: pointer;
  position: relative;
  flex: 0 0 120px;
  z-index: 2;
  transition: transform 0.2s ease;
  transform-origin: center;
}

.timeline-geolabs .tl-item:hover {
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: translateY(-6px);
}

/* THUMB */
.timeline-geolabs .tl-thumb {
  width: 140px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: #1e1f23;
  margin-bottom: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.timeline-geolabs .tl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* NODO */
.timeline-geolabs .tl-node {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 50%;
  /*border: 3px solid white;*/
  background: #888;
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-geolabs .tl-node-number {
  color: white;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.timeline-geolabs .tl-item.active .tl-node {
  transform: scale(1.4);
}

.timeline-geolabs .tl-item.active .tl-node-number {
  transform: scale(1.08);
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.95),
    0 0 10px rgba(5, 184, 166, 0.9),
    0 0 18px rgba(5, 184, 166, 0.75);
}

/* ESTADOS */
.timeline-geolabs .estado-0 {
  background: #ff5e5e;
}

.timeline-geolabs .estado-1 {
  background: #ffc107;
}

.timeline-geolabs .estado-2 {
  background: #54cbb3;
}

/* ACTIVO */
.timeline-geolabs .tl-item.active .tl-node {
  transform: scale(1.5);
  /* 🔥 */
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.35),
    0 0 14px rgba(5, 184, 166, 0.85),
    0 0 24px rgba(5, 184, 166, 0.55);
}


/* CHECK */
.timeline-geolabs .tl-item.active .tl-node::after {
  /*content: "✓";*/
  color: white;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* FECHA */
.timeline-geolabs .tl-date {
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.timeline-geolabs .tl-thumb.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      #2a2d32,
      #1e1f23);
  color: #777;
  font-size: 12px;
}

.timeline-geolabs .timeline-progress {
  height: 6px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(84, 203, 179, 0.5);
}

.timeline-geolabs .tl-item.active .tl-thumb {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.timeline-geolabs .tl-item {
  transition: all 0.25s ease;
}

.timeline-wrapper {
  cursor: grab;
  scroll-behavior: smooth;
}

.timeline-geolabs .timeline-wrapper {
  scroll-behavior: auto;
  overscroll-behavior-x: contain;
}

.timeline-wrapper:active {
  cursor: grabbing;
}

/* 🔹 estado mínimo */
.timeline-geolabs.minimized {
  height: 54px;
  overflow: hidden;
  transition: height 0.3s ease;
}

.timeline-geolabs.minimized .timeline-wrapper {
  padding: 5px 0 5px;
  /* 🔥 mucho más pequeño */
}

.timeline-geolabs.minimized .timeline-wrapper::before,
.timeline-geolabs.minimized .timeline-progress {
  top: 17px;
  /* 🔥 centrado en modo compacto */
}

.timeline-geolabs.minimized .tl-item {
  min-width: 80px;
}

.timeline-geolabs.minimized .tl-date {
  font-size: 10px;
  margin-top: 4px;
}

.timeline-geolabs.minimized .timeline-container {
  align-items: center;
}

/* ocultar elementos pesados */
.timeline-geolabs.minimized .tl-thumb {
  /*display: none;*/
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.timeline-geolabs.minimized .tl-date {
  font-size: 12px;
  opacity: 0.7;
}

/* 🔹 estado expandido */
.timeline-geolabs.expanded {
  overflow: visible;
  height: 146px;
  /* ajusta a tu diseño */
}

.timeline-main-container:has(.expanded) {
  align-items: flex-start;
  /* 🔥 evita centrado raro */
}

/* animación suave */
.timeline-geolabs {
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
  position: relative;
}

.timeline-main-container {
  display: flex;
  align-items: center;
  width: 100%;
  /*overflow: hidden;*/
  height: auto;
  /* 🔥 clave */
  min-height: 54px;
  /* mantiene el minimized */
}

.timeline-container::after {
  content: "";
  min-width: 40px;
}

.timeline-geolabs-options.expanded-options {
  overflow: visible;
  height: 146px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 12px;
  /* ajusta a tu diseño */
}

.timeline-geolabs-options {
  flex: 0 0 auto;
  margin-left: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  /* 🔥 centra vertical SIEMPRE */
  justify-content: center;
  height: 100%;
}

.timeline-options-featured {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 112px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(5, 184, 166, 0.45);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(5, 184, 166, 0.95), rgba(20, 125, 183, 0.86));
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.24),
    0 0 16px rgba(5, 184, 166, 0.28);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.timeline-options-featured i {
  font-size: 13px;
}

.timeline-options-featured:hover {
  transform: translateY(0) scale(1.03);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(5, 184, 166, 0.45);
}

.timeline-geolabs-options.expanded-options .timeline-options-featured {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: timelineFeaturedIn 0.3s ease both;
}

.timeline-geolabs::after {
  content: "";
  position: absolute;
  right: 0;
  /* 🔥 clave */
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.6));
}

.time_line_geolabs {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.opts-container {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease;
}

.timeline-geolabs-options.expanded-options .opts-container {
  margin-top: 18px;
  transform: translateY(8px);
}

.opt-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 MUY IMPORTANTE: evitar desplazamientos raros */
.img_tool_comp,
.img_tool_share,
.icon_agregar i {
  display: block;
  margin: 0;
}

.opt-item {
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.opt-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

@keyframes timelineFeaturedIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.timeline-progress.scrolling {
  box-shadow: 0 0 12px rgba(84, 203, 179, 0.9);
}

/*//////////////////////////////////*/
/* contenedor flotante */
.timeline-scroll-hints {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* 🔥 no bloquea clicks */
  z-index: 6;
}

/* base del icono */
.timeline-scroll-hints .hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  opacity: 0.35;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #fff;
  font-size: 20px;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;

  /* look suave */
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* posiciones */
.timeline-scroll-hints .hint-left {
  left: 8px;
}

.timeline-scroll-hints .hint-right {
  right: 8px;
}

/* visibles */
.timeline-scroll-hints.show-left .hint-left {
  opacity: 0.8;
  transform: translateY(-50%) scale(1);
}

.timeline-scroll-hints.show-right .hint-right {
  opacity: 0.8;
  transform: translateY(-50%) scale(1);
}

.timeline-scroll-hints .hint:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}

.timeline-scroll-hints .hint.hint-disabled {
  opacity: 0.12 !important;
  cursor: default;
  transform: translateY(-50%) scale(0.9) !important;
}

/*//////////////////////////////////*/
/*.center_menu {
  height: 220px !important;
}*/

.timeline-geolabs .tl-item.tl-item-disabled {
  opacity: 0.38;
  filter: grayscale(1);
  cursor: not-allowed;
}

.timeline-geolabs .tl-item.tl-item-disabled .tl-thumb,
.timeline-geolabs .tl-item.tl-item-disabled .tl-node {
  box-shadow: none;
}

.timeline-geolabs .tl-item.tl-item-disabled .tl-node {
  background: #9ca3af;
}

#timeline3dLegacyNav,
#content_menu_3d,
#content_menu_3d .slider,
#content_menu_3d .slider.slider-horizontal,
#content_menu_3d .slider-track,
#content_menu_3d .slider-tick-container,
#content_menu_3d .tooltip {
  display: none !important;
}

/*new timeline end*/
#anotaciones_comp .panel-default {
  border-color: #444444 !important;
}

#anotaciones_comp .panel {
  margin-bottom: 0px !important;
  background-color: #444444 !important;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

#anotaciones_comp .panel-default>.panel-heading {
  color: #333;
  background-color: #3b3b3b;
  /*border-color: #696969;*/
  border: 1px solid transparent;
  /* 🔥 clave */
  /*padding: 0px 18px 0px 10px;*/
  width: 100%;
  display: grid;
  align-items: center;
  border-radius: 10px;
}

#anotaciones_comp .panel-default>.panel-heading:hover {
  background: var(--gl-bg-hover);
  border: 1px solid var(--gl-accent-soft);
  /* 🔥 clave */
}

#anotaciones_comp .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #444444;
}

#anotaciones_comp .panel_custom {
  padding: 16px 15px !important;
}

#anotaciones_comp .leaflet-control-layers-overlays {
  background-color: #444444 !important;
}

/* contenedor */
.legend_geolabs {
  background: transparent;
  border: none;
  pointer-events: none;
  /* no interfiere con mapa */
}

/* badge */
.legend_geolabs__badge {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;
  border-radius: 20px;

  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 13px;
  font-weight: 600;
  color: #fff;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);

  transition: all 0.25s ease;
}

/* punto de color */
.legend_geolabs__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gl-color);
}

/* texto */
.legend_geolabs__text {
  white-space: nowrap;
}

/* hover */
.legend_geolabs__badge:hover {
  transform: translateY(-2px);
  border-color: var(--gl-color);
}

.legend_geolabs--centered {
  position: absolute;
  top: 65px;
  z-index: 1000;
  pointer-events: none;
}

/* centro lado izquierdo */
.legend_geolabs--left-center {
  left: 25%;
  transform: translateX(-50%);
}

/* centro lado derecho */
.legend_geolabs--right-center {
  left: 75%;
  transform: translateX(-50%);
}

.glc-skeleton_geolabsCompare {
  position: absolute;
  inset: 0;
  z-index: 9999;
  background: #1f2625;
  display: none;
}

.glc-skeleton__map_geolabsCompare {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.glc-skeleton__map_geolabsCompare::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 100%);
  animation: glcShimmer_geolabsCompare 1.6s infinite;
}

@keyframes glcShimmer_geolabsCompare {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.glc-skeleton__top_geolabsCompare {
  height: 50px;
  margin: 10px;
  border-radius: 10px;
  background: #2c3433;
}

.glc-skeleton__body_geolabsCompare {
  display: flex;
  height: calc(100% - 70px);
}

.glc-skeleton__left_geolabsCompare,
.glc-skeleton__right_geolabsCompare {
  flex: 1;
  margin: 10px;
  border-radius: 10px;
  background: #2c3433;
}

.glc-skeleton__divider_geolabsCompare {
  width: 4px;
  background: #05b8a6;
  opacity: 0.3;
}

/* 📱 móviles */
@media (max-width: 767px) {
  body {
    overflow: auto !important;
  }
}

/* 📲 tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    overflow: auto !important;
  }
}

.main-sidebar {
  padding-top: 63px !important;
}

#sec_inspecc .sidebar .sidebar-menu:nth-of-type(2) {
  bottom: 22px !important;
}

/* HOME NEW UX PROJECT SIDEBAR START */
.home-project-sidebar-col {
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
}

.home-project-sidebar {
  padding: 0;
  background-color: #444444;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 63px) !important;
}

.home-project-toolbar {
  padding: 36px 22px 14px;
}

.home-project-create-wrap {
  /*max-width: 270px;*/
  margin: 0 auto;
}

.home-project-create {
  min-height: 45px;
  border-radius: 11px !important;
  background: #2f9b8c !important;
  border: 0 !important;
  color: #fff !important;
  /*font-size: 18px;*/
  font-weight: 700;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: none !important;
}

.home-project-create i {
  color: #fff !important;
  font-size: 20px !important;
}

.home-project-search-wrap {
  padding: 10px 24px 20px;
}

.home-project-search {
  height: 40px;
  padding: 8px 22px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #3b3b3b !important;
  color: #fff !important;
  /*font-size: 18px;*/
  box-shadow: none !important;
}

.home-project-search::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.home-project-list {
  flex: 1 1 auto;
  margin: 0 !important;
  padding: 10px 18px 24px 21px !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.home-project-item {
  position: relative;
  margin-bottom: 14px;
}

.home-project-card {
  display: block;
  min-height: 122px;
  color: #fff !important;
  text-decoration: none !important;
  background: #2f2f2f;
  border-radius: 10px;
  border-left: 14px solid #282828;
  overflow: hidden;
}

.home-project-card-body {
  min-height: 122px;
  padding: 14px 44px 12px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-project-copy {
  flex: 1 1 auto;
  min-width: 0;
}

/*.home-project-title {
  display: inline-block !important;
  padding: 3px 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(76, 116, 121, .72);
  color: #fff;
  font-size: 14px !important;
  text-transform: uppercase;
}*/
.home-project-title {
  display: -webkit-box !important;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  /*padding: 3px 8px;*/
  margin-bottom: 10px;
  border-radius: 4px;
  /*border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(76, 116, 121, .72);*/
  color: #fff;
  font-weight: 700;
  font-size: 13px !important;
  text-transform: uppercase;
  white-space: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-project-date,
.home-project-projection {
  display: block;
  color: #fff;
  font-size: 13px;
  /*font-weight: 700;*/
}

.home-project-projection {
  font-size: 10px;
  color: rgba(255, 255, 255, .74);
}

.home-project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.home-project-badges .icons_home {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 1px 5px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.home-project-thumb {
  flex: 0 0 112px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(5, 184, 166, .95);
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(5, 184, 166, .08));
  /*clip-path: polygon(12% 18%, 82% 7%, 98% 34%, 78% 86%, 29% 96%, 4% 62%);*/
  border-radius: 10px;
}

.home-project-thumb i {
  font-size: 25px;
  transform: rotate(-14deg);
}

.home-project-actions {
  position: absolute !important;
  right: 15px !important;
  bottom: 13px !important;
  top: auto !important;
  transform: none !important;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.home-project-actions a {
  color: #fff !important;
  font-size: 12px;
}

.home-project-actions a:hover {
  color: #05b8a6 !important;
}

.home-project-thumb.has-image {
  background: transparent;
  overflow: hidden;
}

.home-project-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOME NEW UX PROJECT SIDEBAR END */
.gl-modal-dialog {
  /*width: min(1120px, calc(100vw - 28px));*/
  width: 95%;
  max-width: 800px
}

.gl-modal {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  color: #f4f7fb;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  position: relative;
}

.gl-modal-header,
.gl-modal-footer {
  border: 0;
  background: #2e2e2e;
}

.gl-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 18px 22px;*/
}

.gl-modal-eyebrow,
.gl-map-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #8fa1b8;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gl-modal-title {
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.gl-modal-close,
.gl-icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gl-modal-body {
  padding: 20px 22px 22px;
}

.gl-modal-toolbar {
  display: flex;
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
}

.gl-modal-field {
  flex: 1;
}

.gl-modal-field label {
  color: #c8d3e0;
  font-size: 13px;
  margin-bottom: 7px;
}

.gl-modal-select {
  height: 42px;
  background: #10151d;
  border: 1px solid #2c3645;
  color: #fff;
  border-radius: 6px;
}

.gl-modal-btn,
.gl-modal-btn-primary {
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: #05b8a6;
  color: #FFFFFF;
  font-weight: 700;
}

.gl-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.gl-modal-btn-secondary {
  background: #3e3e3e;
  color: #d9e3ee;
  border: 0;
  border-radius: 6px;
}

.gl-map-card {
  background: #2e2e2e;
  border: 1px solid #28413d;
  border-radius: 8px;
  overflow: hidden;
}

.gl-map-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid #28413d;
}

.gl-map-actions {
  display: flex;
  gap: 8px;
}

.gl-map-wrap {
  position: relative;
  height: 420px;
  min-height: 360px;
}

.gl-map {
  width: 100%;
  height: 100%;
  background: #0b1017;
}

.gl-map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  align-content: center;
  color: #9aabba;
  background: #2a2a2a;
  pointer-events: none;
}

.gl-modal-footer {
  padding: 14px 22px;
}

.gl-modal-loading {
  position: absolute;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.62);
  pointer-events: all;
}

.gl-modal-loading-box {
  min-width: 220px;
  padding: 18px 22px;
  border-radius: 10px;
  background: #1f1f1f;
  border: 1px solid #05b8a6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  position: relative;
  z-index: 100000;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 22px rgba(5, 184, 166, 0.25);
}

.gl-modal-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #05b8a6;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  animation: glModalSpin 0.75s linear infinite;
}

#movtierraLoadingText {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

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

@media (max-width: 767px) {
  .gl-modal-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .gl-modal-btn {
    justify-content: center;
  }

  .gl-map-wrap {
    height: 420px;
  }
}

.btn-geolabs-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 174px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(5, 184, 166, 0.45);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(5, 184, 166, 0.95), rgba(20, 125, 183, 0.86));
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.24),
    0 0 16px rgba(5, 184, 166, 0.28);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.btn-geolabs-modern i {
  font-size: 13px;
}

.btn-geolabs-modern:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(5, 184, 166, 0.45);
  filter: brightness(1.06);
}

.btn-geolabs-modern:active {
  transform: translateY(0) scale(0.98);
}

/*NEW UX CSS END*/
/*CSS REEMPLAZO FUNCION ANTIGUA RESIZE START*/
#sub_menu_lateral {
  padding: 0px;
  background-color: #444444;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 63px) !important;
}

#contmenu_lateral {
  max-width: 100%;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  margin-left: 0px;
  margin-right: 0px;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

#map {
  height: calc(100vh - 63px) !important;
}

#sec_inspecc {
  height: calc(100vh - 63px) !important;
}

#sec_dashboard {
  height: calc(100vh - 63px) !important;
}

/*#cont_dashboard {
  height: calc(100vh - 50px) !important;
}*/
#map_com {
  height: calc(100vh - 63px) !important;
}

#map_com_tl {
  height: calc(100vh - 63px) !important;
}

.content_comp_multimedia {
  width: 100% !important;
  height: calc(100vh - 63px) !important;
  background: darkcyan;
}

.content_report_2d {
  width: 100% !important;
  height: calc(100vh - 63px) !important;
}

#cont_report_2d {
  width: 100% !important;
  height: calc(100vh - 63px) !important;
}

.comparation_elements {
  height: calc(100vh - 63px) !important;
}

#contmenu_lateral_comp {
  height: calc(100vh - 120px) !important;
}

.newstylecomp3d {
  height: calc(100vh - 120px) !important;
}

.newstylecomp3d {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

/*CSS REEMPLAZO FUNCION ANTIGUA RESIZE END*/
/*CSS MARVIN modal validation START*/
#validationModal .modal-content {
  background: #3b3b3b;
  color: #fff !important;
  border: 1px solid #555;
}

#validationModal .modal-header {
  border-bottom: 1px solid #555;
}

#validationModal .modal-footer {
  border-top: 1px solid #555;
}

#validationModal .close {
  color: #fff;
  opacity: 0.8;
}

#validationModal .close:hover {
  color: #ccc;
}

#validationModal .modal-body .form-control {
  background-color: #555;
  border: 1px solid #777;
  color: #fff;
}

#validationModal .modal-body .well {
  background-color: #444;
  border: 1px solid #666;
}

#validationModal .modal-body input:disabled,
#validationModal .modal-body select:disabled,
#validationModal .modal-body textarea:disabled {
  background-color: #2b2b2b !important;
  color: #aaa !important;
  border-color: #444 !important;
  cursor: not-allowed;
}

/*CSS MARVIN modal validation END*/
