html,
body,
#map_canvas {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
#map_canvas {
  min-height: 500px;
}

#user_input_autocomplete_address {
  height: 30px;
  font-size: 12px;
  width: 260px;
  position: absolute;
  left: 10px;
  top: 50px;
  z-index: 100000;
}
#user_input_autocomplete_address:focus {
  border-color: #4d90fe;
  border-width: 1px;
}
@media only screen and (max-width: 700px) {
  #user_input_autocomplete_address {
    bottom: 50px !important;
    position: absolute;
    left: 10px;
  }
}

.placeholder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.placeholder .text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2em;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.loading .content {
  font-weight: 700;
  margin-left: -20px;
  background-color: white;
  padding: 1px;
  width: fit-content;
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
