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

#map {
  width: 100%;
  height: 23rem;
  position: relative;
}

.container-Botoes-Endereco {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: rgba(80, 80, 80, 0.132);
  backdrop-filter: blur(3px);
  position: absolute;
  z-index: 1;

}

.bt-localizacao {
  background: transparent;
  border: 2px solid #565656;
  padding: 10px 20px 10px 20px;
  color: #565656;
  border-radius: 10px;
  cursor: pointer;
  height: 40px;
  width: 145px;
  font-size: 1rem;
}

.bt-Localizacao-Selecionado {
  background-color: #00050d92;
  border: 2px solid #00050d1c;
  color: #ffffff;
  box-shadow: rgba(202, 202, 202, 0.818) 0px 0px 15px;
}

@media (min-width: 576px) {
  #map {
    height: 30rem;
  }

  .container-Botoes-Endereco {
    height: 65px;
  }

  .bt-localizacao {
    height: 40px;
    width: 145px;
  }
}