/* Contains all the styles for the dropdown list 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-DropdownListDropDownButton {
  height: 50px;
  vertical-align: top;
  width: 35px;
}
.gh-DropdownListDropDownButtonImage {
  background-image: url("../Shared/Images/ArrowDown.png");
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  cursor: hand;
  height: 50px;
}
.gh-DropdownListLoadingImage {
  background-image: url("../Shared/Images/SmallLoading.gif");
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
}
/*#region AutoComplete */

.gh-SuggestionInputAutoComplete.gh-DropdownListAutoComplete {
  padding: 0 0 0 10px;
}
/*#endregion AutoComplete */

/*#region Suggestions */

.gh-DropdownList .gh-SuggestionText {
  padding-left: 10px;
}
/*#endregion Suggestions */

