/* 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 */
.PredictedTimeIndicator {
  display: table-cell;
  vertical-align: top;
}
.PredictedTimeIndicator.EmptyPredictedTimeIndicator {
  width: 10px;
  height: 10px;
}
.PredictedTimeIndicatorImage {
  background-image: url("../Shared/Images/PredictedTimeIndicator.png");
  background-repeat: no-repeat;
  -moz-background-size: 10px 10px;
  -o-background-size: 10px 10px;
  -webkit-background-size: 10px 10px;
  background-size: 10px 10px;
  display: inline-block;
  height: 10px;
  margin-top: 2px;
  width: 10px;
}
.PredictedTimeIndicatorLegend {
  background-image: url("../Shared/Images/PredictedTimeIndicator.png");
  background-repeat: no-repeat;
  -moz-background-size: 10px 10px;
  -o-background-size: 10px 10px;
  -webkit-background-size: 10px 10px;
  background-size: 10px 10px;
  display: inline-block;
  height: 10px;
  margin-right: 2px;
  margin-top: 2px;
  width: 10px;
}
