/* 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 */
.RouteDirectionDropDownList {
  padding-bottom: 10px;
}
.RouteDirectionDropDownListItems .ActiveStopTimetableRouteDirection.StopTimetableRouteDirection {
  color: #2972e1;
  cursor: default;
}
.RouteDirectionDropDownListSelection {
  background-color: white;
  border-radius: 3px;
  box-shadow: 0px 1px 4px 1px #e0deda;
  cursor: pointer;
  cursor: hand;
  margin-top: 15px;
  position: relative;
}
.RouteDirectionDropDownListSelection .ActiveStopTimetableRouteDirection.StopTimetableRouteDirection {
  color: #2972e1;
  padding-right: 30px;
}
.RouteDirectionDropDownList.RouteDirectionDropDownListOpen .RouteDirectionDropDownListSelection {
  border: 1px solid #57b70a;
}
.RouteDirectionDropDownListArrow {
  background-image: url("../Shared/Images/ArrowDown.png");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: 16px 16px;
  -o-background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  background-size: 16px 16px;
  display: inline-block;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 24px;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  width: 16px;
}
#StopTimetableContent .RouteDirectionDropDownList .RouteTitle {
  padding: 10px;
}
.RouteDirectionDropDownListItems {
  background-color: #d9d7d0;
  border-color: #9e9b96;
  border-style: solid;
  border-width: 0 1px 1px 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  box-shadow: 0px 1px 4px 1px #e0deda;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.RouteDirectionDropDownListItems .StopTimetableRouteDirection {
  border-top: 1px solid #9e9b96;
  cursor: pointer;
  cursor: hand;
}
