/* 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 */
#RoutesCheckBoxList {
  margin-bottom: 15px;
}
.RoutesCheckBoxListItems .RoutesCheckBoxListItem.RoutesCheckBoxListItemChecked {
  color: #2972e1;
  cursor: default;
}
.RoutesCheckBoxListSelection {
  background-color: white;
  border-radius: 3px;
  box-shadow: 0px 1px 4px 1px #e0deda;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #2972e1;
  cursor: pointer;
  cursor: hand;
  height: 60px;
  margin-top: 15px;
  position: relative;
  -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;
}
.RouteCheckBoxListSelectionText {
  font-size: 16px;
  font-weight: bold;
  padding-left: 15px;
  padding-top: 20px;
}
#RoutesCheckBoxList.RoutesCheckBoxListOpen .RoutesCheckBoxListSelection {
  border: 1px solid #57b70a;
}
.RoutesCheckBoxListArrow {
  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: 25px;
  -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;
}
.RoutesCheckBoxListItems {
  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;
  margin-top: 2px;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.RoutesCheckBoxListItems .RoutesCheckBoxListRouteDirection {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  width: -moz-calc(((100%) - (50px)));
  width: -webkit-calc(((100%) - (50px)));
  width: -o-calc(((100%) - (50px)));
  width: calc(((100%) - (50px)));
}
.RoutesCheckBoxListItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #9e9b96;
  cursor: pointer;
  cursor: hand;
  height: 60px;
  vertical-align: middle;
  width: 100%;
}
.RoutesCheckBoxListItemCheckBoxWrapper {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
  width: 45px;
}
.RoutesCheckBoxListItemCheckBox {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  cursor: hand;
  display: inline-block;
  margin: 0 15px;
}
.RoutesCheckBoxListRouteDirectionText {
  font-size: 16px;
  font-weight: bold;
}
.RoutesCheckBoxListItem .RouteTitle {
  padding-bottom: 5px;
  padding-left: 0 !important;
}
.RoutesCheckBoxListSelection .RoutesCheckBoxListRouteDirection .RouteTitle {
  padding-left: 15px !important;
  padding-top: 10px !important;
}
