* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.mapa {
  width: 100%;
  height: 100vh;
  position: relative;
}

#map {
  width: 100%;
  height: 100vh;
}

.mapa__logo {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 10000 !important;
  bottom: 0;
  right: 0;
  margin: 30px;
}

.marker-cluster {
  background-color: rgba(255, 255, 255, 0.69) !important;
}
.marker-cluster > div {
  background-color: #3cf !important;
}

.marker-cluster span {
  line-height: 30px;
  color: white;
}

.btn__crear__reporte-responsive {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 100001 !important;
  bottom: 0;
  right: 0;
  margin: 30px;
  border-radius: 50%;
  background-color: red;
  display: none;
}

nav {
  width: 100%;
  height: auto;
  padding: 20px 50px;
  position: absolute;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .nav__left .container__search {
  display: flex;
}
nav .nav__left .container__search .ab-btn {
  width: 45px !important;
  border-radius: 5px;
  -webkit-animation-name: btn;
          animation-name: btn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
nav .nav__left .container__search .nav__search {
  border: none;
  outline: none;
  padding-left: 10px;
  border-radius: 30px;
  margin-left: 10px;
  width: 0;
  padding: 0;
  font-size: 13px;
  -webkit-animation-name: search;
          animation-name: search;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
nav .nav__left .container__search .nav__search::-moz-placeholder {
  font-size: 13px;
  opacity: 0.8;
  padding-left: 0;
}
nav .nav__left .container__search .nav__search:-ms-input-placeholder {
  font-size: 13px;
  opacity: 0.8;
  padding-left: 0;
}
nav .nav__left .container__search .nav__search::placeholder {
  font-size: 13px;
  opacity: 0.8;
  padding-left: 0;
}
nav .nav__right {
  display: flex;
  justify-content: flex-end;
}
nav .nav__right .btn__crear__reporte {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

footer {
  width: 100%;
  height: auto;
  padding: 20px 50px;
  position: absolute;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}
footer .tab {
  padding: 3px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: white;
  font-size: 12px;
  cursor: pointer;
}

.pop .container__imagen {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}
.pop img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.mapa__graficas {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000000;
  background-color: #FFFFFF;
  top: 0;
  transition: all 0.2s ease-in-out;
  transform: translateY(100vh);
  padding: 50px;
  box-sizing: border-box;
  overflow-y: auto;
}
.mapa__graficas.open {
  transform: translateY(0);
  transition: all 0.2s ease-in-out;
}

.btn-close {
  width: 50px;
  height: 50px;
  background-color: #395cad;
  color: #FFFFFF;
  font-size: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 40px 30px 0;
  z-index: 100000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

@-webkit-keyframes search {
  from {
    width: 0;
    padding: 0;
    transform: translateX(0);
  }
  to {
    width: 250px;
    padding-left: 20px;
    transform: translateX(-45px);
  }
}

@keyframes search {
  from {
    width: 0;
    padding: 0;
    transform: translateX(0);
  }
  to {
    width: 250px;
    padding-left: 20px;
    transform: translateX(-45px);
  }
}
@-webkit-keyframes btn {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(270px);
  }
}
@keyframes btn {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(270px);
  }
}
@media screen and (max-width: 700px) {
  .btn__crear__reporte {
    display: none;
  }
  .btn__crear__reporte-responsive {
    display: block;
    transform: translateY(-50px);
  }
  .mapa__logo {
    transform: translateY(-50px);
  }
  nav {
    justify-content: center;
  }
  .nav__search {
    margin-left: 0 !important;
  }
  .nav__right {
    display: none;
  }
  @-webkit-keyframes search {
    from {
      width: 0;
      padding: 0;
      transform: translateX(0);
    }
    to {
      width: 250px;
      padding-left: 20px;
      transform: translateX(-55px);
    }
  }
  @keyframes search {
    from {
      width: 0;
      padding: 0;
      transform: translateX(0);
    }
    to {
      width: 250px;
      padding-left: 20px;
      transform: translateX(-55px);
    }
  }
  footer .tab {
    transform: translateY(-50px);
  }
  .mapa__graficas {
    padding: 20px;
  }
}/*# sourceMappingURL=mapa.css.map */