@import url('https://fonts.googleapis.com/css?family=Cabin:400,500,600,700&display=swap');
:root {
    --gray-dark: #343A40;
}
body {
    background-color: #FFFFFF !important;
    font-family: "Cabin", sans-serif !important;
}

nav div {
    padding: initial;
}


nav .logo {
    height: 45px;
}

.navbar-brand .brand-logo {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 45px;
}

.nav-header {
    position: relative;
    z-index: 1021;
    height: auto;
}
.navbar {
    z-index: 1020;
}

.pImgDiv {
    overflow: hidden;
    height: 28px;
    width: 28px;
    margin: 0;
    padding-top: 0;
    float: none;
    display: block;
}

.profile-title {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.profile-tag-line {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .dashboard .wrapper .main-content {
        width: 100% !important;
        overflow: auto;
    }
}
.response-avatar-box {
    position: relative;
    display: block;
    height: calc(30px + 1vw);
    width: calc(30px + 1vw);
}

@media screen and (max-width: 991px) {
    .response-avatar-box {
        height: 30px;
        width: 30px;
    }

    .dashboard .wrapper {
        display: block;
    }
    .mw-dropper {
        position: relative;
    }

    .mw-drop-menu {
        position: absolute;
        min-width: 180px;
        top: 100%;
        right: 0;
        padding-top: .75rem;
        display: none;
        box-shadow: 0 3px 8px -3px rgba(0,0,0, 0.25);
    }

    .mw-drop-content {
        background-color: #ffffff;
        border-radius: 2px;
        padding: .75rem;
    }

    @keyframes drpIn {
        from {
            margin-top: -1rem;
        }
    }
    .mw-dropper:hover .mw-drop-menu {
        display: block;
        animation-name: drpIn;
        animation-duration: .2s;
        animation-iteration-count: 1;
    }

    .mw-dropper .profile-title {
        color: #333333;
        margin-bottom: 4px;
    }
    .mw-dropper .profile-tag-line {
        color: #333333;
    }

    .dashboard .wrapper .sidebar {
        position: fixed;
        z-index: 1050;
        top: 0;
        height: 100%;
        overflow: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
        left: -100%;
        transition: all .3s;
    }

    .dashboard .wrapper.show .sidebar {
        left: 0;
    }
}

.aside-backdrop {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1049;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    left: 0;
    transition: .2s;
}


/*========== Custom Widget =================*/
.widget-row {
    margin: -1px;
}
.custom-widget {
    position: relative;
    /*border-left: 1px solid #ffff00;*/
    /*border-right: 1px solid #ffff00;*/
    z-index: 1;
}

.custom-widget::before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    border-right: 1px solid #DDDDDD;
    left: -1px;
    top: 0;
    z-index: 1;
}

.custom-widget::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    border-left: 1px solid #DDDDDD;
    right: -0.01rem;
    top: 0;
    z-index: 1;
}

.widget-head, .widget-foot {
    position:relative;
    display:block;
    width:100%;
    padding:0;
    overflow:hidden;
}

.widget-head {
    /*border-bottom: 1px solid #DDDDDD;*/
}

.widget-head::before, .widget-foot::before {
    display:block;
    content:"";
    padding-top: 56.25%;
    border-bottom: 1px solid #DDDDDD;
}


@media screen and (max-width: 767px) {
    .widget-head::before, .widget-foot::before {
        padding-top: 75%;
    }
}

.widget-head > *,
.widget-foot > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}



.stripe-d-table {
    border-collapse: collapse;
    border-spacing: 1px;
}


.stripe-d-table .d-table-head >* {
    background-color: #ff4f1e;
    color: #ffffff;

}
.stripe-d-table > * >* {
    vertical-align: middle;
    padding: 12px;
    font-size: 14px;
}

@media screen and (min-width: 992px) {
    .stripe-d-table > * >* {
        border: 1px solid #F5F5F5;
    }

    .stripe-d-table > * >*:last-child {
        text-align: center;
    }

    .stripe-d-table > *:nth-child(odd) {
        background-color: #F5F5F5;
    }

}

@media screen and (max-width: 991px){
    .stripe-d-table .d-table-head {
        display: none;
    }

    .stripe-d-table .d-table-body {
        margin-bottom: 1.75rem;
        border: 1px solid var(--primary);
    }

    .stripe-d-table .d-table-body > .mw-table-item {
        display: table-row;
    }

    .stripe-d-table .d-table-body > .mw-table-item:nth-child(odd) {
        background-color: #fafafa;
    }

    .stripe-d-table .d-table-body > .mw-table-item:first-child >* {
        border-top: 1px solid var(--primary);
    }

    .stripe-d-table .d-table-body > .mw-table-item:last-child >* {
        border-bottom: 1px solid var(--primary);
    }

    .stripe-d-table .d-table-body > .mw-table-item >* {
        display: table-cell;
        border: 0;
        padding: .5rem .5rem;
    }

    .mw-table-item {
        /*padding: 0;*/
    }

    .d-colspan-2 {
        column-span: 3;
    }

    .mw-table-title {
        color: var(--muted);
    }
}

@media screen and (max-width: 767px) {
    .stripe-d-table-slim .d-table-body > *{
        padding: 2px 4px !important;
    }

    .stripe-d-table-slim .d-table-body > .mw-table-item > * {
        padding: .15rem .15rem !important;
    }
}

.mw-table-title {
    font-weight: 600;
}

.stripe-d-table .form-control {
    border-width: 1px;
}

.stripe-d-table select.form-control {
    padding-right: 1.25rem;
}

.mb-05 {
    margin-bottom: 2px;
}
.px-05 {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.mx-n2 {
    margin-left: -8px !important;
    margin-right: -8px !important;
}

.mt-n1 {
    margin-top: -4px !important;
}

@media screen and (min-width: 1200px) {
    .border-bottom-xl-0 {
        border-bottom: none !important;
    }
}


.fleet-block[aria-label="active"] {
    position: relative;
}


.fleet-block[aria-label="active"]::after, .fleet-block::after {
    position: absolute;
    font-size: 12px;
    right: -1px;
    top: -1px;
    padding: 1px .35rem;
    margin: 0;
    border-radius: 1px;
    background-color: #b72800;
    color: #ffffff;
}

.fleet-block[aria-label="active"]::after {
    content: "\2713";
    position: absolute;
    font-size: 12px;
    color: #ffffff;
    right: -1px;
    top: -1px;
    padding: 1px .35rem;
    background-color: #3cb076;
    margin: 0;
    border-radius: 1px;
}


.fleet-block p {
    width: 100%;
    margin-bottom: .75rem;
    display: inline;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}


@media screen and (max-width: 575px) {
    .mw-form-control-sm {
        height: calc(1.5em + 0.5rem + 2px);
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
        line-height: 1.5;
        border-radius: 0.2rem;
    }
}

@media screen and (max-width: 992px) {
    .mt-lg-10 {
        margin-top: 6rem;
    }
}

.force-center {
    position: absolute;
    left: 50% !important;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: auto;
}

.force-bottom {
    top: auto !important;
    bottom: 0 !important;
}

.embed-responsive.custom-image-box {
    height: auto !important;
}


.custom-flush > .list-group-item:first-child {
    border-top: none;
}


/*========== Custom d-table ==========*/
.d-custom-table {
    width: 100%;
}
.d-custom-table > .d-table-head {
    /*background-color: #F5F5F5;*/
}

.d-custom-table > .d-table-head >* {
    padding: .75rem 1rem;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 500;
}

.d-custom-table > .d-table-body >* {
    padding: 1rem;
}

.d-custom-table > .d-table-body:not(:last-child) >* {
    border-bottom: 1px solid #DDDDDD;
}

.align-middle >* >* {
    vertical-align: middle;
}

@media screen and (min-width: 992px) {
    .overflow-lg-hidden {
        overflow: hidden;
    }
}


@media screen and (min-width: 1200px) {
    .wrapper .main-content{
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

.small-gutters{
    margin-right: -4px !important;
    margin-left: -4px !important;
}
.small-gutters>.col,
.small-gutters>[class*=col-]{
    padding-right: 4px !important;
    padding-left: 4px !important;
}

@media screen and (max-width: 575px) {
    .mw-semi-gutter{
        margin-right: -6px !important;
        margin-left: -6px !important;
    }
    .mw-semi-gutter>.col,
    .mw-semi-gutter>[class*=col-]{
        padding-right: 6px !important;
        padding-left: 6px !important;
    }

}

.semi-gutter{
    margin-right: -6px !important;
    margin-left: -6px !important;
}
.semi-gutter>.col,
.semi-gutter>[class*=col-]{
    padding-right: 6px !important;
    padding-left: 6px !important;
}

select.form-control {
    background-position-x: right 5px;
    background-size: 12px;
}

@media screen and (max-width: 576px) {
    .form-control {
        font-size: 14px
    }

}
@media screen and (min-width: 768px) {
    .collapse.mw-collapse:not(.show),
    .collapse.mw-collapse {
        display: block !important;
    }
}

.profileUploadedImage {
    position: relative;
    background-color: #E9EEF1;
}
.profileUploadedImage img.img-fit-center {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    min-width: auto;
    min-height: auto;
}

.image.w-100 {
    width: 100% !important;
}

.custom-small-label {
    font-size: 14px;
    color: #5e5873;
}

@media screen and (min-width: 768px) {
    .w-md-120px {
        width: 120px;
    }

    .w-md-150px {
        width: 150px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .just-w-md-25 {
        width: 25%;
    }
}

@media screen and (min-width: 992px) {
    .w-lg-120px {
        width: 120px;
    }

    .w-lg-150px {
        width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .w-md-down-100px {
        width: 100px;
    }
    .w-md-down-150px {
        width: 150px;
    }
}
@media screen and (max-width: 991px) {
    .w-lg-down-100px {
        width: 100px;
    }
}

.invoice-info-area-control {
    height: calc(1.5em + .75rem + 2px) !important;
}

textarea::placeholder {
    font-size: 13px;
}

.table-input-small-area {
    width: 80px;
}


.table-span {
    display: table-cell;
    column-span: 3;
}

.table-content {
    position: relative;
    z-index: 1;
}



nav > .nav.nav-tabs.custom-tabs{
    border: none;
    color:#fff;
    background:#272e38;
    border-radius:0;
}
.custom-tabs > .nav-item > .nav-link,
.custom-tabs > .nav-item > .nav-link.active
{
    position: relative;
    border: none;
    padding: .75rem .5rem;
    color:#fff;
    background:#272e38;
    border-radius:0;
}

.custom-tabs > .nav-item > .nav-link.active:after
{
    position: absolute;
    content: "";
    display: block;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #FF4F1E ;
    z-index: 1;
}

.border-primary {
    border-color: #FF4F1E !important;
}


.custom-tabs > .nav-item > .nav-link.active,
.custom-tabs > .nav-item > .nav-link:hover,
.custom-tabs > .nav-item > .nav-link:focus
{
    border: none;
    background: #FF4F1E;
    color:#fff;
    border-radius:0;
}

.embed-responsive.vheicle-image-box {
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}


.pagination-center .pagination {
    justify-content: center;
}

.pagination-responsive .pagination {
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .pagination-responsive .pagination {
        margin: -4px;
    }

    .pagination-responsive .pagination .page-item {
        padding: 4px;
    }

    .pagination-responsive .pagination .page-item .page-link {
        font-size: 14px;
        padding: 4px 8px;
    }
}



body div.container.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media screen and (max-width: 991px) {
    .order-lg-down-last {
        order: 10;
    }
}

nav {
    height: auto !important;
    position: relative;
}

.wiz-card {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
}

.wiz-danger {
    background-color: #FA3600;
}

.wiz-primary {
    background-color: #0563C1;
}

.wiz-success {
    background-color: #00B050;
}
.wiz-purple {
    background-color: #7030A0;
}

.action-dropdown-menu {
    border: none;
    background-color: #FF4F1E;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.status-success,
.status-info,
.status-warning,
.status-danger {
    display: inline-block;
    padding: 2px 8px;
    font-size: 13px;
    text-align: center;
}

.status-warning {
    background-color: #FFC000;
    color: #ffffff;
}
.status-success {
    background-color: #00B050;
    color: #ffffff;
}
.status-info {
    background-color: #00B0F0;
    color: #ffffff;
}
.status-danger {
    background-color: #FF0000;
    color: #ffffff;
}

.status-primary {
    background-color: #0563C1;
    color: #ffffff;
}

.sorter-option-btn {
    border-color: #DDDDDD;
    color: #333333;
}

.sorter-option-btn.active {
    background-color: #00B050;
    border-color: #00B050;
    color: #ffffff;
}

.d-table-sm.stripe-d-table .d-table-body >* {
    padding: 3px 8px;
}

nav.nav-light .nav-menus button.btn {
    padding: 4px 12px !important;
}


@-webkit-keyframes spinner-border-absolute {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinner-border-absolute {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.position-absolute.spinner-border {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-animation: 0.75s linear infinite spinner-border-absolute !important;
    animation: 0.75s linear infinite spinner-border-absolute !important;
}

.overflow-static {
    overflow: initial !important;
}




.account-selector-group {
    display: block;
}


.account-selector-group > input {
    display: none;
}



.account-selector-check {
    position: relative;
    border: 2px solid #dddddd;
    cursor: pointer;
    overflow: visible;
}


.account-selector-check-icon {
    position: absolute;
    bottom: -12px;
    right: -12px;
    font-size: 24px;
    height: 24px;
    width: 24px;
    background-color: #FA3600;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: none;
}

.account-selector-check-icon .feather {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    width: 16px;
    height: 16px;
}

.account-selector-group > input:checked ~ .account-selector-check {
    border-color: #FA3600;
}
.account-selector-group > input:checked ~ .account-selector-check .account-selector-check-icon {
    display: block;
}


.selector-img-embed::before {
    padding-top: 64%;
}


.account-selector-check img {
    width: auto !important;
    max-width: 100%;
    height: auto;
    max-height: 64px;
}



/*=========== 04/12/2023 ===================*/
.full-body-bg-image {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    right: 0;
}
.section-with-bg {
    position: relative;
}

.section-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.section-with-bg-overlay {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(0,0,0, .75), rgba(0,0,0, 0));
}

.plan-banner {
    overflow: hidden;
    -webkit-border-radius: calc(1rem + 1.25vw);
    border-radius: calc(1rem + 1.25vw);
}

.trip-content {
    padding: calc(2rem + 3.25vw) calc(1.5rem + 3vw) calc(3rem + 5vw) calc(1.5rem + 3.25vw);
}

@media screen and (min-width: 1200px) {
    .trip-content {
        padding: calc(3rem + 4vw) calc(1.5rem + 3vw) calc(4rem + 5vw) calc(1.5rem + 3vw);
    }
}
@media screen and (max-width: 576px) {
    .trip-content {
        padding: 2rem 1rem 2rem 1rem;
    }

}

.trip-title {
    font-size: calc(1.5rem + 2vw);
    font-weight: 600;
}

.trip-subtitle {
    font-size: calc(1rem  + .5vw);
}

.plan-over-banner-content {
    background-color: #ffffff;
    padding: calc(1rem + .5vw);
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 5px 5px rgba(100, 100, 100, .1);
}

.plan-over-banner {
    position: relative;
    margin-top: calc(-2.5rem - 3vw);
    /*z-index: 1;*/
}

.plan-location-item {
    position: relative;
    margin-bottom: 1rem;
}

.plan-input-group {
    display: block;
    position: relative;
    border: 1px solid #EEEEEE;
    padding: .75rem;
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
}

.plan-input-label {
    display: block;
    margin-bottom: .5rem;
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
}
.plan-input {
    width: 100%;
    font-size: 14px;
    background-color: transparent;
    color: var(--dark);
    border: none;
}
select.plan-input {
    min-height: 24px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.plan-input:focus {
    box-shadow: none;
    outline: none;
}



.plan-input::placeholder {
    font-size: 12px;
}

.plan-trip-icon {
    font-size: 13px;
    color: var(--brand-primary);
}


.btn-customize {
    padding: .65rem 1.5rem;
    font-size: 14px;
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
}


.calendar-icon::before {
    content: '\1F4C5'; /* Unicode for the calendar icon */
}

.pac-container {
    z-index: 1500 !important;
}


.custom-modal .modal-content {
    border: none;
    border-radius: 1rem;
}

@media screen and (min-width: 992px) {
    .custom-modal .modal-content {
        padding: calc(1rem + .5vw);
    }
}

.new-location-item {
    position: relative;
}

.remove-location-input {
    display: inline-flex;
    display: -webkit-inline-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    background-color: var(--brand-primary);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 11px;
    position: absolute;
    right: 0;
    top: 0;
}

.remove-location-input:hover {
    color: #ffffff;
    text-decoration: none;
}

/*===== vehicle-card ========*/
.vehicle-card {
    border-radius: 0;
    border: none;
    height: 100%;
}

.vehicle-card >* {
    background-color: #ffffff;
    border: none;
}

.vehicle-card .card-header {
    padding: 0;
}
.vehicle-card .card-body,
.vehicle-card .card-footer {
    padding: .75rem;

}

.vehicle-card .card-header,
.vehicle-card .card-footer {
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.vehicle-card .btn {
    white-space: nowrap;
}

.vehicle-card .feature-list {
    padding-left: .75rem;
    font-size: 11px;
    margin-bottom: 0;
}

.vehicle-card-title {
    font-size: 20px;
    font-weight: 600;
}

.vehicle-card-subtitle {
    font-size: 14px;
    color: #999999;
    margin-bottom: .75rem;
}

.vehicle-card .price {
    font-weight: 700;
    font-size: 20px;
}

.vehicle-card-with-class {
    border-radius: 3px;
    border: 1px solid #000000;
}

.vehicle-card-with-class .card-header {
    padding: .75rem;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

/*.price {*/
/*    font-family: serif;*/
/*}*/

.main-title {
    font-size: 2rem;
    font-weight: 600;
    color: #434343;
}

/*====== vehicle-card-horizontal =====*/
.vehicle-card-horizontal {
    background-color: #ffffff;
    position: relative;
}

.horizontal-card-body {
    padding: 1rem;
}

.facilities {
    display: inline-block;
    font-size: 11px;
    line-height: 100%;
    font-weight: 600;
}

.facilities:not(:last-child)::after {
    content: '|';
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    display: inherit;
    padding-left: 5px;
    padding-right: 5px;
}

.horizontal-card-img-group {
    height: 100%;
    background-color: #F5F5F5;
}
.horizontal-card-img-group .horizontal-card-img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 991px) {
    .horizontal-card-img-group {
        position: relative;
        display: block;
        padding: 0;
    }

    .horizontal-card-img-group::before {
        content: '';
        display: block;
        padding-top: 75%;
    }

    .horizontal-card-img-group .horizontal-card-img {
        top: 0;
    }
}

.horizontal-card-footer {
    padding: 1rem;
    height: 100%;
}

.vehicle-card-label {
    position: absolute;
    top: 1.5rem;
    left: 0;
    z-index: 10;
    background: #00B0F0;
    color: #ffffff;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    margin-left: -1rem;
}
.vehicle-card-label::before {
    content: '';
    position: absolute;
    border-top: 16px solid #056487;
    border-left: 16px solid transparent;
    top: 100%;
    left: 0;
}

.label-business,
.label-business:hover {
    background: #00B0F0;
    color: #ffffff;
}

.label-economy {
    background: #AE58EE;
}


.label-economy,
.label-economy:hover {
    background: #AE58EE;
}

.label-economy.vehicle-card-label::before {
    border-top-color: #6B08B6;
}


.btn-loader:not(.show) {
    display: none;
}


.modal-absolute-closer {
    position: absolute;
    height: 24px;
    width: 24px;
    background-color: var(--brand-primary);
    color: #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
    right: -.5rem;
    top: -.5rem;
}



.owl-general-product .owl-stage {
    display: -webkit-flex;
    display: flex;
}

.owl-carousel .owl-dots {
    text-align: center;
    padding-top: 1.5rem;
}

.owl-carousel button.owl-dot {
    margin: 0 2px !important;
    text-align: center;
}

.owl-carousel button.owl-dot >*:first-child {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.owl-carousel button.owl-dot.active >*:first-child {
    background-color: var(--brand-primary);
}

.owl-equal-height .owl-stage {
    display: flex;
    display: -webkit-flex;
}

.owl-equal-height .owl-stage >* >* {
    height: 100%;
}

/*======== Modal Drawer ================*/
.plan-vehicle-modal .modal-content {
    min-height: 90vh;
}
.modal-drawer {
    position: absolute;
    height: 100%;
    /*width: 100%;*/
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    right: 0;
    transition: all .3s;
    overflow: hidden;
    display: none;
    width: 0;
    z-index: 100;
}

@keyframes growWidth {
    from {
        width: 0;
    }
}

.modal-drawer.show {
    width: 100%;
    animation-name: growWidth;
    animation-duration: .3s;
}

.modal-drawer.show {
    display: block;
}

.modal-drawer-content {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: -300px;
    max-width: 300px;
    background-color: #ffffff;
}

.modal-drawer.show .modal-drawer-content {
    right: 0;
}

.modal-drawer-content-header {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    border-bottom: 1px solid #EEEEEE;

}

.modal-drawer-content-header >* {
    font-weight: 600;
    margin: 0;
}

.modal-drawer-content-body {
    padding: 1rem;
    overflow: auto;
}

.modal-drawer-content-footer {
    padding: 1rem .75rem 1rem;
}


/*=========== filter-element-list ===============*/
.filter-element-group {
    margin-bottom: 1rem;
}

.filter-element-group-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.filter-element-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


.filter-element-label {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.filter-element-label input {
    display: none;
}


.filter-element-label-text {
    display: flex;
    display: -webkit-flex;
    padding-left: 24px;
    line-height: 100%;
    font-size: 13px;
    position: relative;
}

.filter-element-label .filter-element-label-text::before {
    content: '';
    background-color: #ffffff;
    border: 2px solid var(--brand-primary);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    line-height: inherit;
}

.filter-element-label .filter-element-label-text::after {
    content: '';
    width: 10px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    position: absolute;
    left: 3px;
    transform: rotate(-45deg);
    top: 4px;
    display: none;
}

.filter-element-label input:checked ~ .filter-element-label-text::before {
    background-color: var(--brand-primary);
}
.filter-element-label input:checked ~ .filter-element-label-text::after {
    display: block;
}

.selected-vehicle-action-group:not(.show) {
    display: none;
}


.location-tag-result-item {
    display: inline-flex;
    align-items: start;
    line-height: 100%;
    font-size: 13px;
    background-color: #f0f0f0;
    border: 1px solid #EEEEEE;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    padding: 4px 10px;
    margin: 0 3px 3px 0;

}

.location-tag-result-text {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.location-tag-result-item i {
    font-size: 11px;
    margin-top: 2px;
    color: var(--brand-primary);
}

.remove-location-result {
    padding-left: 8px;
    color: #cc0000;
}



.preloader {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(15px);
}

.loader-fixed.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.preloader.show {
    display: flex;
    display: -webkit-flex;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--brand-primary);
    border-bottom: 16px solid var(--brand-primary);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;

}

.loader.loader-viewport {
    position: absolute;
    top: 40vh;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*======= way-timeline ===============*/
.way-timeline {
    position: relative;
    padding: 8px 8px 0 8px;
}

/*.way-timeline::before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    height: 100%;*/
/*    left: 8px;*/
/*    border-left: 1px dashed #DDDDDD;*/
/*}*/

.way-timeline-item {
    position: relative;
    padding-left: 1rem;
    font-size: 13px;
    padding-bottom: .5rem;
    border-left: 1px dashed #DDDDDD;
    color: #686868;
}

.way-timeline-item.single-timeline-item {
    border-left: none;
}

.timeline-group {
    position: relative;
}

.timeline-group::before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    left: -8px;
    top: 4px;
    border-left: 1px dashed #DDDDDD;
}

.selected-pickup-time {
    font-size: 13px;
    color: #6c757d;
}

.way-timeline-item:last-child {
    margin-bottom: 0;
    border-left: none;
}

.way-timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 1px dashed #DDDDDD;
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.way-timeline-item::after {
    position: absolute;
    font-size: 8px;
    left: -3px;
    top: 5px;
    content: "\F3C5";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #dddddd;
}

.selected-vehicle-item {
    position: relative;
    border: 1px solid #DDDDDD;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: .5rem;
}


.remove-selected-vehicle {
    position: absolute;
    top: -4px;
    right: -4px;
    height: 20px;
    width: 20px;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: var(--brand-primary);
    color: #ffffff;
    font-size: 11px;
}

.remove-selected-vehicle:hover {
    color: #ffffff;
}


.trip-plan-aside-item {
    border: none;
    background-color: #ffffff;
    /*padding: 1.5rem;*/
    border-radius: 0;
}

.trip-plan-aside-item.card >* {
    background-color: #ffffff;
}

.collapsible-toggler {
    position: relative;
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
}

.toggler-icon {
    transition: all .3s ease;
}
.collapsible-item.show .toggler-icon {
    transform: rotate(-180deg);
}

.collapsible-item .collapsible-content {
    display: none;
}
.collapsible-item.show .collapsible-content,
.collapsible-item.toggling .collapsible-content {
    display: block;
}


.row.g-2 {
    margin: -8px;
}

.row.g-2 >* {
    padding: 8px;
}





.custom-form-group .form-control {
    border: 1px solid #EEEEEE;
    border-radius: 0;
    font-size: 14px;
}

.custom-form-group .input-group-prepend .input-group-text {
    border-radius: 0;
    border-color: #EEEEEE;
    background-color: #ffffff;
}

.custom-title {
    font-size: 13px;
    font-weight: 600;
}

.option-flag {
    width: auto;
    max-width: 20px;
    height: auto;
}


@media screen and (min-width: 1400px) {
    .custom-container {
        max-width: 1366px !important;
    }
}

.custom-form-group .select2 .select2-selection .select2-selection__rendered {
    line-height: 150% !important;
    font-size: 14px;
}



.custom-form-group .select2-container--bootstrap .select2-selection--single {
    height: calc(1.5em + .75rem + 2px) !important;
    padding: .375rem .75rem;
    border-radius: 0;
    border: 1px solid #EEEEEE;
    box-shadow: none;
}

@media screen and (max-width: 767px) {
    .custom-form-group .select2-container--bootstrap .select2-selection--single {
        height: calc(1.5em + .75rem + 2px) !important;
    }
}

.custom-form-group .ElementsApp input,
.custom-form-group .InputElement {
    border-radius: 0 !important;
}

/*.select2 .select2-selection .select2-selection__rendered {*/
/*    line-height: 35px;*/
/*    vertical-align: middle;*/
/*}*/


.custom-form-group .InputElement ::placeholder,
.custom-form-group ::placeholder {
    font-size: 14px !important;
    color: #aaaaaa;
}

.StripeElement {
    border-radius: 0 !important;
}

.payment-form .custom-form-group .form-control {
    font-size: 14px !important;
    font-family: sans-serif;
    height: 36px;
}

.payment-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.stripe-form-group {
    max-width: 576px;
}

.mw-70px {
    min-width: 70px !important;
}

nav.nav-light .nav-menus .btn {
    background-color: var(--brand-primary) !important;
}

.with-bg-img {
    position: relative;
}

.bg-covered-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.container.plan-container,
.plan-container {
    min-height: 100vh;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    padding-top: calc(1.5rem + 2vw) !important;
    padding-bottom: calc(1.5rem + 2vw) !important;
}

@media screen and (min-width: 1200px) {
    .pac-container {
        min-width: 360px;
    }
    .plan-container {
        max-width: 1140px;
    }
}

@media screen and (min-width: 1300px) {
    .plan-container {
        max-width: 1220px;
    }
}

/*========== navbar-nav-pills ==============*/
.navbar-nav-pills .nav-item{
    padding: .25rem;
}
.navbar-nav .nav-link.nav-link-pill {
    -webkit-border-radius: 50rem;
    border-radius: 50rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 1px 16px;
    font-size: 14px;
}

.navbar-nav .nav-link.nav-link-pill:hover {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: var(--brand-primary);
}


/*============ booking-card =================*/
.booking-card:not(.booking-card-inside) {
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    border: 1px solid var(--brand-primary);
    padding: 1.5rem;
}

@media screen and (max-width: 767px) {
    .booking-card {
        padding: 1rem .75rem;
    }
}

.booking-card-inside {
    background-color: #F8F8F8;
    padding: 2rem 1.5rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
}

.gradient-booking-card {
    background: linear-gradient(to bottom, #000000, #FA3600) !important;
    border: none !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
}


/*====== input-pill ==========*/
.input-label-pill {
    position: relative;
    display: block;
    cursor: pointer;
}
.input-label-pill input {
    display: none;
}
.input-label-pill-text {
    display: block;
    padding: 4px 24px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid var(--brand-primary);
    -webkit-border-radius: 50rem;
    font-size: 14px;
    font-weight: 500;
}

.input-label-pill-text:not(.rounded .rounded-1 .rounded-2 .rounded-3 .rounded-4) {
    border-radius: 50rem;
}

/*.input-label-pill:not(.rounded),*/
/*.input-label-pill:not(.rounded-1),*/
/*.input-label-pill:not(.rounded-2),*/
/*.input-label-pill:not(.rounded-3),*/
/*.input-label-pill:not(.rounded-4) {*/
/*    border-radius: 50rem;*/
/*}*/



.input-label-pill-dark .input-label-pill-text {
    background-color: #6c757d;
    color: #ffffff;
}


.input-label-pill-small .input-label-pill-text {
    padding: 2px 10px;
    font-size: 12px;
}


.input-label-pill input:checked ~ .input-label-pill-text {
    background-color: var(--brand-primary);
    color: #ffffff;
}
.input-label-pill input:checked ~ .input-label-pill-text.bg-gradient {
    background-image: linear-gradient(to bottom, #140400, #E43100);
}


.input-label-pill input:checked ~ .input-label-pill-text.input-label-pill-text-dark{
    background-color: #000000;
    border-color: #000000;
}

.input-pill {
    -webkit-border-radius: 50rem;
    border-radius: 50rem;
    border-color: #DDDDDD;
    border-width: 1px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 13px;
    font-weight: 600;
}

.input-pill::placeholder {
    font-weight: 400;
}

.booking-input-group {
    /*display: flex;*/
    /*display: -webkit-flex;*/
    margin: -.5rem;
    /*align-items: center;*/
    /*-webkit-align-items: center;*/
}

.booking-card-inside {
    font-size: 13px;
}

.booking-card-inside .booking-input-group-flex {
    display: flex;
    display: -webkit-flex;
}

.booking-input-group >* {
    margin: 0;
    padding: .15rem 0;
}

.booking-input-label {
    font-size: 13px;
    font-weight: 600;
}

.booking-card-inside .booking-input-label {
    margin-right: .5rem;
    margin-top: 2px;
}

.booking-input-group .form-control {
    border: none;
}

.booking-card-inside .select-group {
    display: flex;
    display: -webkit-flex;
    border: 1px solid #f8cdc1;
    background-color: #ffffff;
    align-items: center;
    -webkit-align-items: center;
    padding: 2px 6px 2px 12px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.booking-card-inside .select-group img {
    height: auto;
    max-height: 16px;
    width: auto;
    max-width: 20px;
}

.booking-card-inside .select-group select {
    border: none;
    background-color: transparent;
    color: var(--brand-primary);
}
.booking-card-inside .select-group select option {
    background-color: #ffffff;
    color: #333333;
}


/*=========== Waypoint Configure ===================*/
.add-waypoint {
    display: inline-block;
    color: var(--brand-primary);
    font-size: 14px;
}

.waypoint-input-group {
    display: none;
}
.enable-waypoint .waypoint-input-group {
    display: block;
}
.enable-waypoint .add-waypoint {
    display: none;
}

/*.waypoint-row:not(.enable-waypoint) .waypoint-group {*/
/*    display: flex;*/
/*    display: -webkit-flex;*/
/*    flex-direction: column;*/
/*    -webkit-flex-direction: column;*/
/*    -webkit-justify-content: center;*/
/*    justify-content: center;*/
/*}*/

@media screen and (min-width: 992px) {
    .enable-waypoint .pickup-location-group {
        /*flex:0 0 41.66667%;*/
        /*max-width: 41.6667%;*/
        transition: width .5s;
    }

    .enable-waypoint .waypoint-group {
        /*flex:0 0 58.33333%;*/
        /*max-width:58.33333%;*/
        /*transition: width .5s;*/
    }
}

.gradient-booking-card .booking-input-label {
    color: #ffffff;
}

.gradient-booking-card .form-control {
    background-color: #fac9bc;
    color: #000000;
    border: none;
}

.gradient-booking-card ::placeholder {
    color: #ffffff;
    font-weight: 400;
}

.gradient-booking-card .select-btn-group {
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 6px;
    border: none;
    background-color: #fac9bc;
    color: #000000;
}

.gradient-booking-card .select-btn-group {
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 6px;
    border: none;
    background-color: #fac9bc;
    color: #000000;
}

.xdsoft_calendar td {
    text-align: center;
}

.mh-auto {
    min-height: auto !important;
}

.plan-container.pb-0 {
    padding-bottom: 0 !important;
}

@media screen and (min-width: 992px) {
    .mb-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .mt-lg-n4 {
        margin-top: -1.5rem;
    }
}
@media screen and (min-width: 1200px) {
    .mb-xl-n6 {
        margin-bottom: -5rem !important;
    }
}

/*========= select-btn-group =============*/
.select-btn-group {
    display: inline-flex;
    display: -webkit-inline-flex;
    /*-webkit-flex-direction: column;*/
    /*flex-direction: column;*/
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    width: auto;
    border: 1px solid var(--brand-primary);
    border-radius: .75rem;
    -webkit-border-radius: .75rem;
    background-color: #ffffff;
    padding: 15px 8px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .select-btn-group {
        padding: 13px 8px;
    }
}

.select-btn-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 13px;
    padding: 0;
    width: auto;
    background-color: transparent;
    border: none;
}

::placeholder {
    font-size: 14px;
}

.slogan {
    font-size: 3rem;
    padding-top: 40px;
    text-shadow: 3px 5px 7px #333333;
}

@media (max-width: 767px) {
    .slogan {
        font-size: 2rem;
        padding-top: 0px;
        text-align: center;
    }
}

.sub-slogan {
    font-size: 25px;
    color: #ffffff;
    text-shadow: 3px 5px 7px #333333;
}

@media (max-width: 767px) {
    .sub-slogan {
        font-size: 1rem;
        text-align: center;
    }
}

.app-store-img {
    width: auto;
    max-width: 160px;
    height: auto;
}

.nav-avatar {
    position: relative;
    display: inline-flex;
    display: -webkit-inline-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
}

.nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.signup {
    background-image: url(/images/banner.png?92aa10e6efbb5a194dfe44e58f2ccf72);
    height: 250px;
}

@media (max-width: 767px) {
    .signup {
        height: auto !important;
        padding: 0px 0px 25px 0px;
    }
}

.signup h1 {
    padding-top: 71.4285714286px;
    color: #ffffff;
    font-size: 2rem;
}

@media (max-width: 767px) {
    .signup h1 {
        padding-top: 20px;
        font-size: 2rem;
    }
}

.signup p {
    color: #ffffff;
    font-size: 1.3rem;
}

@media (max-width: 767px) {
    .signup p {
        font-size: 1rem;
    }
}

.signup .btn {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 1.2rem 2.3rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
}

@media (max-width: 767px) {
    .signup .btn {
        position: unset;
        padding: 1rem 2.3rem;
        font-size: 0.8rem;
        float: right;
    }
}

.subscribe {
    background-color: #ffffff !important;
    padding: 10rem 0;
}

.subscribe .main-title {
    text-align: center;
    font-weight: 700;
    color: #454545;
    margin-bottom: 30px;
}

.subscribe .subscribe-form .input-group-lg .form-control {
    border-radius: 0;
    border: 2px solid #FA3600;
}

@media (max-width: 767px) {
    .subscribe .subscribe-form .input-group-lg .btn {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }
}

.filter-page .filter-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9984;
    border-width: 3px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.filter-page .filter-sub-title {
    font-weight: 400 !important;
    font-size: 13px;
}

.filter-page .filter-sidebar.show-over-mobile {
    display: block !important;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    height: 100vh;
    z-index: 999;
    overflow: scroll;
    box-shadow: 6px 1px 15px 2px #0000004f;
}

.filter-page .filter-sidebar.sticky {
    position: fixed !important;
    width: 255px !important;
    top: 20px;
}

.filter-page .filter-sidebar.sticky .filter-options {
    height: 53vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.filter-page .filter-sidebar .filter-options .option-block {
    transition: all 0.5s !important;
}

.filter-page .booking-details dt,
.filter-page .booking-details dd {
    font-size: 13px;
    color: #404040;
}

.filter-page .edit-booking {
    font-size: 13px;
    cursor: pointer;
}

.filter-page .circle-loader {
    margin-bottom: 4.5em;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-left-color: #FA3600;
    -webkit-animation: loader-spin 1.2s infinite linear;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 9em;
    height: 9em;
}

.filter-page .load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #FA3600;
    transition: border 500ms ease-out;
}

.filter-page .checkmark {
    display: none;
}

.filter-page .checkmark.draw:after {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: checkmark;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.filter-page .checkmark:after {
    opacity: 1;
    height: 4.5em;
    width: 2.25em;
    transform-origin: left top;
    border-right: 3px solid #FA3600;
    border-top: 3px solid #FA3600;
    content: "";
    left: 2.25em;
    top: 4.5em;
    position: absolute;
}

@-webkit-keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 2.25em;
        opacity: 1;
    }

    40% {
        height: 4.5em;
        width: 2.25em;
        opacity: 1;
    }

    100% {
        height: 4.5em;
        width: 2.25em;
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 2.25em;
        opacity: 1;
    }

    40% {
        height: 4.5em;
        width: 2.25em;
        opacity: 1;
    }

    100% {
        height: 4.5em;
        width: 2.25em;
        opacity: 1;
    }
}

.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-dark {
    background-color: #0a0a0a !important;
    color: #FFFFFF !important;
}

.rounded-1 {
    border-radius: .25rem;
}
.rounded-2 {
    border-radius: .5rem;
}
.rounded-3 {
    border-radius: 1rem;
}
.rounded-4 {
    border-radius: 1.5rem;
}

.remover-absolute {
    position: absolute;
    top: -4px;
    right: -7px;
    background-color: var(--brand-primary);
    color: #FFFFFF;
    width: 22px;
    height: 22px;
    display: inline-flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


.remover-absolute:hover {
    color: #FFFFFF;
}


@media (min-width: 992px) {
    .modal-xl, .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 1200px) {
    .modal-xl, .modal-xl {
        max-width: 992px;
    }
}


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

.bg-brand-light {
    background-color: #eff5ff;
}


@media screen and (min-width: 992px) {
    .daily-trip-stepper {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        justify-content: center;
        -webkit-justify-content: center;
    }

    .daily-trip-step-item {
        position: relative;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        -webkit-justify-content: center;
        -webkit-flex-direction: column;
        align-items: center;
        --webkit-align-items: center;
        flex-direction: column;
        z-index: 1;
        padding: .75rem 1.5rem;
    }

    .stepper-circle {
        width: 18px;
        height: 18px;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        -webkit-justify-content: center;
        -webkit-flex-direction: column;
        align-items: center;
        --webkit-align-items: center;
        flex-direction: column;
        font-size: 13px;
        color: #6c757d;
        border: 1px solid var(--brand-primary);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: #FFFFFF;
        margin-left: auto;
        margin-right: auto;
    }

    .daily-trip-step-item::before {
        content: '';
        position: absolute;
        width: 50%;
        border-bottom: 2px dashed #000000;
        bottom: 20px;
        z-index: -1;
        /*right: -3.5rem;*/
        left: 0;
    }

    .daily-trip-step-item::after {
        content: '';
        position: absolute;
        width: 50%;
        border-bottom: 2px dashed #000000;
        bottom: 20px;
        z-index: -1;
        /*right: -3.5rem;*/
        right: 0;
    }

    .daily-trip-step-item.completed::before,
    .daily-trip-step-item.completed::after,
    .daily-trip-step-item.active::before,
    .daily-trip-step-item.active::after {
        border-color: var(--brand-primary);
    }

    .daily-trip-step-item:only-child::after,
    .daily-trip-step-item:only-child::before,
    .daily-trip-step-item:last-child::after,
    .daily-trip-step-item:first-child::before {
        content: none;
    }

    .stepper-title {
        font-size: 13px;
        padding: 0 12px;
        -webkit-border-radius: 50rem;
        border-radius: 50rem;
        margin-bottom: .5rem;
    }

    .daily-trip-step-item.completed .stepper-title {
        color: var(--brand-primary);
    }
    .daily-trip-step-item.active .stepper-title {
        background-color: var(--brand-primary);
        color: #FFFFFF;
    }

    .daily-trip-step-item.completed .stepper-circle,
    .daily-trip-step-item.active .stepper-circle {
        background-color: var(--brand-primary);
        color: #FFFFFF;
    }

    /*@media screen and (max-width: 992px) {*/
    /*    .daily-trip-step-item::after,*/
    /*    .daily-trip-step-item::before {*/
    /*        content: none;*/
    /*    }*/
    /*}*/
}

@media screen and (max-width: 991px) {
    .daily-trip-stepper {
        display: -webkit-flex;
        display: flex;
        align-items: end;
        --webkit-align-items: end;
        padding: 2rem 1rem .75rem 1rem;
        position: relative;
    }

    .daily-trip-step-item {
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        flex-grow: 1;
        -webkit-flex-grow: 1;
        width: calc(25% - 16px);
        order: 2;
        padding-top: 1rem;
    }
    .daily-trip-step-item:last-child {
        width: 0;
    }

    .daily-trip-step-item.active {
        order: 1;
    }

    .daily-trip-step-item.completed {
        order: 0;
    }

    .stepper-title {
        display: none;
        padding-bottom: 8px;
        position: absolute;
        left: 1rem;
        top: 8px;
        font-size: 24px;
    }
    .daily-trip-step-item.active .stepper-title {
        display: block;
    }

    .stepper-circle {
        position: relative;
        display: block;
        width: 100%;
        z-index: 1;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .stepper-circle::before {
        content: '';
        position: absolute;
        display: block;
        width: 14px;
        height: 14px;
        border: 2px solid #cccccc;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: #ffffff;
        z-index: 1;
        bottom: 0;
        /*margin-left: auto;*/
        /*margin-right: auto;*/
    }

    .stepper-circle::after {
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #cccccc;
        bottom: 6px;
        left: 0;
        border-bottom-left-radius: 4px;
    }

    .daily-trip-step-item.completed .stepper-circle::before {
        border-color: #333333;
        background-color: #333333;
    }
    .daily-trip-step-item.completed .stepper-circle::after {
        background-color: #333333;
    }

    .daily-trip-step-item.active .stepper-circle::before {
        border-color: #333333;
    }

    .stepper-circle i {
        display: none;
    }

}




.badge-max-w-80px {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge-max-w-150px {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge-small {
    font-size: 11px;
}
.badge-pill {
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    padding-left: .75rem;
    padding-right: .75rem;
}

.custom-nav-pills-small > .nav-item > .nav-link {
    padding: 3px .75rem;
    font-size: 13px;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    background-color: #f0f0f0;
    border: none;
    width: 100%;
}

.custom-nav-pills-small > .nav-item > .nav-link.active {
    background-color: var(--brand-primary);
    color: #FFFFFF;
}
.custom-nav-pills-small > .nav-item > .nav-link:active {
    outline: none;
}

.custom-nav-pills-small > .nav-item {
    padding: 2px;
}


.section-divider-with-text {
    margin: 1.5rem 0;
    position: relative;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.section-divider-with-text::before,
.section-divider-with-text::after {
    content: '';
    display: block;
    border: 1px solid #dddddd;
    flex-grow: 1;
}

.color-bar {
    display: block;
    width: 100%;
    max-width: 60px;
    height: 6px;
    -webkit-border-radius: 5rem;
    border-radius: 5rem;
    margin: 0 auto .5rem auto;
}

.custom-table tr td {
    border-color: #EEEEEE;
}

.label-band {
    position: relative;
    overflow: hidden;
}



.label-band::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 24px;
    background-color: var(--brand-primary);
    transform: rotate(-30deg);
    left: -30px;
}
@media screen and (max-width: 991px){
    .label-band::before {
        content: none;
    }
}

.travel-itinerary-text {
    font-size: calc(1rem + 4vw);
}

.carousel-control-btn {
    position: absolute;
    width: 2.5rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background-color: rgba(0, 0, 0, .2);
    border: none;
    font-size: 3rem;
}





.price-input {
    width: 100%;
    display: flex;
    margin: 1rem 0;
}
.price-input .field {
    display: flex;
    width: 100%;
    align-items: center;
}
.field input {
    width: 100%;
    height: 100%;
    outline: none;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.price-input .separator {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}
.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--brand-primary);
}
.range-input {
    position: relative;
}
.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--brand-primary);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--brand-primary);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}



.timepicker-popover[data-scheme="dark"] {
    background-color: var(--brand-primary) !important;
    backdrop-filter: blur(15px);
    border: none !important;
}
.timepicker-popover[data-scheme="dark"] .popover-header {
    background-color: transparent !important;
    border-bottom-color: rgba(0,0,0, .1) !important;
    color: #ffffff;
}

.timepicker-popover[data-scheme="dark"] .popover-body.border-bottom {
    border-bottom: none !important;
}

.timepicker-popover[data-scheme="dark"].bs-popover-top > .arrow::after, .timepicker-popover[data-scheme="dark"].bs-popover-auto[x-placement^="top"] > .arrow::after {
    bottom: 2px;
    border-top-color: var(--brand-primary) !important;
}

.timepicker-popover[data-scheme="dark"].bs-popover-top > .arrow::before, .timepicker-popover[data-scheme="dark"].bs-popover-auto[x-placement^="top"] > .arrow::before {
    border-top-color: transparent !important;
}
.timepicker-popover[data-scheme="dark"].bs-popover-bottom > .arrow::after, .timepicker-popover[data-scheme="dark"].bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    border-bottom-color: var(--brand-primary) !important;
}
.timepicker-popover[data-scheme="dark"].bs-popover-bottom > .arrow::before, .timepicker-popover[data-scheme="dark"].bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    border-bottom-color: transparent !important;
}
.timepicker-popover[data-scheme="dark"].bs-popover-bottom .popover-header::before, .timepicker-popover[data-scheme="dark"].bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    border-bottom: none !important;
}

.timepicker-popover[data-scheme="dark"].popover .popover-body a {
    color: #ffffff;
}


.timepicker-popover .keyboard-input ~ .d-flex.justify-content-between {
    justify-content: center !important;
}
.timepicker-popover .keyboard-input ~ .d-flex.justify-content-between .invisible {
    display: none;
}

.timepicker-popover .keyboard-input ~ .d-flex.justify-content-between >* {
    width: 100%;
}

.timepicker-popover[data-scheme="dark"].popover .popover-body a >* {
    font-size: 13px !important;
}
.timepicker-popover[data-scheme="dark"].popover .popover-body a:hover {
    background-color: inherit;
}


.timepicker-popover .cancel-btn {
    display: none;
}
.timepicker-popover .submit-btn {
    width: 100%;
}


.timepicker-popover {
    min-width: 180px;
}

.privacy p, .privacy li {
    color: #545454;
    font-size: 16px;
}

.text-error {
    font-size: 13px;
    color: red;
}

@media screen and (min-width: 992px) {
    .mw-drawer-label {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .mw-drawer-label {
        padding: .25rem 0;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        align-items: center;
        --webkit-align-items: center;
    }

    .mw-drawer-label > * {
        margin: 0;
    }

    .mw-drawer-toggler {
        border: none;
        display: block;
        background-color: transparent;
    }


    .mw-drawer {
        position: fixed;
        height: 100vh;
        width: 0;
        top: 0;
        z-index: 1500;
        background-color: rgba(0, 0, 0, .3);
        left: 0;
        transition: all .3s;
        overflow: hidden;
    }


    .mw-drawer-open {
        overflow: hidden;
    }

    .mw-drawer-open .mw-drawer {
        left: 0;
        width: 100vw;
    }

    .mw-drawer-content {
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        height: 100%;
        width: 100vw;
        max-width: 480px;
        background-color: #ffffff;
    }

    .mw-drawer-content .mw-drawer-header {
        background-color: var(--brand-primary);
        color: #ffffff;
    }

    .mw-drawer-content .mw-drawer-header * {
        color: #ffffff;
    }

    .mw-drawer-content > * {
        padding: .5rem 1rem;
    }

    .mw-drawer-body {
        position: relative;
        flex-grow: 1;
        overflow: auto;
        padding: 1rem;
    }
}


.corporate-vehicle-card {
    background-color: #ffffff;
    position: relative;
    border: 2px solid #EEEEEE;
    padding: 8px;
    overflow: hidden;
}

.corporate-vehicle-card.active,
.corporate-vehicle-card:hover {
    outline: 2px solid #333333;
    outline-offset: -2px;
    background-color: #f5f5f5;
}



.corporate-vehicle-card:not(:last-child) {
    border-bottom: none;
}

.corporate-vehicle-card:first-child {
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
}
.corporate-vehicle-card:last-child {
    border-bottom-left-radius: .75rem;
    border-bottom-right-radius: .75rem;
}

@media screen and (max-width: 767px) {
    .corporate-vehicle-card .vehicle-card-title {
        font-size: 15px;
    }
}
.corporate-vehicle-btn {
    display: inline-block;
    padding: 3px 16px;
    background-color: #222222;
    color: #ffffff;
    border: none;
    -webkit-border-radius: 50rem;
    border-radius: 50rem;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .corporate-vehicle-btn {
        border-radius: 0;
        -webkit-border-radius: 0;
        text-align: center;
        font-size: 12px;
        padding: 1px 8px;
    }

    .corporate-vehicle-card {
        padding: 14px;
    }
}



@media screen and (max-width: 767px) {
    body div.container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }



    .btn-md-w-small {
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 13px;
    }
}

@media screen and (max-width: 575px) {
    .embed-responsive-xs::before {
        content: none !important;
    }
    .embed-responsive-xs img {
        position: relative !important;
        max-height: 170px;
    }
}

.text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}
.text-shadow-light {
    text-shadow: 1px 1px 3px #ffffff;
}

.mb-n6 {
    margin-bottom: -4.5rem;
}
.pt-6 {
    padding-top: 4.5rem;
}

@media screen and (min-width: 992px) {
    .lg-absolute-right {
        position: absolute;
        right: 0;
        top: 0;
    }
}


.red-card {
    background-color: var(--brand-primary);
}

.red-card >*{
    border-radius: 0;
    border: 0;
    background-color: var(--brand-primary);
}

.bg-left-outer-img {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 0;
    z-index: 0;
}

.bg-left-outer-img::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 90%;
    background-color: #000000;
    top: 0;
    right: 0;
    z-index: -1;
}
.bg-right-outer-img {
    position: relative;
    padding: 1.5rem 0 1.5rem 1.5rem;
    z-index: 0;
}
.bg-right-outer-img::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 90%;
    background-color: #000000;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 991px) {
    .bg-left-outer-img, .bg-right-outer-img {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
    .bg-left-outer-img::after,
    .bg-right-outer-img::after {
        width: 100%;
    }
}

.cover-photo {
    width: 100%;
    height: auto;
}

.employee-profile-photo-group {
    position: relative;
    z-index: 1;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.top-0 {
    top: 0;
}
.bottom-0 {
    bottom: 0;
}

.employee-profile-photo-group img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}



.max-w-180px {
    max-width: 180px;
}

.w-180px {
    width: 180px;
}

.embed-responsive-5by1::before {
    padding-top: 20%;
}

.overflow-visible {
    overflow: visible !important;
}

.mt-n6 {
    margin-top: -4.5rem !important;
}

@media screen and (min-width: 992px) {
    .mb-lg-n6 {
        margin-bottom: -4.5rem !important;
    }
}

.pt-7 {
    padding-top: 5rem;
}

.z-index-1 {
    z-index: 1;
}

.section-bg-gradient-deep-red {
    position: relative;
    z-index: 1;
}

.section-bg-gradient-deep-red::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 90px);
    background-image: linear-gradient(to bottom, #140400, #E43100);
    bottom: 0;
    left: 0;
    z-index: -1;
}

.btn-gradient-red {
    background-image: linear-gradient(to bottom, #140400, #E43100);
    color: #ffffff;
    border: none;
}
.btn-gradient-red:hover {
    background-image: linear-gradient(to bottom, #140400, #E43100);
    color: #ffffff;
}
.btn-dark-to-gradient-red {
    background-color: #343A45;
    background-image: linear-gradient(to bottom, #343A45, #343A45);
    color: #ffffff;
    border: none;
}
.btn-dark-to-gradient-red:hover {
    background-color: #343A45;
    background-image: linear-gradient(to bottom, #140400, #E43100);
    color: #ffffff;
}

.nav-pills .active .nav-pills-active-btn {
    background-image: linear-gradient(to bottom, #140400, #E43100);
    color: #ffffff;
    border: none;
}

@media screen and (max-width: 991px) {
    .mw-section-bg-gradient-deep-full.section-bg-gradient-deep-red::before {
        height: 100%;
    }
    .text-lg-down-center {
        text-align: center;
    }
    img.icon-lg-down-small {
        max-width: 24px;
        max-height: 24px;
        width: auto;
        height: auto;
    }
}

.before-100::before {
    height: 100% !important;
}

.icon-24 {
    max-width: 24px;
    max-height: 24px;
    width: auto;
    height: auto;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.nav-between .owl-prev,
.nav-between .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-between .owl-prev {
    left: 0;
}
.nav-between .owl-next {
    right: 0;
}

.viewbox-content {
    max-width: 100%;
    max-height: 100%;
}
.viewbox-button-default {
    cursor: pointer;
    height: 40px;
    width: 40px;
}


/*=============== FAQ ===================*/
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.faq-item {
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    background-color: var(--doc-light);
    color: #000000;
    transition: all .3s ease-in-out;
}

.faq-item:not(:last-child) {
    margin-bottom: 1rem;
}
.faq-question,
.faq-question:hover {
    padding: 1.25rem 1rem 4px 1rem;
    display: flex;
    display: -webkit-flex;
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid #333333;
    text-decoration: none;
}
.faq-toggle-icon {
    margin-left: auto;
}
.faq-item.active .faq-question {
    /*color: #ffffff;*/
}

.faq-content {
    padding: 1.5rem calc(1rem + 2vw);
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, .5);
    background-color: #fafafa;
    font-weight: 400;
    color: #6c757d;
}

.faq-item:not(.active) .faq-answer {
    display: none;
}
.faq-toggle-icon {
    transition: all .3s ease-in-out;
    transform: scale(1.5);
    align-self: start;
}
.faq-item.active .faq-toggle-icon {
    transform: scale(1.5) rotate(-180deg);
}

.tab-gradient-btn {
    background-color: #ffffff;
    outline: 1px solid #DDDDDD;
    padding: 12px 24px;
    color: #6c757d;

}

.active.tab-gradient-btn {
    background: #FA3600;
    background-image: linear-gradient(to right, #000000, #FA3600);
    outline: none;
    color: #ffffff;
}

.vehicle-photo-delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}
/*=============== Chauffeur Registration ===================*/
.chauffeur-registration .partner-register-block {
    background-color: #FFFFFF !important;
}

.chauffeur-registration .partner-register-form {
    background-image: linear-gradient(to bottom, #140400, #E43100);
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.partner-register-form h2 {
    color: white;
    text-align: center;
}

.note {
    color: white;
    font-size: 0.9em;
    text-align: center;
}

.partner-home .partner-register-block .register-message {
    padding: 85px 40px 0px 45px;
     color: #000000;
    font-size: 32px;
    font-weight: 700;
}

.questions-section {
    font-family: Arial, sans-serif;
    background-color: #D9D9D9;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.questions-text {
    color: #000000;
    font-weight: bold;
    font-size: 20px;
}

.btn-talk {
    display: flex;
    align-items: center;
}
.btn-talk::before {
    content: '📞';
    margin-right: 5px;
}

.partner-reg-form-help-btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.partner-reg-form-help-btn:hover {
    background-color: #ff5722; /* Change background color on hover */
    color: white; /* Change text color on hover */
}

.btn-talk.partner-reg-form-help-btn:hover {
    background-color: #ff7043; /* Different hover color for "Let's talk" button */
}

.chauffeur-registration .partner-register-block .partner-register-form .form-control {
    border: none;
    border-radius: 7px;
    padding: 19px 20px;
}

.partner-register-form input {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: -5px;
    width: 100%;
}

.chauffeur-registration .partner-register-block .partner-register-form .btn {
    border-radius: 0px;
    padding: 9px 5px;
}

.business-rise-section {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.business-rise-text {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}
.arrow-icon {
    display: inline-block;
    width: 60px;
    height: 30px;
    border: 2px solid #ff6600;
    border-radius: 25px;
    position: relative;
}
.arrow-icon::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #ff6600;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}





.chauffeur-reg .diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.feature-curve {
    /*background-color: #f0f0f0;*/
    width: 100%;
    max-width: 360px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 2048 963" width="1200" height="700" xmlns="http://www.w3.org/2000/svg"><path transform="translate(56,6)" d="m0 0 23 1 285 25 620 55 25 2h41l62-6 79-7 269-24 517-46h21l12 4 12 7 8 7 7 10 6 12 2 6v15l-8 50-9 54-9 57-6 36-7 41-8 49-13 79-4 26v20l7 45 11 71 14 90 24 155 8 48 1 9v13l-3 10-7 12-8 9-12 9-8 4-9 2h-23l-944-82-37-2-43 3-340 31-516 47-25 2h-18l-12-3-12-6-12-11-7-11-4-12-1-5v-11l5-30 17-86 26-133 14-70 17-87 2-11v-21l-10-49-18-86-19-92-11-53-13-64-8-40-1-17 4-16 6-11 9-10 8-6 11-5z" fill="%23F5F5F5"/></svg>');
    background-repeat: no-repeat;
    background-size: 95% 100%;
    background-position: center;
}



@media screen and (min-width: 992px) {
    .feature-curve {
        padding: 24px 48px;
    }

    .feature-curve.coordinate-line-x::before {
        content: '';
        position: absolute;
        width: 140%;
        height: 1px;
        background-color: #000000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(25deg);
        z-index: -1;
    }
    .feature-curve.coordinate-line-x::after {
        content: '';
        position: absolute;
        width: 140%;
        height: 1px;
        background-color: #000000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-25deg);
        z-index: -1;
    }

}

.feature-curve h2 {
    font-size: 17px;
}


.feature-curve p {
    font-size: 13px;
    margin: 0;
}

.chauffeur-reg .feature h2 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}
.chauffeur-reg .feature p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}
.chauffeur-reg .side-features {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.chauffeur-reg .center-feature {
    margin: 20px 0;
}
@media (max-width: 768px) {
    .chauffeur-reg .side-features {
        flex-direction: column;
        align-items: center;
    }
}


.container-fluid-plr{
    padding-right: 50px !important;
    padding-left: 50px !important;
}

.lang-dropdown-menu{
    top: 0px;
    right: 0;
    position: absolute;
    height: auto;
    width: 200px;
    background-color: white;
    z-index: 999;
    box-shadow: -4px 8px 8px 0px rgb(0 0 0 / 40%);
    padding: 15px;
    text-align: left;
}

.text-start{
    text-align: left !important;
}


p {
    font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

.custom-dropdown {
    z-index: 1003;
}

.custom-dropdown .dropdown-item {
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.text-link-hover {
    color: initial;
    text-decoration: none; /* Optional: Remove underline */
}

.text-link-hover:hover {
    color: red; /* Change color on hover */
}



.toggle-icon {
    cursor: pointer;
}

/* Optional: Add some animation */
.vehicle-filter-content {
    transition: all 0.3s ease;
}

.color-primary {
    color: var(--brand-primary-hover);
}

.m-m20{
    margin: -20px;
}

.m-m20{
    margin: -50px;
}

.whats-app-icon-area{
    position: fixed;
    bottom: 21px;
    right: 23px;
    /*border: 4px solid #ffc107;*/
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.whats-app-img-shadow{
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: #ffffff;
    display: none;
}

.cookie p {
    padding: 15px 15px 0px 15px;
    color: #ffffff;
}

.add-waypoint-btn{
    background: none !important;
    border: none;
}

.add-waypoint:hover{
    cursor: pointer;
}

.itinerary-remove-btn{
    border: none;
}


/*============ Corporate Banner ==============*/

.corporate-navbar,
.transparent-navbar:not(.navbar-independent) {
    position: fixed;
    top: 0;
    width: 100%;
}

.transparent-navbar.navbar-independent {
    position: sticky;
    top: 0;
    width: 100%;
}
.corporate-navbar.on-scroll-nav-fixed {
    background-color: var(--gray-dark);
}


.logo-on-fixed {
    display: none;
}
.on-scroll-nav-fixed .brand-logo,
.navbar-independent .brand-logo {
    display: none;
}
.on-scroll-nav-fixed .logo-on-fixed,
.navbar-independent .logo-on-fixed {
    display: block;
}

.transparent-navbar.on-scroll-nav-fixed,
.transparent-navbar.navbar-independent {
    background-color: var(--brand-primary);
}

.nav-banner-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.only-nav-banner-spacing {
    padding-top: calc(3rem + 6vw);
    padding-bottom: calc(3rem + 6vw);
}

@media screen and (min-width: 992px) {
    .nav-banner-spacing {
        padding-top: calc(4rem + 5vw);
    }

    .border-md-x-0 {
        border-left: 0 !important;
        border-right: 0 !important;
    }

    .border-md-x-0 ~ * .select2-selection--single {
        border-left: 0 !important;
        border-right: 0 !important;
    }
}
@media screen and (max-width: 991px) {
    .transparent-navbar {
        background-color: var(--brand-primary);
        position: sticky !important;
    }
    .transparent-navbar .brand-logo {
        display: none;
    }
    .transparent-navbar .logo-on-fixed {
        display: block;
    }
    .nav-banner-spacing {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}


.corporate-navbar .navbar-nav-pills .nav-link,
.corporate-navbar .navbar-nav-pills .nav-link.bg-white,
.transparent-navbar .navbar-nav-pills .nav-link,
.transparent-navbar .navbar-nav-pills .nav-link.bg-white {
    background-color: transparent !important;
    border-radius: 0;
    border: 0;
    color: #ffffff;
}

.transparent-navbar .nav-link:hover {
    color: #ffffff !important;
}

.corporate-navbar .navbar-nav-pills .nav-link:hover,
.transparent-navbar .navbar-nav-pills .nav-link:hover {
    border: 0;
    color: var(--primary);
}

body .corporate-navbar div.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
body .transparent-navbar div.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.corporate-banner-content {
    min-height: 360px;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: end;
    -webkit-justify-content: flex-end;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.corporate-card {
    border-radius: .5rem;
    height: 100%;
}
.corporate-card >* {
    background-color: transparent;
    border: none;
}
.corporate-card > .card-header {
    background-color: transparent;
    padding: 0;
}

.corporate-card > .card-header >* {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    overflow: hidden;
}

.corporate-card img {
    transition: all .3s;
}
.corporate-card:hover img {
    transform: scale(1.2);
}

.text-gradient-right {
    background: linear-gradient(to right, #000000 0%, #FA3600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-black-important{
    color: #000000 !important;
}

/*========= Customize updated css =========*/
a:not(:hover) {
    text-decoration: none;
}
.ratio-2x4 {
    --bs-expect-ratio: 200%;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

.m-n1 {
    margin: -.25rem !important;
}
.m-n2 {
    margin: -.5rem !important;
}
.my-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.5rem !important;
}
.mx-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}
.nav-between .owl-prev,
.nav-between .owl-next {
    border: none;
    background-color: transparent;
}
.nav-between .owl-prev span,
.nav-between .owl-next span {
    transform: scale(1.5);
    font-size: 24px;
}



/*========= Special Offer ===========*/
.special-offer-card {
    background-color: #F5F6F7;
    border: none;
    transition: all .2s;
    border-radius: 0;
}
.special-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 2px rgba(0, 0, 0, .15);
}

.special-offer-card >*:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
}
.special-offer-card >*:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.special-offer-card >* {
    border: none;
    background-color: transparent;
}
.special-offer-card .card-header {
    padding: 0;
}

.special-offer-card-title {
    display: block;
    color: var(--brand-dark);
    font-size: calc(18px);
    font-weight: 600;
    margin-bottom: .75rem;
}
.special-offer-card-title:hover {
    color: var(--brand-primary);
    text-decoration: none;
}

img.icon-normal {
    width: 20px;
    height: auto;
}
img.icon-md {
    width: 24px;
    height: auto;
}

@media screen and (min-width: 992px) {
    .g-lg-medium-4 {
        margin: -1rem;
    }
    .g-lg-medium-4 >* {
        padding: 1rem;
    }
}

/*.gallery-ratio {*/
/*    --bs-aspect-ratio: calc( 76.35%) !important;*/
/*}*/
.gallery-ratio {
    --bs-aspect-ratio: calc( 61%) !important;
}

.special-offer-thumb-row {
    margin: -4px !important;
}
.special-offer-thumb-row >* {
    padding: 4px !important;
}

.overlay-center-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
}


/*======== Collapsible Offer Info Content ===============*/
.offer-info-box {
    background-image: radial-gradient(circle, #ffffff 80%, rgba(0, 0, 0, .025));
}
.offer-info-item {
    border-bottom: 1px solid #DDDDDD;
}
.offer-info-item:last-child {
    border-bottom: none;
}

.offer-info-toggler {
    font-size: 14px;
    padding: 1rem 0;
    font-weight: 600;
}



.offer-info-toggler .toggler-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}
.offer-info-toggler .toggler-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}


.collapsible-item.collapsible-timing .toggler-icon {
    transform: translateY(-50%) rotate(-180deg);
}
.collapsible-item.show .toggler-icon {
    transform: translateY(-50%) rotate(-180deg);
}
.collapsible-item.show.collapsible-timing .toggler-icon {
    transform: translateY(-50%) rotate(0deg);
}


.offer-info-content >* {
    padding: 0 0 2rem 0;
    font-size: 13px;
}

.viewbox-container {
    z-index: 1500 !important;
}

.viewbox-content {
    /*max-height: 100vh !important;*/
    /*max-width: 100vw !important;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.viewbox-body {
    background: transparent !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
.viewbox-content .viewbox-image {
    width: auto !important;
    height: auto !important;
    max-height: 90vh !important;
    max-width: 90vw !important;

    background: #ffffff;
    padding: .5rem !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.offer-date-range {
    font-size: 13px;
    color: #6c757d;
}

.custom-label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.max-w-100px {
    max-width: 100px;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb-item.text-white::before {
    color: #ffffff;
}

.ms-n1 {
    margin-left: -4px;
}
.mt-n1 {
    margin-left: -4px;
}
.mt-n2 {
    margin-top: -8px;
}


.form-floating {
    position: relative;
}

.form-floating label {
    width: 100%;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}