    .idle-modal-overlay {
        position: fixed;
        top: 0; left: 0;
        right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .idle-modal {
        background: white;
        padding: 20px 30px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        z-index: 9999;
        text-align: center;
    }

    input#searchCountries {
        width: 90%;
        border-radius: 14px;
        padding: 2px 8px;
        margin: 4px auto 6px;
        display: block;
    }
    ul#market-menu {
        max-height: 500px;
        overflow-y: auto;
    }
    #offersModal .modal-header {
        border-bottom: none;
        padding-bottom: 0px;
    }
    #offersModal .modal-header{
        align-items: unset;
    }
    #offersModal .modal-content {
        background: #f0f3f5;
        /* padding: 0px 10px; */
    }
    #offersModal .modalheading.directProviderLogo .direct_heading h2 {
        font-size: 20px;
        color: #192024;
        font-weight: 600;
        line-height: 24px;
    }
    .direct_heading p {
        font-size: 14px;
        color: #5a6872;
    }
    .otherBookingAgents h2 {
        font-size: 20px;
        color: #192024;
        font-weight: 600;
        line-height: 24px;
    }
    .otherBookingAgents p {
        font-size: 14px;
        color: #5a6872;
    }
    #offersModal .modalheading.directProviderLogo .direct_logo {
        width: 10%;
        background: #fff;
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
    }

    #offersModal .card_section_inner{
        gap:10px;
    }
    #offersModal .modalheading.directProviderLogo .direct_heading {
        width: 85%;
    }
    #offersModal .modalheading.directProviderLogo .direct_logo img {
        width: 70px;
    }
    #offersModal .main-flight-area-search.show {
        width: 80%;
        margin-left: auto;
    }
    #offersModal .card_section .d-flex.justify-content-between.align-items-center {
        padding: 2px 0px;
    }
    #offersModal .features_section.active {
        border-top: 1px solid #d9e2e8;
        padding: 15px 5px;
    }
    #offersModal .provider-info .name_and_type {
        width: 50%;
    }
    #offersModal .features_section li {
        font-size: 14px;
    }
    #offersModal .provider_price {
        width: 25%;
        font-weight: 600;
    }
    /* #offersModal .goBtn {
    gap: 20px;
    width: 25%;
    } */
    #offersModal  .provider_icon {
        width: 12%;
        padding: 14px 0px;
        max-height: 80px;
    }
    #offersModal .provider_icon img {
        width: 50px;
        height: 20px;
        object-fit: contain;
    }
    #offersModal .modalheading.directProviderLogo {
        display: flex;
        /* align-items: center; */
        gap: 20px;
    }
    #offersModal #modal-body ul.list-group.list-group-flush {
        width: 88%;
        margin-left: auto;
        border-radius: 8px;
        border: 1px solid #d9e2e8;
    }
    #offersModal .otherBookingAgents{
        width: 88%;
        margin-left: auto;

    }
    #offersModal .list-group ~ .otherBookingAgents{
        margin-top: 25px;
    }
    #offersModal .provider-details {
        width: 100%;
    }
    #offersModal .baggage_facilities,   #offersModal .flexibilities,   #offersModal .seating_assignment {
        list-style: none;
        line-height:30px;
    }
    #offersModal a.btn.btn-secondary {
        color: #fff;
        background: linear-gradient(135deg, #ff690f 0%, #e8381b 100%);
        border: none;
        min-height: 35px;
        width: 100px;
        border-radius: 5px;
        font-size: 16px !important;
        font-weight: 600;
        padding: 0px;
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: normal;
    }
    #offersModal .baggage_facilities label, #offersModal .flexibilities label,  #offersModal .seating_assignment label {
        padding-bottom: 5px;
    }
    #offersModal .open_features {
        background: #d9e2e8;
        padding: 3px 5px;
        border-radius: 5px;
    }
    #offersModal .open_features.active svg {
        transform: rotate(180deg);
    }
    #offersModal .features_section{
        display: none;
    }
    #offersModal .name_and_type span{
        font-size: 14px;
    }
    #offersModal span.provider-name {
       font-weight: 600;
       font-size: 16px;
    }
    #offersModal .name_and_type {
        display: grid;
    }
    #offersModal .features_section.active{
        display: flex;
        justify-content: space-between;
    }
    .loading-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px 0;
    }
    .main-flight-area-search{
        display: none;
    }
    .main-flight-area-search.show{
        display: block;
    }
    .progress-container {
        width: 80%;
        background-color: #e0e0e0;
        border-radius: 6px;
        height: 10px;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .progress-bar {
        width: 0%;
        height: 100%;
        background-color: #65c2c2;
        animation: loadingProgress 30s linear forwards;
    }
    .right-flight-area .mobile_only{
        display: none;
    }
    .right-flight-area .desktop_only{
        display: block;
    }

    @keyframes loadingProgress {
    from { width: 0%; }
    to { width: 100%; }
    }

    .cancel-search-button {
        background-color: #ff5c5c;
        color: #fff;
        border: none;
        padding: 8px 18px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
    }

    .search-popup {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 1000;
        padding: 15px;
        width: 100%;
        height: 395px;
        -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    }

        [v-cloak] {
            display: none;
        }

        .search-loader {
            right: 15px;
            position: absolute;
            top: 13px;
        }

        .airport-results {
            overflow-y: scroll;
            max-height: 335px;
        }

        .airport-result {
            padding: 10px;
            cursor: pointer;
        }

        .airport-result:hover {
            background-color: #f0f0f0;
        }

        .search-popup input {
            font-size: 18px;
            border: 0;
            appearance: none;
        }

        .search-popup input:focus {
            appearance: none;
            outline: none;
        }

        .divider {
            border-top: 1px solid #e5e5e5;
            margin: 10px 0 0;
        }

        .modal {
            --bs-modal-margin: 0.8rem !important;
        }

        .btn-black {
            background-color: #333;
            color: #fff;
        }

        .btn-black:hover {
            background-color: #19a038;;
            color: #fff;
        }


        .dropdown-overlay {
            position: absolute;
            top: 50px;
            left: 10px;
            right: 10px;
            background: #fff;
            border: 1px solid #ddd;
            z-index: 1050;
            padding: 1rem;
            display: none;
        }

        .dropdown-trigger {
            border: 1px solid #ced4da;
            padding: 0.375rem 0.75rem;
            border-radius: 0.375rem;
            background: #fff;
            cursor: pointer;
            font-size: 12px;
            display: flex; /* Gör div till flexbox */
            justify-content: space-between; /* Sprid text och pil */
            align-items: center; /* Centrera vertikalt */
        }

        .dropdown-trigger:after {
            content: "";
            border-top: 0.45em solid; /* större höjd */
            border-right: 0.45em solid transparent;
            border-left: 0.45em solid transparent;
            display: inline-block;
            margin-left: 0.5em;
        }

        .dropdown-active {
            display: block !important;
        }

        .card {
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            border: 2px solid #fff;
            transition: border 0.1s;
            cursor: pointer;
        }

        .card:hover, .highlight-card {
            border: 2px solid #65c2c2;
        }

        .card-body div:not(.d-flex), .form-check-label small, .form-check-label {
            font-size: 0.875rem;
        }


        .edit-link, .change-link {
            font-weight: 600;
            color: #65c2c2;
            text-decoration: none;
        }

        .pm {
            border: 1px solid #ccc;
            padding: 0 8px;
            border-radius: 4px;
            margin-right: 10px;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .number {
            min-width: 20px;
        }

        h5.section-title {
            font-size: 1.1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .airline-logo {
            width: 24px;
            height: 24px;
            object-fit: contain;
            margin-right: 8px;
        }

        .airline-box {
            border: 1px solid #dee2e6;
            padding: 8px 12px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }

        .icon {
            width: 16px;
            height: 16px;
        }

        .flight-item {
            border-bottom: 1px solid #dee2e6;
            padding: 8px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .flight-item:hover {
            background-color: #fafafa;
            transition: border 0.1s;
        }

        .flight-duration {
            font-weight: 600;
            width: 8%;
        }

        .btn-pulse {
            background-color: #21933b;
            color: white;
            animation: pulse 2s infinite;
            padding: 10px;
            font-size: 20px;
        }

        .btn-pulse:hover {
            background-color: #19a038;
            color: #fff;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
            }
        }

        .flight-checkbox {
            transform: scale(1.5);
            margin-right: 12px;
            margin-left: 4px;
            cursor: pointer;
            width: 2%;
        }

        .flight-checkbox:checked {
            background-color: #aaaaaa;
            accent-color: #aaaaaa;
        }

        .flight-logo {
            width: 24px;
            height: 24px;
            object-fit: contain;
            margin-right: 12px;
            border-radius: 3px;
            opacity: 0.9;
        }

        .flight-info {
            flex-grow: 1;
            width: 60%;
        }

        .flight_number_details {
            width: 15%;
        }

        .flight-number {
            margin-right: 15px;
        }

        .flight-number:hover {
            color: #64c2c2;
        }

        .checkicon {
            position: absolute;
            right: 8px;
            top: 31px;
            color: #4b90e2;
        }

        /* calendar stuff */

        /* Ta bort skugga + tvinga fullbredd */
        .container.inline {
            box-shadow: none !important;
            max-width: 100% !important;
            width: 100% !important;
        }
        .dropdown-overlay p{
            font-size:15px;
        }
        .dropdown-overlay p.active {
            font-weight: 500;
            color: #fff;
            background-color: #72c1c1;
            border-radius: 5px;
            padding: 5px 8px;
            width: fit-content;
        }
        #offersModal .provider-details .provider-info > .provider_price {
            display: none;
        }

        .right-flight-area span.price_label {
            font-size: 15px !important;
        }


        @media (max-width: 991px) {
            #offersModal .modalheading.directProviderLogo .direct_logo {
                width: 12%;
            }
            #offersModal .modalheading.directProviderLogo .direct_logo img {
             width: 50px;
            }
            #offersModal .modalheading.directProviderLogo {
                gap: 10px;
            }
            #offersModal .card_section_inner {
                gap: 20px;
            }
            #offersModal  .provider-details {
                width: 100%;
            }
            /* #offersModal .goBtn {
                gap: 10px;
                width: 35%;
            } */
            #offersModal .provider_price {
                width: 20%;
                font-weight: 600;
            }
            #offersModal .features_section.active {
                display: block;
            }
        }
        @media (max-width: 550px) {
            .card-body {
                padding: 8px 12px !important;
            }

            .flight_response_with_price .right-flight-area button {
                width: 80% !important;
            }

            ul.airlinedropdown_list li.dropdown-item {
                padding: 4px 15px !important;
            }

            div#tab-buttons ul.airlinedropdown_list {
                padding-bottom: 0px !important;
                margin-bottom: 0px !important;
            }

            div#flight_response_with_price {
                margin: 0px !important;
            }
            #offersModal .modalheading.directProviderLogo .direct_logo {
                display: none;
            }
            #offersModal #modal-body ul.list-group.list-group-flush {
                width: 100%;
            }
            #offersModal .otherBookingAgents {
                width: 100%;
            }
            #offersModal .modalheading.directProviderLogo .direct_heading {
                width: 100%;
            }            
            #offersModal .card_section_inner {
                gap: 10px;
            }
            #offersModal a.btn.btn-secondary {
                width: 50px;
                font-size: 14px !important;
                margin: 5px 0 0 !important;
                min-height: 30px;
            }
            #offersModal span.provider-name {
                font-size: 14px;
                line-height: 16px;
                word-break: break-word;
            }
            #offersModal .provider_icon {
                width: 65px;
            }
            #offersModal .provider_icon img {
                width: 100%;
            }
            #offersModal  .provider-details {
                width: calc(100% - 65px);
            }
            #offersModal .provider_price {
                font-size: 14px;
                display: block;
                width: 100%;
                text-align: center;
            }
            .provider-info > .provider_price {
                display: none;
            }
            .provider-info .goBtn {
                flex-direction: column;
            }
            #offersModal .provider-details .provider-info .name_and_type {
                width: calc(100% - 60px);
                flex: 0 0 calc(100% - 60px);
                padding-right: 10px;
            }
            .provider-details .provider-info .goBtn {
                flex: 0 0 60px;
                text-align: center;
                padding-right: 10px;
            }
            #offersModal .card_section.withoutLogo .provider-details {
                width: 100%;
            }
            .flight_response_with_price .main-flight-area .right-flight-area span {
                font-size: 16px;
            }
            .flight_response_with_price .main-flight-area .carrier-img img {
                max-height: 30px;
                max-width: 30px;
            }
            .flight_response_with_price .main-flight-area .inner-flight-area {
                padding: 0 10px;
            }
            .flight_response_with_price .main-flight-area .carrier-img {
                width: 30px;
                flex: 0 0 30px;
            }
            .flight_response_with_price .main-flight-area .flight-details {
                width: calc(100% - 30px);
                flex: 0 0 calc(100% - 30px);
                padding: 0 10px;
            }
            .flight_response_with_price .main-flight-area .flight-trip-duration {
                width: 30%;
            }
            .flight_selection .show button.btn.btn-pulse {
                font-size: 16px;
            }
            .flight_selection .show button.btn.btn-pulse svg.btn-arrow-icon {
                width: 22px;
                margin-left: 8px;
            }
            #flightDateModal .mb-2.d-flex.justify-content-between.gap-2 {
                flex-wrap: wrap;
            }
            #flightAirportsModal input {
                padding: 7px 10px;
                font-size: 14px;                
            }
            #flightAirportsModal small {
                margin-bottom: 6px;
                display: block;
            }
            #offersModal .modalheading.directProviderLogo {
                gap: 10px;
                flex-direction: column;
            }
            #offersModal .modalheading.directProviderLogo {
                gap: 10px;
                flex-direction: column;
                align-items: flex-start;
            }
            #offersModal .modalheading.directProviderLogo .direct_logo {
                width: initial;
                height: auto;
                background: transparent;
                padding: 0;
                display: block;
            }
            #offersModal .modalheading.directProviderLogo .direct_logo img {
                width: auto;
                max-width: 120px;
            }
            .main-flight-area .flight-inner-heading img {
                height: auto;
                width: 55px;                
            }
            .inner-flight-area .right-flight-area p{
                line-height: 13px;
                font-size: 10px !important;
            }


        }
        @media (max-width: 375px) {   
            .flight_response_with_price .right-flight-area button {
                width: 90% !important;
                font-size: 14px !important;
                min-height: 25px !important;
            }
        }
        @media (max-width: 320px) {
            
            #offersModal .provider_icon {
                width: 55px;
            }
            #offersModal .provider-details {
                width: calc(100% - 55px);
            }             
            .card .flight_number_details {
                width: 25%;
            }     
            .card .flight-duration {
                width: 23%;
            }   
            .flight_response_with_price .right-flight-area button {
                width: 90% !important;
                font-size: 12px !important;
                min-height: 25px !important;
            }
        }



        .header-logotype {
            height: 26px;
        }

        .header-phone {

            font-size: 14px;
            font-weight: 400;
            max-width: 300px;
            text-align: right;
        }

        .header-phone a {
            color: #0ca30d;
            font-weight: bold;
            text-decoration: none;
        }

        .header-phone-a {

            font-size: 10px;
            padding: 2px 3px;
            background-color: #999;
            border-radius: 3px;
            color: #fff;
            margin-right: 5px;

        }

        @media screen and ( max-width: 780px ) {

            .text-links {
                display: none;
            }
        }

        @media screen and ( max-width: 640px ) {

            .header-logotype {
                height: 18px;
            }

        }

        @media screen and ( max-width: 450px ) {

            .header-logotype {
                height: 18px;
            }

            .header-phone {

                font-size: 12px;
                font-weight: 400;
                max-width: 300px;
                text-align: right;
            }

            .header-phone-a {

                font-size: 10px;
                padding: 1px 2px;
                background-color: #999;
                border-radius: 3px;
                color: #fff;
                margin-right: 3px;
            }

            .phone-icon {

                width: 13px;
                height: 13px;
            }

        }

        @media screen and ( max-width: 380px ) {

            .header-logotype {
                height: 18px;
            }

            .header-phone {

                font-size: 11px;
                font-weight: 400;
                max-width: 300px;
                text-align: right;
            }
        }

        @media screen and ( max-width: 338px ) {

            .header-logotype {
                height: 18px;
            }

            .header-phone {
                display: none;
            }
        }

        #calendar-app {
            text-align: center;
            font-size: 12px;
            margin-bottom: 5px;
            display: none;
        }


        .input-paddings {
            padding: .75rem .75rem;
        }

        .greyed-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: white;
            opacity: .7;
        }


        .header-phone {

            font-size: 14px;
            font-weight: 400;
            max-width: 300px;
            text-align: right;
        }

        .header-phone a {
            color: #0ca30d;
            font-weight: bold;
            text-decoration: none;
        }

        .header-phone-a {

            font-size: 10px;
            padding: 2px 3px;
            background-color: #999;
            border-radius: 3px;
            color: #fff;
            margin-right: 5px;

        }

        @media screen and ( max-width: 780px ) {

            .text-links {
                display: none;
            }
        }

        @media screen and ( max-width: 640px ) {

            .header-logotype {
                height: 22px;
            }

        }

        @media screen and ( max-width: 450px ) {

            .header-logotype {
                height: 18px;
            }

            .header-phone {

                font-size: 12px;
                font-weight: 400;
                max-width: 300px;
                text-align: right;
            }

            .header-phone-a {

                font-size: 10px;
                padding: 1px 2px;
                background-color: #999;
                border-radius: 3px;
                color: #fff;
                margin-right: 3px;
            }

            .phone-icon {

                width: 13px;
                height: 13px;
            }

        }

        @media screen and ( max-width: 380px ) {

            .header-logotype {
                height: 14px;
            }

            .header-phone {

                font-size: 11px;
                font-weight: 400;
                max-width: 300px;
                text-align: right;
            }
        }

        @media screen and ( max-width: 338px ) {

            .header-logotype {
                height: 18px;
            }

            .header-phone {
                display: none;
            }
        }

        .hamburger-icon {
            background-color: #65c2c2;
            padding: 2px 15px !important;
            border-radius: 15px;
            color: #fff;
        }

        .lower-flight-data {
            font-size: 14px;
        }

        .lower-flight-data-left {
            font-size: 13px;
            font-weight: 600;
        }

        .lower-flight-data-right {
            font-size: 13px;
        }



    #datepicker-container .easepick-wrapper {
        display: block !important;
        height: auto !important;
    }

    .easepick-wrapper .day.in-range {
        background-color: #65c2c24a !important;
        color: #000 !important;
    }

    .easepick-wrapper .day.start,
    .easepick-wrapper .day.end {
        background-color: #65c2c2 !important;
        color: #fff !important;
        border-radius: 50%;
    }

    .easepick-wrapper .day:hover {
        background-color: #65c2c24a !important;
    }

    .easepick-wrapper .day.today {
        border: 1px solid #65c2c2;
    }

    .Iqt3.Iqt3-mod-size-small {
    min-height: 36px;
    max-height: 36px;
    line-height: 16px!important;
    font-size: 14px!important;
    }
    
    .flight_response_with_price .upper-area {
        display: flex;
        justify-content: space-between;
    }
    .flight_response_with_price .lower-area {
        display: flex;
        justify-content: space-between;
    }
    
    .flight_response_with_price .left-flight-area {
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .flight_response_with_price .right-flight-area {
        width: 25%;
        display: flex;
        flex-direction: column;  
        align-items: center;      
        gap: 6px;
        padding: 5px 0px;
        justify-content: center;
        border-left: 1px solid #d9e2e8!important; 
    }
    .flight_response_with_price .carrier-img img {
        max-height: 40px;
        max-width: 40px;
        border-radius: 5px;
    }
    .flight_response_with_price .flight-trip-type {
        width: 15%;
        text-transform: lowercase;
    }
    .flight-details-city-two {
      padding-left: 5px;
    }
    .flight_response_with_price .inner-flight-area {
        display: flex;
        justify-content: center;        
        /* text-align: center; */
        height: 100%;
        padding: 0px;
    }
    .flight-details-city-inner {
        display: flex;
        font-size: 14px;
        font-weight: 400;
    }
    .flight_response_with_price .flight-trip-duration {
    width: 15%;
    }
    .flight_response_with_price .flight-details {
        width: 50%;
    }
    .flight_response_with_price .carrier-img {
        width: 15%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    div#flight_response_with_price{
        background: none!important;
        margin: 9px 0px;
        border: none;
        box-shadow: none;
    }
    .flight_response_with_price .right-flight-area span {
        font-size: 20px;
        font-weight: 600;
    }
    .flight_response_with_price .main-flight-area {
        z-index: 0;
        overflow: hidden;
        background: #fff;
        border-radius: 8px;
        margin: 10px 0px;
        box-shadow: 0 3px 6px rgba(25, 32, 36, 0.16), 0 -1px 4px rgba(25, 32, 36, 0.04);
        border: 2px solid #fff;
        transition: border 0.05s;
    }

    .inner-flight-area .right-flight-area p {
        font-weight: 700;
        font-size: 12px;
        margin: 0px;
        border-top: 1px solid #d9e2e8;
        padding-top: 4px;
    }
        .flight_response_with_price .main-flight-area:hover {
        border: 2px solid #65c2c2;
    }

    .flight_response_with_price  .flight-details-time,.flight_response_with_price .flight-trip-type, .flight_response_with_price .flight-trip-duration  {

        font-weight: 600;
    }
    .flight_response_with_price .upper-area{
     margin-bottom: 10px;
    }
    .flight_selection .btn-pulse {
     width: 100%!important;
    }
    .flight_response_with_price .right-flight-area button {
        color: #fff;
        background: linear-gradient(135deg, #ff690f 0%, #e8381b 100%);
        border: none;
        min-height: 30px;
        max-height: 30px;
        width: 85px;
        border-radius: 5px;
        line-height: 16px!important;
        font-size: 16px;
        font-weight: 600;
    }
    .main-flight-area .right-flight-area a {
        text-decoration: underline!important;
        font-size:14px;
        color: #000;
    }
    .main-flight-area .right-flight-area .flight-area-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 82%;
        text-decoration: none !important;
        color: #000;
        gap: 10px;
    }
    .flight-inner-heading {
        display: flex;  
        width: 88%;
        justify-content: center;
        align-items: center;
    }
    .flight-inner-heading img {
        height: auto;
        width: 30px;
        object-fit: contain;
        border-radius: 5px;
        margin-right: 10px;
   }
    .flight-inner-heading p {
        border-top: 0px!important;
        padding-top:0px!important;
    }
    
    .flight_selection .flight_selection_inner, .flight_selection .flight-detailed-area-selected {
      display: none;
    }
    .flight_selection .show {
        display:block!important;
    }
    .flight_selection .d-grid.mt-4.position-relative.btn_showflight_price{
        display: none;
    }
    .flight_selection .btn_showflight_price button.btn.btn-pulse {
       display: none;
    }
    .flight_selection .show button.btn.btn-pulse {
        display: block!important;
    }
    .card-body-inner{
        gap:20px; 
    }
    .flight-duration-mb {
        display: none;
    }
    span.desktop-only, .desktop-only {
        display: block;
    }
    .flight-details-city-one {
        width: auto;
        display: flex;
        gap: 5px;
    }
    .flight-details-city-two {
        padding-left: 5px;
        width: auto;
        display: flex;
        gap: 5px;
    }
    span.flight-stop-line-ls {
        display: block;
    }
    span.time-details-flight {
        display: flex;
        gap: 1px;
    }
    .main-flight-area {
        min-height: 85px;
        /* height: 85px; */
    }
    .inner-flight-area p {
        font-weight: 700;
        font-size: 16px;
        /* margin: ; */
    }
    .airline-wrapper ul.airlinedropdown_list li .airline-list,
    .airline-wrapper ul.airlinedropdown_list li .weekdays{
        display: flex;
        align-items: center;
    }
    .airline-wrapper ul.airlinedropdown_list li .weekdays{
        margin-left: auto;
        column-gap: 3px;
    }
    .airlinedropdown_list li:not(:last-child) {
        border-bottom: 1px solid #dee2e6;
    }
    .airlinedropdown_list  li {
        padding: 8px 8px;
    }
    ul.airlinedropdown_list.w-100 {
        border: 1px solid #dee2e6 !important;
        padding: 8px 8px 0;
        list-style: none;
        padding: 0;
        border-radius: 6px;
    }
    .airline-wrapper ul.airlinedropdown_list li .weekday{
        width: 16px;
        height: 16px;
        background: #ddd;        
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        text-align: center;
    }
    .airline-wrapper ul.airlinedropdown_list li .weekday.active{
        background: #65c2c2;
        color: #fff;        
    }
    .airline-wrapper .date-period{
        font-size: 11px;
        text-align: right;
        padding: 0 0 0px 10px;
    }    
    .loading-wrapper .progress-bar-text{
        height: 50px;
        display: none;
    }
    .loading-wrapper .progress-container{
        margin-bottom: 5px;
    }
    .loading-wrapper button{
        margin-top: 4px;
    }
    div#tab-buttons ul.airlinedropdown_list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        border: 0 !important;
        padding: 10px 10px 10px;
    }
    ul.airlinedropdown_list li.dropdown-item {
        border: 1px solid #ddd;
        border-radius: 0.375rem;
        display: flex;
        justify-content: center;
        width: fit-content;
        padding: 8px 15px;
    }
    ul.airlinedropdown_list li.dropdown-item.active {
        border: 1px solid #65c2c2;
        box-shadow: 0 0 2px #65c2c2;
        color: #65c2c2;
        font-weight: 500;
        transition: 0.2s;
        background: #ffffff;
    }
    span.airline-img img {
        max-width: 22px;
        aspect-ratio: 1/1;
        object-fit: contain;
        object-position: center;
    }
    span.airline-img {
        padding-right: 5px;
    }
    .flights_no_match_msg_inner {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        border: 1px solid #e5e2e2;
        padding: 16px;
        background: #fff;
        border-radius: 0.375rem;
        margin-top: 17px;
    }
    .flights_no_match_msg_inner p {
        margin: 0;
    }
    .flights_no_match_msg_inner img {
        max-width: 20px;
        margin-right: 3px;
        margin-top: -5px;
    }
    @media(max-width: 768px) {
    span.time-details-flight {
        font-size: 10px;
    }
    .flight-details-city-inner {
        font-size: 10px;
    }
    .flight_response_with_price .right-flight-area span {
        font-size: 20px;
    }
    ul.airlinedropdown_list li.dropdown-item .airline-tab {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
     ul.airlinedropdown_list li.dropdown-item {
        width: 48%;
    }
    /* .flight_response_with_price .right-flight-area button {
        display:none;
    } */
    .flight_response_with_price .carrier-img img {
        max-height: 40px;
        max-width: 40px;
    }
    .flight-trip-type {
        display: none;
    }
    .flight_response_with_price .carrier-img {
        width: 15%;
    }
    .flight_response_with_price .flight-trip-duration {
        width: 25%;
    }
    .flight_response_with_price .flight-details {
        width: 75%;
    }
    span.flight-stop-line-ls {
    display: none;
    }
    .flight-details-city-inner {
        justify-content: space-between;
    }
    .flight_response_with_price .right-flight-area {
        border-left: none; 
        text-align: center;
        width: 35%;
        gap: 4px;
    }
    .flight-duration-mb {
    display: block;
    }
    span.desktop-only , .desktop-only {
    display: none;
    }
    .main-flight-area .right-flight-area .flight-area-inner {
        width: auto;
    }
    .time-details-flight {
        display: flex;
        align-items: center;
    }
    .time-details-flight .flight-stop-center-line-mb {
        border-bottom: 1px solid #000;
        display: inline-flex;
        flex-grow: 1;
        height: 1px;
        margin: 0 10px;
    }
    .flight-checkbox {
        width: 4%;
    }
    .flight-info {
        width: 60%;
    }
    .flight_number_details {
        width: 20%;
    }
    .flight-duration {
        width: 10%;
    }
    .flight_response_with_price .left-flight-area {
        padding-right: 10px;
        width: 65%;
    }
    .flight-inner-heading {
        display: block;
    }
    .flight_response_with_price .right-flight-area button{
        display: none;
    }
    .flight_response_with_price .right-flight-area{
        padding: 0 0 8px 8px;
    }
    .flight_response_with_price .flight-inner-heading img {
        margin-right: 0px;
    }
    .flight_response_with_price .right-flight-area span{
        font-size: 12px !important;
    }
    .right-flight-area .desktop_only{
        display: none;
    }
    .right-flight-area .mobile_only{
        display: block;
    }

    }

    @media(max-width: 480px){
        .airline-wrapper .airline-list span{
            font-size: 11px;
        }
        .flight-checkbox {
        width: 4%;
       }
        .flight-info {
            width: 46%;
        }
        .flight_number_details {
            width: 30%;
        }
        .flight-duration {
            width: 18%;
        }
    }

    @media(max-width: 360px){

        .airline-wrapper ul.airlinedropdown_list li .weekdays{            
            column-gap: 1px;
        }
        .airline-wrapper ul.airlinedropdown_list li .weekday{
            font-size: 9px;
        }
        .airline-wrapper ul.airlinedropdown_list li .airline-list{
            padding: 0.25rem 0.6rem;
        }

    }

    .small-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 10px;
      margin-bottom: 10px;
    }
    .small-logos img {
      height: 14px;
    }
    .powered {
      font-size: 10px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 5px;
      justify-content: center;
    }
    .powered img {
      height: 14px;
    }
    
    .small-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 10px;
      margin-bottom: 10px;
    }
    .small-logos img {
      height: 14px;
    }
    .powered {
      font-size: 10px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 5px;
      justify-content: center;
    }
    .powered img {
      height: 30px;
    }
    .flights_no_match_msg_inner{
        display: none;
    }

    .flights_no_match_msg_inner.show{
        display: block;
    }
    .tab-area-main{
        background: #fff;
    }
    .tab-area-main .airline-tab {
        cursor: pointer;
    }

    .airlinedropdown_list .dropdown-item {
        cursor: pointer;
    }
    .flight-content-tab{
        display: none;
    }

    .flight-content-tab.active{
        display: block;
    }
    .left-flight-area {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    