﻿

:root {
    --scroll-bar-color: #c5c5c5;
    --scroll-bar-bg-color: #f6f6f6;
}

::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}

    /* Works on Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    *::-webkit-scrollbar-track {
        background: var(--scroll-bar-bg-color);
    }

    *::-webkit-scrollbar-thumb {
        background-color: var(--scroll-bar-color);
        border-radius: 20px;
        border: 3px solid var(--scroll-bar-bg-color);
    }


.badge.text-bg-success {
    color: #fff;
    background-color: #28a745;
}

.badge.text-bg-danger {
    color: #fff;
    background-color: #dc3545;
}


/*utility*/
.fw-900 {
    font-weight: 900;
}

.fw-700 {
    font-weight: 700;
}

.border-bottom-flt {
    1px dashed var(--border-color-1) dashed rgba(75, 32, 112, 0.6);
    padding: 10px 0;
    margin: 0 0 5px 0;
}

.form-group {
    position: relative;
}

    .form-group span[class^='fa-'],
    .form-group span.la {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
    }

.field-validation-error {
    line-height: 1;
    color: red;
}
/*datepicker*/
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    color: #5e6278;
    text-decoration: line-through;
}

.daterangepicker .drp-calendar th.month,
.daterangepicker .drp-calendar th,
.daterangepicker .drp-calendar .available {
    color: #000;
    font-weight: 600;
}

.date-input, .date-inputn {
    cursor: pointer;
}
/*select2*/
.input-group .select2-container--bootstrap-5 .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

select + .select2-container--bootstrap-5 {
    max-width: 100%;
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    width: 100%;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options:not(.select2-results__options--nested) {
    max-height: 12rem;
}

.form-floating .select2-container--bootstrap-5 .select2-selection {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}
/*select2 ends*/

.home_section .home {
    height: 600px;
}

    .home_section .home .home-content {
        height: 600px;
    }

@media only screen and (max-width: 991px) {
    .home_section .home {
        height: 650px;
    }

        .home_section .home .home-content {
            height: 650px;
        }
}
/*professional black color*/
.list-group-item-action, .left-sidebar .middle-part .filter-block .form-check-label, .flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-name h6, .flight-detail-sec .detail-bar .detail-wrap .price span {
    color: #000;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress .dots {
    height: 40px;
    width: 100%;
    border-left: 2px dashed rgba(0, 0, 0, 0.7);
    border-top: 2px dashed rgba(0, 0, 0, 0.7);
}

    .flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress .dots .svg1 {
        position: absolute;
        left: 22px;
        bottom: -3px;
    }

    .flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress .dots .svg2 {
        position: absolute;
        right: 22px;
        top: -9px;
    }

.review-section .review_box .flight_detail .airport-part .airport-progress .dots {
    height: 30px;
    width: 100%;
    border-left: 2px dashed rgba(0, 0, 0, 0.7);
    border-top: 2px dashed rgba(0, 0, 0, 0.7);
}

    .review-section .review_box .flight_detail .airport-part .airport-progress .dots .svg1 {
        position: absolute;
        left: 22px;
        bottom: -3px;
    }

    .review-section .review_box .flight_detail .airport-part .airport-progress .dots .svg2 {
        position: absolute;
        right: 22px;
        top: -9px;
    }


.top-section .heading {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

    .top-section .heading .text {
        padding-top: 18%;
        padding-right: 5%;
    }

        .top-section .heading .text .head {
            font-size: 350%;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--bs-primary);
        }

        .top-section .heading .text .body {
            font-size: 350%;
            font-weight: 600;
            font-family: 'Dancing Script', cursive;
            letter-spacing: 5px;
            margin-top: -30px;
            color: var(--bs-danger);
        }

.center-top-banner {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

    .center-top-banner img {
        width: 100%;
        object-fit: contain;
    }

@media (max-width: 991px) {
    /*.center-top-banner {
            display: none;
        }*/
}
/*search section*/
.search-block {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 10%;
    background: rgb(52 165 241 / 15%);
    backdrop-filter: blur(5px);
    z-index: 8;
    border-radius: 12px;
    border: 1px solid #34a5f1;
    box-shadow: 0px 0px 5px 5px rgb(52 165 241 / 10%);
}

.search-section .search-box {
    background: transparent;
}

@media screen and (max-width: 991px) {
    .top-section .heading {
        font-size: 45px;
    }

    .search-block {
        bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .top-section .heading {
        font-size: 17px;
        text-align: center;
    }

    .search-block {
        position: relative;
        top: 0;
    }
}

.search-panel .form-control:disabled, .search-panel .form-control[readonly] {
    background-color: #fff;
}

/*.search-section .search-box .left-part .search-body .form-control::placeholder {
    font-size: calc(14px + 4 * (100vw - 320px)/ 1600) !important;
}*/

.booking-tab {
    /*padding-inline: 2rem;*/
}

    .booking-tab .nav.nav-tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10px;
        padding-top: 0px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        background: transparent;
        border: none;
    }

        .booking-tab .nav.nav-tabs .nav-item {
            margin-right: 5px;
        }

        /*.booking-tab .nav.nav-tabs .nav-item:first-child {
                border-radius: 1rem 0 0 0;
            }

            .booking-tab .nav.nav-tabs .nav-item:last-child {
                border-radius: 0 1rem 0 0;
            }*/

        .booking-tab .nav.nav-tabs .nav-link {
            padding: 5px 15px;
            color: #34a5f1;
            border: 3px solid transparent;
            display: flex;
            align-items: center;
            font-weight: 700;
            background: #fff;
            border-radius: 50px;
        }

            .booking-tab .nav.nav-tabs .nav-link:hover {
                border: 3px solid #34a5f1;
                border-radius: 50px;
                -webkit-transition: all 0.8s ease;
                transition: all 0.8s ease;
            }

            .booking-tab .nav.nav-tabs .nav-link.active {
                outline: 3px solid #34a5f1;
                border-radius: 50px;
                color: #34a5f1;
                font-size: 14px;
                font-weight: 700;
            }

            .booking-tab .nav.nav-tabs .nav-link i {
                color: #34a5f1;
                font-size: 16px;
                margin-right: 5px;
            }

/*.booking-tab .nav.nav-tabs .nav-link .tab-text {*/
/*max-width: 0;*/
/*transition: max-width 1s;
                display: inline-block;
                vertical-align: top;
                white-space: nowrap;
                overflow: hidden;
                font-size: 1rem;
                font-weight: 800;
            }*/

/*.booking-tab .nav.nav-tabs .nav-link.active .tab-text,
            .booking-tab .nav.nav-tabs .nav-link:hover .tab-text {
                max-width: 7rem;
            }*/


.booking-tab-content .tab-content {
    border-radius: 1rem;
    padding: 1.5rem;
    background: var(--bs-body-bg);
    box-shadow: 0 1px 7px 0 rgb(var(--bs-black-rgb), 40%);
    position: relative;
}

.selector-box-flight {
    top: 100%;
    right: 0;
    min-width: 260px !important;
    border-radius: 10px;
}

.searchBTn {
    position: absolute;
}

.search-panel .nav.nav-tabs {
    padding: 10px 15px 15px 15px;
}

    .search-panel .nav.nav-tabs .form-check {
        font-size: 16px;
        display: block;
    }

.search-panel .bulletpoint .form-check-input,
.search-panel .bulletpoint .form-check-label {
    cursor: pointer;
}

.search-panel .nav.nav-tabs .form-check .form-check-input:checked {
    background-color: #34a5f1;
    border-color: #34a5f1;
}

.search-panel .search-section .search-box .left-part .search-body {
    /*padding: 20px 10px;*/
    flex: 1 1 0px;
    border: 1px solid #c8d3d8;
    padding: 5px 15px;
    text-align: left;
    margin-bottom: 20px;
    background: #fff;
}

    .search-panel .search-section .search-box .left-part .search-body + .search-body {
        border-left: 0;
    }

.search-section .search-box .left-part .search-body:after {
    display: none !important;
}

.search-panel .search-section .search-box .left-part .search-body h6 {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #595b5f;
    margin-bottom: 5px;
}

.search-panel .search-section .search-box .left-part .search-body .field-validation-error {
    position: absolute;
    top: 100%;
    font-size: small;
}

.search-panel .select2-container--bootstrap-5 .select2-selection {
    min-height: auto;
}

@media (max-width: 767px) {
    .search-panel .search-section .search-box .left-part .search-body {
        width: 100%;
    }

        .search-panel .search-section .search-box .left-part .search-body + .search-body {
            border-left: 1px solid #c8d3d8;
        }
}

#tabs-hotel .search-panel .search-section .search-box .left-part .search-body:last-child:after {
    display: none;
}

#hotelSearchButton,
#flt-search-btn {
    position: absolute;
}

@media (max-width: 576px) {
    #flt-search-btn {
        position: relative;
        width: 100%;
    }
}

.easy-autocomplete {
    min-width: 100%;
}

    .easy-autocomplete input {
        box-shadow: none !important;
    }

        .easy-autocomplete input:focus::placeholder {
            color: transparent !important;
        }

.easy-autocomplete-container {
    top: 100%;
    text-align: left;
    min-width: 210px;
}

    .easy-autocomplete-container ul li {
        width: 100%;
    }

.search-section .search-box .jt-oneway .left-part .search-body.returnDate {
    display: none!important;
}

.flt-swapper {
    right: -40px;
    background: #fff;
    top: 53%;
    transform: translate(-50%, -50%);
    z-index: 9;
    cursor: pointer;
    width: 36px;
    height: 36px;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    border-radius: 50px;
    text-align: center;
    line-height: 39px;
}



.hotel-room .select2-container--bootstrap-5 .select2-selection,
.hotel-room .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border: none;
    box-shadow: none;
}

.svg-icon.svg-icon-primary svg [fill]:not(.permanent):not(g) {
    transition: fill .3s ease;
    fill: var(--bs-primary);
}

@media(max-width: 767px) {
    .flt-swapper {
        right: 10%;
        transform: translateX(50%);
        top: 80%;
        border-radius: 50%;
        padding: 5px;
        line-height: 27px;
    }
}

/*search results*/
#lowest-price-filter-box::-webkit-scrollbar {
    width: 20px;
}

#lowest-price-filter-box::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

#lowest-price-filter-box::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 5px solid transparent;
    background-clip: content-box;
    background-color: var(--bs-primary);
}

#lowest-price-filter-box li .airchk {
    position: relative;
    min-width: 104px;
}

#lowest-price-filter-box .airline-chk:checked + label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .25rem;
    border: 2px solid var(--bs-primary);
}

.details-content-box {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #d4dee5;
    border-radius: 4px;
    display: block;
    max-height: 430px;
    overflow-y: auto;
}

.details-box-title {
    color: var(--bs-primary) !important;
    font-size: 13px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.flt-route-header {
    border-bottom: 1px solid var(--bs-primary);
    color: var(--bs-primary);
}

.flt-route-title { /*letter-spacing:3px;*/
    font-weight: bold;
    display: inline-block;
    margin-right: 20px;
}

.flt-route-info {
    float: right;
    display: inline-block;
    font-size: 0.85em;
    font-weight: bold;
}

#modify-search {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    #modify-search .bulletpoint {
        margin-top: 0;
        margin-bottom: 10px;
    }

    #modify-search .modify-area > .container {
        padding: 0;
    }

    #modify-search .search-panel {
        padding: 1rem;
    }

@media (max-width: 768px) {
    .modify-search .top-d {
        font-size: 85%;
    }
}

.modify-btn {
    background-color: #b85fe53b;
    color: var(--bs-primary) !important;
    border-radius: 32px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 525;
    line-height: 20px;
    border: none;
}

#modify-search #flt-search-btn {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: fit-content;
    bottom: -20px;
}

.result-first {
    width: 100%;
    /*height: 200px;*/
    /*position: absolute;*/
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    backface-visibility: hidden;
    box-shadow: 0px 136px 54px rgba(0, 0, 0, 0.01), 0px 76px 46px rgba(0, 0, 0, 0.05), 0px 34px 34px rgba(0, 0, 0, 0.09), 0px 8px 19px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
}

    .result-first .top-details {
        padding: 0 15px;
        border-bottom: 0.4px solid rgba(0, 0, 0, 0.4);
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

        .result-first .top-details .badge-text {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .result-first .top-details .offer-text {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

            .result-first .top-details .offer-text .discount {
                line-height: 1;
                font-weight: 300;
            }

    .result-first .bot-details {
        padding: 0 15px;
        border-top: 0.4px solid rgba(0, 0, 0, 0.4);
        display: flex;
        width: 100%;
        justify-content: space-between;
    }


    .result-first .fltDet {
        display: flex;
        flex-direction: column;
        vertical-align: middle;
        width: 80%;
    }

    .result-first .onFlt {
        padding: 7px 7px 7px 15px;
        /*height: 100px;*/
        display: flex;
        flex: 1;
        justify-content: space-between;
    }

        .result-first .onFlt .las,
        .details-result .las {
            font-size: 20px;
        }

        .result-first .onFlt.combBord {
            border-bottom: 1px solid #d4dee5;
        }

    .result-first .airline {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .result-first .airLogo {
        width: 40px;
    }

    .result-first .airDet {
        text-align: center;
        line-height: 15px;
    }

    .result-first .fltNum {
        color: #686868;
        font-size: 10px;
        font-weight: 600;
    }

    .result-first .depTime,
    .result-first .arrTime,
    .result-first .fltDur {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 0.5;
    }

    .result-first .detailLabel,
    .result-first .detailLabel {
        font-weight: bold;
        font-size: 10px;
    }

    .result-first .route,
    .result-first .route {
        font-weight: 600;
        font-size: 20px;
    }

    .result-first .time,
    .result-first .time,
    .result-first .dur {
        font-weight: 400;
        font-size: 14px;
    }

    .result-first .date,
    .result-first .date,
    .result-first .stops {
        font-weight: 400;
        font-size: 10px;
        color: rgba(0, 0, 0, 0.7);
        text-align: center;
    }

    .result-first .fltDur {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 0.5;
    }

.fly-layoff-row {
    border-bottom: 1px dotted var(--bs-primary);
}

.fly-layoff {
    background: var(--bs-primary) none repeat scroll 0 0;
    color: rgb(255, 255, 255);
    display: inline-block;
    font-size: 0.85em;
    font-weight: bold;
    position: relative;
    text-align: center;
    width: 60px;
}

/*traveller details*/
.flight_detail .form-control[readonly] {
    background-color: #fff;
}

.title-top.position-relative .btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.review-section .review_box .flight_detail .summery_box .table td, .review-section .review_box .flight_detail .summery_box .table th {
    padding: 0.25rem 0.25rem;
}

.review-section .review_box .title-top {
    border-radius: 12px 12px 0 0;
}
/*Force reftesh*/
.force-refresh-overlay.overlay-holder {
    z-index: 9999999;
}

.overlay-holder {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    clear: both;
    height: 100%;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.body-stop-scroll {
    overflow: hidden;
    margin-right: 14px;
}

.force-refresh-overlay.overlay-holder .overlay {
    width: 50%;
}

.body-stop-scroll .overlay.tranq-overlay {
    animation: popupOpen 0.3s ease-in-out 0s 1 both;
    -webkit-animation: popupOpen 0.3s ease-in-out 0s 1 both;
    -moz-animation: popupOpen 0.3s ease-in-out 0s 1 both;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
}

.overlay.tranq-overlay {
    animation: popupClose 0.3s ease-in-out 0s 1 both;
    -webkit-animation: popupClose 0.3s ease-in-out 0s 1 both;
    -moz-animation: popupClose 0.3s ease-in-out 0s 1 both;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}

.overlay.tranq-overlay {
    margin: 0;
    position: absolute;
    left: 25%;
    top: 15%;
    max-width: 90%;
    height: 50%;
    border-radius: 4px;
}

.overlay {
    animation: popout 0.5s ease;
    -webkit-animation: popout 0.5s ease;
}

.overlay {
    background-color: #fff;
    margin: 5% auto 0;
    position: relative;
    top: 5%;
    max-width: 90%;
    text-align: left;
    z-index: 999999;
    border-radius: 3px;
}

.force-refresh-overlay .center-align {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
}

.force-refresh-overlay.overlay-holder .overlay .overlay-header {
    font-size: 24px !important;
    padding: 1rem;
    border: 0;
}

.coundownbox-timer {
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 10px;
    background-color: #e4caff;
    color: #000;
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
    z-index: 100;
}

.filter-wrap .airline-name {
    background: #e9e9e9;
    padding: 10px;
}

.dest-info {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .search-panel label.btn {
        font-size: 9px;
        display: flex;
        align-items: center;
        padding-inline: 8px;
    }

        .search-panel label.btn:focus,
        .search-panel label.btn:hover {
            outline: none;
            border: none;
        }

        .search-panel label.btn input {
            margin-right: 5px;
        }

    .eac-round.easy-autocomplete {
        max-width: 100%;
    }

    .easy-autocomplete-container ul li .eac-title-3 {
        display: none;
    }

    .dest-info {
        font-size: 1rem;
    }

    .mobile-filter {
        position: fixed;
        background: #bc99df;
        border-radius: 500px;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 998;
        padding: 10px;
    }

    .details-box.flight-detail-area .nav-link span {
        display: none;
    }

    .review-section .review_box .flight_detail .logo-sec img {
        width: 35px;
    }
}

.baggage-airline .flt-logo {
    width: 50px;
    height: 50px;
}

/*slick*/
.home_section .slick-prev, .home_section .slick-next {
    font-family: "Font Awesome 6 Free";
    background-color: transparent;
}

.air-det.zig-zag-effect:after {
    background: none;
}

.filter-block .collection-collapse-block-content a.btn {
    height: 6rem;
}

    .filter-block .collection-collapse-block-content a.btn span {
        font-size: 12px;
        letter-spacing: normal;
    }

.irs--flat .irs-handle > i:first-child {
    width: 18px;
    border-radius: 50%;
    margin-left: -10px;
    cursor: pointer
}
/*flightetails*/
.all-result-details {
    padding: 0 10% 0px 0;
    padding-left: 70px
}

    .all-result-details + .all-result-details {
        border-top: 0.4px dashed rgba(75, 32, 112, 0.6);
        padding-top: 20px;
    }

    .all-result-details.loderrrr {
        text-align: center
    }

        .all-result-details.loderrrr i {
            color: #2990e6;
            font-size: 50px
        }

    .all-result-details .flightdetail {
        position: relative;
        padding-bottom: 15px
    }

        .all-result-details .flightdetail:before {
            content: "\e22d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            color: var(--bs-primary);
            left: -30px;
            top: 3px;
            rotate: 180deg;
        }

        .all-result-details .flightdetail:after {
            content: "";
            position: absolute;
            border-left: 2px dashed var(--bs-primary);
            left: -24px;
            top: 25px;
            bottom: 0
        }

        .all-result-details .flightdetail:last-child:after {
            display: none
        }

        .all-result-details .flightdetail strong {
            display: block;
            padding: 0 0 5px;
            font-weight: 700
        }

            .all-result-details .flightdetail strong b {
                font-weight: 400
            }

            .all-result-details .flightdetail strong img {
                width: 30px;
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
                vertical-align: middle;
                margin-right: 5px
            }

        .all-result-details .flightdetail span {
            font-size: 13px;
            display: block
        }

        .all-result-details .flightdetail p {
            font-size: 13px;
            line-height: 22px;
            padding: 0;
            display: block;
            color: #000;
        }

        .all-result-details .flightdetail label {
            display: block;
            margin-top: 5px
        }

    .all-result-details .connectiondetail {
        position: relative;
        padding-bottom: 15px
    }

        .all-result-details .connectiondetail:before {
            content: "\f192";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            color: var(--bs-primary);
            left: -30px;
            top: 12px;
            background: #fff;
            z-index: 1
        }

        .all-result-details .connectiondetail:after {
            content: "";
            position: absolute;
            border-left: 2px dashed var(--bs-primary);
            left: -24px;
            top: 0;
            bottom: 0
        }

        .all-result-details .connectiondetail .connectiondetailbg {
            background-color: #e1e8ee;
            padding: 4px;
            border-radius: 7px
        }

            .all-result-details .connectiondetail .connectiondetailbg label {
                display: block;
                padding: 5px 10px
            }

            .all-result-details .connectiondetail .connectiondetailbg p {
                display: block;
                padding: 5px 10px;
                background-color: #fff
            }

.detail-bar.flight-search-wrapper .result-placeholder {
    margin-top: 0;
}
/*flightetails ends*/
header .menu .header-right .front-setting select {
    padding: 6px 28px 6px 10px;
}

@media (max-width: 767px) {
    .process-steps .step-bg .step-box {
        aspect-ratio: auto;
        rotate: none;
    }

        .process-steps .step-bg .step-box > div {
            rotate: none;
        }
}

.popular-section {
    background-image: url('../../rayattrip/images/world-map.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    border-top: 10px solid #7ec6e7;
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: hard-light;
}

.without_br ul {
    padding: 0;
    display: flex;
    flex-direction: column;
}

    .without_br ul li {
        list-style: none;
        padding-left: 26px;
        font-size: 15px
    }

        .without_br ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            display: inline-block;
            margin-left: -1.3em;
            width: 1.3em;
            color: #4B2070;
            font-size: 17px;
            vertical-align: middle;
            text-indent: -2px
        }

.without_br ol li {
    display: list-item;
}

.without_br h1 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    border-bottom: 1px solid #cecece;
    padding-bottom: 10px;
    margin: 0 0 10px;
}

.without_br h2 {
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    border-bottom: 1px solid #cecece;
    padding-bottom: 10px;
    margin: 0 0 10px;
    font-size: 18px;
}

.use-promo-btn {
    border: 1px dashed;
    margin: 0.5rem;
    text-transform: none;
}

@media (max-width: 767px) {
    .details-content-box, .details-content-box table th {
        font-size: 85%;
    }

        .all-result-details .flightdetail span, .all-result-details .flightdetail p, .details-content-box table td {
            font-size: 10px;
        }
}

/*mobile menu*/
@media (min-width: 768px) {
    .mobilebar-container {
        display: none;
    }
}

.mobilebar-container {
    position: fixed;
    bottom: 5px;
    z-index: 998;
    left: 50%;
    transform: translateX(-50%);
}

.mobilebar-tab {
    height: 50px;
    max-width: 420px;
    width: 90vw;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    position: relative;
    flex-shrink: 0;
    bottom: 0px;
}

.mobilebar-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}



.mobilebar-tab-overlay {
    border-radius: 6px;
    background-color: #f0f0f0;
    height: 100%;
    width: calc(100% / 3);
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
}

.mobilebar-tab__icon {
    display: block;
    color: var(--bs-primary);
    transition-duration: 0.3s;
    line-height: 1;
}
/*mobile menu end*/

.search-section .search-box .left-part .search-body ::placeholder {
    color: #858585;
    font-weight: 600;
}

/*loader*/
/*.loader-line {
    height: 2px;
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: var(--bs-primary);
    -webkit-animation: lineAnim 1.5s linear infinite;
    -moz-animation: lineAnim 1.5s linear infinite;
    animation: lineAnim 1.5s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}
*/


/*loader*/

.loader-line {
    position: relative;
    width: 100%;
    height: 3px;
    display: block;
    overflow: hidden;
    background: #bceaf5;
    margin-bottom: 5px;
}

    .loader-line:before {
        content: '';
        position: absolute;
        height: 3px;
        background-color: #56b1c4;
        animation: indeterminate_first 1.5s infinite ease-out;
    }

    .loader-line:after {
        content: '';
        position: absolute;
        height: 3px;
        background-color: #008eb0;
        animation: indeterminate_second 1.5s infinite ease-in;
    }

@keyframes indeterminate_first {
    0% {
        left: -100%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

@keyframes indeterminate_second {
    0% {
        left: -150%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

.image_section {
    padding: 24px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.top-header_section {
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0 24px;
}

.package-details {
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    .package-details .section-header {
        background-color: var(--bg-header);
        padding: 15px;
        font-weight: 600;
        font-size: 18px;
        border-bottom: 1px solid var(--primary-color);
        text-transform: uppercase;
    }

        .package-details .section-header h4 {
            font-weight: bold;
        }

.mobile-filter {
    bottom: 12%;
}

@media (max-width: 991px) {
    /*.left-sidebar {
        z-index: 9999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin-top: 0;
        border-radius: 0 5px 5px 0;
    }*/

    .left-sidebar {
        position: fixed;
        z-index: 10000;
        left: 0;
        width: 100vw;
        top: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 60px);
        transition: top 1s;
        padding: 16px;
        border-radius: 15px 15px 0 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    }

        .left-sidebar .back-btn {
            padding: 0;
            border-bottom: none;
            display: none;
            font-size: calc(14px + 4*(100vw - 320px) / 1600);
            text-transform: capitalize;
            color: #000;
            font-weight: 700;
            margin-bottom: 0;
            cursor: pointer;
            text-align: end;
        }

        .left-sidebar .middle-part {
            padding: 10px;
        }

    .mobile-filter h5 {
        color: #fff;
    }
}


.top-loader .progress {
    padding: 0px;
    background: transparent;
    border-radius: 6px;
    margin: 5px 0;
    height: 6px;
}

.top-loader .progress-bar {
    border-radius: 4px;
    transition: 0.4s linear;
    transition-property: width, background-color;
}

.top-loader .progress-striped .progress-bar {
    background-color: var(--bs-primary);
    width: 100%;
    background-image: linear-gradient(45deg, #7408AA 25%, transparent 25%, transparent 50%, #7408AA 50%, #7408AA 75%, transparent 75%, transparent);
    animation: progressAnimationStrike 6s;
}

@keyframes progressAnimationStrike {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/*===============================================================================================================================================*/
.item-details {
    padding: 0;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

    .item-details svg path {
        fill: var(--bs-primary);
    }

.item-sec-title {
    padding: 10px;
    background-color: rgba(17, 59, 170, 0.2);
    border-radius: 10px 10px 0 0;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 20px;
}

    .item-sec-title h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--bs-primary) !important;
    }

.item-inner-box {
    padding: 15px;
    border-radius: 10px;
}


    .item-inner-box .accordion-item {
        background-color: #fff;
        border: none !important;
        position: relative;
    }


        .item-inner-box .accordion-item:first-child:before {
            content: '\f3c5';
            font-family: "Font Awesome 5 free";
            font-weight: 900;
            color: var(--bs-primary);
            position: absolute;
            bottom: 0;
            top: 0;
            transform: translate(0px, 35%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 100%;
            background-color: var(--bs-primary);
            color: white;
            font-size: 16px;
            z-index: 2
        }


        .item-inner-box .accordion-item:before {
            content: '\f111';
            font-family: "Font Awesome 5 free";
            font-weight: 900;
            color: var(--bs-primary);
            position: absolute;
            position: absolute;
            bottom: 0;
            top: 0;
            transform: translate(0px, 35%);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /**/

        .item-inner-box .accordion-item:last-child::before {
            content: '\f024';
            font-family: "Font Awesome 6 free";
            font-weight: 900;
            color: var(--bs-primary);
            position: absolute;
            bottom: 0;
            top: 0;
            transform: translate(10px, 55%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 100%;
            background-color: var(--bs-primary);
            color: white;
            font-size: 12px;
            z-index: 2;
        }

    .item-inner-box .accordion {
        position: relative;
    }

        .item-inner-box .accordion::before {
            content: "";
            position: absolute;
            top: 10px;
            bottom: 10px;
            left: 25px;
            border-left: 1px dashed var(--bs-primary);
            z-index: 1;
        }

    .item-inner-box .accordion-button {
        padding: 15px;
    }

    .item-inner-box .accordion-item .accordion-button {
        padding-left: 55px;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        text-align: justify;
    }

    .item-inner-box .accordion-body {
        padding: 20px 30px;
        text-align: justify;
        border: none;
    }

        .item-inner-box .accordion-body .accordion-texts p {
            margin: 0 !important;
        }

    .item-inner-box .accordion-collapse {
        border: none !important;
        border-width: 0 1px;
    }


    /*======*/
    .item-inner-box .form-floating .form-control {
        background: transparent !important;
    }

        .item-inner-box .form-floating .form-control:focus {
            box-shadow: none !important;
            border: 1px solid #113BAA !important;
        }

/*=============*/

.btnTheme {
    display: block;
    background: var(--bs-primary);
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    color: #ffffff !important;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

.bookingDetailsItem {
    margin-bottom: 10px;
}

.dashboard-section #top-tabContent {
    padding: 0;
    box-shadow: none;
    background-color: transparent !important;
}

.dashboard-section .dashboard-box .dashboard-detail ul li {
    display: block;
    margin-bottom: 20px;
}


/*=============================================================================================
    Refund and reissues page design
============================================================================================*/


.inner-bg {
    padding: 10px;
    border-radius: 5px;
    background-color: #f2f2f2;
}

.customer-info .form-control {
    border: 1px solid #ced4da !important;
}

    .customer-info .form-control::placeholder {
        font-size: 16px;
        font-weight: 600 !important;
        color: #202020;
    }

.refund-policy ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}



.customer-info .airport-item {
    font-size: 22px;
    font-weight: 600;
}

.customer-info .airline-item-2 {
    font-size: 14px;
    max-width: 15ch;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #0f294d;
}

/*===================================================*/

.item-inner-box .box-title-text {
    font-size: 16px !important;
    color: var(--bs-dark) !important;
    background: #B85FE517;
    padding: 10px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    margin-top: 8px;
}

    .item-inner-box .box-title-text span {
        display: inline-block;
        height: 36px;
        width: 36px;
        background: #C5CEE4;
        color: var(--bs-primary);
        text-align: center;
        line-height: 36px;
        border-radius: 50%;
    }

        .item-inner-box .box-title-text span i {
            font-size: 15px;
        }





.item-inner-box .flight-time {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.flight-date.airport-fname {
    max-width: 14ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flight-date.airport-name {
    max-width: 20ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*===============================================================*/
.nav-item.auth-item .nav-link.dropdown-toggle:after {
    border: 0px !important;
}

.myProfileDropdown li {
    width: 100% !important;
}

.qty-note {
    font-size: 12px;
    font-weight: 400;
}

.review-section .form-group.form-floating .form-control[type=email] {
    padding-right: 30px;
}

.tour-form .form-floating .form-control[type=email] {
    padding-bottom: .625rem;
}

.form-floating > .form-control:focus, .form-floating > .tour-form .form-control:not(:placeholder-shown) {
    padding-top: .625rem !important;
}

.tour-form .item-inner-box .form-floating .form-control {
    background: transparent !important;
    padding-top: .625rem !important;
    padding-bottom: .625rem;
}


.btn.btn-primary.form-control {
    background-color: var(--bs-primary) !important;
    color: #FFF !important;
}

.flight_detail.item-inner-box.dashboard-box .form-floating > .form-control, .flight_detail.item-inner-box.dashboard-box .form-floating > .form-select {
    height: 48px;
    padding: 22px 12px 4px;
}

    .flight_detail.item-inner-box.dashboard-box .form-floating > .form-control:focus ~ label, .flight_detail.item-inner-box.dashboard-box .form-floating > .form-control:not(:placeholder-shown) ~ label, .flight_detail.item-inner-box.dashboard-box .form-floating > .form-select ~ label {
        opacity: .65;
        transform: scale(.85) translateY(-10px) translateX(.15rem);
    }



.filter-bar-filter ul {
    width: 100%;
    background-color: #ffffff;
    padding: 10px;
}

    .filter-bar-filter ul li .airchk {
        margin-right: 0px !important;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }


.time-counter {
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 15px 0;
}

.time-counter {
    text-align: center;
    margin-bottom: 1.5rem !important;
}

    .time-counter ul {
        padding: 0;
        margin: 0;
    }

.count-down-timer ul li span {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.count-down-timer p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-primary);
}

.count-down-timer span {
    font-size: 14px;
    color: var(--bs-primary);
}



input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #202020;
    transition: background-color 5000s ease-in-out 0s;
}

/*====================================================================*/

.table-wrapper {
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    background: #fff;
}

    .table-wrapper th, .table-wrapper td {
        padding: 9px 10px;
        border: 1px solid var(--bs-primary);
        vertical-align: top;
    }

    .table-wrapper .pinned {
        display: none;
    }

    .table-wrapper .scrollable table {
        width: 100%;
        border: 1px solid var(--bs-primary);
    }

        .table-wrapper .scrollable table th, .table-wrapper .scrollable table td {
            color: #202020;
        }

@media (max-width: 1100px) {


    .table-wrapper .scrollable {
        overflow: scroll;
        overflow-y: hidden;
    }

        .table-wrapper .scrollable table th, .table-wrapper .scrollable table td {
            white-space: nowrap;
            color: #202020;
        }

        .table-wrapper .scrollable table .hide-mobile {
            display: none;
        }

    .table-wrapper .pinned {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        background: #fff;
        width: 20%;
        overflow: hidden;
        overflow-x: scroll;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
    }

        .table-wrapper .pinned table {
            border-right: none;
            border-left: none;
            width: 100%;
        }
}

.details-page-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-primary) !important;
    margin-bottom: 10px;
}

.itineraries-details {
    width: 100%;
    border: 1px solid #dee2e6;
    overflow-x: hidden;
}

.itineraries-header {
    border-bottom: 1px solid #dee2e6;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-primary) !important;
}

.details-airport-info {
    font-size: 10px !important;
    line-height: 14px;
    max-width: 100% !important;
    white-space: nowrap;
    color: #0f294d !important;
    margin-right: 0;
    margin-top: 0;
    font-weight: 500 !important;
    margin-bottom: 0;
}

.details-baggages {
    font-weight: 700 !important;
    color: #202020 !important;
}

.details-flights-section .itineraries-header {
    font-size: 14px !important;
    overflow: hidden !important;
}

.interval-area {
    padding: 10px;
    background-color: #f2f2f1;
    text-align: center;
    font-weight: 600;
    color: #202020 !important;
}

.visa-details-top label {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #202020 !important;
}

.visa-details-top h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #202020 !important;
}



/*===================================================================*/

.easy-autocomplete-container ul {
    background: none repeat scroll 0 0 #ffffff;
    border-top: 1px dotted #ccc;
    display: none;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
    top: -1px;
    max-height: 300px;
    overflow-y: scroll;
    box-shadow: rgba(0, 0, 0, 0.16)  0px 1px 4px;
}


@media(max-width: 576px) {
    .flight-image img {
        width: 32px;
        height: 32px;
    }


    .top-bar-flight {
        display: flex;
        margin-top: 10px;
        position: relative;
    }

    .mobile-filter {
        background: #fff;
        padding: 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .dest-info {
        font-size: 0.75rem;
    }

    .filter-bar .fs-6 {
        font-size: 14px !important;
    }
}

.faq-tab .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    border-right: 2px solid var(--bs-primary);
    border-radius: 0;
    color: var(--bs-primary);
    transition: all .5s ease;
}

.faq-tab .nav-tabs .nav-item .nav-link:hover {
    border-right: 2px solid var(--bs-primary);
    color: var(--bs-primary);
}
/*============================================================================================================================================*/
.left-sidebar {
    box-shadow: none;
    background-color: transparent;
}

.flt-sidebar {
    position: relative;
    background-color: #fff;
    color: rgb(0, 0, 0);
    margin-bottom: 8px !important;
    transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 7px !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.collapse-block-title {
    letter-spacing: 0.00938em;
    color: #1A2B3D;
    font-weight: 525;
    line-height: 20px;
    font-size: 14px;
    margin: 0px;
    padding: 16px;
    text-transform: capitalize;
    position: relative;
}

.inner-area-filter {
    border-top: 1px solid rgb(216, 225, 235);
    padding: 16px;
    border-radius: 0 0 4px 4px;
}

.collection-filter-checkbox {
    padding: 5px 28px;
    padding-right: 28px;
    padding-right: 8px;
    margin-bottom: 5px;
}


.filter-block .collection-collapse-block-content a.btn {
    height: fit-content;
    margin-bottom: 0 !important;
    border-radius: 0;
    border: none !important;
}

.flt-scl-area {
    display: flex;
    /* margin: 1px 2px; */
    overflow: hidden;
    border-radius: 7px;
    padding: 2px;
    border: 1px solid rgb(216, 225, 235);
    align-items: center;
    justify-content: space-between;
}

    .flt-scl-area a {
        min-width: 24.5%;
        font-size: 10px;
        background-color: rgb(235, 240, 245);
        line-height: 12px;
        padding: 7px;
        color: rgb(119, 129, 140);
    }

.filter-block .collection-collapse-block-content a.btn:first-child {
    border-radius: 7px 0 0 7px;
}

.filter-block .collection-collapse-block-content a.btn:last-child {
    border-radius: 0px 7px 7px 0px;
}

.filter-block .collection-collapse-block-content a.btn:focus {
    box-shadow: none !important;
}

.btn-check:active + .btn-outline-info, .btn-check:checked + .btn-outline-info, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show, .btn-outline-info:active {
    color: var(--bs-primary);
    background-color: #B85FE54A;
}

.filter-block .collection-collapse-block-content a.btn.active svg path {
    fill: var(--bs-primary);
}

.filter-block .collection-collapse-block-content a.btn span {
    font-size: 10px;
    letter-spacing: normal;
    font-weight: 700;
}

.filter-block .collection-collapse-block-content a.btn svg {
    margin-bottom: 5px;
}

.filter-block .collection-collapse-block-content a.btn:hover {
    background-color: rgb(235, 240, 245);
    color: rgb(119, 129, 140);
}

.filter-block .collection-collapse-block-content a.btn.active:hover {
    color: var(--bs-primary);
    background-color: #B85FE54A;
}

.collapse-block-title {
    letter-spacing: 0.00938em;
    color: #1A2B3D;
    font-weight: 525;
    line-height: 20px;
    font-size: 14px;
    margin: 0px;
    padding: 16px;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
}

.inner-area-filter {
    border-top: 1px solid rgb(216, 225, 235);
    padding: 16px;
    border-radius: 0 0 4px 4px;
}

.collection-filter-checkbox {
    padding: 5px 28px;
    padding-right: 8px;
    margin-bottom: 5px;
    border-radius: 5px;
}

    .collection-filter-checkbox:hover {
        background-color: #EBF0F5;
    }


.collection-brand-filter .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    vertical-align: top;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 2px solid rgba(0, 0, 0, .25);
    appearance: none;
    color-adjust: exact;
    transition: background-color .15s ease-in-out, background-position .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-right: 10px;
}

    .collection-brand-filter .form-check-input:checked {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
    }

.flt-sche-time {
    margin-bottom: 8px;
    font-size: 12.5px;
    font-weight: 600;
}

#lowest-price-filter-box {
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
    padding: 4px;
    -ms-overflow-style: none;
}

    #lowest-price-filter-box::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }

.filter-bar-filter {
    min-height: 65px;
}

.airchk .Filter-airline-code {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.airchk .filter-price {
    font-size: 14px;
    font-weight: 600 !important;
    color: #5d5a5a !important;
}

.filter-bar-filter {
    position: relative;
    padding: 0 36px !important;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    background-color: #fff !important;
}

@media (max-width: 991px) {
    .left-sidebar {
        position: fixed;
        z-index: 10000;
        left: 0;
        width: 100vw;
        top: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 140px);
        transition: top 1s;
        border-radius: 16px 16px 0 0;
        padding: 0px;
        box-shadow: 0 15px 5px 0 rgba(77, 77, 77, .28);
    }

    .left-sidebar {
        box-shadow: none;
        background-color: #fff !important;
        padding: 0px;
        overflow-x: hidden;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 16px 16px 0 0;
    }

    .mb-sideber-inner {
        padding: 8px;
    }

    .left-sidebar .back-btn {
        display: inline-flex;
        justify-content: space-between;
        padding: 10px 20px;
        border-bottom: 1px solid #f9f9f9;
        font-size: calc(14px + 4*(100vw - 320px) / 1600);
        text-transform: capitalize;
        color: #000;
        font-weight: 700;
        margin-bottom: 0;
        cursor: pointer;
        width: 100%;
        border-radius: 16px 16px 0 0;
    }

    .collapse-block-title {
        font-weight: 600;
        line-height: 20px;
        font-size: 12px;
        margin: 0px;
        padding: 12px;
    }

    .inner-area-filter {
        border-top: 1px solid rgb(216, 225, 235);
        padding: 12px;
        border-radius: 0 0 4px 4px;
    }
}

.collection-filter-checkbox .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 15ch;
}

/*===================================================================================================
    New Side ber stopage button css start
===================================================================================================*/
.collection-brand-filter.stopage-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .collection-brand-filter.stopage-grid .form-check {
        position: relative;
        width: 20%;
    }

    .collection-brand-filter.stopage-grid .form-check-input {
        display: none; /* Hide the default checkbox */
    }

    .collection-brand-filter.stopage-grid .form-check-label {
        display: inline-block;
        padding: 12px 8px;
        background-color: #f8f9fa;
        color: #000;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        user-select: none;
        border-radius: 5px;
        background: #B85FE514;
        color: #202020;
        font-size: 14px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 18px !important;
        letter-spacing: 0.15px !important;
        text-transform: capitalize;
        width: 100%;
        text-align: center;
    }

    /* Active button style when checkbox is selected */
    .collection-brand-filter.stopage-grid .form-check-input:checked + .form-check-label {
        border-radius: 5px;
        background: var(--bs-primary) !important;
        color: #ffffff !important;
    }

    /* Hover effect */
    .collection-brand-filter.stopage-grid .form-check-label:hover {
        background: var(--bs-primary) !important;
        color: #ffffff !important;
    }

    /* Active state on click */
    .collection-brand-filter.stopage-grid .form-check-input:focus + .form-check-label {
        outline: none;
        box-shadow: 0 0 4px 2px rgba(0, 123, 255, 0.5);
    }

.left-sidebar .middle-part .filter-block .collection-brand-filter.stopage-grid .form-check-label:before {
    display: none;
}

.left-sidebar .middle-part .filter-block .collection-brand-filter.stopage-grid .form-check-label:after {
    display: none;
}

.left-sidebar .middle-part .filter-block .collection-brand-filter.stopage-grid .form-check {
    padding-left: 0;
}

.stopage-grid .collection-filter-checkbox {
    padding: 0px !important;
    padding-right: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
}

.collection-collapse-block.open .collapse-block-title::after {
    position: absolute;
    content: '\f077';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #334251;
    right: 20px;
    font-size: 12px;
}

.collection-collapse-block .collapse-block-title::after {
    position: absolute;
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #334251;
    right: 20px;
    font-size: 12px;
}
/*===================================================================================================
    New Side ber stopage button css End
===================================================================================================*/


#lowest-price-filter-box {
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
    padding: 10px;
    -ms-overflow-style: none;
}

#lowest-price-filter-box {
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
    padding: 4px;
    -ms-overflow-style: none;
}

    #lowest-price-filter-box::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }

.filter-bar-filter {
    min-height: 65px;
}

.airchk .Filter-airline-code {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.airchk .filter-price {
    font-size: 14px;
    font-weight: 600 !important;
    color: #5d5a5a !important;
}

.filter-bar-filter {
    position: relative;
    padding: 0 36px !important;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    background-color: #ffffff !important;
}

#lowest-price-filter-box::-webkit-scrollbar {
    width: 20px;
}

#lowest-price-filter-box::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

#lowest-price-filter-box::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 5px solid transparent;
    background-clip: content-box;
    background-color: var(--bs-primary);
}

#lowest-price-filter-box li .airchk {
    position: relative;
    min-width: 145px;
    padding: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

#lowest-price-filter-box .airline-chk:checked + label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .25rem;
    border: 2px solid var(--bs-primary);
}

.slider-nav .prev.btn.btn-primary {
    border-radius: 5px 0 0 5px;
    height: 65px;
    width: 36px;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 9;
    left: 0;
    padding: 0;
    background: #2a358b36;
    border-color: transparent;
    color: var(--bs-primary);
}

.slider-nav .next.btn.btn-primary {
    border-radius: 0 5px 5px 0;
    height: 65px;
    width: 36px;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 9;
    right: 0;
    padding: 0;
    background: #2a358b36;
    border-color: transparent;
    color: var(--bs-primary);
}

.btn-drpdwn {
    position: relative;
}

    .btn-drpdwn.collapsed::after {
        position: absolute;
        content: '\f077';
        font-family: "font Awesome 6 Free";
        font-weight: 900;
        right: 0;
        bottom: -14px;
        font-size: 16px;
    }

    .btn-drpdwn::after {
        position: absolute;
        content: '\f078';
        font-family: "font Awesome 6 Free";
        font-weight: 900;
        right: 0;
        bottom: -14px;
        font-size: 16px;
    }



/*=========================*/
.input-area {
    position: relative;
}

    .input-area label {
        font-size: 12px;
        margin-bottom: 3px;
        color: #36454F;
        font-weight: 600;
        letter-spacing: 1.45px;
    }

    .input-area .form-control {
        border: 1px solid #B2BEB5;
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        background: transparent;
    }

        .input-area .form-control[type="email"] {
            text-transform: lowercase;
        }

        .input-area .form-control:focus {
            border: 1px solid var(--bs-primary) !important;
            box-shadow: none;
        }


/*    .input-area .select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection {
        border: 1px solid var(--bs-primary) !important;
        box-shadow:none;
    }*/


/*    .input-area .select2-container--bootstrap-5 .select2-selection {
        border: 1px solid #B2BEB5 !important;
        font-size: 15px !important;
    }
*/
.item-inner-box .summery_box {
    background-color: rgb(245, 247, 250);
    padding: 5px;
    border-radius: 5px;
}

.review-label {
    font-size: 12px;
    margin-bottom: 3px;
    color: #36454F;
    font-weight: 600;
    letter-spacing: 1.45px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}


@media (max-width: 576px) {
    .modify-btn {
        background-color: #b85fe53b;
        color: var(--bs-primary) !important;
        border-radius: 32px;
        padding: 4px 12px;
        font-size: 10px;
        font-weight: 525;
        line-height: 20px;
        border: none;
    }


    /*===============================================*/
    .slider-nav .prev.btn.btn-primary {
        border-radius: 5px 0 0 5px;
        height: 56px;
        width: 20px;
        line-height: 56px;
    }
    .slider-nav .next.btn.btn-primary {
        border-radius: 0 5px 5px 0;
        height: 56px;
        width: 20px;
        line-height: 56px;
    }

    .filter-bar-filter {
        position: relative;
        padding: 0 20px !important;
        box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
        background-color: #ffffff !important;
    }

    .filter-bar-filter {
        min-height: 56px;
    }

    .airchk .Filter-airline-code {
        margin-bottom: 0;
        font-size: 12px;
        font-weight: 700;
    }

    .airchk .filter-price {
        font-size: 10px;
        font-weight: 600 !important;
        color: #5d5a5a !important;
    }

    #lowest-price-filter-box li .airchk {
        position: relative;
        min-width: 110px;
        padding: 2px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    }
        #lowest-price-filter-box li .airchk img {
            width: 24px !important;
            height: 24px !important;
        }

    .dashboard-section .dashboard-box .dashboard-detail ul li .details .left {
        width: 108px;
    }
}


.easy-autocomplete{
    width: fit-content!important;
}


.form-control[type="email"] {
    text-transform: lowercase;
}