/* Controls */
#map_controls div {
  width: 100%;
  margin-bottom: 0;
}
#map_controls div label {
  font-size: 12px;
  font-family: "Titillium Web", sans-serif;
}
#map_controls div select {
  max-width: 70%;
  font-size: 12px;
}
#search {
  border-radius: 7px;
  border: solid 1.5px #aaa;
}
.select,
#buscar_mun {
  max-width: 100%;
  border-radius: 5px;
  border: none;
  box-shadow: 1px 1px 2px rgb(109, 100, 100, 0.5);
  cursor: pointer;
}
.select:focus,
#buscar_mun:focus {
  border: none;
  box-shadow: 1px 1px 2px rgb(109, 100, 100, 1);
}
/* Busqueda */
#map_controls .container_search {
  position: relative;
}
#buscar_mun {
  width: calc(100% - 65px);
}
#suggestions {
  overflow: scroll;
  max-height: 400px;
  width: calc(100%);
  background-color: #f2f2f2;
  opacity: 0.9;
  display: none;
  position: absolute;
}
#suggestions ul {
  font-size: 14px;
}
#suggestions ul li {
  cursor: pointer;
}
/* contenedor del map */
#container_map {
  width: 100%;
}
#container_map #map {
  width: 100%;
  height: 300px;
  border: solid 5px #aaa;
  border-radius: 5px;
}
/* loading */
.loading {
  display: grid;
  place-content: center;
}
#loadingView {
  display: grid;
  place-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(234, 234, 234, 0.8);
  z-index: 400;
}
.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* miscelaneos */
#sp-mainnav {
  z-index: 1001;
}
.sp_share {
  z-index: 1000;
}
.leaflet-tooltip {
  width: 200px;
  max-width: 300px;
  white-space: pre-wrap;
}
.position-relative {
  position: relative;
}
.full-w {
  width: 100%;
}

@media (min-width: 768px) {
  #container_map {
    width: 730px;
  }
  #container_map #map {
    width: 730px;
    height: 500px;
  }
}
