/* 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 */
#TravelPlansResults {
  color: #5b5a5a;
  font-family: Arial, "Segoe UI", Verdana, Sans-Serif;
  font-size: 0;
  font-weight: bold;
  width: 100%;
}
#TravelPlansDetails {
  font-size: 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/*#region travel plan summary */

#TravelPlansSummaries {
  border-top: 1px solid #e0deda;
  margin: 1px;
}
.TravelPlanSummary {
  border-bottom: 1px solid #e0deda;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  cursor: hand;
  font-size: 12px;
  height: 53px;
  opacity: 1;
  overflow: hidden;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-top: 10px;
  /* hidden to visible transition */

  -webkit-transition: opacity 2s;
  -moz-transition: opacity 2s;
  -o-transition: opacity 2s;
  transition: opacity 2s;
  width: 100%;
}
.TravelPlanSummary.ActiveTravelPlanSummary {
  background-color: #edeae3;
  background-image: url("Images/ActiveTravelPlanIndicator.png");
  background-position: 10px center;
  background-repeat: no-repeat;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
  cursor: default;
}
.TravelPlanSummary.AdditionalTravelPlanSummary {
  opacity: 0;
}
.TravelPlanSummaryStartTime,
.TravelPlanSummaryEndTime {
  float: left;
  padding-top: 10px;
  vertical-align: middle;
  width: 64px;
}
.TravelPlanSummaryStartTime {
  padding-left: 10px;
}
.TravelPlanSummaryEndTime {
  text-align: right;
  padding-right: 10px;
}
.TravelPlanSummarySteps {
  float: left;
  width: -moz-calc(((100%) - (148px)));
  width: -webkit-calc(((100%) - (148px)));
  width: -o-calc(((100%) - (148px)));
  width: calc(((100%) - (148px)));
}
.TravelPlanSummaryStepsContent {
  font-size: 0;
  height: 32px;
}
/*#endregion travel plan summary */

/*#region travel plan summary step */

.TravelPlanSummaryStep {
  border-radius: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  height: 100%;
}
.TravelPlanSummaryStepWait {
  background-image: url('Images/WaitBackground.png');
}
.TravelPlanSummaryStepWalk {
  background-image: url('Images/WalkBackground.png');
}
.TvpSummaryStepTypeWalk {
  background-image: url('../Shared/Images/WhiteWalk.png');
  background-repeat: no-repeat;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
}
.TvpSummaryStepTypeCar {
  background-image: url('../Shared/Images/WhiteCar.png');
  background-repeat: no-repeat;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
}
.TvpSummaryStepTypeBike {
  background-image: url('../Shared/Images/WhiteBike.png');
  background-repeat: no-repeat;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
}
.TvpSummaryStepTypeRoute {
  background-repeat: no-repeat;
  -moz-background-size: 16px 16px;
  -o-background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  background-size: 16px 16px;
  min-width: 18px;
  width: 18px;
  line-height: 18px;
}
.TvpSummaryStepRoutePublicId {
  color: white;
  font-size: 12px;
  line-height: 18px;
}
/*#endregion travel plan summary step */

/*#region Earlier later buttons */

.EarlierLaterButton {
  background-color: #edeae3;
  border-radius: 3px;
  cursor: pointer;
  cursor: hand;
  font-size: 12px;
  height: 15px;
  padding: 3px;
  text-align: center;
  margin-left: 1px;
  margin-right: 1px;
}
.EarlierLaterButtonText {
  background-position: right 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;
  padding-right: 20px;
}
.EarlierLaterButton.Disabled {
  color: #9e9b96;
  cursor: default;
}
#EarlierButton,
#NoEarlierTravelPlansFoundText {
  margin-top: 1px;
  margin-bottom: 5px;
}
#EarlierButton .EarlierLaterButtonText {
  background-image: url('../Shared/Images/DarkGreyArrowUp.png');
}
#EarlierButton.Disabled .EarlierLaterButtonText {
  background-image: url('../Shared/Images/ArrowUp.png');
}
#LaterButton,
#NoLaterTravelPlansFoundText {
  margin-top: 5px;
  margin-bottom: 1px;
}
#LaterButton .EarlierLaterButtonText {
  background-image: url('../Shared/Images/DarkGreyArrowDown.png');
}
#LaterButton.Disabled .EarlierLaterButtonText {
  background-image: url('../Shared/Images/ArrowDown.png');
}
.EarlierLaterButton.RequestingTravelPlans {
  background-image: url('../Shared/Images/Loading.gif');
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: 64px 32px;
  -o-background-size: 64px 32px;
  -webkit-background-size: 64px 32px;
  background-size: 64px 32px;
  cursor: default;
}
#EarlierButton.RequestingTravelPlans .EarlierLaterButtonText,
#LaterButton.RequestingTravelPlans .EarlierLaterButtonText {
  background-image: none;
  font-size: 0;
  padding-right: 0;
}
#NoEarlierTravelPlansFoundText,
#NoLaterTravelPlansFoundText {
  background-color: #edeae3;
  border-radius: 3px;
  font-size: 12px;
  padding: 3px;
  text-align: center;
}
/*#endregion Earlier later buttons */

@media screen and (max-width: 800px) {
  #TravelPlansSummariesTimeline {
    max-height: 371px;
    overflow-y: auto;
  }
  #TravelPlansResults .ApplicationLeftPane {
    margin-top: 10px;
    width: 100%;
  }
  #TravelPlansResults .ApplicationRightPane {
    display: none;
    /* Hide the map on small devices. */
  
  }
}
@media screen and (min-width: 801px) {
  #TravelPlansSummariesTimeline {
    max-height: 371px;
    overflow-y: auto;
  }
  #TravelPlansResults .ApplicationLeftPane {
    padding-top: 15px;
    width: 350px;
  }
  #TravelPlansResults .ApplicationRightPane {
    position: relative;
    /*For Google Chrome*/
  
  }
  #TravelPlansResults .MapPlaceHolder {
    padding-left: 15px;
    padding-top: 15px;
  }
}
