/* 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 */
/* Space for scroll */
.Step {
  margin-bottom: 5px;
}
.Steps {
  font-size: 12px;
  list-style: none;
  margin: 0;
  overflow: auto;
  padding: 0;
  position: relative;
  text-align: left;
}
/*#region travel plan header/footer */

.TravelPlanHeader {
  margin-bottom: 10px;
  font-weight: normal;
}
.TravelPlanHeaderContent {
  width: 100%;
}
.TravelPlanStepDate {
  color: #5b5a5a;
  font-size: 16px;
  text-align: right;
}
.TravelPlanHeaderDurationContent {
  width: auto;
}
.TravelPlanDuration {
  display: block;
  font-size: 18px;
}
.TravelPlanWalkingDuration {
  display: block;
  font-size: 14px;
}
.TravelPlanHeaderActions {
  text-align: right;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  width: 90px;
}
.TravelPlanMapButton,
.TravelPlanEmailButton {
  padding: 7px;
  width: 20px;
}
.TravelPlanMapButton {
  background-image: url("../Shared/Images/ViewInMap.png");
  -moz-background-size: 24px 24px;
  -o-background-size: 24px 24px;
  -webkit-background-size: 24px 24px;
  background-size: 24px 24px;
}
.TravelPlanEmailButton {
  background-image: url("../Shared/Images/Email.png");
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
}
/*#endregion travel plan header/footer */

/*#region First column */

.RouteIdentifier {
  color: #a5a28f;
  left: 0;
  padding-left: 11px;
  position: absolute;
  text-align: center;
  top: 28px;
  width: 55px;
}
.RouteStepTypeImage {
  padding-left: 23px;
}
.StepFirstColumn {
  display: inline-block;
  margin-top: 5px;
  margin-left: 5px;
  position: relative;
  vertical-align: top;
  width: 55px;
}
.StepStartTime {
  display: inline-block;
  font-weight: bold;
  height: 25px;
  left: 0;
  position: absolute;
  text-align: right;
  top: 0;
  vertical-align: top;
  width: 100%;
}
.StepStartTimeAndType {
  height: 100%;
}
.StepTypeAndRouteIdentifier {
  bottom: 0;
  position: absolute;
  top: 25px;
  width: 55px;
}
.StepTypeAndRouteIdentifierWrapper {
  bottom: 0;
  height: 60px;
  left: 0;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55px;
}
.StepTypeImage {
  padding-left: 23px;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*#endregion First column */

/*#region Second column */

.StepLine {
  border-right-style: solid;
  border-right-width: 4px;
  bottom: 0;
  left: -10px;
  margin: 0;
  position: absolute;
  top: 33px;
  width: 20px;
  margin-top: -8px;
  margin-bottom: -10px;
}
.StepLine.Walk {
  border-right-style: dotted;
}
.StepSecondColumn {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  position: relative;
  vertical-align: top;
  width: 25px;
}
.StepLocationImageWrapper {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  height: 25px;
  left: 0;
  margin-bottom: 8px;
  position: absolute;
  top: 0;
  width: 25px;
}
.StepLocationImage {
  bottom: 0;
  left: 3px;
  position: absolute;
  top: 3px;
}
/*#endregion Second column */

/*#region Third column */

.StepMap {
  display: none;
  height: 200px;
  width: 200px;
}
.NoteSection {
  vertical-align: top;
  cursor: pointer;
  cursor: hand;
  width: 28px;
  display: block;
}
.ShowStepInstructionsButton {
  padding: 0 10px 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;
  vertical-align: top;
}
.ExpandInstructionsIcon,
.CollapseInstructionsIcon {
  background-repeat: no-repeat;
  -moz-background-size: 12px 12px;
  -o-background-size: 12px 12px;
  -webkit-background-size: 12px 12px;
  background-size: 12px 12px;
  display: inline-block;
  height: 12px;
  vertical-align: middle;
  width: 12px;
}
.ExpandInstructionsIcon {
  background-image: url("../Shared/Images/Expand.png");
}
.CollapseInstructionsIcon {
  background-image: url("../Shared/Images/Collapse.png");
}
.StepDescription {
  vertical-align: top;
}
.StepInstructionsWrapper {
  vertical-align: top;
}
.StepInstructions {
  display: inline-block;
  padding-top: 10px;
  font-weight: normal;
  width: 100%;
}
.StepLocation {
  font-weight: bold;
  min-height: 25px;
  padding-bottom: 10px;
  vertical-align: top;
  width: 100%;
}
.StepSummary {
  width: 100%;
  font-weight: normal;
}
.StepSummaryClickable {
  cursor: pointer;
  cursor: hand;
}
.StepThirdColumn {
  width: -moz-calc(((100%) - 105px));
  width: -webkit-calc(((100%) - 105px));
  width: -o-calc(((100%) - 105px));
  width: calc(((100%) - 105px));
  display: inline-block;
  margin-top: 5px;
  min-height: 75px;
  padding: 0;
  position: relative;
  vertical-align: top;
}
.TravelPlanRouteTimetableLinkContainer {
  display: inline-block;
  padding-right: 10px;
}
.Link.TravelPlanStopTimetableLink,
.Link.TravelPlanRouteTimetableLink,
.Link.TravelPlanStepMapLink {
  font-size: 11px;
  font-weight: normal;
  margin-top: 7px;
}
/*#endregion Third column */

/*#region step summary/detail */

.StepSummaryOnRouteArrival,
.StepDetailOnRouteNbStations,
.StepSummaryOnRouteSameVehicle {
  display: block;
}
.StepSummaryOnRouteArrival {
  margin-top: 4px;
}
.StepDetailOnRouteStopPosition {
  margin-bottom: 4px;
  display: block;
}
.StepDetailWalk,
.StepDetailCar,
.StepDetailBike {
  border-bottom: 1px solid #e0deda;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  width: 100%;
}
.StepDetailWalk:last-child,
.StepDetailCar:last-child,
.StepDetailBike:last-child {
  border: 0;
}
.StepDetailWalkImage,
.StepDetailCarImage,
.StepDetailBikeImage {
  height: 20px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}
.StepDetailWalkText,
.StepDetailCarText,
.StepDetailBikeText {
  display: block;
  margin-bottom: 5px;
  margin-left: 30px;
  margin-top: 5px;
}
.TravelPlanReturnTravel {
  font-weight: normal;
  margin-left: 10px;
  margin-top: 10px;
}
.TravelPlanReturnTravelLinkParking {
  border-bottom: 1px solid #bfb8ac;
  color: #2972e1;
  cursor: pointer;
  cursor: hand;
  display: inline-block;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/*#endregion step summary/detail */

@media screen and (max-width: 800px) {
  .TravelPlanMapButton {
    display: inline-block;
  }
  .TravelPlanPrintButton {
    display: none;
  }
  .TravelPlanStepMapLinkContainer {
    display: inline-block;
  }
}
@media screen and (min-width: 801px) {
  .TravelPlanMapButton {
    display: none;
  }
  .TravelPlanPrintButton {
    display: inline-block;
  }
  .TravelPlanEmailButton {
    margin-right: 5px;
  }
  .TravelPlanStepMapLinkContainer {
    display: none;
  }
  .TravelPlanHeader,
  .TravelPlanFooter {
    margin-left: 10px;
    margin-right: 10px;
  }
  .TravelPlanHeader,
  .TravelPlanFooter {
    margin-left: 10px;
    margin-right: 10px;
  }
}
