/* #region Geral*/

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}


body {
  font-family: helvetica, sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  scroll-behavior: auto;
}


ul {
  margin: 0;
  padding: 0;
}


ul>li {
  list-style: none;
}

#results li:hover {
  background-color: gainsboro;
}

/* #endregion */

/* #region Pin Icon */

.icon-location {
  display: inline-block;
  position: relative;
}

.icon-location svg {
  /* color: #ea0000; */
  width: 100%;
  height: 100%;
}

.svg-fill {
  fill: #C70D0D !important;
}

.svg-fill ellipse {
  stroke: #C70D0D !important;
}

.address-maps__pin--active .svg-fill {
  fill: #3e3e3e !important;
}

.address-maps__pin--active .svg-fill ellipse {
  stroke: #3e3e3e !important;
}

.address-maps__pin {
  position: absolute;
  width: 36px;
  height: 44px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 15px));
}

.address-maps__pin svg {
  /* color: #ea1d2c;
  fill: #ea1d2c !important; */
  transform: translateX(-.3px);
  transition: transform .15s ease-in;
}

.address-maps__pin--active svg {
  /* color: #3e3e3e;
  fill: #3e3e3e; */
  transform: translate(-.5px, -5px);
}

.address-maps__pin:after {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 5px;
  border-radius: 100%;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -3px);
  background-color: #3e3e3e;
  opacity: .3;
}

/* #endregion*/

/* #region  Places List*/

ul.address-search-list:not(:empty) {
  border: solid 1px gray;
  border-radius: 8px;
}

.btn-address__icon--left {
  display: grid;
  align-self: center;
  width: 50px;
  transition: all .2s ease-in-out;
  min-width: 50px;
  max-height: 40px;
}

.btn-address__icon--left .icon-location {
  height: 25px;
  width: 25px;
}

.btn-address__container {
  display: flex;
}

.btn-address,
.btn-address button {
  border: 0;
  background: transparent;
}


.btn-address {
  width: 100%;
  min-height: 40px;
  padding: 15px;
  position: relative;
  color: #717171;
  overflow: hidden;
  text-decoration: none;
  transition: all .2s ease-in-out;
  height: auto;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

.btn-address--simple .btn-address__info--description {
  color: #a6a6a6;
}

.btn-address__info {
  grid-gap: 4px;
  gap: 4px;
  display: grid;
  text-align: left;
  align-content: center;
  flex-grow: 1;
  transition: all .2s ease-in-out;
  word-break: break-word;
}

.address-search-list__not-found .btn-address__info--label {
  color: #ea1d2c;
}

/* #endregion */

/* #region Mapa*/

#map {
  top: 15%;
  left: 15%;
  height: 60%;
  width: 70%;
}


#map #infowindow-content {
  display: inline;
}

.gm-ui-hover-effect {
display: none !important;
}

.gm-style-iw-t [role=dialog] {
top:-30px;
}

/* #endregion */