/* COMMON */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  line-height: 1.3;
}
a {
  color: #22aaff;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a.button:hover {
  color: white;
  text-decoration: none;
}
html {
  height: 100%;
  width: 100%;
}
body {
  height: 100%;
  width: 100%;
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  color: #505050;
}
/*bootstrap bug*/
body.modal-open {
  padding-right: 0 !important;
}
/*bootstrap bug*/
img {
  vertical-align: middle;
}
textarea:focus,
input:focus,
select:focus {
  outline: 0;
}
.button {
  padding: 15px;
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 2px;
  margin-top: 20px;
  font-size: 16px;
  display: block;
  cursor: pointer;
}
.button:hover {
  background: #0785D3;
}
.errorInput {
  background-color: #ffeb7b !important;
}
.group:after {
  content: "";
  display: table;
  clear: both;
}
button::-moz-focus-inner {
  border: 0;
}
#map-canvas-wrapper, #map-canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute !important;
  top: 0px;
  left: 0px;
}
.ridecell-logo-bottom-left {
  display: none;
}
/* COMMON */
/* SWEET ALERT */
.sweet-overlay {
  z-index: 9998 !important;
}
.sweet-alert {
  z-index: 9999 !important;
  box-sizing: content-box !important;
}
.sweet-alert .icon {
  margin: 10px auto;
}
.sweet-alert h2 {
  font-size: 20px;
  font-family: helvetica, arial, sans-serif;
  margin: 10px 0;
}
.sweet-alert p {
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
}
.sweet-alert button {
  font-family: helvetica, arial, sans-serif;
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 2px !important;
  font-size: 15px !important;
  cursor: pointer;
  margin: 0px;
  margin-top: 10px;
}
.sweet-alert button.cancel,
.sweet-alert button.confirm {
  font-size: 15px !important;
}
/* SWEET ALERT */
/* MODERN BROWSER PROMPT*/
#modern-browser-overlay {
  padding: 25px;
  width: 550px;
  top: 30%;
}

#modern-browser-heading {
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 20px;
}

#modern-browser-text {
  margin-bottom: 10px;
}

.modern-browser-link {
  margin-right: 20px;
}

.modern-browser-link img {
  width: 50px;
  margin-right: 5px;
}
/* MODERN BROWSER PROMPT*/
/* LOADING SPINNER */
#loading-container {
  background: white;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -52px;
  z-index: 9999;
  display: none;
}
#loading-container img {
  width: 64px;
}
/* LOADING SPINNER */
/* LOADING BARS */
#fountainG {
  display: none;
  position: fixed;
  width: 320px;
  height: 39px;
  z-index: 3;
  top: 50%;
  margin-top: -20px;
  left: 50%;
  margin-left: -160px;
}
.fountainG {
  position: absolute;
  top: 0;
  background-color: #22AAFF;
  width: 39px;
  height: 39px;
  -webkit-animation-name: bounce_fountainG;
  -webkit-animation-duration: 1.3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
  -webkit-transform: scale(0.3);
  -webkit-border-radius: 26px;
  animation-name: bounce_fountainG;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-direction: linear;
  transform: scale(0.3);
  border-radius: 26px;
}
#fountainG_1 {
  left: 0;
  -webkit-animation-delay: 0.52s;
  animation-delay: 0.52s;
}
#fountainG_2 {
  left: 40px;
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}
#fountainG_3 {
  left: 80px;
  -webkit-animation-delay: 0.78s;
  animation-delay: 0.78s;
}
#fountainG_4 {
  left: 120px;
  -webkit-animation-delay: 0.91s;
  animation-delay: 0.91s;
}
#fountainG_5 {
  left: 160px;
  -webkit-animation-delay: 1.04s;
  animation-delay: 1.04s;
}
#fountainG_6 {
  left: 200px;
  -webkit-animation-delay: 1.17s;
  animation-delay: 1.17s;
}
#fountainG_7 {
  left: 240px;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
#fountainG_8 {
  left: 280px;
  -webkit-animation-delay: 1.43s;
  animation-delay: 1.43s;
}
@-webkit-keyframes bounce_fountainG {
  0% {
    -webkit-transform: scale(1);
    background-color: #22AAFF;
  }
  100% {
    -webkit-transform: scale(0.3);
    background-color: #FFFFFF;
  }
}
@keyframes bounce_fountainG {
  0% {
    transform: scale(1);
    background-color: #22AAFF;
  }
  100% {
    transform: scale(0.3);
    background-color: #FFFFFF;
  }
}
/* LOADING BARS */
/* NAV */
.nav {
  padding: 15px;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 7;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-bottom: 1px solid #dcdcdc;
}
.request-nav {
  position: relative !important;
  width: auto !important;
  z-index: 6;
}
.nav .left,
.nav .right {
  width: 20%;
  font-size: 16px;
}
.nav .right {
  text-align: right;
}
.nav div {
  display: inline-block;
}
.nav .title {
  text-align: center;
  width: 60%;
  font-weight: bold;
}
.nav .title img {
  height: 25px;
}
#back-button {
  display: none;
}
#cancel-button {
  color: #ff5c5c;
  display: none;
  position: relative;
  top: 2px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
#nav-back {
  background: url('../../images/rider_ui/back_button_arrow.png') left center no-repeat;
  background-size: 14px;
  padding-left: 14px;
}
/* NAV */
/* NESTED NAV */
.offset-nav {
  display: none;
  margin-left: 500px;
}
/* NESTED NAV */
/* MENU */
#menu-container {
  display: none;
}
.menu {
  position: fixed;
  width: 100%;
  top: 55px;
  background: white;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  display: block;
  border-right: 0px;
  max-height: 290px;
  overflow-y: scroll;
}
.menu-option {
  color: #424242;
  display: block;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  z-index: 9999;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 20px 20px 60px;
  cursor: pointer;
}
.menu-option-selected {
  background-color: #dcdcdc !important;
}
#menu-icon, #menu-icon-bottom-settings {
  background: url('../../images/rider_ui/settings-mobile.png');
  cursor: pointer;
  height: 25px;
  width: 25px;
  background-size: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  vertical-align: middle;
}
#menu-icon-bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 7;
  background: white;
  padding: 15px;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  display: none;
}
#menu-icon-bottom-close {
  height: 25px;
  display: none;
}
#menu-close {
  display: none;
  cursor: pointer;
  width: 25px;
}
.menu-label {
  display: none;
}
#menu-home {
    background: url('../../images/rider_ui/menu-shuttle.png')  left center no-repeat;
    background-size: 23px;
    background-position: 20px;
}
#menu-scheduled {
    background: url('../../images/rider_ui/calendar.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-dispatch {
    background: url('../../images/rider_ui/menu-phone.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-payment {
    background: url('../../images/rider_ui/menu-wallet.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-trip-planner {
    background: url('../../images/rider_ui/menu-trip-planner.png') left center no-repeat;
    background-size: 23px;
    background-position: 20px;
}
#menu-feedback {
    background: url('../../images/rider_ui/menu-feedback.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-promos {
    background: url('../../images/rider_ui/menu-promos.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-faq {
    background: url('../../images/rider_ui/menu-faq.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-profile {
    background: url('../../images/rider_ui/menu-profile.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-bustracking {
    background: url('../../images/rider_ui/menu-bustracking.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
#menu-logout {
    background: url('../../images/rider_ui/menu-logout.png') left center no-repeat;
    background-size: 20px;
    background-position: 20px;
}
/* MENU */
/* SERVICE HOURS */
.service-times {
  font-size: 22px;
  text-align: center;
}
/* SERVICE HOURS */
/* EMAIL VERIFICATION */
#email-verification-screen,
#service-hours-screen {
  display: none;
  padding: 20px 10px;
  position: relative;
  z-index: 2;
  background: white;
  height: 100%;
  padding-top: 56px;
}
.verify-code-email {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: normal;
}
.verify-code-label {
  margin-top: 40px;
}
#verify-email {
  border: 1px solid #dcdcdc;
  background: url("../../images/rider_ui/email.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
}
#verify-code {
  border: 1px solid #dcdcdc;
  background: url("../../images/rider_ui/password.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
}
/* EMAIL VERIFICATION */
/* REQUEST */
#request-screen {
  display: none;
}
#outage-message {
  position: relative;
  z-index: 2;
  background: #fff722;
  background: rgba(255, 247, 34, 0.9);
  padding: 10px;
  color: #424242;
  font-weight: bold;
  display: none;
}
.request-input {
  display: block;
  width: 100%;
  padding: 15px 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  box-shadow: none;
  height: 50px;
  border: 0px;
  font-size: 16px;
  font-family: helvetica, arial, sans-serif;
  color: #505050;
  position: relative;
  z-index: 2;
}
.request-from-to-container {
  position: relative;
}
#request-from {
  background: url("../../images/rider_ui/A_circle.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
}
.clear-from-to {
  background: url("../../images/rider_ui/cross.png") center center no-repeat;
  background-size: 10px;
  position: absolute;
  z-index: 3;
  right: 0px;
  top: 0px;
  padding: 24px 20px 24px 20px;
  display: none;
  cursor: pointer;
}
#request-to {
  background: url("../../images/rider_ui/B_circle.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
}
.request-location-field-flair {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 15px;
  z-index: 3;
  font-family: helvetica, arial, sans-serif;
  color: #505050;
  font-weight: bolder;
}
.search-loading {
  background: url("../../images/loading-circle.gif") #ffffff left center no-repeat !important;
  background-size: 21px !important;
  background-position: 10px !important;
}
#request-num-passengers, #request-num-passengers-payment {
  background: url("../../images/rider_ui/name.png") #ffffff left center no-repeat;
  background-size: 22px;
  background-position: 9px;
  padding: 16px 2px 15px 40px;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  vertical-align: top;
  text-transform: capitalize;
}
#request-payment-mode{
  background: url("../../images/rider_ui/menu-wallet.png") #ffffff left center no-repeat;
  background-size: 22px;
  background-position: 9px;
  padding: 16px 2px 15px 40px;
  border-bottom: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  vertical-align: top;
  text-transform: capitalize;
}
#request-special {
  background: url("../../images/rider_ui/special-request.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding: 16px 2px 15px 40px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  vertical-align: top;
  cursor: pointer;
  display: none;
}
#request-time {
  background: url("../../images/rider_ui/calendar.png") #ffffff left center no-repeat;
  background-size: 17px;
  background-position: 12px;
  padding-left: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #dcdcdc;
  border-top: none;
  cursor: pointer;
  display: none;
}
#request-rider-name {
  background: url("../../images/rider_ui/name.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
}
#request-phone-number {
  background: url("../../images/rider_ui/phone.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
}
#request-comments {
  background: url("../../images/rider_ui/comments.png") #ffffff left center no-repeat;
  background-size: 21px;
  background-position: 10px;
  padding-left: 40px;
  border-bottom: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
}
.button-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  border-bottom: 1px solid #dcdcdc;
}
#request-button {
  margin-top: 5px;
}
#eta-info {
  font-size: 12px;
  text-align: center;
  color: gray;
}
.arrow-right {
  width: 8px;
  position: absolute;
  right: 10px;
  top: 18px;
}
.overlay-container {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  display: none;
}
.overlay-container-default-hide {
    display: none;
}
.bg-cover, .bg-cover-disabled {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
}
.overlay {
  width: 300px;
  margin: 0px auto;
  background: white;
  position: relative;
  z-index: 11;
  top: 50px;
}
.overlay-title {
  font-weight: bold;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid silver;
  position: relative;
}
.special-request-select {
  cursor: pointer;
  padding: 20px 10px;
  border-bottom: 1px solid #dcdcdc;
  display: none;
}
.special-request-select:hover {
  background: #F5F5F5;
}
.special-request-select:last-child {
  border-bottom: none;
}
#bike-select {
  background: url('../../images/rider_ui/bike.png') left center no-repeat;
  background-size: 18px;
  background-position: 10px;
  padding-left: 40px;
}
#wheelchair-select {
  background: url('../../images/rider_ui/Wheelchair.png') left center no-repeat;
  background-size: 14px;
  background-position: 10px;
  padding-left: 40px;
}
#dedicated-ride-select {
  background: url('../../images/rider_ui/dedicated.png') left center no-repeat;
  background-size: 18px;
  background-position: 10px;
  padding-left: 40px;
}
.overlay-close {
  height: 50px;
  width: 44px;
  background: url("../../images/rider_ui/cross.png") center center no-repeat;
  background-size: 12px;
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.overlay-content {
  padding: 15px;
}
.overlay .select-container {
  margin-bottom: 20px;
}
.overlay select {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 0px;
  box-shadow: none;
  height: 50px;
}
#recurring-table label {
  text-transform: uppercase;
  color: #969696;
  font-size: 12px;
  cursor: pointer;
  margin-right: 20px;
}
.nearby-stop-name {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
  font-weight: bold;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.nearby-stop-distance {
  font-weight:normal;
  color:#969696;
}
.nearby-no-result {
  padding: 20px 10px;
  text-align: center;
}
.nearby-from {
  background: url("../../images/rider_ui/nearby_pickup.png") left center no-repeat;
  background-size: 25px;
  background-position: 10px;
  padding-left: 45px;
}
.nearby-to {
  background: url("../../images/rider_ui/nearby_dropoff.png") left center no-repeat;
  background-size: 25px;
  background-position: 10px;
  padding-left: 45px;
}
.nearby-info {
  font-size: 12px;
  color: #969696;
  padding: 10px;
  text-align: center;
}
#directions-panel {
  display: none;
  position: absolute;
  z-index: 4;
  top: 150px;
  right: 12px;
  max-width: 200px;
  background: white;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  padding: 15px;
  font-size: 12px;
}
.directions-stop {
  font-weight: bold;
  padding-left: 3px;
}
.directions-walk-line {
  width: 4px;
  height: 70px;
  border-left: 4px dotted #2EB82E;
  margin-left: 8px;
}
.directions-drive-line {
  width: 4px;
  height: 100px;
  border-left: 4px solid #2EB82E;
  margin-left: 8px;
}
.directions-stop-icon {
  width: 20px;
}
.directions-vehicle-icon {
  width: 22px;
  margin-bottom: 4px;
}
.directions-walk-icon {
  width: 10px;
  margin-bottom: 4px;
}
/* REQUEST */
/* SEARCH */
.search-results,
#previous-from-locations,
#previous-to-locations {
  position: absolute;
  z-index: 5;
  background: white;
  width: 100%;
  box-shadow: 0px 1px 2px silver;
  display: none;
}
.search-result-row {
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
  font-weight: bold;
}
.no-search-result-row {
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
  font-weight: bold;
}
.detailed-address {
  color: gray;
  font-size: 12px;
  font-weight: normal;
}
/* SEARCH */
/* TRACK */
.spacer-block {
  padding-top: 56px;
}
#track-screen {
  display: none;
}
.payment-notification {
  height: 38px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  text-align: center;
  display: none;
}
.payment-notification-container {
  height: 100%;
  font-size: 12px;
}
.payment-notification-container span {
  line-height: 38px;
}

.offset-track {
  margin-left: 500px;
}
.request-status {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #dcdcdc;
}
#driver-car {
  display: none;
}
#driver-car-container {
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #dcdcdc;
}
#driver-car-container > div {
  margin-right: 20px;
  display: inline-block;
  vertical-align: top;
}
#driver-car-container > div:last-child {
  margin-right: 0px;
}
.driver-car-image {
  height: 100px;
  border-radius: 200px;
  border: 5px solid rgba(255, 255, 255, 0.5);
}
#driver-phone {
  color: #22aaff;
}
#driver-name,
#car-make {
  font-weight: bold;
  width: 100px;
  font-size: 12px;
}
.drive-stop-legend {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  display: none;
}
.driver-stop-marker {
  width: 15px;
  vertical-align: sub;
}
/* TRACK */
/* TRACK ONE */
.map-button-container {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  width: 100%;
  height: 80px;
  text-align: center;
}

.map-button-container #cancel-button {
  background: #ff5c5c;
  color: white;
  display: inline-block;
  padding: 15px;
  width: 200px;
}

.map-button-container #track-request-new-ride-button {
  background: rgb(34, 170, 255);
  color: white;
  display: inline-block;
  padding: 15px;
  position: relative;
  top: 2px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 200px;
}
/* TRACK MULTIPLE */
#track-mode-link {
  display: none;
  background: url('../../images/rider_ui/forward_button_arrow.png') right center no-repeat;
  background-size: 14px;
  padding-right: 14px;
}
#sidebar {
  display: none;
  background: white;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  width: 500px;
  top: 56px;
  bottom: 0;
  z-index: 7;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  border-top-style: none;
}
.sidebar-content {
  padding: 20px;
}
.sidebar-list {
  list-style-type: none;
}
.sidebar-list > li > a {
  display: block;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 15px;
  position: relative;
  font-weight: bold;
}
.sidebar-list > li > a.selected, .sidebar-list > li > a:hover {
  background-color: #F5F5F5 !important;
}
.sidebar-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.sidebar-header {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 15px;
  padding-bottom: 15px;
}
/* LOGIN AND SIGNUP */
#login-screen {
  padding: 70px 10px 20px;
}
.login-page-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
.login-input .label, .input-label {
  color: #969696;
  font-size: 12px;
  text-transform: uppercase;
}
.login-input {
  margin-bottom: 20px;
}
.login-input input {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  font-family: helvetica, arial, sans-serif;
  -webkit-appearance: none;
  border: 1px solid #dcdcdc;
  border-radius: 0px;
  box-shadow: none;
  height: 50px;
}
.forgot-password {
  color: #22aaff;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  cursor: pointer;
}
/* LOGIN AND  SIGNUP */
p.error {
    font-size: 16px;
    color: red;
    margin-bottom: 10px;
}
/* FEEDBACK AND RATING */
#feedback-screen {
  display: none;
  z-index: 5;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 10px;
  padding-top: 80px;
}
.rating-title {
  font-size: 20px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.feedback-title,
#submit-feedback-button {
  margin-top: 40px;
}
#rating-star-container {
  text-align: center;
}
.rating-star {
  margin-right: 5px;
  width: 35px;
  cursor: pointer;
}
#feedback-input {
  border: 1px solid #dcdcdc;
  height: auto;
  padding: 15px;
}
/* FEEDBACK AND RATING */
/* REFERRALS */
#referral-screen {
  display: none;
  z-index: 4;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 10px;
  padding-top: 80px;
  color: white;
}
.referral-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.referral-info {
  padding: 10px;
}
.referral-button {
  height: auto;
  padding: 15px;
}
/* REFERRALS */
/* PROFILE */
#profile-screen,
#payment-screen,
#trip-planner-screen,
#generic-feedback-screen,
#referral-screen,
#faq-screen,
#appdl-screen,
#promos-screen {
  padding: 70px 10px 20px;
}

.appdl-button {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: block;
}

.appdl-button > img {
  max-width: 300px;
}

.label {
  display: block;
  text-align: left;
  padding: 0;
  font-weight: normal;
  line-height: 1.3;
}
.notification-pref .label {
  color: #969696;
  font-size: 12px;
}
.notification-pref .radio {
  margin-right: 15px;
  cursor: pointer;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
}
input {
  color: initial;
}
.notification-pref input[type=radio] {
  margin-left: 0;
  position: static;
  margin-top: 0;
}

.card {
  background: white;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  max-width: 200px;
  min-height: 122px;
  padding: 20px;
  box-shadow: 0px 1px 1px #dcdcdc;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
.card-type {
  font-size: 18px;
  font-weight: bold;
  color: gray;
}
.card-last-four-digits {
  text-align: right;
  margin-top: 35px;
  font-weight: bold;
}
#card-on-account, #add-card-container {
  display: none;
  margin-bottom: 40px;
}

#card-number, #card-expiry, #card-cardCvc, #card-postalCode {
  padding: 14px 15px 10px 15px;
  border: 1px solid #dcdcdc;
  height: 50px;
}

.card-cvv-container{
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
  width: 120px;
}
.card-delete {
  height: 44px;
  width: 44px;
  background: url("../../images/rider_ui/cross.png") center center no-repeat;
  background-size: 12px;
  position: absolute;
  right: -5px;
  top: -5px;
  cursor: pointer;
}
/* PROFILE */
/* SCHEDULED RIDES */
#upcoming-scheduled-screen {
  padding: 56px 10px 20px;
}
#no-upcoming {
  margin-top: 20px;
  text-align: center;
  display: none;
}
#no-upcoming-text {
  font-size: 16px;
  padding: 0px 30px;
  color: gray;
}
.ride-row {
  padding: 25px 10px;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}
.ride-time {
  color: #969696;
  font-size: 14px;
  margin-bottom: 5px;
  float: left;
}
.ride-cancel {
  color: #ff5c5c;
  cursor: pointer;
  float: right;
}
.ride-details {
  font-size: 16px;
}
#now-select {
  background: url('../../images/rider_ui/clock.png') left center no-repeat;
  background-size: 15px;
  background-position: 12px;
  padding-left: 40px;
}
#later-select {
  background: url('../../images/rider_ui/calendar.png') left center no-repeat;
  background-size: 15px;
  background-position: 12px;
  padding-left: 40px;
}
#recurring-select {
  background: url('../../images/rider_ui/recurring.png') left center no-repeat;
  background-size: 15px;
  background-position: 12px;
  padding-left: 40px;
}
/* SCHEDULED RIDES */
/* FAQ */
.faq-question {
  font-weight: bold;
}
.faq-answer {
  margin-bottom: 30px;
}
.faq-answer:last-child {
  margin-bottom: 0px;
}
.feedback-faq-link {
  text-align: center;
  margin-top: 15px;
  display: block;
}
/* FAQ */
/* PROMOS */
.promo-balance-title {
  text-align: center;
}
.promo-balance-amount {
  text-align: center;
  font-size: 50px;
  margin-bottom: 40px;
}
.promo-current-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
#credits-table {
  width: 100%;
}
#credits-table th {
  padding: 5px 0px;
}
#credits-table td {
  vertical-align: top;
  padding: 10px 0px;
}
#credits-table tr {
  border-bottom: 1px solid #dcdcdc;
}
/* PROMOS */
/* TRANSFERS */
.modal {
  padding-right: 0 !important;
}
.transfer-modal .container {
  max-width: 100%;
}
.modal .transfer-modal.modal-dialog {
  transform: translate(0, 50%) !important;
  -ms-transform: translate(0, 50%) !important;
  -webkit-transform: translate(0, 50%) !important;
}
.modal .transfer-modal {
  width: auto;
  height: auto;
  border: none;
  box-shadow: none;
  border-radius: 5px;
}
.modal .transfer-modal .header-text {
  margin-top: 15px;
  margin-bottom: 20px;
}
.transfer-modal .header-text {
  color: #575757;
  font-size: 18px;
  padding-right: 0;
  margin-top: 10px;
}
.transfer-modal .dotted-line {
  padding-left: 0;
  padding-right: 0;
  margin-top: -1.75%;
  margin-left: 12.5%;
  height: 0;
}
.transfer-modal .body-text {
  color: #797979;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}
.transfer-modal button {
  width: 100%;
  height: 40px;
  background-color: #28b80d;
  border: none;
  font-weight: bold;
  font-size: 15px;
}
.transfer-modal .transfer-payment-text-container {
  height: 29px;
  display: table;
}
.transfer-modal .transfer-payment-text-container span {
  text-align: initial;
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}
.transfer-modal .transfer-updates-text-container {
  height: 29px;
  display: table;
}
.transfer-modal .transfer-updates-text-container span {
  text-align: initial;
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}
.transfer-modal .transfer-location-text-container {
  height: 40px;
  display: table;
}
.transfer-modal .transfer-location-text-container span {
  text-align: initial;
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}
.transfer-modal .body-text-paragraph {
  margin-bottom: 20px;
}
.transfer-modal .header {
  margin-top: 15px;
  margin-bottom: 20px;
  min-width: 230px;
}
.transfer-modal .small-transfer-pin {
  width: 29px;
  height: 40px;
}
.transfer-modal .small-pin {
  width: 29px;
  height: 29px;
}
.transfer-modal .pin {
  width: 40px;
  height: 54px;
}
.transfer-modal .checkmark {
  width: 22.2px;
  height: 22.2px;
  position: absolute;
  left: 53%;
  top: -10%;
}
.transfer-modal hr {
  border: dashed 1px #979797;
  width: 100%;
  margin-top: 0;
}
/* TRANSFERS */

/* SERVICE REGION SELECTION */
#service-selection-overlay .overlay-title-description {
  font-weight: normal;
  padding: 5px;
}
.selectable-service {
  cursor: pointer;
  padding: 20px 0 20px 40px;
  border-bottom: 1px solid #dcdcdc;
}
.selectable-service.selected {
  background: url("../../images/rider_ui/checkmark.png") no-repeat 10px;
}
#service-select-container {
  background: url("../../images/rider_ui/service_area_icon.png") #ffffff no-repeat 10px;
  border: 1px solid #dcdcdc;
  height: 50px;
  padding: 15px 40px;
  cursor: pointer;
}
/* SERVICE REGION SELECTION */

/***** TABLET CSS ****/
@media (min-device-width: 768px)
  and (max-device-width: 1024px) {
  .modal .transfer-modal {
    width: 478px;
  }
}
/***** TABLET CSS ****/

/***** <= iPhone 5 CSS ****/
@media (max-width: 360px) {
  .transfer-modal .header-text {
    font-size: 16px;
  }
  .transfer-modal .body-text {
    font-size: 12px;
  }
  .transfer-modal .body-text-paragraph  {
    margin-bottom: 25px;
  }
}
/***** <= iPhone 5 CSS ****/

/***** DESKTOP CSS ******/
@media (min-width: 1024px) {
  #login-screen,
  #email-verification-screen,
  #feedback-screen,
  #profile-screen,
  #service-hours-screen,
  #upcoming-scheduled-screen,
  #payment-screen,
  #appdl-screen,
  #trip-planner-screen,
  #referral-screen,
  #generic-feedback-screen,
  #promos-screen,
  #faq-screen {
    border-radius: 2px;
    border: 1px solid #dcdcdc;
    padding: 20px;
    width: 500px;
    margin: 0px auto 40px;
    position: relative;
    top: 100px;
    height: auto;
  }
  #request-screen {
    position: absolute;
    z-index: 4;
    top: 108px;
    left: 40px;
    background: white;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    border: 1px solid #dcdcdc;
    padding: 20px;
    width: 500px;
  }
  .request-input:hover {
    background-color: #F5F5F5 !important;
  }
  #request-from {
    border: 1px solid #dcdcdc;
    cursor: text;
  }
  #request-to, #request-comments, #request-phone-number, #request-rider-name {
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    cursor: text;
  }
  #request-num-passengers, #request-num-passengers-payment {
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    cursor: pointer;
  }
  .search-results {
    width: 458px;
  }
  .search-result-row:hover {
    background: #22aaff;
    color: white;
    cursor: pointer;
  }
  .search-result-row:hover .detailed-address{
    color: white;
  }
  .button-container {
    padding: 10px 0px 0px;
    background: transparent;
    border-bottom: none;
  }
  .menu {
    width: 400px;
    right: 0px;
    top: 56px;
    margin-left: -200px;
    border: 1px solid #dcdcdc;
    max-height: 550px;
  }
  .menu-option:last-child {
    border-bottom: none;
  }
  .menu-option:hover {
    background-color: #dcdcdc !important;
  }
  .ridecell-logo-bottom-left {
    position: absolute;
    bottom: 5px;
    left: 75px;
    z-index: 3;
    display: block;
  }
  .ridecell-logo-bottom-left img {
    height: 15px;
  }
  .ride-row:last-child {
    border-bottom: none;
  }
  .nearby-stop-name:hover {
    background-color: #F5F5F5 !important;
  }
  #fountainG {
    position: absolute;
  }

  .modal .transfer-modal {
    width: 478px;
  }
  .payment-notification-container {
    font-size: 14px;
  }
}
/***** DESKTOP CSS ******/

#num-passengers-fare {
  padding-left: 20px;
}
