@keyframes blinker {
  50% {
    opacity: 0.5;
  }
}
dialog.endereco {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ccc;
  z-index: 100;
  width: min(500px, 95%);
  max-height: min(400px, 80vh);
  overflow: auto;
  background-color: #fff;
  padding: 0;
}
dialog.endereco::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
dialog.endereco a.close {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  padding: 0.6em;
  font-size: 1.6em;
  line-height: 1;
  color: #000;
  z-index: 101;
}
dialog.endereco a.close:hover {
  color: #636362;
  cursor: pointer;
}
dialog.endereco > div {
  position: relative;
  z-index: 100;
  padding: 3em;
  background-color: #fff;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
}
dialog.endereco p {
  font-size: 1.6em;
  margin: 0 0 1em;
}
dialog.endereco h2 {
  font-size: 2rem;
  flex: 0 0 100%;
}
dialog.endereco address {
  gap: 1em;
  font-style: normal;
  font-size: 1.8em;
  border: 1px solid #636362;
}
dialog.endereco address a {
  padding: 0.8em 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em;
  transition: 100ms ease-in-out;
  color: #636362;
}
dialog.endereco address a span.postcode::before {
  content: "";
  margin-left: 0.5em;
}
dialog.endereco address a:hover {
  background-color: #636362;
  color: #fff;
  cursor: pointer;
}

.btn.btn-primary.blink {
  animation: blinker 1s linear infinite;
}

/*# sourceMappingURL=autocomplete.css.map */
