@charset "utf-8";

/* CSS Document */

body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    color: #444444;
    font-family: 'Mulish', sans-serif;
    background: #f4f5f9;
}

html {
    scroll-behavior: smooth;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    width: 100%;
}

section {
    overflow: hidden;
}

.form-control {
    padding: 10px;
}


/*button*/

a {
    color: #e50914;
}

a:hover {
    color: #e50914;
}


/*button end*/


/*header CSS*/

.header-wrapper {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background: #FFF;
    z-index: 999;
    position: relative;
    /*border-top: 3px solid #e40a15;
    border-bottom: 3px solid #0e8ab9;*/
    box-shadow: 0px 0px 7px #0000001a;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-text {
    margin: 0px 0px 0px 35px;
    display: inline-block;
    font-weight: 600;
}

.site-logo {
    position: relative;
    right: 427px;
}

.site-logo img {
    width: 135px;
}

.notifications {
    cursor: pointer;
    color: #444444;
    background: #dedede;
    width: 34px;
    height: 34px;
    border-radius: 50px;
    text-align: center;
    line-height: 34px;
    position: relative;
}

.notifications svg {
    font-size: 20px;
}

.notifications:hover {
    background: #cecece;
}

.notifications-box {
    position: absolute;
    width: 300px;
    z-index: 999;
    background: #FFF;
    right: 0px;
    display: none;
    border-radius: 10px;
    box-shadow: 0px 5px 20px #0000001a;
}

.notifications-box ul {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.notifications-box ul li {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
    list-style: none;
    text-align: left;
    border-bottom: 1px solid #ededed;
}

.notifications-box ul li a {
    display: block;
    width: 100%;
    margin: 0px;
    color: #444444;
    text-decoration: none;
    padding: 5px 15px;
    font-weight: bold;
    transition: all .2s ease;
}

.notifications-box ul li a:hover {
    background: #ededed;
}

.new-message {
    background: #ededed;
}

.push-nav-container {
    position: fixed;
    top: 12vh;
    overflow-x: scroll;
    min-height: 100vh;
    background: #f8f8f8;
    width: 360px;
    display: none;
    -webkit-animation: swing-in-left-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    animation: swing-in-left-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    box-shadow: 0px 0px 20px #0000001a;
}

@-webkit-keyframes swing-in-left-fwd {
    0% {
        -webkit-transform: rotateY(100deg);
        transform: rotateY(100deg);
        -webkit-transform-origin: left;
        transform-origin: left;
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        -webkit-transform-origin: left;
        transform-origin: left;
        opacity: 1;
    }
}

@keyframes swing-in-left-fwd {
    0% {
        -webkit-transform: rotateY(100deg);
        transform: rotateY(100deg);
        -webkit-transform-origin: left;
        transform-origin: left;
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        -webkit-transform-origin: left;
        transform-origin: left;
        opacity: 1;
    }
}

.push-nav {
    position: relative;
}

.push-nav ul {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.push-nav ul li {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 100%;
    border-bottom: 1px solid #dedede;
    box-shadow: 0px 1px 0px #FFF;
}

.push-nav ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 30px;
    color: #444444;
    text-decoration: none;
    font-weight: 600;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.push-nav ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #353535;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.push-nav ul li a:hover {
    color: white;
}

.push-nav ul li a:hover:before,
.push-nav ul li a:focus:before,
.push-nav ul li a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.push-nav ul li a i {
    font-size: 24px;
    margin: 0px 10px 0px;
}

.push-count {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 20px;
    text-align: center;
    line-height: 24px;
    color: #FFF;
    border-radius: 50%;
    background: #e50a15;
}

@media screen and (max-width: 992px) {
    .site-logo img {
        width: 173px;
    }
    .menu-text {
        display: none;
    }
    .site-logo {
        position: relative;
        right: 56px;
    }
}


/*end header CSS*/


/*main-wrapper*/

.main-wrapper {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    margin: 100px 0px;
}

.left-side-container {
    position: relative;
    width: 100%;
}

.card-box {
    position: relative;
    width: 100%;
    padding: 30px;
    background: #FFF;
    border-radius: 4px;
    box-shadow: 0px 0px 20px #0000001a;
    /* margin-left: 182px; */
}
@media (max-width: 1102px) {
    .card-box {
        margin: 7px 0px 0px 17px !important;
        width: 90%;
        padding: 20px; 
    }
}
.colorbox {
    position: relative;
    width: 100%;
    text-align: center;
}

.colorbox a {
    width: 100%;
    padding: 25px 15px;
    text-decoration: none;
    color: #FFF;
    display: block;
    height: 153px;
}

.colorbox i {
    font-size: 30px;
    margin: 0px 0px 10px;
}

.colorbox h3 {
    font-size: 40px;
    padding: 0px;
    margin: 0px 0px 5px;
    font-weight: 800;
}

.colorbox p {
    font-size: 18px;
    padding: 0px;
    margin: 0px;
}

.bg-blue {
    background: #686ddf;
    border-radius: 4px;
}

.bg-green {
    background: #1bcd73;
    color: #FFF;
    border-radius: 4px;
}

.bg-red {
    background: #e50f1a;
    color: #FFF;
    border-radius: 4px;
}

.bg-yellow {
    background: #f6e58d;
    border-radius: 4px;
    color: #444444;
}

.bg-yellow a {
    color: #444444;
}

@media screen and (max-width: 992px) {
    .colorbox-m3 {
        margin-bottom: 1.5rem !important;
    }
}

.web-title-1 {
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 15px;
}

.web-title-1 h4 {
    margin: 0px;
    padding: 0px;
    font-weight: 800;
}

.web-title-1 a {
    font-size: 13px;
    font-weight: 700;
}

.btn-light {
    border: 1px solid #cecece;
}

.btn-light:hover {
    border: 1px solid #cecece;
}

.schedule-list {
    position: relative;
    width: 100%;
}

.schedule-list ul {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.schedule-list ul {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.schedule-list ul li {
    background-color: #d0d0d0;
    margin-bottom: 10px;
    border-radius: 5px;
    list-style: none;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.schedule-list ul li:hover,
.schedule-list ul li:focus,
.schedule-list ul li:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.schedule-list ul li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    align-items: center;
    color: #444444;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.schedule-list ul li:nth-child(even) {
    background-color: #f7f7f7;
}

@media screen and (max-width: 992px) {
    .schedule-list ul li a {
        display: inline-block;
        width: 100%;
    }
}

.booking-headings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 15px;
}

.booking-headings h4 {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-weight: 700;
}

.booking-headings .edit-icon {
    display: block;
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #444;
    border: 0px;
}

.dropdown-menu {
    padding: 0px !important;
    font-size: 14px !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #444;
}

.modal-content {
    border: none !important;
}

.booking-received {
    position: revert!important;
}

.journeytype-head {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.journey-text {
    position: relative;
}

.journey-text h3 {
    position: relative;
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-weight: 700;
}

.booking-received .info-wrapper .route-wrapper {
    background: #EFEFEF;
    padding: 10px 15px;
    margin-bottom: 0;
    border-radius: 5px;
    margin-top: 0;
}

.booking-received .info-wrapper .route-wrapper span.text-center {
    display: block;
    margin-bottom: 5px;
}

.booking-received .info-wrapper .route-wrapper .col-md-6 p {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.booking-received .info-wrapper .route-wrapper .col-md-12 p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.booking-received .info-wrapper .route-wrapper .col-md-12 p strong {
    font-weight: 700 !important;
}

.booking-received .info-wrapper .route-wrapper .route-bar .route-circle {
    height: 15px;
    width: 15px;
    background: transparent;
    display: block;
    border-radius: 50%;
    margin-bottom: 14px;
    margin: 8px 0 10px;
}

.booking-received .info-wrapper .route-wrapper .route-bar .route-circle {
    position: relative;
}

.booking-received .info-wrapper .route-wrapper .route-bar .route-circle::after {
    content: "";
    position: absolute;
    height: 18px;
    width: 3px;
    top: 100%;
    left: 45%;
    background: #777;
}

.booking-received .info-wrapper .route-wrapper .route-bar .end::after {
    display: none;
}

.booking-received .info-wrapper .route-wrapper .route-bar .start {
    background: #16ce5f;
}

.booking-received .info-wrapper .route-wrapper .route-bar .via {
    background: #ffc100;
}

.booking-received .info-wrapper .route-wrapper .route-bar .end {
    background: #ff0c00;
}

.booking-received .info-wrapper .route-wrapper p {
    font-size: 14px;
    font-weight: 600;
}

.route-labels {
    display: flex;
    align-items: flex-end;
}

.route-labels p {
    margin-left: 16px;
}

.route-bar {
    margin-top: 10px;
}

.route-wrapper h3 {
    font-size: 24px;
}

.booking-received .info-wrapper .booking-info-wrap {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px 2px #DCDCDC;
}

.booking-received .info-wrapper .booking-info-wrap h5 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ADADAD;
}

.booking-received .info-wrapper .booking-info-wrap h5 span {
    font-size: 22px;
    font-weight: 900;
}

.booking-received .info-wrapper .booking-info-wrap .fleet-info p {
    font-weight: 800;
}

.booking-received .info-wrapper .booking-info-wrap .fleet-info p strong {
    font-weight: 700 !important;
    display: block;
}

.booking-received .info-wrapper .booking-info-wrap .qr-wrapper {
    border-bottom: 1px dashed #ADADAD;
    padding-bottom: 15px;
    margin: 0px 0 15px 0;
}

.booking-received .info-wrapper .booking-info-wrap .qr-wrapper img {
    width: 120px;
}

.booking-received .dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)!important;
    top: 44px !important;
    left: -157px !important;
}

.pay-method a {
    color: #fff;
}

.pay-method a:hover {
    color: #000;
}

.pay-method .btn {
    width: 100%;
}

.booking-received .links-wrapper {
    padding: 0 15px;
}

.fleet-info article p {
    font-weight: 400 !important;
    line-height: 16px;
    font-size: 15px;
}

.fleet-info {
    margin-bottom: 8px;
}

.fleet-info article {
    display: flex;
    justify-content: space-between;
}

.booking-card .modal-body {
    padding: 0;
}

.route-wrapper p img {
    width: 90px;
    float: right;
    margin-bottom: 8px;
}

.dark-route-wrapper {
    background: #444 !important;
    color: #fff;
    font-size: 15px;
}

.dark-route-wrapper .total article {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark-route-wrapper .total article h6,
.dark-route-wrapper .total article h3 {
    color: #fff;
    font-size: 15px;
}

.dark-route-wrapper h5 {
    color: #fff;
    font-size: 15px;
}

.totalfare {
    margin: 0px 0px 0px;
}

.dark-route-wrapper .totalfare h3 span {
    margin-right: 10px;
}

.dark-route-wrapper .total .btn-light {
    width: 100%;
    color: #040B2E;
}

.br-0 {
    border: none !important;
    font-size: 14px;
    font-weight: 700;
}

.close-fixed {
    position: absolute;
    z-index: 999;
    right: -5px;
    top: -5px;
    color: #FFF;
    background: #e50914;
    cursor: pointer;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    text-align: center;
    padding: 0px !important;
}

.btn-close {
    color: #FFF !important;
    background: none !important;
    padding: 0px !important;
    margin-top: 2px;
}

.download-anchor {
    display: block;
    margin: 0;
    padding: 0;
}

.driver-photo {
    width: 60px !important;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 15px;
}

.driver-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.driver-detail-image {
    display: flex;
}

.driver-detail-image .driver-photo {
    z-index: 2;
    width: 70px !important;
    height: 70px;
}

.driver-detail-image .driver-detail-vehicle {
    z-index: 1;
    width: 130px;
}

.driver-detail-vehicle {
    margin-left: -35px;
}

.current-ride-accept .route-wrapper h5 {
    margin-bottom: 16px;
    font-weight: 700;
}

.current-ride-accept .route-wrapper span {
    font-size: 14px;
}

.info-wrapper .support-text {
    line-height: 20px;
    background: #e0e0e0;
    padding: 12px;
}

.fleet-info article h6 {
    font-size: 20px;
}

.my_card {
    border: none;
    font-weight: 700;
    color: #444;
    padding: 15px 40px;
}

.my_card svg {
    font-size: 20px;
    margin: 0px 0px 5px;
}

.my_card.nav-link {
    border: none;
    font-weight: 700;
    color: #444;
}

.my_card.nav-link.active i,
.my_card.nav-link:hover i,
.my_card.nav-link:focus i {
    color: #fff;
}

.my_card.nav-link.active,
.my_card.nav-link:hover,
.my_card.nav-link:focus {
    background-color: #1bcd73;
    color: #fff;
}

.my_card .journey_info h5 {
    font-size: 15px;
    color: #000;
    margin: 7px 0;
}

.my_card .total article h3 {
    font-size: 24px;
    color: #4c2529;
}

.my_card sup {
    font-size: 12px;
    font-weight: 900;
}


/*end left-side-container*/

.right-side-container {
    position: relative;
    width: 100%;
}

.black-card-box {
    position: relative;
    width: 100%;
    padding: 30px;
   background: #202e3c;
    border-radius: 4px;
    color: #FFF;
    /* margin: 20px 0px 0px 176px; */
    border-radius: 20px;
}
@media (max-width: 1102px) {
    .black-card-box {
        margin-left: 5px !important;
        margin-bottom: 10px !important;
    }
}
.black-card-box h3 {
    position: relative;
    width: 100%;
    margin: 0px 0px 10px;
    padding: 0px;
    font-size: 18px;
    font-weight: 700;
}

.black-card-box ul {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.black-card-box ul li {
    display: inline-flex;
    width: 100%;
    margin: 0px 0px 20px;
    padding: 0px;
}

.black-card-box ul li a {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
}

.black-card-box ul li:last-child {
    margin: 0px;
}

.user-name {
    font-weight: 800;
}

.black-card-box ul li a i {
    margin: 0px 5px 0px 0px;
}

.edit-btn-1 {
    position: absolute;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    background: #FFF;
    border-radius: 50%;
    top: 15px;
    right: 15px;
    color: #444444;
    cursor: pointer;
}

.edit-btn-2 {
    position: absolute;
    text-align: center;
    padding: 5px 5px;
    border-radius: 4px;
    margin: 0px 0px 3px 0px;
    border: 1px solid rgb(0, 0, 0);
    top: 15px;
    right: 15px;
    color: #fff;
}

.edit-btn-2 i {
    width: 24px;
    cursor: pointer;
}

.edit-btn-2 div {
    display: inline-flex;
}

.badge {
    color: #fff;
    background-color: #28a745;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.card-img {
    position: relative;
    width: 100%;
    margin: 20px 0px;
}

.card-img img {
    width: 40px;
}

.card-info-warpper {
    position: relative;
    width: 100%;
}

.card-info-warpper h4 {
    position: relative;
    width: 100%;
    margin: 0px 0px 15px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-info-warpper h4 span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

.card-info-warpper h6 {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-info-warpper h6 span {
    font-size: 15px;
    font-weight: 800;
}

.default-content {
    position: relative;
    width: 100%;
}

.form-group {
    margin: 0px 0px 5px;
}

.content-notifications {
    position: relative;
    width: 100%;
    padding: 30px;
    background: #FFF;
    border-radius: 4px;
    color: #444444;
        box-shadow: 6px 11px 18px #b5b4b4;
}

.content-notifications ul {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.content-notifications ul li {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: container;
}

.content-notifications ul li span {
    flex-grow: 2;
    /* default 0 */
}

.content-notifications ul li span h5 {
    margin: 0px 0px 4px;
    padding: 0px;
    font-weight: 700;
}

.content-notifications ul li span p {
    margin: 0px;
    padding: 0px;
}

.content-notifications ul li span i {
    width: 50px;
    height: 50px;
    background: #444444;
    text-align: center;
    line-height: 50px;
    color: #FFF;
    font-size: 20px;
    border-radius: 50%;
}


/*end right-side-container*/


/*end main-wrapper*/
/*swe*/

       
*p{
  font-family: 'Montserrat', sans-serif!important;

}


.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #202e3c;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
     padding: 39px 8px 12px 40px;
  text-decoration: none;
 
  color: White;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #28a745;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
    