:root {
    --primary-color: #3b3b3b;
    --primary-color-light: #003d418a;
    --accent-color: #2DBE60;
    --background-color: #f5f5f5;
    --widget-background: #FFFFFF;
    --border-color: #E0E0E0;
}


.search-container {
    font-family: sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    border-radius: 37.5px;
    padding: 8px;
    max-width: 800px;
    width: 100%;
}

@media (max-width: 600px) {
    .search-container {
        max-width: 100%;
        border-radius: 20px;
        padding: 0;
        box-shadow: none;
        background: none;
        display: block;
    }

    .search-form {
        display: none;
    }

}

.search-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.search-section {
    position: relative;
    flex: 1;
    padding: 8px 20px;
    cursor: pointer;
    border-right: 1px solid var(--border-color);
    min-width: 150px;
}

.search-section:last-of-type {
    border-right: none;
}

.search-section.active {
    background-color: var(--widget-background);
    border-radius: 30px;
}

.search-section .label-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.search-section .label-line .icon {
    display: none;
}

.selected-icon svg {
    height: 18px !important;
    width: 18px !important;
}

.search-section.has-value .label-line .icon {
    display: inline-block;
    color: var(--primary-color);
}

.search-section .display-value {
    display: flex;
    align-items: center;
    justify-content: start;
}

.search-section p {
    font-size: 14px;
    color: var(--primary-color-light);
    margin: 2px 0 0 0;
    white-space: nowrap;
    font-weight: 500;
}

.search-section.has-value p {
    color: var(--primary-color-light);
    font-weight: 600;
}

.search-section .selected-icon {
    color: var(--primary-color-light);
    font-weight: 600;
}

.search-section.active .selected-icon {
    color: var(--primary-color);
    font-weight: 600;
}

.search-section.active p {
    color: var(--primary-color);
    font-weight: 600;
}

.clear-btn {
    background: #e0e0e0;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
}

.clear-btn:hover {
    background: #d0d0d0;
}

/* --- Dropdown General --- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0 !important;
    background-color: var(--widget-background);
    border-radius: 8px;
    padding: 8px;
    margin: 0;
    z-index: 1000;
}

#mydrop #where-dropdown {
    right: 0 !important;

}

.search-section.active .dropdown-menu {
    display: block;
}

#what-dropdown {
    padding: 0;
    background-color: transparent;
    border: none !important;
}

#what-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    padding: 0;
    border: none;
}

#what-dropdown .item-icon {
    margin-right: 12px;
    color: var(--primary-color);
}

#what-dropdown .item-text {
    flex-grow: 1;
}

#what-dropdown .item-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

#what-dropdown .item-text p {
    font-size: 12px;
    color: var(--primary-color-light);
    margin: 2px 0 0 0;
}

#what-dropdown .arrow-icon {
    color: #B0BEC5;
}

#when-dropdown {
    width: 320px;
    padding: 16px;
}


.time-inputs {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    width: 100%;
    gap: 5px;
}

.time-inputs .time-input {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.time-inputs .time-input span {
    font-size: 13px;
    color: grey;
    font-weight: normal;
}

.time-inputs .time-input .time {
    font-weight: 600;
}

.time-dropdown {
    background: var(--widget-background);
    border-radius: 5px !important;
    box-shadow: 0 4px 24px rgba(0, 61, 65, 0.08);
    border: 1px solid var(--border-color);
    min-width: 140px !important;
    padding: 0 !important;
    margin-top: 8px;
    z-index: 1001;
    max-height: 285px;
    overflow-y: auto;
    position: absolute;
    left: 0;
}

.time-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 285px;
}

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

.pass-count-hedding {
    display: block;
    color: #0f3e3d;
    margin-bottom: -8px;
}

.time-dropdown .time-option {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 100;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    background: none;
    transition: background 0.2s;
}

.time-dropdown .time-option:last-child {
    border-bottom: none;
}

.time-dropdown .time-option:hover {
    background: #00c26d !important;
    color: white !important;
    font-weight: 400;
}

.time-dropdown .option-meta {
    font-size: 13px;
    color: var(--primary-color-light);
    font-weight: 400;
    margin-left: 16px;
}

.time-inputs .time-input {
    background: var(--widget-background);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 0 5px;
    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 41px;
    position: relative;
    font-size: 13px;
    color: grey;
    font-weight: normal;
}

.time-inputs .time-input span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 11px;
    color: grey;
    font-weight: normal;
}

.time-input .time {
    font-weight: 400;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-inputs .time-input .time svg {
    color: var(--primary-color);
}

.time-inputs .time-input:last-child {
    margin-bottom: 0;
}

#where-dropdown {
    width: 450px;
    padding: 20px;
}

#where-dropdown h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: var(--primary-color);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;

    i {
        margin-top: 20px;
    }
}

.location-icon {
    margin-right: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-icon .dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.location-icon .line {
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
}

.location-icon .stop-number {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-color);
}

.location-input-wrapper {
    flex-grow: 1;
    position: relative;
    margin-top: 3px;
}

.location-input-wrapper label {
    font-size: 11px;
    color: var(--primary-color-light);
}

.location-input-wrapper input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    padding-top: 20px;
}

.location-input-wrapper .delete_stop {
    position: absolute;
    right: 3px;
    bottom: 8px;
    padding: 9px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: transparent;
}

.location-item.end-location .location-input-wrapper input {
    padding-right: 40px;
}

.remove-stop-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-stop-section {
    display: flex;
    align-items: center;
    margin-left: 32px;
    margin-top: -8px;
    margin-bottom: 12px;
}

.add-stop-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.add-stop-btn .plus-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.end-location-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(18px);
}

.search-button {
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
}

.item-icon {
    width: 50px !important;
    height: 50px !important;
    color: var(--primary-color);
    background-color: #F0F8F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disabled-item {
    opacity: 0.5;
    /* pointer-events: none; */
    /* cursor: default; */
}

.disabled-item .item-icon,
.disabled-item .item-text,
.disabled-item .arrow-icon {
    color: #B0BEC5;
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.disabled-date {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.vehicle-filter {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    max-width: 750px;
    width: 100%;
    margin: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vehicle-filter input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.vehicle-filter input[type="text"]:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.desktop-vehicle-filter-cus-style {
    height: 455px;
    width: 455px !important;
    overflow-x: hidden;
    padding: 15px 20px !important;
}

.vehicals_type_inner_style {
    height: 150px;
    overflow-y: scroll;
}

.action-btn-new-cus {
    margin-top: 20px;
}

input[type="checkbox"] {
    accent-color: #00c26d;
}

input[type="checkbox"]:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

#desktop-header-search-modal2-2 {
    margin: 0 !important;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag-list span {
    display: inline-block;
    padding: 3px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.tag-list span.active {
    color: #fff;
}

.action-button {
    display: flex;
    justify-content: center;
}

.tag-list input[type="checkbox"] {
    display: none;
}

.tag-list label {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #565656;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    font-weight:normal;
}

.tag-list input[type="checkbox"]:checked+label {
    display: none;
}

.action-button button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 5px 60px;
    font-size: 16px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-button button:hover {
    background-color: var(--accent-color);
}

.vehicle-type-popup {
    display: block;
    position: absolute;
    left: -20%;
    top: -10%;
    z-index: 999;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 420px;
    border-radius: 16px;
}

.search-container-sm {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 1px solid rgb(237, 237, 237);
    cursor: pointer;
}

.search-container-sm-icon {
    width: 40px;
    height: 40px;
    background-color: #e7f1ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    font-size: 16px;
    color: #004d40;
}

.search-container-sm-icon.right-icon {
    background-color: #003f3f;
    color: #fff;
}

.search-container-sm-content {
    flex: 1;
    margin: 0 12px;
}

.search-container-sm-content h3 {
    font-weight: 600;
    color: #003D41;
    margin: 0 0 4px;
}

.search-container-sm h3 {
    font-size: 14px;
}

.search-container-sm .header-sm-dynamic-val {
    font-size: 12px !important;
}


.search-container-sm-content p {
    font-size: 12px;
    color: #003d4192;
    margin: 0;
}

.header-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
}

.custom-sidebar {
    position: absolute;
    padding-top: 5px;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: none;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    z-index: 9990;
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-sidebar::-webkit-scrollbar {
    display: none;
}

.slidebar-custom-trip-container {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border: 1px solid #dadada;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 10px;
    box-sizing: border-box;
    text-align: center;
}

.slidebar-custom-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    cursor: pointer;
}


.header-sm-location-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.header-sm-location-input:focus {
    border-color: var(--accent-color);
}

.header-sm-end-location .header-sm-location-input {
    background-color: #f2fbf8;
}

.header-sm-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.header-sm-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
}

.header-sm-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.header-sm-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.header-sm-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.header-sm-switch input:checked+.header-sm-slider {
    background-color: var(--accent-color);
}

.header-sm-switch input:checked+.header-sm-slider:before {
    transform: translateX(16px);
}

#where-dropdown {
    transform: translateX(-245px);
}

.counter-menu-container {
    padding: 5px !important;
    width: 350px !important;
    transform: translateX(-180px) !important;
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
}

.first-counter-container {
    margin-bottom: 5px;
}

.counter-container .label .title {
    font-weight: 600;
    font-size: 16px;
}

.counter-container .label .subtitle {
    font-size: 13px;
    color: #777;
}

.counter-container .controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-container .btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0 !important;
}

.counter-container .btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.counter-container #count {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.add_stop_btn {
    transform: translate(-20px, -4px) !important;
}

.add_stop_btn,
.add_stop_btn-sm {
    background-color: white;
    color: var(--accent-color);
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 99999;
    transform: translateX(-20px);
    padding-bottom: 0px;
}

.add_stop_btn-sm {
    text-align: center;
    transform: translate(-145px, -20px);
    padding-bottom: 0;
}

.location-list-sm {
    padding: 0 !important;
    padding-top: 20px;
    /* padding-right: 15px !important; */
}

.location-list-stop {
    max-height: 200px;
    overflow-y: scroll;
    padding-bottom: 5px;
}

.location-list-sm {
    max-height: 200px;
    overflow-y: scroll;
    padding-top: 30px;
    margin: 0;
}

.header-sm-location-input-wrapper-first-input {
    margin-bottom: 35px;
}

.location-list-sm .location-item {
    margin-bottom: 35px;
}

.floating-lable-large-sc {
    position: absolute;
    top: 4px;
    left: 10px;
}

.lg-end-location-input {
    margin-top: 22px;
}

.floating-lable-large-sc-ex {
    top: 30px;
}


.vtf-container {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    max-width: 450px;
    margin: auto;
}

.vtf-search-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.vtf-search-input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.vtf-checkbox-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vtf-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.vtf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.vtf-tags span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vtf-action {
    display: flex;
    justify-content: center;
}

.vtf-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vtf-button:hover {
    background-color: var(--accent-color);
}

.vtf-popup {
    position: absolute;
    left: -20%;
    top: -10%;
    z-index: 999;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 420px;
    border-radius: 16px;
}

.search-container-sm-content-date-pass-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hader-sm-pass-count {
    position: absolute;
    right: 0;
    top: 40px;
}

.submit-btn-header-sm {
    background-color: var(--accent-color);
    color: white;
    outline: none;
    border: none;
    margin: 20px auto;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 7px;
}

.counter-container .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-container .btn {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.counter-container .count {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    display: inline-block;
}

#sidebar-item-four .sidebar-item-four-minized strong {
    font-weight: bold;
    color: #333;
}

#when-dropdown .datepicker-inline {
    width: 100% !important;
}

.datepicker table {
    width: 100% !important;
}

.datepicker td,
.datepicker th {
    height: 40px !important;
    width: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

#when-dropdown .active {
    background-color: var(--accent-color) !important;
    color: white !important;
    background-image: unset !important;
}

#start-time-value,
#drop_time {
    border: none;
    width: fit-content;
    background: transparent;
    outline: none;
    font-size: 14px;
}

#start-time-value {
    transform: translateY(-3px);
}

#dateTimeSummary {
    display: block;
    width: 135px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#mobile-prev-btn,
#mobile-next-btn {
    border-radius: 50%;
    padding: 0;
    height: 40px;
    width: 40px;
}

#mobile-start-time,
#mobile-end-time {
    outline: none;
    transform: translateX(13px);
    border: none;
    background-color: transparent;
}

.datepicker table {
    width: 100% !important;
}

.datepicker td,
.datepicker th {
    height: 40px !important;
    width: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

#start-time-value,
#drop_time {
    border: none;
    width: fit-content;
    color: #0f3e3d;
    background: transparent;
    outline: none;
}

#dateTimeSummary {
    display: block;
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#main_header_vehicle_type_search .filter-options {
    width: fit-content;
}

.filter-option-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 5px;
}

.filter-popup-widht-fixer {
    min-width: 400px;
}

.time-picker-lg-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#mobile-end-time-picker {
    transform: translateX(-78px);
}

.dropdown-position {
    position: relative;
}

#end-time-dropdown-mobile {
    transform: translateX(-87px);
}

#start-time-dropdown-mobile {
    transform: translateX(-7px);
}

.passenger-divider {
    margin: 0 !important;
}

#when_desktop_next_btn.disabled,
#when_mobile_next_btn_sm.disabled,
#where_desktop_next_btn.disabled,
#where_mobile_next_btn_sm.disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
    background-color: var(--accent-color);
    color: var(--widget-background) !important;
    border-color: #aaa !important;
}

.time {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.time input {
    transform: unset !important;
}

.time-picker-sm {
    width: 50%;
}

.time-picker-sm .time-dropdown {
    transform: translateX(-50%) !important;
    top: 65px !important;
    left: 50% !important;
}

.drag-placeholder {
    background-color: transparent !important;
}

#start-time-dropdown-mobile {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    z-index: 1001;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    max-height: 220px;
    overflow-y: auto;
}

@media (max-height:700px) {

    #start-time-dropdown-mobile,
    #start-time-dropdown {
        top: -210px !important;
    }

    #end-time-dropdown-mobile,
    #end-time-dropdown {
        top: -210px !important
    }
}

.sm-header-ride-type-time-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#dateFilter td.day {
    min-width: 40px;
    width: 40px;
    height: 40px;
    min-height: 40px;
}

.day.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchHeaderVehicleTypePopup1 .single_check {
    margin-right: 5px;
}

#searchHeaderVehicleTypePopup2 .single_check {
    margin-right: 5px;
}

.slidebar-custom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.slidebar-custom-trip-container {
    border: unset;
    box-shadow: unset;
    border-radius: unset;
    padding: 15px 0;
}

.mobile-header-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: fixed;
    z-index: 10;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 12px 24px;
    z-index: 10;
    background-color: #fff;
    z-index: 9999;
}

.mobile-header-footer .clearall-btn {
    padding: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    background-color: unset;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.mobile-header-footer .clearall-btn:hover {
    color: #2DBE60;
}

.mobile-header-footer .submit-btn-header-sm {
    margin: unset;
    /* width: 122px; */
}

.mobile-tabs-container {
    position: relative;
    margin-bottom: 20px;
}

.mobile-tabs-container .tabs {
    display: flex;
    position: relative;
    justify-content: center;
}

.mobile-tabs-container .tab {
    padding: 10px 20px;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
}

.mobile-tabs-container .tab.active {
    color: #2DBE60;
}

.mobile-tabs-container .tab.active svg path {
    stroke: #2DBE60;
}

.mobile-tabs-container .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #2DBE60;
    transition: all 0.3s ease;
}

.tab-pane {
    max-width: 360px;
    margin-inline: auto;
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: none;
    z-index: 0;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.tab-content {
    overflow-y: auto;
    height: calc(100vh - 155px);
    overflow-x: hidden;
}

.tab-content::-webkit-scrollbar {
    width: 3px;
}

.tab-content::-webkit-scrollbar-track {
    background-color: transparent;
}

.tab-content::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background-color: #8b8888;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0%);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.slide-in-right {
    animation: slideInRight 0.2s ease forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.2s ease backwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0%);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.slide-in-left {
    animation: slideInLeft 0.2s ease forwards;
}

.slide-out-right {
    animation: slideOutRight 0.2s ease backwards;
}

.tab-pane {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.tab-content {
    position: relative;
}


.slidebar-custom-trip-container {
    max-width: unset;
}

.one-way-add-stop-btn {
    transform: unset;
    width: fit-content;
    display: flex;
    margin-inline: auto;
    margin-top: 15px;
    position: unset;
}

.tab-content .location-list-sm {
    overflow-y: unset;
    max-height: unset;
}


.header-sm-location-group {
    position: relative;
}

.header-sm-location-input-wrapper {
    position: relative;
}


.header-sm-location-input {
    width: 100%;
}

.mobile-header-input .header-sm-location-label {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 4px;
    transition: all 0.2s ease;
    pointer-events: none;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: CAP_HEIGHT;
    line-height: 12px;
    color: #7b8a8d;
}

.mobile-header-input .header-sm-location-input:focus+.header-sm-location-label,
.mobile-header-input .header-sm-location-input:not(:placeholder-shown)+.header-sm-location-label {
    top: -10px;
    left: 17px;
}

.daily-option-wrapper .time-wrapper {
    margin-bottom: 25px;
    padding-left: 20px;
}

.daily-option-wrapper .time-wrapper .time-inner {
    display: flex;
    align-items: center;
    gap: 5px;
}

.daily-option-wrapper .time-wrapper .time-inner .time-input-wrapper {
    flex: 50%;
    position: relative;
}

.daily-option-wrapper .time-wrapper .time-inner .time-input-wrapper svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #003D41;
}

.daily-option-wrapper .time-wrapper .time-inner .time-input-wrapper input {
    text-overflow: ellipsis;
    padding-left: 35px;
}

.daily-option-wrapper .time-wrapper .time-inner .time-input-wrapper .header-sm-location-label {
    left: 35px;
}

.daily-option-wrapper .time-wrapper .time-inner .time-input-wrapper input:focus+.header-sm-location-label,
.daily-option-wrapper .time-wrapper .time-inner .time-input-wrapper input:not(:placeholder-shown)+.header-sm-location-label {
    left: 0;
}

.daily-option-wrapper .header-sm-end-location {
    margin-bottom: 25px;
}

.daily-option-wrapper .estimated-time-info {
    font-weight: 400;
    font-size: 11px;
    font-style: oblique;
    line-height: 100%;
    color: #7b8a8d;
    ;
    margin-top: 10px;
    text-align: left;
    opacity: 1;
    margin-left: 20px;
}

.daily-option-wrapper .heading {
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #003D41;
    margin-bottom: 23px;
    opacity: 0.3;
    text-align: left;
}

.daily-option-wrapper input {
    text-overflow: ellipsis;
}

.location-list-sm .location-item {
    margin-bottom: 20px;
}

.daily-option-wrapper .header-sm-location-input-wrapper-first-input {
    margin-bottom: 25px;
}

.slidebar-custom-trip-container {
    padding: 5px 0;
}

.custom-sidebar {
    padding-top: unset;
}

#pickup-display {
    display: block;
    width: 135px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-container-sm-content p {
    flex-wrap: wrap;
}

.search-container-sm-content p .hader-sm-pass-count.header-sm-dynamic-val {
    color: #333;
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
}

.disabled-tab {
    opacity: 0.3;
    pointer-events: none;
}

#mobile-start-time,
#mobile-end-time {
    outline: none;
    transform: translateX(13px);
    border: none;
    background-color: transparent;
}

#mobile-start-time-tab2,
#mobile-end-time-tab2,
#mobile-start-time-tab3,
#mobile-end-time-tab3,
#mobile-start-time,
#mobile-end-time {
    outline: none;
    transform: translateX(13px);
    border: none;
    background-color: transparent;
    width: 100%;
}

.mobile-header-timepicker {
    min-width: 120px !important;
    width: auto !important;
    position: fixed;
}

.date-filter-modal #dateFilter .datepicker.datepicker-inline .datepicker-days .table-condensed .day {
    padding: 16px 0 !important;
}

.date-filter-modal #dateFilter .datepicker.datepicker-inline .datepicker-days .table-condensed .day {
    height: 20px !important;
}

.date-filter-modal #dateFilter .datepicker.datepicker-inline .datepicker-days .table-condensed .day.active {
    display: table-cell;
}

.date-filter-modal #dateFilter .datepicker.datepicker-inline .datepicker-switch,
#when-dropdown .datepicker-switch,
#dateFilter_header_mobile .datepicker-switch {
    border-radius: 5px !important;
}

.hourly-add-stop-btn {
    transform: unset;
    width: fit-content;
    display: flex;
    margin-inline: auto;
    margin-top: 15px;
    position: unset;
    margin-bottom: 10px;
}

.location-item.end-location:last-child {
    margin-bottom: 0px;
}

.hourly-first-input {
    margin-bottom: 15px;
}

#sidebar-item-four {
    margin-bottom: 80px;
}

.desktop-add-stop-btn {
    transform: unset !important;
    width: fit-content;
    display: flex;
    margin-inline: auto;
    margin-top: 8px;
    position: unset;
}

.popup-desktop-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.desktop-vehicle-popup-tab-container {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding-bottom: 5px;
    width: 300px;
}

.desktop-vehicle-popup-tab {
    font-size: 18px;
    font-weight: 500;
    color: #2a3b3f;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.desktop-vehicle-popup-tab svg {
    stroke: currentColor;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.desktop-vehicle-popup-tab p {
    margin-top: 5px;
    margin-bottom: 0px;
}

.desktop-vehicle-popup-tab.desktop-vehicle-popup-active {
    color: #00c851;

    p {
        color: #00c851;
    }
}

.desktop-vehicle-popup-tab.desktop-vehicle-popup-active svg {
    transform: scale(1.1);
}

.desktop-vehicle-popup-tab-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #00c851;
    width: 80px;
    border-radius: 50px;
    transition: transform 0.35s ease;
}
.desktop-vehicle-popup-comingsoon {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  padding: 50px 15px;
  color: #222;
}
.display-none{
    display: none;
}

.desktop-vehicle-popup-car-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 1320px;

}

.desk-trip-type-tabs1,
.desk-trip-type-tabs2,
.desk-trip-type-tabs3 {
  flex-shrink: 0;
  width: 440px;
  height: 100%;
  p{
    text-align: center;
  }
  
}

.desk-trip-type-tabs1,
.desk-trip-type-tabs2{
    padding-right: 25px;
}

.desk-trip-type-tabs-common{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.desk-trip-type-tabs-common p{
    text-align: center;
    font-size: 25px;
    font-weight: bolder;
    margin-top: 100px;
}
.mobile-trip-type-tabs-common{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.mobile-trip-type-tabs-common p{
    text-align: center;
    font-size: 25px;
    font-weight: bolder;
    margin-top: 35vh;
}

/* .map-sm-wrapper {
    display: none;
} */

.vehicals_type_inner_style{
    scrollbar-width: thin; 
    scrollbar-color:  #c4c8cb  ; 
}

.time-sm-display-custom{
    display: none;
}


@media (max-width:755px) {

    .desktop-header-form {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh !important;
        width: 100vw;
        z-index: 100;
        display: none;
    }

    .search-container-sm {
        display: flex !important;
    }

    .popup-desktop-tabs-wrapper {
        display: none;
    }

    .vehicals_type_inner_style {
        height: fit-content;
    }


    .map-wrapper .map {
        padding-inline: 0px;
    }

    .search-container {
        flex-direction: column;
        height: 100vh;
        border-radius: unset;
        background-color: #fff;
    }

    .search-container .search-form {
        display: flex;
        align-items: center;
        justify-content: center;
        height: fit-content;
        max-height: calc(100vh - 160px);
        /* overflow-y: auto; */
        overflow: auto;
    }

    .search-container .search-form .search-section {
        margin: 5px 0;
        min-width: 370px !important;
        max-width: 370px !important;
        /* height: fit-content; */
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        border-right: unset;
        border-radius: 12px;
        background-color: #fff;
    }

    .search-container .icon {
        text-align: center;
    }
    #pickup-display{
        width: 200px;
        text-align: end;
    }
    #dateTimeSummary{
        width: 175px;
        text-align: end;
    }
    .tab-vehicle-lg{
        /* display: none; */
    }
    .vehicle-filter{
        background: transparent;
    }
    .desk-trip-type-tabs1{
        width: 310px;
    }
    .desk-trip-type-tabs1{
        padding-right: 15px;
    }

    .search-container .tabs {
        margin: 0 auto;
    }

    .search-container .counter-menu-container {
        padding: unset;
        width: unset;
        transform: translateX(0px) !important;
    }

    .search-container #where-dropdown {
        transform: unset !important;
        padding: 0;
    }

    .search-section {
        border: 1px solid rgb(239, 239, 239);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .search-section .dropdown-menu {
        border: unset;
        box-shadow: unset;
        position: relative !important;
    }

    .search-section #dropdown-menu,
    #where-dropdown {
        width: unset;
    }

    .search-section #search-model-header-what,
    #search-model-header-when,
    #search-model-header-where,
    #search-model-header-who {
        display: flex;
        width: 100%;
        justify-content: space-between;

    }

    .search-section .label-line {
        color: #003d417e;
        font-size: 12px;
    }

    .search-section .display-value .selected-icon {
        color: #003D41;
        font-size: 16px;
        font-weight: 600;
    }

    .search-section p {
        color: #003D41;
        font-size: 16px;
        font-weight: 600;
    }

    .search-section.active {
        border-radius: unset;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .vehicle-type-popup {
        position: unset;
        border: unset;
        box-shadow: unset;
        min-width: unset;
        border-radius: unset;
    }

    .desktop-header-form .dynamic-content {
        display: flex !important;
    }

    .desktop-header-form .dynamic-content-sm {
        display: none !important;
    }

    .who-margin {
        margin-bottom: 100px;
    }

    #when_desktop_next_btn,
    #where_desktop_next_btn,
    #vehicle_type_next {
        display: none;
    }

    #what-dropdown {
        width: 100%;
        padding: 0;
    }
    .desktop-vehicle-filter-cus-style {
        height: unset;
    }
    .vehicals_type_inner_style {
        scrollbar-width: auto;
        scrollbar-color: unset;
    }

    .search-section.active .label-line{
        font-size: 18px;
        font-weight: 600;
        color: #0f3e3d;
    }
    
    .search-section.active .display-value{
        display: none;
    }

    .date-time-summary-new{
        display: flex;
        align-items: end;
        justify-content: center;
        flex-direction: column;
    }

    .time-sm-display-custom{
        display: block;
        color:  #555 !important;
        font-weight: normal !important;
        font-size: 12px !important;
        margin-top: 3px;
    }

    #when-dropdown {
        width: unset;
    }

    .desktop-vehicle-filter-cus-style {
        width: unset !important;
    }

    #start-time-value, #drop_time {
        width: 135px;
    }

}


@media (max-width: 380px) {
    .search-container .search-form .search-section {
        min-width: 330px !important;
        max-width: 330px !important;
    }
    .desk-trip-type-tabs1 {
        width: 275px;
    }
    .counter-menu-container {
        width: 300px !important;
    }
}

@media (max-width: 755px) {
    .slide-right {
    animation: slideInRight 0.5s ease;
}

.slide-left {
    animation: slideInLeft 0.5s ease;
}
}

@keyframes slideInRight {
    from {
        transform: translateX(80px);
        opacity: 0;
         z-index: 9999;
    }

    to {
        transform: translateX(0);
        opacity: 1;
         z-index: 9999;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
        z-index: 9999;
    }

    to {
        transform: translateX(0);
        opacity: 1;
         z-index: 9999;
    }
}

.tab-whare-section {
    position: relative;
    transition: 0.5s;
}

.tab-whare-section .header-sm-location-container {
    box-shadow: unset;
    padding: 20px 10px;
}

.tab-whare-section .header-sm-location-container h2 {
    margin-bottom: 40px;
}

.desktop-header-form ::-webkit-scrollbar {
    display: none;
}

.what-drop-comon-class {
    display: none;
}

.what-drop-comon-class.whare-drop-elem-active {
    display: block;
}

.comming-soon-text-curtain {
    height: 100vh;
    width: 60%;
    font-weight: bolder;
    justify-content: center;
    margin-top: 230px;
    font-size: 25px;
}



/* Styling For Tab Switches in Desktop What Modal */
/* ------------------------- */
.trip-tabs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  width: 100%;
}

.trip-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease;
}

.trip-tab svg {
  display: block;
  margin: 0 auto 4px;
  color: inherit;
  transition: color 0.3s ease;
}

.trip-tab p {
  margin: 0;
  font-size: 14px;
}

.trip-tab.active {
    color: #00d35f !important;
  p{
    color: #00d35f !important;
  }
}

.trip-tab-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #00d35f;
  border-radius: 2px;
  transition: left 0.3s ease, width 0.3s ease;
}

.drag-placeholder, .dragged {
    min-width: 100%;
}

/* ---------CSS For Disabled Tooltip------------- */
.custom_tooltip_for_disabled_items {
  position: fixed;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 99999;
}

.custom_tooltip_for_disabled_items._visible {
  opacity: 1;
  transform: translateY(0);
}

.custom_tooltip_for_disabled_items::after {
  content: "";
  position: absolute;
  left: 20%;
  transform: translateX(-50%);
  top: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(0,0,0,0.88);
}

.custom_tooltip_for_disabled_items.flip::after {
  top: auto;
  bottom: -6px;
  border-bottom: none;
  border-top: 6px solid rgba(0,0,0,0.88);
}
.desktop-vehicle-filter-cus-style{
    height: 400px;
}
.search-section{
    flex: unset;
    min-width: 100px !important;
}
.search-section:last-of-type{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-right: 5px;
}
.search-button{
transition: all 0.3s ease;
    transform-origin: 50% 50% 0;
}
.search-button span{
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 0;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 14px;
}
.active.search-button{
    width: 100px;
    border-radius: 24px;
    
    /* transform: scaleX(1.2); */
}
.active.search-button span{
    width: auto;
    margin-left: 5px;
}
@media (min-width:768px) and (max-width:991px) {
	.search-container{
		max-width: unset;
	}
	.search-section{
		padding: 8px 15px;
	}
}
@media (min-width:768px) and (max-width:805px) {
	.search-section{
		padding: 8px 9px;
	}
}