/* Contains all the styles for the location input. */

/* Contains the common CSS constants for the whole application. */
/*#region Common colors*/
/*#endregion Common colors*/
/*#region Shadow colors*/
/*#endregion Shadow colors*/
/*#region Text*/
/* Dark color for text in the application */
/*#endregion Text*/
/*#region Content constants*/
/*#endregion*/
/*#region Z-indexes*/
/* Has to be higher than map canvas. */
/* Has to be higher than expanded map place holder. */
/* Has to be higher than expand map button. */
/* The layouts z indexes are for internal purposes only.
                                They are not for styling. */
/*#endregion Z-indexes*/
/*#region Global time picker constants*/
/*#endregion Global time picker constants*/
/* Contains mixins for the application. Mixins are methods that simplify the reuse of a block of CSS
   code with parameters. */
/* The cursor is shown as a pointer over the element */
.gh-LocationInputIcon {
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: 24px 24px;
  -o-background-size: 24px 24px;
  -webkit-background-size: 24px 24px;
  background-size: 24px 24px;
  border: 0;
  height: 50px;
  margin: 0;
  padding: 0;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  width: 40px;
}
.gh-LocationInputIcon.gh-EndLocationInputIcon {
  background-image: url("Images/EndLocation.png");
}
.gh-LocationInputIcon.gh-StartLocationInputIcon {
  background-image: url("Images/StartLocation.png");
}
/*#region AutoComplete */

.gh-SuggestionInputAutoComplete.gh-LocationInputAutoComplete {
  padding: 0;
}
/*#endregion AutoComplete */

