@media screen and (min-width: 500px) {
  .geocoder-content {
    width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .geocoder-content {
    width: 250px;

    .search-text-content {
      width: 150px;
    }
  }
}

button,
input,
textarea,
select {
  font: revert;
}

.geocoder-content {
  position: absolute;
  z-index: 9;
  top: 0.5em;
  right: 0.5em;
  border: 1px solid #ccc;
  background: #fff;
}
.search-text-content {
  font-size: 0.938em;
  font-family: sans-serif;
  padding: 2px;
  margin: 3px;
  border: none;
  width: 14.4em;
}
.search-text-content:focus {
  outline: none;
}
.map-button-container {
  float: right;
  margin: 2px 2px 2px 0px;
}
.map-button-container button {
  float: left;
  background: #efefef;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
}
.map-button-container button:hover {
  background: #dfdfdf;
}
.search-button-content {
  font-size: 1em;
  padding: 0px 5px;
  margin-right: 3px;
}
.search-button-content:after {
  content: "\279C";
}
.delete-button-content {
  font-size: 0.875em;
  padding: 1px 6px;
  margin-right: 1px;
}
.delete-button-content:after {
  content: "\2716";
}
.dropdown-failed {
  position: relative;
  width: 18em;
  padding: 4px;
  font-size: 0.875em;
  font-family: sans-serif;
  border-top: 1px solid #d4d4d4;
  display: none;
}
.dropdown-content {
  position: relative;
  overflow-y: auto;
  width: 18em;
  max-height: 9em;
  display: none;
  z-index: 9;
  border-top: 1px solid #d4d4d4;
}
.dropdown-content:focus {
  outline: none;
}
.result-item {
  padding: 5px 0px;
  margin: 0px 5px;
  cursor: pointer;
  background-color: #fff;
  border-top: 1px solid #d4d4d4;
  font-size: 0.875em;
  font-family: sans-serif;
  overflow: hidden;
  white-space: nowrap;
}
.result-item:hover {
  background-color: #efefef;
}
.result-active {
  background-color: #efefef;
}
