#modalTitulo {
  font-weight: 300;
}

#wrap {
  position: relative;
  width: 100%;
}

.lote {
  cursor: pointer;
  transition: opacity .12s, filter .12s;
  fill: #D3D1C7;
  stroke: #888;
  stroke-width: 0.2;
  opacity: 0.85;
}

.lote:hover {
  opacity: 1;
  filter: brightness(1.2);
}

.lote.disponible {
  fill: #1D9E75;
  stroke: #085041;
}

.lote.no-disponible {
  fill: #D85A30;
  stroke: #712B13;
}



#tip {
  position: fixed;
  display: none;
  pointer-events: none;
  background: var(--color-background-primary);
  border: 0.5px solid var(--color-border-secondary);
  border-radius: var(--border-radius-md);
  padding: 10px 14px;
  font-size: 13px;
  min-width: 175px;
  z-index: 9999;
}

#tip strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--color-text-primary);
}

.chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
}

.tr {
  color: var(--color-text-secondary);
  margin: 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.tr span {
  font-weight: 500;
  color: var(--color-text-primary);
}

#stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.st {
  background: var(--color-background-secondary);
  border-radius: var(--border-radius-md);
  padding: 6px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  color: #1a1a1a;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.st b {
  font-size: 15px;
  font-weight: 500;
}

#filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#filters button {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

#filters button.active {
  background: var(--color-background-info);
  border-color: var(--color-border-info);
  color: var(--color-text-info);
}

#mapa-wrap {

  overflow: hidden;
  border-color: #6d6d6d;
  height: 66vh;
  overflow-y: auto;
  display: flex;
  justify-content: left;
}

#svg-container {
  width: 60%;
}

#mapa-lotes {
  display: block;
  width: 100%;
  height: 100%;

}

.lote-seleccionado {
  fill: #1565C0 !important;
  stroke: #0D47A1 !important;
  opacity: 1 !important;
  transition: 0.67s;
}

#detalles-lote {
  padding: 16px 20px;
  overflow: auto;
  width: 40%;
}

#info-cargando {
  width: 100%;
  height: 110%;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  background-color: #000000b3;
  padding: 4px !important;
  width: 100%;
}
.carousel-item>img{
  height:70svh;
  object-fit:cover;
}


@media (max-width: 992px) {
  #mapa-wrap {
    display: flex;
    flex-direction: column;
    height: unset;

  }

  #svg-container {
    width: 100%;
    height: 70vh;
  }

  #detalles-lote {
    width: 100%;
  }

}