/* Text within the View Trips calendar is hard to see, changing color to black */
.calendar-day-wrapper .calendar-date-trip-wrapper .calendar-date-trip .calendar-date-trip-content {
  color: black;
}

/* Text within "OK" button in toast pop-up hard to see, changing color to SunVan Primary Blue */
.md-toast-content button#toast-button {
  color: #00315E;
}

/* Buttons with SunVan's secondary color have white text, failing contrast checker. Changed color to Black */
.md-raised.md-accent.md-button {
  color: black;
}

/* Start - Mobile List Trip View */
/* Concerns with end users being able to read text easily */

/* Changed text color to black in mobile single trip view */
/* Increased font-size */
.mobile-single-trip .map-address.ellipsis-text,
.mobile-single-trip .map-address.ellipsis-text md-icon,
.mobile-single-trip .time,
.mobile-single-trip .time md-icon {
  color: black;
  font-size: 1rem;
}

/* Lighter background for black text */
.mobile-single-trip .google-static-image-overlay {
  background: #dfe6e9;
}

/* Sched status abbr circle does not collide with trip's text in View Trips view on mobile screens below 500px */
@media only screen and (max-width: 500px) {
  .mobile-single-trip, .mobile-single-trip .google-static-image-overlay {
    height: 120px;
  }
}
/* End - Mobile List Trip View */

/* The down arrow is hard to see for language selection, changing to white */
.menu-section-languages span.md-select-icon {
  color: white;
}

/* Centering the images which are the onboarding backgrounds */
.first-onboarding-page, #onboarding_scroll_6 .box6 {
  background-position: center bottom;
}