/* 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 */
/*TODO : Use the same classes in the stop timetable.*/

/*#region Options accordions*/

.AccordionElement {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  width: 100%;
}
.AccordionElementHeader {
  background-color: #2972e1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  cursor: hand;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  -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%;
}
.AccordionElementHeaderImage {
  display: inline-block;
  float: right;
  height: 16px;
  width: 16px;
}
.AccordionElement.AccordionElementOpen .AccordionElementHeader {
  background-color: #f9f7f0;
  border-top: 1px solid #2972e1;
  color: #2972e1;
}
.AccordionElement.AccordionElementOpen .AccordionElementHeaderImage {
  background-image: url("../Shared/Images/CollapseBlue.png");
}
.AccordionElement.AccordionElementCollapsed .AccordionElementHeader {
  cursor: pointer;
  cursor: hand;
}
.AccordionElement.AccordionElementCollapsed .AccordionElementHeaderImage {
  background-image: url("../Shared/Images/ExpandWhite.png");
  background-repeat: no-repeat;
  background-position: -2px -2px;
}
.AccordionElementContent {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.AccordionElement.AccordionElementCollapsed .AccordionElementContent {
  display: none;
}
/*#endregion Options accordions*/

#AdvancedOptionsTravelPlan {
  background-color: #f9f7f0;
  font-size: 12px;
  margin-top: 20px;
  vertical-align: top;
}
.OptionsButton {
  cursor: pointer;
  cursor: hand;
  float: left;
  margin-bottom: 3px;
  margin-left: 3px;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.OptionsBackgroundButton {
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
  border-radius: 3px;
  height: 48px;
  position: relative;
  width: 63px;
}
.Selected .OptionsInnerText {
  color: #2972e1;
}
.Unselected .OptionsInnerText {
  color: #777777;
}
.OptionsInnerText {
  font-weight: bold;
  position: absolute;
  text-align: center;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 63px;
  word-wrap: break-word;
}
.Selected .OptionsBackgroundButton {
  background-color: white;
  border: solid 1px #e0deda;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}
.Unselected .OptionsBackgroundButton {
  background-color: #e0deda;
  border: solid 1px #d9d7d0;
}
.OptionsSection {
  border-bottom: 1px solid #d9d7d0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 5px 0;
  width: 100%;
}
#ServiceAccordionElementContent .OptionsSection:last-child {
  border-bottom: 0;
}
.OptionsText {
  font-weight: bold;
  margin-top: 5px;
  text-align: center;
}
.Selected .OptionsText {
  color: #2972e1;
}
.Unselected .OptionsText {
  color: #777777;
}
#ServiceModeBusBtn.Unselected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/DarkGreyBus.png");
}
#ServiceModeBusBtn.Selected .OptionsBackgroundButton {
  background-image: url("../Shared/Images//BlueBus.png");
}
#ServiceModeMetroBtn.Unselected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/DarkGreyMetro.png");
}
#ServiceModeMetroBtn.Selected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/BlueMetro.png");
}
#ServiceModeTrainBtn.Unselected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/DarkGreyTrain.png");
}
#ServiceModeTrainBtn.Selected .OptionsBackgroundButton {
  background-image: url("../Shared/Images//BlueTrain.png");
}
#ServiceModeTramwayBtn.Unselected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/DarkGreyTramway.png");
}
#ServiceModeTramwayBtn.Selected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/BlueTramway.png");
}
.AccessibilitySection .OptionsButton {
  margin-right: 14px;
}
#Accessibility.Selected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/BlueAccessibility.png");
}
#Accessibility.Unselected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/DarkGreyAccessibility.png");
}
#BikeOnBoard.Selected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/BlueBikeOnBoard.png");
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0px;
  width: 63px;
}
#BikeOnBoard.Unselected .OptionsBackgroundButton {
  background-image: url("../Shared/Images/DarkGreyBikeOnBoard.png");
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0px;
  width: 63px;
}
/*region RideWithOptionsSection*/

#RideWithAccordionElementContent .OptionsSection {
  border-bottom: 0;
}
.RideWithOptionsSection {
  display: table;
  table-layout: fixed;
  width: 100%;
}
#RideWithOptionsButtons {
  cursor: pointer;
  cursor: hand;
  display: table-row;
  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%;
}
#RideWithOptionsButtons .RideWithOptionsButtonWrapper:first-child .RideWithOptionsButton {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
#RideWithOptionsButtons .RideWithOptionsButtonWrapper:last-child .RideWithOptionsButton {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  border-right-color: #e0deda;
}
.RideWithOptionsButtonWrapper {
  display: table-cell;
}
.RideWithOptionsButton {
  background-color: #e0deda;
  border-collapse: collapse;
  border-color: #e0deda;
  border-right-color: #9e9b96;
  border-style: solid;
  border-width: 1px;
  height: 100%;
  position: relative;
}
.RideWithOptionsButton.Selected {
  background-color: white;
  border: 1px solid #2972e1 !important;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.RideWithOptionsButton.BeforeSelected {
  border-right-color: #e0deda;
}
.RideWithOptionIcon {
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: 48px 48px;
  -o-background-size: 48px 48px;
  -webkit-background-size: 48px 48px;
  background-size: 48px 48px;
  display: inline-block;
  height: 50px;
  width: 100%;
}
#BikeAndRideIcon {
  background-image: url("../Shared/Images/DarkGreyBike.png");
}
.Selected #BikeAndRideIcon {
  background-image: url("../Shared/Images/BlueBike.png");
}
#BikeOnBoardIcon {
  background-image: url("../Shared/Images/DarkGreyBikeOnBoard.png");
}
.Selected #BikeOnBoardIcon {
  background-image: url("../Shared/Images/BlueBikeOnBoard.png");
}
#ParkAndRideIcon {
  background-image: url("../Shared/Images/DarkGreyCar.png");
}
.Selected #ParkAndRideIcon {
  background-image: url("../Shared/Images/BlueCar.png");
}
#RideWithOptionsHeader {
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 9px;
}
.Selected .RideWithOptionsArrow,
.Selected .RideWithOptionsInnerArrow {
  color: transparent;
  height: 0;
  position: absolute;
  width: 0;
}
.Selected .RideWithOptionsArrow {
  border-top: 11px solid #2972e1;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  left: -moz-calc(((50%) - (11px)));
  left: -webkit-calc(((50%) - (11px)));
  left: -o-calc(((50%) - (11px)));
  left: calc(((50%) - (11px)));
}
.Selected .RideWithOptionsInnerArrow {
  border-top: 9px solid white;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  left: -moz-calc(((50%) - (9px)));
  left: -webkit-calc(((50%) - (9px)));
  left: -o-calc(((50%) - (9px)));
  left: calc(((50%) - (9px)));
}
#RideWithOptionsButtonsText {
  display: table-row;
  -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%;
}
.RideWithOptionsButtonTextWrapper {
  display: table-cell;
}
.RideWithOptionsButtonText {
  color: #777777;
  font-weight: bold;
  padding-top: 8px;
  text-align: center;
}
.RideWithOptionsButtonText.Selected {
  color: #2972e1;
}
/*#region Parking options buttons*/

#ParkingInput {
  margin-top: 10px;
}
/*#endregion Parking options buttons*/

/*#region Bike options buttons*/

#BikeInput {
  margin-top: 10px;
}
.ChoiceBikeLocation,
#BikeLocationTitle {
  padding-bottom: 5px;
  padding-top: 5px;
}
.DistanceDropDownList {
  width: 82px;
}
div.DistanceDropDownListWrapper span.k-widget span.k-dropdown-wrap {
  height: 38px;
  text-align: center;
}
div.DistanceDropDownListWrapper span.k-widget span.k-dropdown-wrap span.k-input {
  font-size: 13px;
  font-weight: bold;
  padding-top: 7px;
}
div.DistanceDropDownListWrapper span.k-widget span.k-dropdown-wrap span.k-select span.k-icon {
  background-image: url("../Shared/Images/ArrowDown.png");
  background-position: 0px 0px;
  -moz-background-size: 16px 16px;
  -o-background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  background-size: 16px 16px;
  margin-top: 12px;
}
/*#endregion Bike options buttons*/

#ParkAndRideArrivalDepartureToggle,
#BikeAndRideArrivalDepartureToggle {
  margin-top: 5px;
}
.BikeInputIcon {
  display: none;
}
#BikeLocationInput .gh-LocationInputAutoComplete {
  padding-left: 10px;
  width: -moz-calc(((100%) - (35px)));
  width: -webkit-calc(((100%) - (35px)));
  width: -o-calc(((100%) - (35px)));
  width: calc(((100%) - (35px)));
}
/*endregion RideWithOptionsSection*/

