/* 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 */
/*#region Request button*/

.gh-RequestButton {
  background-color: #57b70a;
  border-radius: 3px;
  box-shadow: 0 1px 4px 1px #e0deda;
  cursor: pointer;
  cursor: hand;
  display: inline-block;
  height: 50px;
  margin-top: 10px;
  text-align: center;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}
.gh-RequestButtonText {
  background-image: url("Images/Search.png");
  background-repeat: no-repeat;
  color: white;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  height: 24px;
  padding-left: 28px;
  padding-top: 4px;
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*#endregion Request button*/

