@charset "utf-8";
/* CSS Document */

#map {
  font-family: inherit !important;
  height: 430px;
  width: 100%;
  z-index: 1;
}
  .autocomplete-suggestions {
    position: absolute;
    z-index: 9999;
    background: #e9e9ed;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
  }
  .autocomplete-suggestions div {
    padding: 8px;
    cursor: pointer;
  }
  .autocomplete-suggestions div:hover {
    background-color: #f0f0f0;
  }
  #clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #888;
    display: none;
    z-index: 10;
  }
  #clear-search:hover { color: #333; }
@media (max-width: 768px) {
  .google-dd-search select,
  .google-text-search input {
    width: 100%;
    margin-bottom: 10px;
  }

  .container.branch-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: left;
  }

  .container.branch-checks label {
    flex: 1 1 45%;
  }
}