.steps-nav.nav-link.active {
    background: var(--main-color) !important;
    font-size: 16px;
    color: var(--second-color);
    font-family: var(--font-heading);
}

.steps-nav.nav-link.active img {
    filter: brightness(0) invert(1);
}

.card-header {
    background-color: #eee;
}

.steps-nav.nav-link img {
    width: 30px;
    height: 30px;
    display: block;
    margin: auto;
}

.steps-nav.nav-link {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-weight: 500;
    color: var(--black-color);
    border: 1px solid var(--white-color);
}


.steps-indicator {
    padding: 20px 30px;
    justify-content: space-between;
    position: relative;
}

.steps-indicator li {
    position: relative;
}

.steps-indicator::before {
    content: "";
    position: absolute;
    border: 1px dashed var(--second-color);
    top: 50%;
    width: 90%;
    height: 1px;
    z-index: 0;
}

.first-step-box h2,
.second-step-box h2,
.third-step-box h2 {
    margin-bottom: 30px;
}

.select2-container .select2-selection--multiple {
    min-height: 38px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #eee;
    border-color: var(--main-color);
    color: var(--main-color);
    padding: 3px 10px;
    border-radius: 3px;
    float: left;
    margin: 0 5px 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--white-color);
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    display: inline-block;
    margin-left: 7px;
}

.select2-results__option {
    display: block !important;
}

.select2-container--default .select2-selection--multiple {
    min-height: 40px;
    overflow: hidden;
    white-space: normal;
    height: auto !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    max-height: 100px;
    overflow-y: auto;
}

.tailor-made-sidebar {
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 1px 1px 18px 0px #ddd;
    margin-bottom: 20px;
    background: var(--white-color);
}

.trip-initial {
    padding: 0 20px
}

.trip-initial p {
    font-size: 16px;
    text-align: center;
}

.trip-summary {
    padding: 20px;
    display: none;
}

.trip-summary p {
    display: flex;
}

.trip-summary .summary-head {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--main-color);
}

.trip-summary .summary-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--second-color);
    margin-bottom: 10px;
    margin-right: 10px;
    flex: 1;
    font-family: var(--font-heading);
}

.trip-summary p span:not(.summary-item) {
    font-size: 16px;
}

.trip-init-img {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.trip-init-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-init-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.trip-init-img-overlay img {
    width: 50px;
    height: 50px;
    -webkit-animation: pulse infinite;
    animation: pulse infinite;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.trip-init-img-overlay span {
    background: rgba(0, 0, 0, .5);
    padding: 1rem;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    border-radius: 10px;
    font-family: var(--font-heading);
}

.dest-box span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--main-color);
    text-transform: capitalize;
    font-family: var(--font-heading);
    display: inline-block;
    padding: 1rem;
}

.talior-wrapper {
    background: var(--main-grey);
}

.talior-wrapper .card {
    box-shadow: 1px 2px 20px 14px #eee;
    border-radius: 10px;
}

.card-body {
    padding: 30px;
}

.talior-wrapper .backBtn {
    background: var(--white-color);
    border-radius: 10px;
    padding: 10px 20px;
    margin-right: 20px;
    font-size: 16px;
    color: var(--main-color);
    font-weight: 500;
    border: 1px solid var(--main-color);
}

.input-content label {
    z-index: 20;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 13px;
    background: var(--white-color);
    padding: 0 0.5rem;
}

.input-content input[type="text"]:focus+label,
.input-content input[type="email"]:focus+label,
.input-content input[type="number"]:focus+label,
.input-content textarea:focus+label,
.input-content input[type="date"]:focus+label,
.input-content input[type="text"]:not(:placeholder-shown)+label,
.input-content textarea:valid+label,
.input-content input[type="date"]:valid+label .input-content input:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--main-color);
}

.input-content textarea:focus:not(:placeholder-shown)+label,
.input-content textarea:focus:not(:empty)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--main-color);
}



.transfer-form-wrapper {
    margin: auto;
    background: var(--white-color);
    padding: 22px;
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.tailor-made-sidebar {
    border-radius: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: var(--white-color);
}

.tailor-made-sidebar .trip-init-img {
    position: relative;
}

.trip-initial p {
    margin: 5px auto;
}

.trip-init-img-overlay {
    position: absolute;
    bottom: 0;
    z-index: 20;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    backdrop-filter: blur(3px);
    color: var(--white-color);
    border-top: 1px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tailor-made-sidebar .trip-init-img img {
    border-radius: 10px;
    object-fit: cover;
    min-width: 100%;
    height: 383px;
}

.trip-init-img-overlay span {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;

}

.trip-init-img-overlay img {
    width: 50px !important;
    height: 50px !important;
    min-width: auto !important;
}

.trip-summary img {
    height: 200px;
    border-radius: 10px;
    min-width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.step-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    gap: 0;
    border-bottom: solid 1px;
}

.step-nav i {
    display: none;
}

.step-nav .active i {
    display: inline-block;
    height: 25px;
    width: 25px;
    background: #f7921f;
    border-radius: 50%;
    line-height: 25px;
    color: var(--white-color);
    margin-right: 5px;
}

.step-nav div {
    display: flex;
    align-items: center;
    background:transparent;
    padding: 9px 15px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
   text-wrap-mode: nowrap;
}

.transfer-page .tab-content {
    border-radius: 6px;
    padding: 4px;
    margin-top: 36px;
    padding-bottom: 0;
}

.custom-btn {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    line-height: 27px;
    overflow: hidden;
    padding: 8px 48px;
    position: relative;
    transition: all .5s ease;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid;
}



.tab-buttons .nav-link.active {
    border: 4px solid;
    color: #000;
    border-color: #c90013;
    border-radius: 11px;
}

.pickup-ways .nav-link img {
    width: 25px;
    height: 25px;
    color: #000;
    filter: brightness(0.5);
}

.pickup-ways .nav-link.active img {
    width: 25px;
    height: 25px;
    filter: brightness(0.5);
}

.oneway-time,
.twoway-time .departure-date,
.twoway-time .departure-time,
.oneway-location,
.twoway-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.twoway-departure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.oneway-time .input-box,
.twoway-time .input-box,
.oneway-location .input-box,
.twoway-location .input-box {
    flex: 1;
}

.select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.input-box .select2-container {
    width: 100% !important;
    margin-top: 0.25rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 12px;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:focus-visible,
.select2-container--default .select2-selection--single:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.select2-selection__rendered {
    color: #212529;
    line-height: 1.5;
    padding-left: 0;
}

.input-box {
    position: relative;
    margin-bottom: 10px;
}

.input-box label {
    position: absolute;
    top: -19px;
    z-index: 20;
    left: 10px;
    text-transform: capitalize;
    font-size: 17px !important;
    font-weight: 500;
    color: var(--deep-blue);
    background-color: #ffffff;
}

.input-box input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 50px;
    border-radius: 10px;
}

.summary-box {
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.input-box .select2:focus,
.input-box .select2:focus+label {
    border: 1px solid var(--second-color) !important;
}

.input-box input[type="date"]:focus+label,
.input-box input[type="date"]:valid+label,
.input-box input[type="number"]:focus+label,
.input-box input[type="tel"]:focus+label,
.input-box input:not(:placeholder-shown)+label,
.input-box input[type="email"]:focus+label,
.input-box input[type="text"]:focus+label,
.input-box input[type="text"]:not(:placeholder-shown)+label,
.input-box textarea:focus+label,
.input-box textarea:not(:placeholder-shown)+label {
    left: 15px;
    top: -14px;
    background-color: var(--white-color);
    color: #000;
    padding: 3px 5px;
}

.custom-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-tabs .nav-link {
    color: #142843;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 8px;
}

select {
    padding: 11px !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
}

.counter-controls {
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 0;
    gap: 4px;
    justify-content: flex-start;
    padding: 6px;
}

button.decrease-btn {
    background: var(--white-color);
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 40px;
    width: 40px;
    border-radius: 10px;
    color: #000;
    font-size: 20px;
}

button.increase-btn {
    background: var(--white-color);
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 40px;
    width: 40px;
    border-radius: 10px;
    color: #1a2b49;
    font-size: 20px;
}

.form-step3 {
    display: flex;
    justify-content: space-between;
}

.booking-summary {
    border-radius: 8px;
    padding: 20px;
    margin: auto;
}

.booking-summary h3 {
    margin-bottom: 20px;
    font-weight: bold;
}

.info-grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
}

.info-item {
    border-left: 3px solid #eee;
    padding-left: 10px;
}

.info-item small {
    display: block;
    color: #999;
    margin-bottom: 3px;
    font-size: 16px;
}

.info-item span {
    font-weight: bold;
}


.total-price {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #d7b650;
}

.total-label {
    margin-right: auto;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.edit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #0a2a6b;
    background: none;
    color: #0a2a6b;
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
}

.booking-header {
    position: relative;
}

.price-filter {
    border: 2px solid #e9ecef;
    padding: 11px;
}

.price-filter h3 {
    margin-bottom: 10px;
}

.range-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.range-inputs input {
    width: 45%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: bold;
}

.slider {
    position: relative;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    border: none;
}

.progress {
    position: absolute;
    height: 5px;
    background: var(--second-color);
    border-radius: 5px;
}

.range {
    position: relative;
    width: 100%;
}

.range input {
    position: absolute;
    top: -6px;
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    background: none;
    pointer-events: none;
    border: none;
}

.range input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: #fff;
    border: 2px solid var(--second-color);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .tailor-made-sidebar {
        margin-top: 20px;
    }
}

.nav-tabs {
    border-bottom: 1px solid #dee2e600;
    gap: 4px;
}

.summary-item {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.summary-head {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
}

.flatpickr-months .flatpickr-month {
    height: 55px !important;
}

#trip-summary .flatpickr-calendar.open {
    height: 370px !important;
}

#trip-summary .flatpickr-calendar input[type="number"] {
    height: 49px !important;
}

.tailor-made-sidebar {
    height: auto;
    overflow: hidden;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border-top: 1px solid #e6e6e6;
    margin-bottom: 11px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
.form-select {
    height: 52px;
}

.summary-box span {
    font-size: 19px;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border: 1px solid #e6e6e6;
    margin-bottom: 11px;
    border-radius: 24px;
}

.step.active .step-number {
    background: var(--white-color);
    color: var(--main-color);
}

.step-number {
    background: var(--white-color);
    color: var(--main-color);
    border-radius: 50%;
    width: 25px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.step:nth-child(1) {
    border-radius: 5px 0 0 5px;
}


.city-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.city-box {
    border-radius: 10px;
    position: relative;
}

.city-box.active {
    background-color: var(--second-color);
}

.city-box label {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0px 13px 48px 0px rgb(153 110 59 / 20%);
    padding: 0.5rem;
    gap: 5px;
    cursor: pointer;
    justify-content: center;
}

.city-check {
    display: none;
}

.city-box.active h5 {
    color: var(--white-color);
}

.city-box p {
    max-width: 100px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
}

.city-box img {
    height: 50px;
    object-fit: cover;
    /* min-width: 100%; */
    object-fit: cover;
    height: 50px;
    border-radius: 50%;
    width: 50px;
}


.plan-destination-content {
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
}

.plan-destination-contenth3 {
    font-size: clamp(0.75rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    color: var(--black-color);

}

.city-box:hover .nice-label img {
    transform: scale(1.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.plan-destination-content {
    position: relative;
    bottom: 0;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
}


.confirm-name {
    font-size: 21px;
    font-weight: 800;
    padding: 4px;
}

.plan-destination-content h2 {
    transform: scale(1);
    opacity: 1;
    height: 0;
    width: 0px;
    height: auto;
    position: absolute;
    width: auto;
    margin: auto;
    color: #212529!important;
    font-size: 20px;
}

.tab__content {
    display: block !important;
}



.adult-counter input[type="number"]{
    text-align: center;
    width: 43%;
    height: 42px;
}

.summary-item i{
    color: var(--third-color);
}

.step-nav .active {
    border: solid #bd0012;
    color: #233f5a;
    background: transparent;
    border-radius: 8px;
    padding-bottom: 4px;
}


.city-box.active {
    background-color: transparent;
    transition: 0.3s;
    border: 4px solid var(--second-color);
}
@media (max-width: 767px) {
    .step-nav {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 20px;
        gap: 0;
        overflow: scroll;
        padding-bottom: 4px;
    }
    .transfer-form-wrapper {
        padding: 11px 5px;
    }
}


@media (min-width: 1024px) and (max-width: 1400px) {
    .step-nav div {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .city-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-cap h2 {
        font-size: 20px;
    }

    .plan-destination-content {
        left:0px;
            bottom: 12px;
    }

    .step-nav::-webkit-scrollbar {
        height: 3px;
    }

    .step-nav .active::after {
        top: -3px;
        right: -18px;
        width: 19px;
        height: 109%;
    }

    .step-nav div {
        padding: 5px 11px;
        font-size: 12px;
    }
    .city-box label {

    flex-wrap: wrap;
}
.tour-details-package-content, .tour-details-deals-content {
    padding: 19px;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e600;
    gap: 4px;
    justify-content: center;
}
 .city-box label {

flex-wrap: nowrap;
    gap: 0;
    align-items: center;
}
.city-box img {
    height: 46px;
    width: 44px;
}
.step-nav > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
}

.step-nav > div.active {
  border-bottom-color: red; /* أو اللون الأساسي */
}

}
