/*
 * Always set the map height explicitly to define the size of the div element
 * that contains the map.
 */
 #map {
    height: 100%;
  }
  
  /*
   * Optional: Makes the sample page fill the window.
   */
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .textMapNaz{
    margin: 60px 0;
  }
  .textMapNaz h1{

    font-family: "Poppins", sans-serif;
    margin: 0 auto;
    width: 22ch;
    text-align: center;
  }
  .textMapNaz p{
    font-family: "Poppins", sans-serif;
    margin: 0 auto;
    text-align: center;
    width: 70ch;
  }

  .outrosPostos{
    padding-top: 60px;
  }
  .outrosPostos h3{
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    margin: 0 auto;
    width: 22ch;
    text-align: center;
  }


  .box-pesquisa{
    padding: 20px;
    width: 35%;
    /*  */
    height: auto;
    background-color: #ffffffa0;
    border-radius: 20px;
    position: absolute;
    z-index: 99;
    top: 550px;
    left: 90px;
  }
  .box-pesquisa input{
    width: 99%;
    height: 29px;
    margin: 0px auto;
    
  }
  .box-pesquisa button{
    margin-top: 10px;
    float: right;
  }
/* modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Estilo para o modal */
.modal {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  padding: 20px;
  text-align: center;
}

/* Estilo para o botão fechar */
.close-button {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}


  /* loading */

  .lds-ring {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0px auto;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 34px;
    height: 34px;
    margin: 8px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #02436F 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);
    }
  }