/* 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 Did you mean*/

.DidYouMean {
  margin-bottom: 2px;
  width: 100%;
}
.DidYouMeanContent {
  background-color: #cfccc5;
  display: inline-block;
  margin: 0;
  max-height: 195px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  text-align: left;
  width: 100%;
}
.DidYouMeanHeader {
  background-color: #f9f7f0;
  background-image: url("Images/DidYouMeanArrowUp.png");
  background-position: 18px bottom;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  height: 7px;
  width: 100%;
}
.DidYouMeanTitle {
  border-bottom: solid 1px #f9f7f0;
  width: -moz-calc(((100%) - (20px)));
  width: -webkit-calc(((100%) - (20px)));
  width: -o-calc(((100%) - (20px)));
  width: calc(((100%) - (20px)));
  display: inline-block;
  font-weight: bold;
  margin: 4px 10px;
  padding: 5px 0;
  text-align: left;
}
.DidYouMeanSuggestion {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  cursor: hand;
  display: inline-block;
  padding: 4px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.DidYouMeanSuggestion:hover {
  color: black;
}
.NoResultFound {
  display: inline-block;
  margin: 4px 10px;
  padding: 5px 0;
}
/*#endregion Did you mean*/

