@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Work+Sans:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bgColor {
    0% {
        background-color: white;
    }

    100% {
        background-color: #e2e7ee;
    }
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    body.overflow_hidden {
        height: 100%;
        overflow: hidden;
    }

.land_title {
    font-family: "Red Hat Display", sans-serif !important;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    color: #123D6C;
}

.land_body {
    font-family: "Red Hat Text", sans-serif !important;
}

.land_btn {
    color: #123D6C;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 16px 44px;
    height: 80px;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #123D6C;
    background: rgba(18, 61, 108, 0.05);
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s linear;
}



    .land_btn:hover {
        background: #123D6C;
        color: #DEDEDE;
    }

@media screen and (max-width: 768px) {
    .land_btn {
        width: -moz-fit-content;
        width: fit-content;
        height: 54px;
        font-size: 14px;
        font-weight: 600;
        margin: 0 auto;
        padding: 0 20px;
    }
}

.space_10 {
    height: 10px;
}

@media (max-width: 767px) {
    .space_10 {
        height: 5px;
    }
}

.space_20 {
    height: 20px;
}

@media (max-width: 767px) {
    .space_20 {
        height: 10px;
    }
}

.space_30 {
    height: 30px;
}

@media (max-width: 767px) {
    .space_30 {
        height: 15px;
    }
}

.space_40 {
    height: 40px;
}

@media (max-width: 767px) {
    .space_40 {
        height: 20px;
    }
}

.space_50 {
    height: 50px;
}

@media (max-width: 767px) {
    .space_50 {
        height: 25px;
    }
}

.space_60 {
    height: 60px;
}

@media (max-width: 767px) {
    .space_60 {
        height: 30px;
    }
}

.space_70 {
    height: 70px;
}

@media (max-width: 767px) {
    .space_70 {
        height: 35px;
    }
}

.space_80 {
    height: 80px;
}

@media (max-width: 767px) {
    .space_80 {
        height: 40px;
    }
}

.space_90 {
    height: 90px;
}

@media (max-width: 767px) {
    .space_90 {
        height: 45px;
    }
}

.space_100 {
    height: 100px;
}

@media (max-width: 767px) {
    .space_100 {
        height: 50px;
    }
}

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

.text_component {
    padding: 160px 90px;
    color: #0092D2;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    border-radius: 0px 200px 0px 200px;
    background: #FFF;
    margin-top: -200px;
    position: relative;
}

.text_component_text {
    font-size: 28px;
    line-height: 42px;
}

@media (max-width: 768px) {
    .text_component_text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .text_component {
        margin-top: -100px;
        border-radius: 0px 50px 0px 0px;
        padding: 50px 20px;
        font-size: 20px;
        line-height: 30px;
    }
}

.text_component.v2 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

    .text_component.v2 p {
        margin-bottom: 20px !important;
        color: #9B9B9C;
    }

    .text_component.v2 h4 {
        color: #131313;
        margin-bottom: 12px;
        font-size: 18px;
    }

.services {
    border-radius: 0px 200px;
    background: linear-gradient(132deg, #4D4D4F 0%, #123D6C 69.79%);
    padding: 140px 96px;
}

@media (max-width: 768px) {
    .services {
        padding: 50px 20px;
        border-radius: 0px 0px;
    }
}

.services--title {
    color: #BFE4F4;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .services--title {
        font-size: 24px;
        line-height: 34px;
        max-width: 280px;
        padding-bottom: 80px;
    }
}

.services_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

@media (max-width: 768px) {
    .services_list {
        display: flex;
        overflow: auto;
        gap: 30px;
        margin-right: -20px;
    }
}

.services_list_each {
    display: flex;
    gap: 36px;
}

@media (max-width: 768px) {
    .services_list_each {
        min-width: 65vw;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .services_list_each--icon img {
        max-height: 20px;
    }
}

.services_list_each_info--title {
    color: #BFE4F4;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .services_list_each_info--title {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }
}

.services_list_each_info--text {
    color: #DEDEDE;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .services_list_each_info--text {
        font-size: 14px;
        line-height: 24px;
    }
}

.contact_wrap {
    padding: 140px 96px;
}

@media (max-width: 768px) {
    .contact_wrap {
        padding: 50px 20px;
    }
}

.contact_wrap_inner {
    padding: 96px;
    border-radius: 0px 200px 0px 150px;
    background: linear-gradient(199deg, #3884A5 0%, #123D6C 55.69%);
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 100px;
}

@media (max-width: 768px) {
    .contact_wrap_inner {
        padding: 20px;
        border-radius: 0px 50px 0px 50px;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact_wrap_inner--img {
    margin-top: 20px;
}

    .contact_wrap_inner--img img {
        max-width: 100%;
    }

.contact_wrap_inner_info--title {
    color: #F8F8F8;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact_wrap_inner_info--title {
        font-size: 24px;
        line-height: 34px;
    }
}

.contact_wrap_inner_info--text {
    color: #BFE4F4;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 65px;
    max-width: 500px;
}

@media (max-width: 768px) {
    .contact_wrap_inner_info--text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 45px;
    }
}

.explore {
    padding: 120px 0px;
}

@media (max-width: 768px) {
    .explore {
        padding: 50px 0px;
    }
}

@media (max-width: 768px) {
    .explore .sub_text {
        padding: 0 20px;
    }
}

.explore_list {
    display: flex;
    overflow: auto;
    margin-top: 50px;
    align-items: center;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .explore_list {
        margin-top: 20px;
    }
}

.explore_list::-webkit-scrollbar {
    display: none;
}

.explore_list_each {
    position: relative;
    margin: 0 -10px;
}

    .explore_list_each:nth-child(even) {
        padding-top: 140px;
    }

.explore_list_each--img img {
    display: block;
}

@media (max-width: 768px) {
    .explore_list_each--img img {
        max-width: 80vw;
    }
}

.explore_list_each--title {
    color: #F8F8F8;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 42px;
    position: absolute;
    bottom: 100px;
    text-align: center;
    width: 100%;
    left: 0;
}

@media (max-width: 768px) {
    .explore_list_each--title {
        font-size: 22px;
        line-height: 32px;
        bottom: 50px;
    }
}

.title {
    color: #123D6C;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 74px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 16px;
    }
}

.sub_text {
    color: #9B9B9C;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sub_text {
        font-size: 18px;
        line-height: 28px;
    }
}

.mob_hide {
    display: block;
}

@media (max-width: 768px) {
    .mob_hide {
        display: none;
    }
}

.desk_hide {
    display: none;
}

@media (max-width: 768px) {
    .desk_hide {
        display: block;
    }
}

.max_800 {
    max-width: 600px;
    margin: 0 auto;
}

.max_500 {
    max-width: 500px !important;
}

.help {
    padding: 100px 96px;
}

@media (max-width: 768px) {
    .help {
        padding: 50px 20px;
    }
}

.help_img {
    padding: 50px 0;
    position: relative;
}

@media (max-width: 768px) {
    .help_img {
        padding: 25px 0;
    }
}

.help_img::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 757px;
    background: linear-gradient(180deg, #BFE4F4 0%, #DEDEDE 100%);
    filter: blur(252px);
    z-index: -1;
}

.help_img::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 757px;
    background: linear-gradient(180deg, #BFE4F4 0%, #DEDEDE 100%);
    filter: blur(252px);
    z-index: -1;
}

.help_img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.mob_hide_br {
    display: flex;
}

@media screen and (max-width: 768px) {
    .mob_hide_br {
        display: none !important;
    }
}

.desk_hide_br {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .desk_hide_br {
        display: flex;
    }
}

.xdsoft_noselect,
.jquery-date-time-picker {
    font-family: "Manrope", sans-serif;
}

.xdsoft_noselect {
    background: linear-gradient(132deg, #4D4D4F 0%, #123D6C 69.79%);
    border: none;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    background: #fff;
    box-shadow: #fff 0 1px 3px 0 inset;
    border-radius: 2px;
    color: #113d6b;
}

.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
    text-align: center;
    background: transparent;
    color: #fff;
    border: none;
}

@media (min-width: 1200px) {
    .xdsoft_datetimepicker .xdsoft_calendar td,
    .xdsoft_datetimepicker .xdsoft_calendar th {
        padding: 8px;
    }
}

.xdsoft_datetimepicker .xdsoft_calendar td > div {
    padding-right: 0px;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active,
.xdsoft_datetimepicker .xdsoft_timepicker.active {
    width: -moz-fit-content;
    width: fit-content;
}

@media (min-width: 1200px) {
    .xdsoft_datetimepicker .xdsoft_datepicker.active,
    .xdsoft_datetimepicker .xdsoft_timepicker.active {
        width: initial;
    }
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
    background: transparent;
    color: #fff;
    border: none;
}

@media (min-width: 1200px) {
    .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
        padding: 6px;
        height: auto;
    }
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
    height: 123px;
    border: none;
    background: rgba(0, 0, 0, 0.25);
}

@media (min-width: 1200px) {
    .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
        height: 163px;
    }
}

.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
    margin-top: 29px;
}

.xdsoft_scrollbar {
    display: none;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background: #fff !important;
    color: #113d6b !important;
    font-weight: 700 !important;
}

.xdsoft_datetimepicker .xdsoft_year {
    width: -moz-fit-content;
    width: fit-content;
}

.xdsoft_datetimepicker .xdsoft_mounthpicker {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xdsoft_datetimepicker .xdsoft_month,
.xdsoft_datetimepicker .xdsoft_year {
    background: transparent;
    color: #fff;
    display: inline-flex;
    gap: 4px;
}

.xdsoft_datetimepicker .xdsoft_label i {
    filter: invert(1);
    opacity: 1;
}

.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
    filter: invert(1);
    opacity: 1;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
    background: transparent;
    color: #fff !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
    background: linear-gradient(132deg, #4D4D4F 0%, #123D6C 69.79%);
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    border: none;
    padding: 5px;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
}

    .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
        background: transparent;
    }

    .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
        background: #113d6b;
        background: #113d6b;
        box-shadow: none;
        font-weight: 400;
    }

    .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
        padding-top: 6px;
    }

.jquery-date-time-picker {
    background: url("../images/landing/calendar.png") center right no-repeat !important;
    background-size: 26px !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
    color: #0092D2;
    font-weight: 700;
}

.text_center {
    text-align: center;
}

.primary_btn_v2 {
    border-radius: 50px;
    border: 1px solid #FFF;
    background: rgba(18, 61, 108, 0.05);
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    height: 60px;
    text-decoration: none;
    min-width: 224px;
    justify-content: center;
    transition: 0.25s linear;
}

    .primary_btn_v2:hover {
        background: #fff;
        color: #123D6C;
    }

@media (max-width: 768px) {
    .primary_btn_v2 {
        height: 50px;
        min-width: 200px;
    }
}

.tab_hide {
    display: flex;
}

@media screen and (max-width: 900px) {
    .tab_hide {
        display: none !important;
    }
}

.grid {
    display: grid;
}

    .grid.cols2 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

@media (max-width: 768px) {
    .grid.cols2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.text_left {
    text-align: left;
}

.team {
    padding: 100px 96px;
}

@media (max-width: 768px) {
    .team {
        padding: 50px 20px;
    }
}

.team_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px 24px;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .team_list {
        grid-template-columns: 1fr;
        display: flex;
        overflow: auto;
        margin: 0 -20px;
        margin-top: 40px;
    }
}

.team_list_each {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
}

@media (max-width: 768px) {
    .team_list_each {
        min-width: 80vw;
    }
}

.team_list_each:nth-child(4), .team_list_each:nth-child(6) {
    margin-top: -80px;
}

@media (max-width: 768px) {
    .team_list_each:nth-child(4), .team_list_each:nth-child(6) {
        margin-top: 0;
    }
}

.team_list_each:nth-child(2) {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .team_list_each:nth-child(2) {
        margin-top: 0;
    }
}

.team_list_each--img {
    border-radius: 150px;
    overflow: hidden;
}

    .team_list_each--img img {
        max-width: 100%;
        display: block;
    }

.team_list_each_info {
    position: absolute;
    bottom: 60px;
    text-align: center;
    width: 100%;
    left: 0;
}

.team_list_each_info--title {
    color: #F8F8F8;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 42px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .team_list_each_info--title {
        font-size: 24px;
        line-height: 32px;
    }
}

.team_list_each_info--text {
    color: #BFE4F4;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
}

@media (max-width: 768px) {
    .team_list_each_info--text {
        font-size: 16px;
        line-height: 24px;
    }
}

.text_component_v2 {
    color: #123D6C;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
}

@media (max-width: 768px) {
    .text_component_v2 {
        font-size: 20px;
        line-height: 32px;
    }
}

.block_v1 {
    padding: 50px 96px;
}

@media (max-width: 768px) {
    .block_v1 {
        padding: 50px 20px;
    }
}

.text_component_v3 p {
    color: #4D4D4F;
    font-family: Red Hat Text;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px !important;
}

@media (max-width: 768px) {
    .text_component_v3 p {
        font-size: 16px;
        line-height: 24px;
    }
}

.text_component_v3 img {
    border-radius: 50px;
    overflow: hidden;
    display: block;
    max-width: 100%;
}

.light_bg {
    background: #F8F8F8;
}

.country_cont .ui-menu {
    background: #ffffff;
    color: #333333;
    max-height: 180px;
    font-size: 30px;
    overflow: auto;
    border: 1px solid #d2dce9 !important;
    border-top: none !important;
    padding: 20px;
    border-radius: 0px 0px 8px 8px;
    position: absolute !important;
    z-index: 2;
    /* Add a thumb */
}

    .country_cont .ui-menu li .ui-menu-item-wrapper {
        font-size: 16px;
        cursor: pointer;
    }


.ui-menu {
    background: #ffffff;
    color: #333333;
    left: -1px !important;
    width: calc(100% + 2px) !important;
    top: calc(100% - 10px) !important;
    max-height: 180px;
    overflow: auto;
    border: 1px solid #d2dce9 !important;
    border-top: none !important;
    padding: 20px;
    border-radius: 0px 0px 8px 8px;
    position: absolute !important;
    z-index: 2;
    /* Add a thumb */
}

    .ui-menu::-webkit-scrollbar {
        width: 2px;
        height: 4px;
        background-color: transparent;
        /* or add it to the track */
    }

    .ui-menu::-webkit-scrollbar-thumb {
        background: #189eff;
        border-radius: 8px;
    }

    .ui-menu li {
        margin-bottom: 12px !important;
    }

        .ui-menu li .ui-menu-item-wrapper {
            padding: 0px;
            font-size: 13px;
            font-family: "Work Sans", sans-serif;
            transition: 0.25s linear;
        }

            .ui-menu li .ui-menu-item-wrapper.ui-state-active {
                background: transparent !important;
                color: #189eff !important;
                border: none !important;
                padding: 0 !important;
                margin: 0 !important;
            }




.ui-datepicker {
    z-index: 13 !important;
}

.form_group {
    margin-bottom: 20px;
}

.form_group_msg {
    font-size: 12px;
    color: green;
    margin-bottom: 20px;
}

.form_group input {
    background: #EDF6F6;
    height: 52px;
    padding: 0 15px;
    color: #080708;
    border: none;
    width: 100%;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Inter', sans-serif;
}

    .form_group input::placeholder {
        color: #949494;
    }

    .form_group input:focus {
        outline: none;
    }

.form_group textarea {
    background: #EDF6F6;
    width: 100%;
    height: 100px;
    resize: none;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Inter', sans-serif;
}

    .form_group textarea::placeholder {
        color: #949494;
    }

    .form_group textarea:focus {
        outline: none;
    }

#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.ui-state-disabled {
    font-size: 0.875rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: gray;
    text-decoration: none;
    border-radius: 2px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


.ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    color: #616161;
    font-weight: 700;
    font-size: 0.80rem;
}


.ui-datepicker .ui-widget-content {
    position: fixed !important;
}

.ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
}

    .ui-datepicker-calendar tbody td a {
        display: block;
        border-radius: 0.25rem;
        line-height: 2rem;
        transition: 0.3s all;
        color: #080708;
        font-size: 0.875rem;
        text-decoration: none;
        border-radius: 2px;
    }

        .ui-datepicker-calendar tbody td a:hover {
            background-color: #E0E0E0;
            border-radius: 4px;
        }

        .ui-datepicker-calendar tbody td a.ui-state-active {
            background-color: #009688;
            color: white;
        }

.ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s all;
}

    .ui-datepicker-header a.ui-corner-all:hover {
        background-color: #E0E0E0;
    }

.ui-datepicker-header a.ui-datepicker-prev {
    left: 0;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjkiIHRyYW5zZm9ybT0ibWF0cml4KDAgMSAxIDAgMS4wMjkzIDEuNDU4OTgpIiBzdHJva2U9IiMxMjNENkMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTUuMDI5MyAxMC40NTlMMTUuMDI5MyAxMC40NTlNMTUuMDI5MyAxMC40NTlMMTIuNTI5MyA3Ljk1ODk4TTE1LjAyOTMgMTAuNDU5TDEyLjUyOTMgMTIuOTU5IiBzdHJva2U9IiMxMjNENkMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: 50%;
    transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
    right: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjkiIHRyYW5zZm9ybT0ibWF0cml4KDAgMSAxIDAgMS4wMjkzIDEuNDU4OTgpIiBzdHJva2U9IiMxMjNENkMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTUuMDI5MyAxMC40NTlMMTUuMDI5MyAxMC40NTlNMTUuMDI5MyAxMC40NTlMMTIuNTI5MyA3Ljk1ODk4TTE1LjAyOTMgMTAuNDU5TDEyLjUyOTMgMTIuOTU5IiBzdHJva2U9IiMxMjNENkMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: 50%;
}

.ui-datepicker-header a > span {
    display: none;
}

.ui-datepicker-title {
    text-align: center;
    line-height: 2rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
    color: #78909C;
    font-weight: 700;
    font-size: 0.75rem;
}

.ui-datepicker-calendar .ui-state-default.ui-state-highlight, .ui-datepicker-calendar .ui-state-highlight.ui-state-active {
    color: #0092D2;
}

.ui-datepicker-calendar tbody td a.ui-state-active {
    background: #189eff;
    color: #fff;
    border-radius: 4px;
}



.ui-datepicker-title select {
    appearance: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: url('../images/icons/dropdown.svg') center right no-repeat;
    padding-right: 16px;
    background-size: 10px;
    margin: 0 10px;
    cursor: pointer;
    outline: none;
    color: #123D6C;
}

.main-head-c {
    height: 90px;
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 99px;
    font-family: "Manrope";
    font-style: normal;
    background: #fff;
    overflow: visible;
    position: relative;
    z-index: 99;
}

@media screen and (max-width: 1220px) {
    .main-head-c {
        padding: 0 20px;
    }
}

.main-head-c .search-header {
    width: 100%;
}

    .main-head-c .search-header img {
        height: 58px;
        width: 163px;
    }

.main-head-c .right-side-tab {
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*gap: 100px;*/
    gap: 50px;
    align-items: center;
}

@media screen and (max-width: 1220px) {
    .main-head-c .right-side-tab {
        gap: 20px;
    }
}

@media screen and (max-width: 798px) {
    .main-head-c .right-side-tab {
        width: -moz-fit-content;
        width: fit-content;
    }
}

.main-head-c .right-side-tab .home-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55.33px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #67707b;
}

@media screen and (max-width: 1220px) {
    .main-head-c .right-side-tab .home-items {
        gap: 20px;
    }
}

@media screen and (max-width: 798px) {
    .main-head-c .right-side-tab .home-items {
        display: none;
    }
}

.main-head-c .right-side-tab .home-items .active_nav {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #189eff;
}

.main-head-c .right-side-tab .home-items a {
    text-decoration: none;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #67707b;
}

.main-head-c .right-side-tab .wallet {
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

    .main-head-c .right-side-tab .wallet .balance {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        color: #189eff;
    }

    .main-head-c .right-side-tab .wallet .b-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
        margin: 0;
        padding: 0;
    }

.main-head-c .right-side-tab .user-profile {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 14px;
    cursor: pointer;
}

    .main-head-c .right-side-tab .user-profile .user-profile-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .main-head-c .right-side-tab .user-profile .user-profile-wrapper img {
            height: 32px;
            width: 32px;
        }

    .main-head-c .right-side-tab .user-profile .user-rs {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
    }

        .main-head-c .right-side-tab .user-profile .user-rs .user-text {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #123d6c;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .main-head-c .right-side-tab .user-profile .user-rs .user-text img {
                margin-left: 10px;
            }

        .main-head-c .right-side-tab .user-profile .user-rs .user-id {
            font-weight: 500;
            font-size: 10px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
        }

.main-head-c .right-side-tab .dropdown .dropdown-toggle {
    border: none;
    background: transparent;
}

    .main-head-c .right-side-tab .dropdown .dropdown-toggle::after {
        display: none;
    }


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.footer {
    background-color: #FFFFFF;
    width: 100%;
    min-height: 300px;
    padding: 60px 84px 60px 91px;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
        min-height: auto;
    }
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer_top {
        padding-bottom: 30px;
    }
}

.footer_top ul {
    list-style: none;
    display: flex;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #000000;
    gap: 80px;
}

@media (max-width: 768px) {
    .footer_top ul {
        gap: 40px;
    }
}

.footer_top ul li {
    max-width: 210px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer_top ul li .socialbox {
        display: flex;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
    }

        .footer_top ul li .socialbox .wrapper {
            height: 26px;
            width: 26px;
            background: #F1F5F9;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .footer_top ul li p {
        font-weight: 500;
    }

    .footer_top ul li a {
        text-decoration: none;
        color: #000;
    }

.footer_top_wrapper {
    height: 55px;
    width: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .footer_top_wrapper {
        margin-left: 20px;
    }
}

.footer_bottom {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

@media (max-width: 768px) {
    .footer_bottom {
        padding-top: 30px;
    }
}

.footer_bottom_rightbox {
    display: flex;
    gap: 57px;
}

    .footer_bottom_rightbox a {
        text-decoration: none;
        color: #000000;
    }

@media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (pointer: coarse), only screen and (device-width: 820px) and (device-height: 1180px), only screen and (device-width: 768px) and (device-height: 1024px) {
    .footer {
        padding: 60px 40px;
    }
}

.cf_form {
    max-width: 400px;
}


    .cf_form .input-group {
        position: relative;
        height: 48px;
        border-radius: 8px;
        border: 1px solid #D2DCE9;
        margin-bottom: 26px;
    }

        .cf_form .input-group .error {
            position: absolute;
            font-size: 10px;
            line-height: 10px;
            color: #DD1F03;
            bottom: -16px;
            left: 0;
            margin-left: 0px !important;
            background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
            background-size: 10px;
            padding-left: 14px;
        }

        .cf_form .input-group input {
            border: none;
            border-radius: 8px !important;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #292C31;
            padding-left: 0px;
            height: 46px;
            position: relative;
            z-index: 1;
            padding-left: 44px;
        }

            .cf_form .input-group input.error {
                position: relative;
                bottom: 0px;
                font-size: 14px;
                line-height: 19px;
                background: transparent;
                padding-left: 44px;
            }

            .cf_form .input-group input::-moz-placeholder {
                opacity: 0;
            }

            .cf_form .input-group input::placeholder {
                opacity: 0;
            }

            .cf_form .input-group input:focus {
                box-shadow: none;
                background: transparent;
            }

                .cf_form .input-group input:focus ~ .input-border {
                    opacity: 1;
                }

                .cf_form .input-group input:focus ~ .input-label {
                    top: -10px;
                    font-size: 12px;
                }

            .cf_form .input-group input:not(:-moz-placeholder-shown) ~ .input-border {
                opacity: 1;
            }

            .cf_form .input-group input:not(:placeholder-shown) ~ .input-border {
                opacity: 1;
            }

            .cf_form .input-group input:not(:-moz-placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .cf_form .input-group input:not(:placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .cf_form .input-group input:-webkit-autofill:not(:placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .cf_form .input-group input.error ~ .input-border {
                border: 1px solid #DD1F03;
                opacity: 1;
            }

            .cf_form .input-group input.error ~ .input-group-text svg path, .cf_form .input-group input.error ~ .input-group-text svg rect, .cf_form .input-group input.error ~ .input-group-text svg circle {
                stroke: #DD1F03;
            }

        .cf_form .input-group .input-border {
            border: #189EFF 1px solid;
            position: absolute;
            width: calc(100% + 2px);
            height: calc(100% + 2px);
            left: 0;
            top: -1px;
            border-radius: 8px !important;
            opacity: 0;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .cf_form .input-group .input-group-text {
            background: transparent;
            border: none;
            padding: 12px;
            min-width: 44px;
            height: 48px;
            display: inline-flex;
            justify-content: center;
            position: absolute;
            left: 0;
            z-index: 2;
        }

        .cf_form .input-group .input-label {
            position: absolute;
            top: 14px;
            left: 36px;
            font-weight: 400;
            font-size: 14px;
            line-height: 19px;
            background: #fff;
            padding: 0 8px;
            color: #67707B;
            z-index: 2;
            pointer-events: none;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .cf_form .input-group .input-eye {
            position: absolute;
            right: 0px;
            top: 0;
            height: 48px;
            width: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            z-index: 9;
            cursor: pointer;
        }

            .cf_form .input-group .input-eye svg path {
                fill: #C4C4C4;
                transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
            }

            .cf_form .input-group .input-eye svg circle {
                stroke: #C4C4C4;
                transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
            }

            .cf_form .input-group .input-eye.active svg path {
                fill: #189EFF;
            }

            .cf_form .input-group .input-eye.active svg circle {
                stroke: #189EFF;
            }

            .cf_form .input-group .input-eye::before {
                content: "";
                position: absolute;
                width: 1px;
                height: calc(100% - 20px);
                top: 10px;
                left: 0;
                background: #D2DCE9;
            }

.primary_btn {
    background: #189EFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    height: 48px;
    border: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FAFAFA;
    padding: 0 30px;
    border: #189EFF 1px solid;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .primary_btn:hover {
        background: #FAFAFA;
        color: #189EFF;
    }

    .primary_btn.btn_fluid {
        width: 100%;
    }

.cf_forgot_pwd {
    display: flex;
    justify-content: flex-end;
}



.cf_forgot_pwd--link {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #67707B;
    cursor: pointer;
    text-align: right;
    margin-bottom: 30px;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_forgot_pwd--link:hover {
        color: #189EFF;
    }

.cf_sign_up_text {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    margin-top: 20px;
    color: #67707B;
}

    .cf_sign_up_text span {
        color: #189EFF;
        cursor: pointer;
    }

        .cf_sign_up_text span:hover {
            text-decoration: underline;
        }

.cf_login_block {
    display: none;
}

    .cf_login_block.active {
        display: block;
        animation: fadeIn 0.35s linear;
    }

.cf_forgot_link_success {
    text-align: center;
    padding: 40px 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_forgot_link_success.active {
        opacity: 1;
        pointer-events: all;
    }

.cf_forgot_link_success--icon {
    margin-bottom: 10px;
}

.cf_forgot_link_success--text {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #189EFF;
}

.cf_sign_up_success {
    text-align: center;
}

.cf_sign_up_success--icon {
    margin-bottom: 18px;
}

.cf_sign_up_success--title {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #161718;
    margin-bottom: 26px;
}

.cf_sign_up_success--text {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #67707B;
}

.cf_login_wrap {
    display: flex;
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .cf_login_wrap {
        display: block;
    }
}

.cf_login_content {
    background: #123D6C;
    height: 100vh;
    min-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .cf_login_content {
        min-width: 100%;
        height: auto;
    }
}

.cf_login_content .testimonials {
    padding: 50px 0;
}

@media (max-width: 900px) {
    .cf_login_content .testimonials {
        padding: 80px 30px;
    }
}

.cf_login_content_animate {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 900px) {
    .cf_login_content_animate {
        display: none;
    }
}

@keyframes planeMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes cloudMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -10000px 0;
    }
}

.cf_login_content_animate::before {
    content: "";
    position: absolute;
    width: 3600px;
    height: 100%;
    left: 0;
    top: 0;
    background: url("/assets/images/clouds/clouds_bg.png") repeat-x;
    background-position: 0 0;
    background-size: auto 100%;
    animation: cloudMove 150s linear infinite;
}

.cf_login_content_animate .plane {
    animation: planeMove 4.5s linear infinite;
}

.cf_login_form {
    min-width: 45%;
}

@media (max-width: 900px) {
    .cf_login_form {
        min-width: 100%;
    }
}

.cf_login_form_inner {
    max-width: 500px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 30px;
}

@media (max-width: 900px) {
    .cf_login_form_inner {
        height: auto;
    }
}

.cf_login_form--header {
    text-align: center;
    margin-bottom: 20px;
}

    .cf_login_form--header img {
        max-height: 100px;
    }

.cf_login_form_footer {
    margin-top: 30px;
}

.cf_login_form_footer--links ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
    padding-left: 0px;
}

    .cf_login_form_footer--links ul li {
        color: #878B95;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
    }

        .cf_login_form_footer--links ul li a {
            color: #878B95;
            text-decoration: none;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

            .cf_login_form_footer--links ul li a:hover {
                color: #189EFF;
            }

.cf_login_form_content--title {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #161718;
    margin: 12px 0;
}



.cf_login_form_content--text {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #67707B;
    max-width: 360px;
    margin: 0 auto;
}

.cf_login_form_content .cf_form {
    margin: auto;
    margin-top: 42px;
}

.cf_login_form_content .cf_forgot_pwd {
    margin-top: -10px;
}

.testimonials {
    max-width: 580px;
    margin: 0 auto;
}

.testimonials_each--text {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 50px;
    line-height: 162%;
}

@media (max-width: 900px) {
    .testimonials_each--text {
        font-size: 18px;
    }
}

.testimonials_each_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.testimonials_each_info--profile {
    min-width: 48px;
    max-width: 48px;
    border-radius: 50%;
    height: 48px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
}

@media (max-width: 900px) {
    .testimonials_each_info--profile {
        min-width: 38px;
        max-width: 38px;
        height: 38px;
    }
}

@media (max-width: 900px) {
    .testimonials_each_info--details {
        max-width: 150px;
    }
}

.testimonials_each_info--details .name {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    display: block;
}

@media (max-width: 900px) {
    .testimonials_each_info--details .name {
        font-size: 16px;
    }
}

.testimonials_each_info--details .desn {
    font-weight: 400;
    font-size: 14px;
    color: #BFE4FF;
    display: block;
}

@media (max-width: 900px) {
    .testimonials_each_info--details .desn {
        font-size: 12px;
    }
}

.testimonials .owl-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: -8px;
}

    .testimonials .owl-nav button {
        width: 20px;
        height: 20px;
        display: inline-flex;
    }

        .testimonials .owl-nav button span {
            font-size: 0px;
        }

        .testimonials .owl-nav button.owl-prev, .testimonials .owl-nav button.owl-prev:hover {
            background: url("/assets/images/icons/left-arrow.svg") center no-repeat;
            background-size: contain;
        }

        .testimonials .owl-nav button.owl-next, .testimonials .owl-nav button.owl-next:hover {
            background: url("/assets/images/icons/right-arrow.svg") center no-repeat;
            background-size: contain;
        }

.jq-stars {
    display: inline-block;
}

.jq-rating-label {
    font-size: 22px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-family: helvetica, arial, verdana;
}

.jq-star {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer;
}

.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100%;
}

    .jq-star-svg path {
        /* stroke: #000; */
        stroke-linejoin: round;
    }

/* un-used */
.jq-shadow {
    filter: drop-shadow(-2px -2px 2px #888);
}

.show_rating {
    pointer-events: none;
}

main {
    position: relative;
}

    main .heading-13 {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        color: #292c31;
    }

    main .popup-wrapper {
        display: none;
        position: absolute;
        z-index: 50;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 929px;
        height: -moz-fit-content;
        height: fit-content;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid #d2dce9;
        padding: 40px;
    }

@media screen and (max-width: 970px) {
    main .popup-wrapper {
        width: 95%;
    }
}

main .popup-wrapper .top-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    main .popup-wrapper .top-one .heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 27px;
        text-align: center;
        color: #161718;
        margin-bottom: 0;
    }

main .popup-wrapper .top-second {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 11px;
    margin-top: 20px;
}

    main .popup-wrapper .top-second select {
        width: 154px;
        height: 34px;
        left: 169.5px;
        top: 459.38px;
        background: #f0f0f0;
        border-radius: 17px;
        outline: none;
        border: none;
        cursor: pointer;
    }

    main .popup-wrapper .top-second .gds_radio {
        border-radius: 17px;
        background: #F0F0F0;
        color: #67707B;
        font-family: Work Sans;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.039px;
        border: 1px solid transparent;
    }

        main .popup-wrapper .top-second .gds_radio input {
            display: none;
        }

        main .popup-wrapper .top-second .gds_radio.checked_gds {
            color: #2A2D31;
            border-radius: 17px;
            border-color: #189EFF;
            transition: all 0.3s ease;
            font-weight: 500;
        }

main .popup-wrapper .top-third {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid #d2dce9;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 8px;
    margin-top: 21px;
}

    main .popup-wrapper .top-third .on-border-text {
        position: absolute;
        top: -8px;
        left: 34px;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
        background-color: white;
        padding: 0 5px;
    }

    main .popup-wrapper .top-third textarea {
        height: 162px;
        width: 841px;
        margin: 20px 20px 20px 20px;
        resize: none;
        outline: none;
        border: none;
        font-weight: 500;
        font-family: "Work Sans", sans-serif;
    }

@media screen and (max-width: 970px) {
    main .popup-wrapper .top-third textarea {
        width: 100%;
    }
}

main .popup-wrapper .top-third textarea::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

main .popup-wrapper .top-fourth {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

    main .popup-wrapper .top-fourth a {
        text-decoration: none !important;
    }

    main .popup-wrapper .top-fourth .search-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #189eff;
        border-radius: 8px;
        height: 44px;
        width: 161px;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #fafafa;
        cursor: pointer;
    }

        main .popup-wrapper .top-fourth .search-btn .search-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 6px;
        }

            main .popup-wrapper .top-fourth .search-btn .search-wrapper img {
                height: 17px;
                width: 17px;
            }

main #exampleModal {
    width: 100% !important;
}

    main #exampleModal .modal-content-div {
        max-width: 100% !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        main #exampleModal .modal-content-div .modal-content {
            border: none;
        }

main .show {
    display: block;
    animation: fadeIn 0.35s linear;
}

.gds_pop {
    position: absolute !important;
    left: 50%;
}

.blue-sec-c {
    height: 441px;
    width: 100%;
    background-color: #123d6c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 0;
}

    .blue-sec-c .plane-wrapper {
        margin-top: -120px;
        z-index: 10;
        pointer-events: none;
    }

        .blue-sec-c .plane-wrapper img {
            height: 150px;
        }

    .blue-sec-c .cloud-wrapper {
        height: 100%;
        width: -moz-fit-content;
        width: fit-content;
        padding: 0 131px;
        margin-top: -50px;
    }

@media screen and (max-width: 968px) {
    .blue-sec-c .cloud-wrapper {
        padding: 0 30px;
    }
}

.blue-sec-c .cloud-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.blue-sec-c .user-name-div {
    text-align: center;
}

    .blue-sec-c .user-name-div .user-name {
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        line-height: 38px;
        color: white;
    }

    .blue-sec-c .user-name-div .motto {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        color: #e4f4ff;
    }

.select-sec-c {
    width: 100%;
    padding-bottom: 25px;
}

    .select-sec-c .select-main-c {
        position: relative;
        margin: 0 auto;
        z-index: 10;
        margin-top: -155px;
        min-height: 276px;
        /*max-width: 1120px;*/
        max-width: fit-content;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0px 4px 21px rgba(69, 99, 126, 0.1);
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

@media screen and (max-width: 1140px) {
    .select-sec-c .select-main-c {
        margin: 0 10px;
        margin-top: -155px;
    }
}

.select-sec-c .select-main-c .select-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
}

@media screen and (max-width: 865px) {
    .select-sec-c .select-main-c .select-div {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

.select-sec-c .select-main-c .select-div .top-left {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 11px;
}

    .select-sec-c .select-main-c .select-div .top-left select {
        width: 154px;
        height: 34px;
        left: 169.5px;
        top: 459.38px;
        background: #f0f0f0;
        border-radius: 17px;
        outline: none;
        border: none;
        cursor: pointer;
    }

    .select-sec-c .select-main-c .select-div .top-left span,
    .select-sec-c .select-main-c .select-div .top-left h1 {
        cursor: pointer;
    }

    .select-sec-c .select-main-c .select-div .top-left .dropdown_c {
        position: relative;
    }

        .select-sec-c .select-main-c .select-div .top-left .dropdown_c .selected span {
            display: flex;
            background: #f0f0f0;
            border-radius: 17px;
            width: 154px;
            color: #131313;
        }

        .select-sec-c .select-main-c .select-div .top-left .dropdown_c .selected span {
            cursor: pointer;
            display: flex;
            padding: 6px 15px;
            margin: 0;
        }

        .select-sec-c .select-main-c .select-div .top-left .dropdown_c .drop-content {
            position: relative;
        }

            .select-sec-c .select-main-c .select-div .top-left .dropdown_c .drop-content ul.drop-hover {
                position: absolute;
                left: 0px;
                top: -2px;
                display: none;
                list-style: none;
                width: 154px;
                background: #ffffff;
                border: 1px solid #e8f0f5;
                box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
                border-radius: 15px;
                border-top: 0;
                padding-left: 0px;
                z-index: 100;
                overflow: hidden;
            }

                .select-sec-c .select-main-c .select-div .top-left .dropdown_c .drop-content ul.drop-hover li span {
                    display: flex;
                    padding: 10px 15px;
                    text-decoration: none;
                    color: #131313;
                }

                    .select-sec-c .select-main-c .select-div .top-left .dropdown_c .drop-content ul.drop-hover li span:hover {
                        background: rgba(0, 0, 0, 0.1);
                        color: #189eff;
                    }

.select-sec-c .select-main-c .select-div .top-right {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #189eff;
    gap: 5px;
    cursor: pointer;
}

@media screen and (max-width: 865px) {
    .select-sec-c .select-main-c .select-div .top-right {
        width: 100%;
        justify-content: flex-end;
        align-items: center;
    }
}

.select-sec-c .select-main-c .select-div .top-right .search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .select-sec-c .select-main-c .select-div .top-right .search-wrapper img {
        height: 17px;
        width: 17px;
    }

.select-sec-c .select-main-c .select-city {
    width: 100%;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
}

@media screen and (max-width: 1100px) {
    .select-sec-c .select-main-c .select-city {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.select-sec-c .select-main-c .select-city .oneway-input-disabled {
    pointer-events: none;
}

.select-sec-c .select-main-c .select-city .where-from {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid #d2dce9;
    width: 295px;
    height: 72px;
    border-radius: 8px 0px 0px 8px;
}

    .select-sec-c .select-main-c .select-city .where-from .on-border-text {
        position: absolute;
        top: -8px;
        left: 27px;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
        background-color: white;
        padding: 0 5px;
    }

    .select-sec-c .select-main-c .select-city .where-from .location-icon {
        margin-left: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

        .select-sec-c .select-main-c .select-city .where-from .location-icon img {
            height: 18px;
            width: 15px;
        }

    .select-sec-c .select-main-c .select-city .where-from input {
        outline: none;
        border: none;
        width: 100%;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #292c31;
        padding: 0 !important;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .select-sec-c .select-main-c .select-city .where-from input::-moz-placeholder {
            color: #292c31;
        }

        .select-sec-c .select-main-c .select-city .where-from input::placeholder {
            color: #292c31;
        }

    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1,
    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 {
        position: relative;
    }

        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .whereFromInput,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .whereToInput,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .whereFromInput,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .whereToInput {
            padding: 0;
        }

        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 {
            display: none;
            position: absolute;
            left: -56px;
            top: 45px;
            padding-top: 5px;
            width: 295.11px;
            margin-bottom: 30px;
            height: -moz-fit-content;
            height: fit-content;
            background: #ffffff;
            border: 1px solid #d2dce9;
            border-radius: 5px;
            z-index: 50;
        }

            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .hasNoResults,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .hasNoResults,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .hasNoResults,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .hasNoResults {
                margin: 0px 15px;
                display: none;
            }

            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete {
                margin: 5px 10px 10px 10px;
                font-style: normal;
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                gap: 10px;
            }

                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete ul,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete ul,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete ul,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete ul {
                    height: 100%;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    flex-direction: column;
                    gap: 8px;
                    padding-left: 23px;
                }

                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper img,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper img {
                        transform: rotate(-20deg);
                        height: 8px;
                        width: 19.33px;
                    }

                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper {
                    display: flex;
                    justify-content: flex-start;
                    align-items: flex-start;
                }

                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper img,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper img {
                        height: 8px;
                        width: 19.33px;
                        margin-top: 4px;
                    }

                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city {
                    height: 100%;
                    width: 100%;
                }

                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .city-name,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .city-name {
                        font-family: "Manrope";
                        font-style: normal;
                        font-weight: 600;
                        font-size: 13px;
                        line-height: 18px;
                        color: #121213;
                    }

                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .country-name,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .country-name {
                        font-family: "Work Sans";
                        font-style: normal;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 14px;
                        color: #939393;
                    }

            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history,
            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history {
                padding: 15px;
                border-top: 1px solid #d2dce9;
                width: 100%;
            }

                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .search-head,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .search-head,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .search-head,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .search-head {
                    font-weight: 700;
                    font-size: 12px;
                    line-height: 16px;
                    text-transform: capitalize;
                    color: #67707b;
                }

                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra,
                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 10px;
                    flex-direction: row;
                }

                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        margin-left: 10px;
                    }

                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            height: 100%;
                            width: 100%;
                        }

                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img,
                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img {
                                transform: rotate(-20deg);
                                height: 8px;
                                width: 19.33px;
                            }

                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box,
                    .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 7.62px;
                    }

                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom {
                            width: 100%;
                            font-family: "Work Sans";
                            font-style: normal;
                            font-weight: 400;
                            font-size: 12px;
                            line-height: 14px;
                            color: #939393;
                            display: flex;
                            justify-content: start;
                            align-items: start;
                        }

                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div,
                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div {
                                border-right: 1px solid #189eff;
                                padding-right: 5px;
                                margin-right: 5px;
                            }

                                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child,
                                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child {
                                    border-right: none;
                                }

                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .top,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .top,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .top,
                        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .top {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            gap: 10px;
                            width: 100%;
                        }

        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .ShowDropdown,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .ShowDropdown {
            display: block;
        }

        .select-sec-c .select-main-c .select-city .where-from form .dropdown-1 .hideDropdown,
        .select-sec-c .select-main-c .select-city .where-from form .dropdown-2 .hideDropdown {
            display: none;
        }

.select-sec-c .select-main-c .select-city .where-to {
    position: relative;
    border-radius: 0px 8px 8px 0px;
    border-left: none;
}

    .select-sec-c .select-main-c .select-city .where-to .location-icon {
        margin-left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

    .select-sec-c .select-main-c .select-city .where-to .toggle-icon {
        position: absolute;
        top: 18px;
        left: -18px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35px;
        width: 35px;
        border-radius: 50%;
        background-color: #189eff;
        cursor: pointer;
    }

        .select-sec-c .select-main-c .select-city .where-to .toggle-icon img {
            height: 18px;
            width: 20px;
        }

.select-sec-c .select-main-c .select-city .departure {
    margin-left: 10px;
    width: 210px;
    height: 72px;
    border-radius: 8px;
    padding: 5px;
}

@media screen and (max-width: 1100px) {
    .select-sec-c .select-main-c .select-city .departure {
        margin-left: 0px;
        width: 295px;
        height: 72px;
    }
}

.select-sec-c .select-main-c .select-city .departure .calender-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
}

    .select-sec-c .select-main-c .select-city .departure .calender-icon img {
        height: 18px;
        width: 16.22px;
    }

.select-sec-c .select-main-c .select-city .departure .icon-w {
    width: 40px;
}

.select-sec-c .select-main-c .select-city .departure .date-day-box {
    padding-left: 5px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

    .select-sec-c .select-main-c .select-city .departure .date-day-box input {
        margin-left: 0;
        outline: none;
        border: none;
        width: 100%;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        letter-spacing: -0.003em;
        color: #292c31;
    }

    .select-sec-c .select-main-c .select-city .departure .date-day-box .selected-day {
        font-family: "Work Sans";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
    }

.select-sec-c .select-main-c .select-city .departure .return-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.003em;
    color: #242629;
    margin: 0;
    position: relative;
}

    .select-sec-c .select-main-c .select-city .departure .return-placeholder::-moz-placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Work Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: -0.003em;
        color: #67707b;
        width: 98%;
        white-space: pre-line;
    }

    .select-sec-c .select-main-c .select-city .departure .return-placeholder::placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Work Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: -0.003em;
        color: #67707b;
        width: 98%;
        white-space: pre-line;
    }

.select-sec-c .select-main-c .select-city .departure-gap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .select-sec-c .select-main-c .select-city .departure-gap {
        gap: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}

.select-sec-c .select-main-c .select-city .departure-gap .multicity-departure-wrap {
    width: 100%;
    padding-right: 10px;
}

@media screen and (max-width: 1100px) {
    .select-sec-c .select-main-c .select-city .departure-gap .multicity-departure-wrap {
        width: 538px;
    }
}

/*.select-sec-c .select-main-c .select-city .departure-gap .multicity-departure-wrap .multicity-departure {
    width: 100%;
}*/

@media screen and (max-width: 1100px) {
    .select-sec-c .select-main-c .select-city .departure-gap .multicity-departure-wrap .multicity-departure {
        width: 538px;
    }
}

.select-sec-c .select-main-c .select-city .departure-gap .right-remove-box .remove-wrapper {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 42px;
    background-color: #f2f2f2;
    border-radius: 50%;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .select-sec-c .select-main-c .select-city .departure-gap .right-remove-box .remove-wrapper {
        margin-left: 0;
    }
}

.select-sec-c .select-main-c .select-city .departure-gap .right-remove-box .remove-wrapper img {
    height: 24px;
    width: 24px;
    transform: rotate(45deg);
}

.select-sec-c .select-main-c .bottom-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .select-sec-c .select-main-c .bottom-check .checkbox-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.003em;
        color: #67707b;
        cursor: pointer;
    }

        .select-sec-c .select-main-c .bottom-check .checkbox-wrapper .addCircle-wrapper {
            height: -moz-fit-content;
            height: fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

            .select-sec-c .select-main-c .bottom-check .checkbox-wrapper .addCircle-wrapper img {
                height: 24px;
                width: 24px;
            }

        .select-sec-c .select-main-c .bottom-check .checkbox-wrapper input {
            height: 18px;
            width: 18px !important;
            cursor: pointer;
        }

        .select-sec-c .select-main-c .bottom-check .checkbox-wrapper .destination-text {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #189eff;
            cursor: pointer;
        }

        .select-sec-c .select-main-c .bottom-check .checkbox-wrapper label {
            margin-left: 6px;
            cursor: pointer;
        }

    .select-sec-c .select-main-c .bottom-check .bottom-right {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #189eff;
        border-radius: 8px;
        height: 44px;
        width: 161px;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #fafafa;
        cursor: pointer;
        margin-left: auto;
    }

        .select-sec-c .select-main-c .bottom-check .bottom-right .search-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 6px;
        }

            .select-sec-c .select-main-c .bottom-check .bottom-right .search-wrapper img {
                height: 17px;
                width: 17px;
            }

.select-sec-c .select-main-c .cf_flight_tabs_content .cf_flight_tabs_content_each .destination-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.btn-close {
    opacity: 1;
    background: transparent;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.airports_list {
    cursor: pointer !important;
}

    .airports_list .ui-menu-item-wrapper .airrport {
        color: var(--corefares-primary-dark, #121213);
        font-family: "Manrope", sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        display: block;
    }

    .airports_list .ui-menu-item-wrapper .city {
        color: #939393;
        font-family: "Work Sans", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .airports_list .ui-menu-item-wrapper .country {
        color: #939393;
        font-family: "Work Sans", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .airports_list .ui-menu-item-wrapper.first-item {
        position: relative;
        padding-left: 30px;
    }

        .airports_list .ui-menu-item-wrapper.first-item.ui-state-active {
            padding-left: 30px !important;
        }

        .airports_list .ui-menu-item-wrapper.first-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            background: url("../images/icons/oneWay.png") top no-repeat;
            height: 10px;
            width: 20px;
            background-size: contain;
            transform: rotate(-25deg);
        }

    .airports_list .ui-menu-item-wrapper.other-items {
        margin-left: 30px;
        position: relative;
        padding-left: 12px;
    }

        .airports_list .ui-menu-item-wrapper.other-items::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            background: url("../images/icons/enterArrow.svg") top no-repeat;
            height: 8px;
            width: 8px;
            background-size: contain;
            transform: rotate(-25deg);
        }

        .airports_list .ui-menu-item-wrapper.other-items.ui-state-active {
            margin-left: 30px !important;
            padding-left: 12px !important;
        }

.search_drop_new {
    position: relative;
    border-radius: 15px;
    background: #f0f0f0 url(/assets/images/icons/arrow-down.svg) center right 18px no-repeat;
    width: 215px;
}

    .search_drop_new select {
        display: none;
    }

    .search_drop_new .select-items div,
    .search_drop_new .select-selected {
        cursor: pointer;
        font-size: 13px;
        line-height: 15px;
        color: #2a2d31;
        width: 180px !important;
        font-weight: 500 !important;
        font-family: "Work Sans";
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .search_drop_new .select-selected {
        padding-left: 15px;
        overflow: hidden;
        white-space: nowrap;
        height: 34px;
    }

    .search_drop_new .select-items div {
        padding: 10px !important;
        color: #939393;
        font-weight: 400 !important;
        width: 100% !important;
        border: 1px solid transparent;
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    }

    .search_drop_new .select-items {
        position: absolute;
        background-color: #fff;
        top: 120%;
        left: 0;
        right: 0;
        z-index: 99;
        border: 1px solid #e8f0f5;
        box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        width: 200%;
        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        max-height: 350px;
        overflow-y: scroll;
    }

        .search_drop_new .select-items::-webkit-scrollbar {
            width: 5px;
            border-radius: 3px;
            height: 3px;
        }

        .search_drop_new .select-items::-webkit-scrollbar-track {
            box-shadow: inset 0 0 6px #d2dce9;
            border-radius: 3px;
        }

        .search_drop_new .select-items::-webkit-scrollbar-thumb {
            background-color: #189eff;
            border-radius: 3px;
        }

        .search_drop_new .select-items.select-hide {
            display: none;
        }

        .search_drop_new .select-items div:hover,
        .search_drop_new .select-items .same-as-selected {
            background-color: #189eff;
            color: #ffffff;
            transition: 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

.extra_two {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #189eff;
    cursor: pointer;
}

.heading_16 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
}

@media only screen and (device-width: 820px) and (device-height: 1180px), only screen and (device-width: 768px) and (device-height: 1024px) {
    .top-bar .heading_16 {
        display: flex;
        gap: 10px;
        margin-left: 10px;
        font-size: 14px;
    }
}

.heading_14 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #121213;
}

.heading_12 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #7d8b9c;
    text-align: center;
    margin-left: 25px;
}

.heading_16_w {
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
}

.heading_12_w {
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #7d8b9c;
}

.heading_8 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 8px;
    line-height: 9px;
    text-align: center;
    color: #2a2d31;
}

.heading_10 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    display: flex;
    align-items: center;
}

.heading_16_semi {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #121213;
}

.head_20_semi {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #121213;
}

.flight_card_1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.middle_layover {
    border: 1px solid #e2e7ee;
    border-radius: 8px;
    height: 24px;
    width: 144px;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    display: flex;
    align-items: center;
    color: #121213;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15px;
    margin-right: 68px;
}

.fc_box_1 {
    width: 16%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex-direction: column;
}

@media screen and (max-width: 900px) {
    .fc_box_1 {
        width: 8%;
        display: block;
    }
}

.fc_box_1.qc_box_new {
    flex-direction: row;
    justify-content: space-evenly;
}

.fc_box_1 .logo_wrapper {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border: 1px solid #e2e7ee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc_box_1 .box_1_list {
    list-style: none;
    margin-top: 6px;
}

    .fc_box_1 .box_1_list .list {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #515050;
    }

.fc_box_2 {
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

@media screen and (max-width: 900px) {
    .fc_box_2 {
        width: 20%;
    }
}

.fc_box_3 {
    width: 22%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 6px;
}

    .fc_box_3 .black_plane {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        position: relative;
        height: 20px;
    }

        .fc_box_3 .black_plane span {
            border-bottom: 1px solid #d2dce9;
            width: 84px;
        }

        .fc_box_3 .black_plane img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .fc_box_3 .plane_time {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #2a2d31;
        margin-top: 7.43px;
    }

    .fc_box_3 .refund_div {
        /*        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        display: flex;
        align-items: center;
        color: #121213;
        background: #f5f5f5;
        border-radius: 27px;
        height: 22px;
        width: auto;
        max-width: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10.57px;
        padding: 4px 12px;*/
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        display: flex;
        align-items: center;
        margin-top: 6px;
        color: rgb(18, 18, 19);
        max-width: 250px;
        width: auto;
        text-overflow: ellipsis;
        justify-content: center;
        background: rgb(245, 245, 245);
        border-radius: 27px;
        padding: 4px 12px;
        white-space: nowrap;
        overflow: hidden;
        cursor:pointer;
    }


.fc_box_4 {
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

.fc_box_5 {
    width: 23%;
    display: flex;
    justify-content: center;
    /*align-items: flex-start;*/
    flex-direction: column;
    gap: 9px;
}

@media screen and (max-width: 900px) {
    .fc_box_5 {
        width: 21%;
    }
}

.fc_box_5 .row_1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    gap: 5px;
    flex-direction: row;
}

    .fc_box_5 .row_1 .row_icon_wrapper {
        height: 16px;
        width: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fc_box_5 .row_1 .row_key {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
    }

    .fc_box_5 .row_1 .row_value {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #2a2d31;
    }

.m-left {
    margin-left: -8px;
}

.mc_box_1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 138px;
    width: 12%;
}

@media screen and (max-width: 950px) {
    .mc_box_1 {
        width: 45%;
        align-items: center;
    }
}

.mc_box_1 .plane-img-div {
    /* display: flex;*/
    position: relative;
    display: inline-block;
}

.logo-wrapper {
    position: relative;
    /*z-index: 1;*/ /* Airline logo stays in the background */
    /*background-color: none !important;*/
}

.eqp-overlay {
    position: absolute;
    bottom: -20%;
    left: 50%;
    /*z-index: 2;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f3f3 !important;
    transition: all 0.3s ease-in-out;
}

    .eqp-overlay.moved-left {
        left: 0 !important;
        bottom: 0 !important;
        width: auto !important;
        justify-content: flex-start !important;
        position: relative !important;
    }

.eqp-logo {
    max-width: 50px; /* Adjust if needed */
    max-height: 50px;
    opacity: 1;
}

.mc_box_1 .plane-img-div .brand-wrapper, .brand-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    /*background-color: #ffffff;*/
    /*border: 1px solid #e2e7ee;*/
}

    .mc_box_1 .plane-img-div .brand-wrapper img {
        /*height: 12.33px;*/
        /*width: 18.6px;*/
    }

.mc_box_1 .plane-img-div .m-left {
    margin-left: -8px;
}

.mc_box_1 .p1 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #2a2d31;
    margin-top: 7px;
}

.mc_box_1 .p2 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: -0.003em;
    color: #67707b;
    margin-top: 3px;
}

.mc_box_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 140px;
    width: 24%;
}

@media screen and (max-width: 950px) {
    .mc_box_3 {
        width: 45%;
    }
}

.mc_box_3 .eye {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .mc_box_3 .eye p {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        color: #2a2d31;
        margin-left: 5px;
    }

    .mc_box_3 .eye img {
        cursor: pointer;
    }

.mc_box_3 .group {
    background-color: #d2dce9;
    width: 84px;
    margin: 20px auto;
    height: 2px;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px #d2dce9;
    position: relative;
}

    .mc_box_3 .group .range-input input {
        -webkit-appearance: none;
        position: absolute;
        width: 100%;
        height: 3px;
        margin: 0;
        background-color: transparent;
        pointer-events: none;
    }

        .mc_box_3 .group .range-input input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 10px;
            height: 10px;
            border: 3px solid #189eff;
            background-color: #ffffff;
            border-radius: 100%;
            pointer-events: auto;
        }

    .mc_box_3 .group .progress {
        position: absolute;
        height: 100%;
        left: 0;
        right: 0;
        background-color: #d2dce9;
        border-radius: 1px;
    }

/*.mc_box_3 .refund {
    background: #f5f5f5;
    border-radius: 27px;
    padding: 4px 12px;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin-top: 6px;
    color: #121213;
    width: fit-content; 
    min-width: 100px;
    text-align: center;
    min-width: 210px;
    justify-content:center;
}*/
.mc_box_3 .refund {
    background: #f5f5f5;
    border-radius: 27px;
    padding: 4px 12px;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    color: #121213;
    max-width: 250px;
    width: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    justify-content: center;
    cursor:pointer;
}

.mc_box_5 {
    display: flex;
    justify-content: center;
    align-items: center;
    /*gap: 6px;*/
    flex-direction: column;
    /*width: 138px;*/
    /*display: flex;*/
    flex-direction: row;
    gap: 20px;
}

    .mc_box_5 .price {
        font-weight: 700;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
    }

    .mc_box_5 .select-btn, .select-fares, .select-btns {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        width: 108px;
        border: 1px solid #189EFF;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #189EFF;
        background-color: transparent;
    }

        .mc_box_5 .select-btn.selected {
            padding: 5px 26px;
            background-color: #189EFF;
            color: white;
        }

.city_time {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #121213;
}

    .city_time .time .hrs {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #515050;
        margin-left: 5px;
    }

    .city_time .extra_day {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #189eff;
        position: absolute;
        top: 0;
        right: -35px;
    }

.date_day {
    font-weight: 500;
    font-size: 14px;
    line-height: 155.6%;
    color: #515050;
}

.airport_name {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #515050;
}

.airport_name_left {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #515050;
    text-align: right;
}

@media screen and (max-width: 900px) {
    .airport_name {
        text-align: end;
    }
}

.terminal_name {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #121213;
}

.tooltip_sec {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: inline-block;
}

    .tooltip_sec .tooltip_target {
        pointer-events: auto;
        cursor: pointer;
    }

        .tooltip_sec .tooltip_target.tech_stop {
            border-color: #67707b;
        }

    .tooltip_sec:hover .tooltip_box {
        visibility: visible;
        opacity: 1;
    }

    .tooltip_sec .tooltip_box {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        transition: visibility 0s, opacity 0.5s ease-in-out;
        white-space: nowrap;
        z-index: 10;
    }

        .tooltip_sec .tooltip_box::before {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            height: 10px;
            width: 10px;
            background-color: #f1f5f9;
            z-index: 100;
        }

        .tooltip_sec .tooltip_box.booking_card_box::before {
            background-color: #D2DCE9 !important;
        }

        .tooltip_sec .tooltip_box .tooltip_data {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f1f5f9;
            border-radius: 50% !important;
            border-radius: 12px !important;
            height: 22px;
            width: -moz-fit-content !important;
            width: fit-content !important;
            font-weight: 400;
            font-size: 10px;
            line-height: 14px;
            color: #67707b;
            position: relative;
            z-index: 100;
            padding: 2px 10px;
        }

            .tooltip_sec .tooltip_box .tooltip_data.booking_cards {
                background-color: #D2DCE9 !important;
            }

.progress_loading {
    width: 100%;
    height: 5px;
    position: relative;
    background-color: #eaeef2;
}

.progress_bar {
    background-color: #189eff;
    width: 0px;
    height: 5px;
    position: absolute;
    transition: width 0.1s linear;
}

.grey_scroll {
    padding-right: 3px !important;
}

    .grey_scroll::-webkit-scrollbar {
        width: 2px;
        border-radius: 3px;
        height: 3px;
    }

    .grey_scroll::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px #d2dce9;
        border-radius: 3px;
    }

    .grey_scroll::-webkit-scrollbar-thumb {
        background-color: #7d8b9c;
        border-radius: 3px;
    }

.journey_line {
    font-family: "Manrope";
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 2px;
    width: 86px;
    margin: 12px auto;
    background-color: #d2dce9;
    border-radius: 10px;
}

    .journey_line .journey_stop {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .journey_line .journey_stop .journey_city {
            width: 10px;
            height: 10px;
            border: 3px solid #189eff;
            background-color: #ffffff;
            border-radius: 100%;
            pointer-events: auto;
            cursor: pointer;
        }

            .journey_line .journey_stop .journey_city.tech_stop {
                border-color: #67707b;
            }

        .journey_line .journey_stop:hover .journey_tooltip {
            visibility: visible;
            opacity: 1;
        }

        .journey_line .journey_stop .journey_tooltip {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            transition: visibility 0s, opacity 0.5s ease-in-out;
            white-space: nowrap;
            z-index: 10;
        }

            .journey_line .journey_stop .journey_tooltip::before {
                content: "";
                position: absolute;
                bottom: -3px;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
                height: 10px;
                width: 10px;
                background-color: #f1f5f9;
                z-index: 1;
            }

            .journey_line .journey_stop .journey_tooltip .journey_tooltip_box {
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f1f5f9;
                border-radius: 8px;
                height: 22px;
                width: -moz-fit-content !important;
                width: fit-content !important;
                font-weight: 400;
                font-size: 10px;
                line-height: 14px;
                color: #67707b;
                position: relative;
                z-index: 100;
                padding: 2px 10px;
            }

.tech_font {
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    letter-spacing: -0.003em !important;
    color: #515050 !important;
}

.blue_scroll::-webkit-scrollbar {
    width: 2px;
    border-radius: 3px;
    height: 3px;
}

.blue_scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #d2dce9;
    border-radius: 3px;
}

.blue_scroll::-webkit-scrollbar-thumb {
    background-color: #189eff;
    border-radius: 3px;
}

.journey_line {
    font-family: "Manrope";
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 2px;
    width: 86px;
    margin: 12px auto;
    background-color: #d2dce9;
    border-radius: 10px;
}

    .journey_line .journey_stop {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .journey_line .journey_stop .journey_city {
            width: 10px;
            height: 10px;
            border: 3px solid #189eff;
            background-color: #ffffff;
            border-radius: 100%;
            pointer-events: auto;
            cursor: pointer;
        }

            .journey_line .journey_stop .journey_city.tech_stop {
                border-color: #67707b;
            }

        .journey_line .journey_stop:hover .journey_tooltip {
            visibility: visible;
            opacity: 1;
        }

        .journey_line .journey_stop .journey_tooltip {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            transition: visibility 0s, opacity 0.5s ease-in-out;
            white-space: nowrap;
            z-index: 10;
        }

            .journey_line .journey_stop .journey_tooltip::before {
                content: "";
                position: absolute;
                bottom: -3px;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
                height: 10px;
                width: 10px;
                background-color: #f1f5f9;
                z-index: 1;
            }

            .journey_line .journey_stop .journey_tooltip .journey_tooltip_box {
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f1f5f9;
                border-radius: 8px;
                height: 22px;
                width: -moz-fit-content !important;
                width: fit-content !important;
                font-weight: 400;
                font-size: 10px;
                line-height: 14px;
                color: #67707b;
                position: relative;
                z-index: 100;
                padding: 2px 10px;
            }

.top-sec {
    /*   position: sticky;
    top: 0;*/
    z-index: 2;
    width: 100%;
    background: #123d6c;
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding: 23px 0;
}

    .top-sec .select-main-c {
        position: relative;
        margin: auto;
        z-index: 10;
        height: -moz-fit-content;
        height: fit-content;
        background-color: white;
        border-radius: 7px;
        box-shadow: 0px 4px 21px rgba(69, 99, 126, 0.1);
        padding: 16.21px 26.31px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        width: 1120px;
        max-width: 100%;
    }

@media screen and (max-width: 1200px) {
    .top-sec .select-main-c {
        margin: 0 8px;
    }
}

.top-sec .select-main-c .select-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
}

    .top-sec .select-main-c .select-div .top-left {
        height: -moz-fit-content;
        height: fit-content;
        display: flex;
        gap: 11px;
    }

        .top-sec .select-main-c .select-div .top-left select {
            width: 154px;
            height: 34px;
            left: 169.5px;
            top: 459.38px;
            background: #f0f0f0;
            border-radius: 17px;
            padding: 0 10px;
            outline: none;
            border: none;
            cursor: pointer;
        }

    .top-sec .select-main-c .select-div .top-right {
        height: -moz-fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        color: #189eff;
        gap: 5px;
        cursor: pointer;
    }

        .top-sec .select-main-c .select-div .top-right .search-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .top-sec .select-main-c .select-div .top-right .search-wrapper img {
                height: 17px;
                width: 17px;
            }

.top-sec .select-main-c .select-city {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .top-sec .select-main-c .select-city {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.top-sec .select-main-c .select-city .where-from {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid #d2dce9;
    width: 295px;
    height: 54px;
    border-radius: 8px 0px 0px 8px;
    cursor: pointer;
}

    .top-sec .select-main-c .select-city .where-from .on-border-text,
    .multicityHome .container .destination-cards .select-city .where-from .on-border-text {
        position: absolute;
        top: -8px;
        left: 27px;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
        background-color: white;
        padding: 0 5px;
        font-family: "Manrope";
        color: #123d6c;
    }

    .top-sec .select-main-c .select-city .where-from .location-icon {
        margin-left: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

        .top-sec .select-main-c .select-city .where-from .location-icon img {
            height: 18px;
            width: 15px;
        }

    .top-sec .select-main-c .select-city .where-from input {
        outline: none;
        border: none;
        width: 90%;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #292c31;
        background-color: transparent;
    }

    .top-sec .select-main-c .select-city .where-from form .dropdown-1,
    .top-sec .select-main-c .select-city .where-from form .dropdown-2 {
        position: relative;
    }

        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .whereFromInput,
        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .whereToInput,
        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .whereFromInput,
        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .whereToInput {
            padding: 0;
        }

        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1,
        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2,
        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1,
        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 {
            display: none;
            position: absolute;
            left: -56px;
            top: 45px;
            padding-top: 5px;
            width: 295.11px;
            margin-bottom: 30px;
            height: -moz-fit-content;
            height: fit-content;
            background: #ffffff;
            border: 1px solid #d2dce9;
            border-radius: 5px;
            z-index: 50;
        }

            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .hasNoResults,
            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .hasNoResults,
            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .hasNoResults,
            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .hasNoResults {
                margin: 0px 15px;
                display: none;
            }

            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete,
            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete,
            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete,
            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete {
                margin: 5px 10px 10px 10px;
                font-style: normal;
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                gap: 10px;
            }

                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete ul,
                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete ul,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete ul,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete ul {
                    height: 100%;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    flex-direction: column;
                    gap: 8px;
                    padding-left: 23px;
                }

                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper img,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper img {
                        transform: rotate(-20deg);
                        height: 8px;
                        width: 19.33px;
                    }

                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper {
                    display: flex;
                    justify-content: flex-start;
                    align-items: flex-start;
                }

                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper img,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper img {
                        height: 8px;
                        width: 19.33px;
                        margin-top: 4px;
                    }

                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city,
                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city {
                    height: 100%;
                    width: 100%;
                }

                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .city-name,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .city-name {
                        font-family: "Manrope";
                        font-style: normal;
                        font-weight: 600;
                        font-size: 13px;
                        line-height: 18px;
                        color: #121213;
                    }

                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .country-name,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .country-name {
                        font-family: "Work Sans";
                        font-style: normal;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 14px;
                        color: #939393;
                    }

            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history,
            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history,
            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history,
            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history {
                padding: 15px;
                border-top: 1px solid #d2dce9;
                width: 100%;
            }

                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .search-head,
                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .search-head,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .search-head,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .search-head {
                    font-weight: 700;
                    font-size: 12px;
                    line-height: 16px;
                    text-transform: capitalize;
                    color: #67707b;
                }

                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra,
                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra,
                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 10px;
                    flex-direction: row;
                    border: none;
                    background: transparent;
                }

                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            height: 100%;
                            width: 100%;
                        }

                            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img,
                            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img {
                                transform: rotate(-20deg);
                                height: 8px;
                                width: 19.33px;
                            }

                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box,
                    .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 7.62px;
                    }

                        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom {
                            width: 100%;
                            font-family: "Work Sans";
                            font-style: normal;
                            font-weight: 400;
                            font-size: 12px;
                            line-height: 14px;
                            color: #939393;
                            display: flex;
                            justify-content: start;
                            align-items: start;
                        }

                            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div,
                            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div {
                                border-right: 1px solid #189eff;
                                padding-right: 5px;
                                margin-right: 5px;
                            }

                                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child,
                                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child {
                                    border-right: none;
                                }

                        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .top,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .top,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .top,
                        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .top {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            gap: 10px;
                            width: 100%;
                        }

        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .ShowDropdown,
        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .ShowDropdown {
            display: block;
        }

        .top-sec .select-main-c .select-city .where-from form .dropdown-1 .hideDropdown,
        .top-sec .select-main-c .select-city .where-from form .dropdown-2 .hideDropdown {
            display: none;
        }

.top-sec .select-main-c .select-city .where-to {
    position: relative;
    border-radius: 0px 8px 8px 0px;
    border-left: none;
}

    .top-sec .select-main-c .select-city .where-to .location-icon {
        margin-left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

    .top-sec .select-main-c .select-city .where-to .toggle-icon,
    .multicityHome .container .destination-cards .select-city .where-to .toggle-icon {
        position: absolute;
        top: 16px;
        left: -11px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 21.24px;
        width: 21.24px;
        border-radius: 50%;
        background-color: #189eff;
    }

        .top-sec .select-main-c .select-city .where-to .toggle-icon img,
        .multicityHome .container .destination-cards .select-city .where-to .toggle-icon img {
            height: 12px;
            width: 14px;
        }

.top-sec .select-main-c .select-city .departure {
    margin-left: 10px;
    width: 160px;
    height: 54px;
    border-radius: 8px;
    padding: 5px;
}

    .top-sec .select-main-c .select-city .departure .calender-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

        .top-sec .select-main-c .select-city .departure .calender-icon img {
            height: 18px;
            width: 16.22px;
        }

    .top-sec .select-main-c .select-city .departure .icon-w {
        width: 40px;
    }

    .top-sec .select-main-c .select-city .departure .date-day-box {
        padding-left: 5px;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
    }

        .top-sec .select-main-c .select-city .departure .date-day-box input {
            margin-left: 0;
            outline: none;
            border: none;
            width: 90%;
            font-family: "Manrope";
            font-style: normal;
            font-weight: 700;
            font-size: 14px;
            line-height: 15px;
            letter-spacing: -0.003em;
            color: #292c31;
        }

        .top-sec .select-main-c .select-city .departure .date-day-box .selected-day,
        .multicityHome .container .destination-cards .select-city .departure .date-day-box .selected-day {
            font-family: "Work Sans";
            font-style: normal;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
        }

    .top-sec .select-main-c .select-city .departure .return-placeholder {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        letter-spacing: -0.003em;
        color: #242629;
        margin: 0;
        position: relative;
    }

        .top-sec .select-main-c .select-city .departure .return-placeholder::-moz-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: "Work Sans";
            font-style: normal;
            font-weight: 400;
            font-size: 10px;
            line-height: 12px;
            letter-spacing: -0.003em;
            color: #67707b;
            width: 98%;
            white-space: pre-line;
        }

        .top-sec .select-main-c .select-city .departure .return-placeholder::placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: "Work Sans";
            font-style: normal;
            font-weight: 400;
            font-size: 10px;
            line-height: 12px;
            letter-spacing: -0.003em;
            color: #67707b;
            width: 98%;
            white-space: pre-line;
        }

.top-sec .select-main-c .select-city .bottom-right {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #189eff;
    border-radius: 8px;
    height: 44px;
    width: 117.23px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    margin-left: 15px;
    line-height: 22px;
    color: #fafafa;
    cursor: pointer;
}

    .top-sec .select-main-c .select-city .bottom-right .search-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 6px;
    }

        .top-sec .select-main-c .select-city .bottom-right .search-wrapper img {
            height: 17px;
            width: 17px;
        }

.top-sec .select-main-c .multicityHome {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .top-sec .select-main-c .multicityHome .where-from {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        border: 1px solid #d2dce9;
        width: 222px;
        height: 54px;
        border-radius: 8px;
    }

        .top-sec .select-main-c .multicityHome .where-from .on-border-text {
            position: absolute;
            top: -8px;
            left: 27px;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
            background-color: white;
            padding: 0 5px;
            color: #123d6c;
        }

        .top-sec .select-main-c .multicityHome .where-from .location-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
            width: 35px;
        }

            .top-sec .select-main-c .multicityHome .where-from .location-icon img {
                height: 18px;
                width: 15px;
            }

        .top-sec .select-main-c .multicityHome .where-from input {
            outline: none;
            border: none;
            width: 100%;
            font-family: "Manrope";
            font-style: normal;
            font-weight: 700;
            font-size: 14px;
            line-height: 30px;
            letter-spacing: -0.003em;
            color: #292c31;
            padding: 0 !important;
        }

            .top-sec .select-main-c .multicityHome .where-from input::-moz-placeholder {
                color: #292c31;
            }

            .top-sec .select-main-c .multicityHome .where-from input::placeholder {
                color: #292c31;
            }

        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1,
        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 {
            position: relative;
        }

            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .city,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .city {
                font-family: "Manrope";
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                letter-spacing: -0.003em;
                color: #131415;
            }

            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .date-div,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .date-div {
                font-family: "Work Sans";
                font-style: normal;
                font-weight: 500;
                font-size: 12px;
                line-height: 14px;
                color: #67707b;
            }

            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .whereFromInput,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .whereToInput,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .whereFromInput,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .whereToInput {
                padding: 0;
            }

            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 {
                display: none;
                position: absolute;
                left: -56px;
                top: 45px;
                padding-top: 5px;
                width: 295.11px;
                margin-bottom: 30px;
                height: -moz-fit-content;
                height: fit-content;
                background: #ffffff;
                border: 1px solid #d2dce9;
                border-radius: 5px;
                z-index: 50;
            }

                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .hasNoResults,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .hasNoResults,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .hasNoResults,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .hasNoResults {
                    margin: 0px 15px;
                    display: none;
                }

                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete {
                    margin: 5px 10px 10px 10px;
                    font-style: normal;
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    flex-direction: column;
                    gap: 10px;
                }

                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete ul,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete ul,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete ul,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete ul {
                        height: 100%;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: start;
                        flex-direction: column;
                        gap: 8px;
                        padding-left: 23px;
                    }

                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper img,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper img {
                            transform: rotate(-20deg);
                            height: 8px;
                            width: 19.33px;
                        }

                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper {
                        display: flex;
                        justify-content: flex-start;
                        align-items: flex-start;
                    }

                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper img,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper img {
                            height: 8px;
                            width: 19.33px;
                            margin-top: 4px;
                        }

                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city {
                        height: 100%;
                        width: 100%;
                    }

                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .city-name,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .city-name {
                            font-family: "Manrope";
                            font-style: normal;
                            font-weight: 600;
                            font-size: 13px;
                            line-height: 18px;
                            color: #121213;
                        }

                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .country-name,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .country-name {
                            font-family: "Work Sans";
                            font-style: normal;
                            font-weight: 400;
                            font-size: 12px;
                            line-height: 14px;
                            color: #939393;
                        }

                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history,
                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history {
                    padding: 15px;
                    border-top: 1px solid #d2dce9;
                    width: 100%;
                }

                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .search-head,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .search-head,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .search-head,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .search-head {
                        font-weight: 700;
                        font-size: 12px;
                        line-height: 16px;
                        text-transform: capitalize;
                        color: #67707b;
                    }

                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra,
                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra {
                        width: 100%;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 10px;
                        flex-direction: row;
                    }

                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            margin-left: 10px;
                        }

                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                height: 100%;
                                width: 100%;
                            }

                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img,
                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img {
                                    transform: rotate(-20deg);
                                    height: 8px;
                                    width: 19.33px;
                                }

                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box,
                        .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            gap: 7.62px;
                        }

                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom {
                                width: 100%;
                                font-family: "Work Sans";
                                font-style: normal;
                                font-weight: 400;
                                font-size: 12px;
                                line-height: 14px;
                                color: #939393;
                                display: flex;
                                justify-content: start;
                                align-items: start;
                            }

                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div,
                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                                .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div {
                                    border-right: 1px solid #189eff;
                                    padding-right: 5px;
                                    margin-right: 5px;
                                }

                                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child,
                                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                    .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child {
                                        border-right: none;
                                    }

                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .top,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .top,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .top,
                            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .top {
                                display: flex;
                                justify-content: start;
                                align-items: center;
                                gap: 10px;
                                width: 100%;
                            }

            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .ShowDropdown,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .ShowDropdown {
                display: block;
            }

            .top-sec .select-main-c .multicityHome .where-from form .dropdown-1 .hideDropdown,
            .top-sec .select-main-c .multicityHome .where-from form .dropdown-2 .hideDropdown {
                display: none;
            }

    .top-sec .select-main-c .multicityHome .where-to {
        position: relative;
        border-radius: 8px;
    }

        .top-sec .select-main-c .multicityHome .where-to .location-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
            width: 35px;
        }

    .top-sec .select-main-c .multicityHome .modify {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #189eff;
        border-radius: 8px;
        height: 44px;
        width: 117.23px;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #fafafa;
        cursor: pointer;
    }

.bottom-sec {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 0 20px 100px;
    background-color: #eaeef2;
    gap: 22px;
}

.bottom-sec-no-data {
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px 100px;
}

    .bottom-sec-no-data img {
        height: 80vh;
        max-width: 1120px;
    }

@media screen and (max-width: 1220px) {
    .bottom-sec {
        gap: 5px;
    }
}

.bottom-sec .left-side {
    height: -moz-fit-content;
    height: fit-content;
    width: 262px;
}

    .bottom-sec .left-side .filter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }

        .bottom-sec .left-side .filter .filter-img-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .bottom-sec .left-side .filter .filter-img-wrapper img {
                height: 14px;
                width: 15px;
                margin-right: 5px;
            }

        .bottom-sec .left-side .filter .clear-img-wrapper {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #d2dce9;
            border-radius: 17px;
            font-family: "Manrope";
            font-style: normal;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #123d6c;
            height: 32px;
            width: 84.78px;
        }

            .bottom-sec .left-side .filter .clear-img-wrapper img {
                height: 10px;
                width: 10px;
                margin-right: 5px;
            }

    .bottom-sec .left-side .filter-options {
        background: #ffffff;
        border-radius: 7px;
        min-height: 100vh;
        margin-top: 13.38px;
        padding: 18.5px 20px;
    }

        .bottom-sec .left-side .filter-options .stops {
            margin-bottom: 28px;
        }

            .bottom-sec .left-side .filter-options .stops.travel-time {
                margin-bottom: 0px;
                margin-top: 50px;
            }

            .bottom-sec .left-side .filter-options .stops .checkboxes-1 {
                position: relative;
                display: flex;
                flex-direction: column;
                margin-top: 17px;
                gap: 10px;
            }

                .bottom-sec .left-side .filter-options .stops .checkboxes-1 .checkbox-wrapper {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                    .bottom-sec .left-side .filter-options .stops .checkboxes-1 .checkbox-wrapper p {
                        margin: 0;
                        padding: 0 !important;
                    }

                .bottom-sec .left-side .filter-options .stops .checkboxes-1 input[type=checkbox]:checked + span {
                    font-weight: 500;
                }

                .bottom-sec .left-side .filter-options .stops .checkboxes-1 .search {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    text-align: center;
                    border-bottom: 1px solid #d2dce9;
                    margin-top: -10px;
                    margin-bottom: 8px;
                }

                    .bottom-sec .left-side .filter-options .stops .checkboxes-1 .search ::-moz-placeholder {
                        font-weight: 400;
                        font-size: 10px;
                        line-height: 14px;
                        color: #67707b;
                    }

                    .bottom-sec .left-side .filter-options .stops .checkboxes-1 .search ::placeholder {
                        font-weight: 400;
                        font-size: 10px;
                        line-height: 14px;
                        color: #67707b;
                    }

                    .bottom-sec .left-side .filter-options .stops .checkboxes-1 .search img {
                        height: 11.33px;
                        width: 11.33px;
                        margin-right: 10px;
                    }

                    .bottom-sec .left-side .filter-options .stops .checkboxes-1 .search .search__input {
                        border: none;
                        color: #646464;
                        width: 12em;
                        outline: none;
                    }

                .bottom-sec .left-side .filter-options .stops .checkboxes-1 .reset-img-wrapper {
                    position: absolute;
                    top: 35px;
                    right: 0;
                    cursor: pointer;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #d2dce9;
                    border-radius: 17px;
                    font-weight: 500;
                    font-size: 12px;
                    line-height: 16px;
                    letter-spacing: -0.003em;
                    color: #123d6c;
                    height: 23px;
                    width: 70.74px;
                }

                    .bottom-sec .left-side .filter-options .stops .checkboxes-1 .reset-img-wrapper img {
                        height: 10px;
                        width: 11px;
                        margin-right: 5px;
                    }

        .bottom-sec .left-side .filter-options .select-price {
            position: relative;
        }

            .bottom-sec .left-side .filter-options .select-price .zero-k {
                position: absolute;
                bottom: -38px;
                left: -2.3px;
                font-weight: 400;
                font-size: 14px;
                z-index: 1;
                color: #67707b;
            }

@media screen and (max-width: 1220px) {
    .bottom-sec .left-side .filter-options .select-price .zero-k {
        left: -0.3px;
    }
}

.bottom-sec .left-side .filter-options .select-price .fifty-k {
    position: absolute;
    bottom: -38px;
    right: -16.3px;
    font-weight: 400;
    font-size: 14px;
    line-height: 155.6%;
    color: #67707b;
    z-index: 1;
}

@media screen and (max-width: 1220px) {
    .bottom-sec .left-side .filter-options .select-price .fifty-k {
        right: -14.3px;
    }
}

.bottom-sec .left-side .filter-options .select-price .head-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bottom-sec .left-side .filter-options .select-price .group {
    background-color: #d2dce9;
    width: 211px !important;
    margin: 20px auto;
    height: 4px;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px #d2dce9;
    position: relative;
}

    .bottom-sec .left-side .filter-options .select-price .group .range-input .range-min {
        -webkit-appearance: none;
        position: absolute;
        width: 100%;
        height: 5px;
        margin: 0;
        background-color: transparent;
        pointer-events: none;
    }

        .bottom-sec .left-side .filter-options .select-price .group .range-input .range-min::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background-color: #189eff;
            border-radius: 50%;
            pointer-events: auto;
            background-image: url("/assets/images/icons/white-plane.svg");
            transform: rotate(180deg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: 60%;
        }

    .bottom-sec .left-side .filter-options .select-price .group .range-input .range-max {
        -webkit-appearance: none;
        position: absolute;
        width: 100%;
        height: 5px;
        margin: 0;
        background-color: transparent;
        pointer-events: none;
    }

        .bottom-sec .left-side .filter-options .select-price .group .range-input .range-max::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background-color: #189eff;
            border-radius: 50%;
            pointer-events: auto;
            background-image: url("/assets/images/icons/white-plane.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 60%;
        }

    .bottom-sec .left-side .filter-options .select-price .group .progress {
        position: absolute;
        height: 100%;
        left: 0;
        right: 0;
        background-color: #189eff;
        border-radius: 5px;
        transition: left 0.1s ease, right 0.1s ease;
    }

    .bottom-sec .left-side .filter-options .select-price .group .range-text div {
        position: absolute;
        background-color: transparent;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        color: #2a2d31;
        padding: 5px;
        /*left: 0;*/
        /*width: 20px;*/
        text-align: center;
        border-radius: 3px;
        top: 15px;
        /*transform: translateX(-50%);*/
        z-index: 9;
        white-space: nowrap;
    }

.range-text .text-min,
.range-text2 .text-min2 {
    left: 0;
    top: -30px;
    transform: none;
    text-align: left;
}

.range-text .text-max,
.range-text2 .text-max2 {
    right: -50px;
    top: 25px;
    transform: none;
    text-align: right;
}
.bottom-sec .left-side .filter-options .select-price .group .range-input input:active::-webkit-slider-thumb,
.bottom-sec .left-side .filter-options .select-price .group .range-input input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(24, 158, 255, 0.3);
    outline: none;
}
.bottom-sec .left-side .filter-options .travel-duration .group2 .range-input2 input:active::-webkit-slider-thumb,
.bottom-sec .left-side .filter-options .travel-duration .group2 .range-input2 input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(24, 158, 255, 0.3);
    outline: none;
}



        .bottom-sec .left-side .filter-options .select-price .group .range-text div.text-max {
            /* left: unset;*/
            /*right: 0;*/
            transform: translateX(-70%);
        }

.bottom-sec .left-side .filter-options .travel-duration {
    position: relative;
    margin-top: 60px;
}

    .bottom-sec .left-side .filter-options .travel-duration .two-hr {
        position: absolute;
        bottom: -36.3px;
        left: -2.3px;
        font-weight: 400;
        font-size: 14px;
        line-height: 155.6%;
        color: #67707b;
        z-index: 1;
    }

@media screen and (max-width: 1220px) {
    .bottom-sec .left-side .filter-options .travel-duration .two-hr {
        left: -0.3px;
    }
}

.bottom-sec .left-side .filter-options .travel-duration .eight-hr {
    position: absolute;
    bottom: -36.3px;
    right: -13.3px;
    font-weight: 400;
    font-size: 14px;
    line-height: 155.6%;
    color: #67707b;
    z-index: 1;
}

@media screen and (max-width: 1220px) {
    .bottom-sec .left-side .filter-options .travel-duration .eight-hr {
        right: -11.3px;
    }
}

.bottom-sec .left-side .filter-options .travel-duration .group2 {
    background-color: #d2dce9;
    width: 211px;
    margin: 20px auto;
    height: 4px;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px #d2dce9;
    position: relative;
}

    .bottom-sec .left-side .filter-options .travel-duration .group2 .range-input2 .range-min2 {
        -webkit-appearance: none;
        position: absolute;
        width: 100%;
        height: 5px;
        margin: 0;
        background-color: transparent;
        pointer-events: none;
    }

        .bottom-sec .left-side .filter-options .travel-duration .group2 .range-input2 .range-min2::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background-color: #189eff;
            border-radius: 50%;
            pointer-events: auto;
            background-image: url("/assets/images/icons/white-plane.svg");
            transform: rotate(180deg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: 60%;
        }

    .bottom-sec .left-side .filter-options .travel-duration .group2 .range-input2 .range-max2 {
        -webkit-appearance: none;
        position: absolute;
        width: 100%;
        height: 5px;
        margin: 0;
        background-color: transparent;
        pointer-events: none;
    }

        .bottom-sec .left-side .filter-options .travel-duration .group2 .range-input2 .range-max2::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background-color: #189eff;
            border-radius: 50%;
            pointer-events: auto;
            background-image: url("/assets/images/icons/white-plane.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 60%;
        }

    .bottom-sec .left-side .filter-options .travel-duration .group2 .progress2 {
        position: absolute;
        height: 100%;
        left: 0px;
        right: 0;
        background-color: #189eff;
        border-radius: 5px;
    }

    .bottom-sec .left-side .filter-options .travel-duration .group2 .range-text2 div {
        position: absolute;
        background-color: transparent;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: #2a2d31;
        padding: 5px;
        /*left: 0;*/
        /*width: 20px;*/
        text-align: center;
        border-radius: 3px;
        top: 15px;
        transform: translateX(-50%);
    }

        .bottom-sec .left-side .filter-options .travel-duration .group2 .range-text2 div.text-max2 {
            /*  left: unset;*/
            right: 0;
            transform: translateX(-50%);
        }

.bottom-sec .left-side .filter-options .depart-time {
    margin-top: 20px;
}

    .bottom-sec .left-side .filter-options .depart-time .head-price {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .bottom-sec .left-side .filter-options .depart-time .buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 5.5px;
        margin-top: 15px;
    }

        .bottom-sec .left-side .filter-options .depart-time .buttons button {
            height: 50px;
            width: 50px;
            display: flex;
            justify-content: start;
            align-items: center;
            flex-direction: column;
            border: 1px solid #d2dce9;
            border-radius: 5px;
            gap: 6px;
            padding: 3px;
            background-color: transparent;
        }

            .bottom-sec .left-side .filter-options .depart-time .buttons button:focus {
                background-color: #189eff;
                color: white;
            }

            .bottom-sec .left-side .filter-options .depart-time .buttons button img {
                height: 16px;
                width: 16px;
            }

.bottom-sec .left-side .filter-options .arrival-time .head-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bottom-sec .left-side .filter-options .arrival-time .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5.5px;
    margin-top: 15px;
}

    .bottom-sec .left-side .filter-options .arrival-time .buttons button {
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        border: 1px solid #d2dce9;
        border-radius: 5px;
        gap: 6px;
        padding: 3px;
        background-color: transparent;
    }

        .bottom-sec .left-side .filter-options .arrival-time .buttons button:focus {
            background-color: #189eff;
            color: white;
        }

        .bottom-sec .left-side .filter-options .arrival-time .buttons button img {
            height: 16px;
            width: 16px;
        }

.bottom-sec .left-side .filter-options .input-option {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .bottom-sec .left-side .filter-options .input-option .input-16 {
        height: 16px !important;
        width: 16px !important;
        cursor: pointer;
    }

.bottom-sec .left-side .filter-options .bottom-m {
    margin-bottom: 25px;
}

.bottom-sec .right-side {
    width: 836px !important;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

    .bottom-sec .right-side p {
        padding-bottom: 0 !important;
    }

    .bottom-sec .right-side .top-bar {
        margin: 10px 0 6px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: -moz-fit-content;
        height: fit-content;
        width: 100%;
        flex-direction: row;
    }

@media screen and (max-width: 1220px) {
    .bottom-sec .right-side .top-bar {
        margin: 16px 0px 10px 2px;
    }
}

@media screen and (max-width: 1000px) {
    .bottom-sec .right-side .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.bottom-sec .right-side .top-bar .right-select {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    /*flex-wrap: wrap;*/ /*Changed here */
}

@media screen and (max-width: 1000px) {
    .bottom-sec .right-side .top-bar .right-select {
        gap: 5px;
        padding-right: 0px;
        flex-wrap: nowrap;
    }
}

.bottom-sec .right-side .top-bar .right-select .check-wrap {
    height: 40px;
    width: 120px;
    background: #f1f5f9;
    border: 1px solid #e2e7ee;
    border-radius: 8px;
    font-weight: 500 !important;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.003em;
    color: #67707b !important;
}

@media screen and (max-width: 810px) {
    .bottom-sec .right-side .top-bar .right-select .check-wrap {
        height: 35px;
        width: 100px;
        font-weight: 500 !important;
        font-size: 12px;
        line-height: 16px;
    }
}

.bottom-sec .right-side .top-bar .right-select .check-wrap .cl-checkbox > span::before {
    margin: 3px 4px 3px 1px;
}

.bottom-sec .right-side .top-bar .right-select .cf_dropdown_v1 .cf_dropdown_v1_list {
    z-index: 10;
}

.bottom-sec .right-side .top-bar .right-select .cf_dropdown_v1 .lowest-fare {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    gap: 3px;
}

    .bottom-sec .right-side .top-bar .right-select .cf_dropdown_v1 .lowest-fare .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1px;
    }

    .bottom-sec .right-side .top-bar .right-select .cf_dropdown_v1 .lowest-fare #input-text-1 {
        color: #123d6c !important;
        font-weight: 500;
        font-size: 12.6px;
        line-height: 16px;
        letter-spacing: -0.003em;
        display: flex;
        align-items: center;
        width: -moz-fit-content;
        width: fit-content;
    }

.bottom-sec .right-side .top-bar .right-select .inr-wrapper {
    height: 34px;
    width: 70px;
    background: #ffffff;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .bottom-sec .right-side .top-bar .right-select .inr-wrapper .text {
        font-weight: 600;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #123d6c;
    }

.bottom-sec .right-side .cards {
    height: -moz-fit-content;
    height: fit-content;
    max-width: 836px;
    display: flex;
    flex-direction: column;
    gap: 18.2px;
    position: relative;
    /*    max-height:1800px;
    overflow-y:auto;*/
}


.scroll-bluee::-webkit-scrollbar {
    width: 10px;
    border-radius: 2px;
    height: 3px;
}

.scroll-bluee::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #d2dce9;
    border-radius: 2px;
}

.scroll-bluee::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 2px;
}

@media screen and (max-width: 1220px) {
    .bottom-sec .right-side .cards {
        gap: 5px;
    }
}

.bottom-sec .right-side .cards .card {
    display: flex;
    max-width: 836px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff;
    border-radius: 7px;
    /*width: 100%;*/
    padding: 32px 34px 5px 34px;
    border: 1px solid white;
}

    .bottom-sec .right-side .cards .card.active {
        border: 1px solid #189EFF;
    }

@media screen and (max-width: 1220px) {
    .bottom-sec .right-side .cards .card {
        padding: 12px 14px 5px 14px;
    }
}

.bottom-sec .right-side .cards .card .card-top-boxes {
    position: relative;
    z-index: 9;
    width: 100%;
}

    .bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase {
        position: absolute;
        left: -35px;
        bottom: -3px;
        /*position: absolute;*/
        /*margin-left: -35px;*/
        /*bottom: 40px;*/
        background: #123d6c;
        border-radius: 0px 25px 25px 0px;
        width: 145.68px;
        width: 130.68px;
        height: 29.29px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 10;
    }
.top-sub .paxflight .instant-purchase {
/*    position: absolute;*/
/*    left: -35px;*/
    bottom: -3px;
    /*position: absolute;*/
    margin-left: -25px;
    /*bottom: 40px;*/
    background: #123d6c;
    border-radius: 0px 25px 25px 0px;
    width: 145.68px;
    width: 130.68px;
    height: 29.29px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

@media screen and (max-width: 1220px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase, .top-sub .paxflight .instant-purchase {
        left: -15px;
    }
}

@media screen and (max-width: 950px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase, .top-sub .paxflight .instant-purchase {
        width: 35px;
        overflow: hidden;
        transition: 0.1s ease-in-out;
    }

        .bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase:hover, .top-sub .paxflight .instant-purchase:hover {
            width: 130px;
        }
}

.bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase img, .top-sub .paxflight .instant-purchase img {
    height: 18px;
    width: 13.2px;
}

.bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase div, .top-sub .paxflight .instant-purchase div {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    text-transform: capitalize;
    color: #ffffff;
}

@media screen and (max-width: 950px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase div, .top-sub .paxflight .instant-purchase div {
        display: none;
        opacity: 0;
    }

        .bottom-sec .right-side .cards .card .card-top-boxes .instant-purchase div.show, .top-sub .paxflight .instant-purchase div.show {
            display: flex;
            animation: fadeIn 0.35s linear;
            opacity: 1;
        }
}

.bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: row;
}

@media screen and (max-width: 950px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

.bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper .rt-cards-Wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}

@media screen and (max-width: 950px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper .rt-cards-Wrapper {
        width: 100%;
    }
}

.bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper .rt-cards-Wrapper .c-top-sec {
    width: 100%;
    justify-content: space-between;
}

@media screen and (max-width: 950px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper .rt-cards-Wrapper .c-top-sec {
        justify-content: center;
        width: 100%;
    }
}

.bottom-sec .right-side .cards .card .card-top-boxes .rt-box-Wrapper .rt-select-Wrapper {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-sec .right-side .cards .card .card-top-boxes .c-top-sec {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}

@media screen and (max-width: 950px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .c-top-sec {
        gap: 15px;
        justify-content: center;
    }
}

.bottom-sec .right-side .cards .card .card-top-boxes .c-top-sec p {
    margin: 0;
}

.bottom-sec .right-side .cards .card .card-top-boxes .c-bottom-sec, .paxflight .c-bottom-sec {
    border-top: 1px solid #f1f5f9;
    width: 100%;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    gap: 35.33px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #189eff;
    margin-top: 5px;
    padding: 8px 0 20px;
}

@media screen and (max-width: 810px) {
    .bottom-sec .right-side .cards .card .card-top-boxes .c-bottom-sec {
        gap: 20.33px;
    }
}

.bottom-sec .right-side .cards .card .card-top-boxes .c-bottom-sec .view-details {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

    .bottom-sec .right-side .cards .card .card-top-boxes .c-bottom-sec .view-details img {
        margin-left: 3px;
    }

.bottom-sec .right-side .cards .card .card-top-boxes .c-bottom-sec div, .paxflight .c-bottom-sec div {
    cursor: pointer;
}

.bottom-sec .right-side .cards .card .view-flight-details {
    display: none;
    width: 100%;
    margin-top: 4px;
    border-top: 1px solid #f1f5f9;
    padding: 30px 0 60px 0;
    animation: fadeIn 0.35s linear;
}

    .bottom-sec .right-side .cards .card .view-flight-details.multi {
        padding: 30px 0 0px 0;
    }

    .bottom-sec .right-side .cards .card .view-flight-details.show-1 {
        height: -moz-fit-content;
        height: fit-content;
        display: flex;
        animation: fadeIn 0.35s linear;
    }

    .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

        .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .view-departure {
            display: flex;
            justify-content: start;
            align-items: center;
            width: 100%;
            gap: 6px;
        }

            .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .view-departure .return_plane {
                transform: scaleX(-1);
            }

        .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .container {
            margin-top: -10px;
            overflow: hidden;
            background-color: transparent;
        }

            .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .container .tabs {
                background-color: transparent !important;
            }

                .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .container .tabs .tab-content .tab_item_wrapper {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 30px;
                }

                .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .container .tabs .tab-content section {
                    padding-top: 60px;
                    padding-bottom: 30px;
                }

                    .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .container .tabs .tab-content section .chnage-planes {
                        margin-bottom: 30px;
                    }

                .bottom-sec .right-side .cards .card .view-flight-details .view-flight-details-cards .container .tabs .tab_target {
                    border-bottom: 1px solid #d2dce9;
                }

.bottom-sec .right-side .cards .booking-popup {
    position: fixed;
    max-width: 836px !important;
    min-width: 836px !important;
    bottom: 10px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #d2dce9;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    gap: 10px;
    z-index: 9;
}

@media screen and (max-width: 1220px) {
    .bottom-sec .right-side .cards .booking-popup {
        width: calc(100% - 301px);
    }
}

@media screen and (max-width: 1152.2px) {
    .bottom-sec .right-side .cards .booking-popup {
        max-width: 836px !important;
        min-width: 265.69px !important;
    }
}

.bottom-sec .right-side .cards .booking-popup .left-items {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 80px;
    justify-content: start;
    align-items: center;
    overflow-x: auto;
}

    .bottom-sec .right-side .cards .booking-popup .left-items::-webkit-scrollbar {
        width: 2px;
        border-radius: 3px;
        height: 3px;
    }

    .bottom-sec .right-side .cards .booking-popup .left-items::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px #d2dce9;
        border-radius: 3px;
    }

    .bottom-sec .right-side .cards .booking-popup .left-items::-webkit-scrollbar-thumb {
        background-color: #189EFF;
        border-radius: 3px;
    }

    .bottom-sec .right-side .cards .booking-popup .left-items .item-1 {
        height: 100%;
        margin-right: 6px;
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: row;
        gap: 15px;
        background: #F1F5F9;
        border-radius: 4px;
        position: relative;
    }

        .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .brands {
            display: flex;
        }

            .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .brands .brand-wrapper {
                margin-top: 15px;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 28px;
                width: 28px;
                border-radius: 50%;
                background-color: #FFFFFF;
                border: 1px solid #F3F3F3;
            }

                .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .brands .brand-wrapper img {
                    /*height: 12.33px;*/
                    /*width: 18.6px;*/
                }

        .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .middle-div {
            margin-top: 15px;
            min-width: 100px;
        }

            .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .middle-div p {
                margin: 0;
                width: -moz-fit-content;
                width: fit-content;
            }

            .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .middle-div .text1 {
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                color: #67707b;
            }

            .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .middle-div .price2 {
                font-weight: 700;
                font-size: 16px;
                line-height: 22px;
                letter-spacing: -0.003em;
                color: #121213;
            }

        .bottom-sec .right-side .cards .booking-popup .left-items .item-1 .close-red {
            cursor: pointer;
            position: absolute;
            top: 8px;
            right: 8px;
        }

.bottom-sec .right-side .cards .booking-popup .right-items {
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8.11px;
}

    .bottom-sec .right-side .cards .booking-popup .right-items .book-btn {
        height: 36px;
        width: 128px;
        cursor: pointer;
        background: #189eff;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        align-items: center;
        letter-spacing: -0.003em;
        color: #ffffff;
        padding: 5px 26px;
        text-decoration: none;
    }

    .bottom-sec .right-side .cards .booking-popup .right-items .generate_quote_btn {
        cursor: pointer;
    }

    .bottom-sec .right-side .cards .booking-popup .right-items a {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        text-decoration-line: underline;
        color: #189eff;
    }

.cf_radio_v1 label {
    cursor: pointer;
    border: 1px solid #d2dce9;
    border-radius: 5px;
    font-weight: 400;
    font-size: 8px;
    line-height: 9px;
    font-family: "Work Sans", sans-serif;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cf_radio_v1 .heading_8 {
    max-width: 88%;
    min-height: 20px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cf_radio_v1 svg path {
    fill: #000000;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cf_radio_v1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #189EFF;
    z-index: -1;
    opacity: 0;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cf_radio_v1 input {
    position: absolute;
    opacity: 0;
    z-index: -9;
}

    .cf_radio_v1 input:checked ~ .heading_8 {
        color: #ffffff;
    }

    .cf_radio_v1 input:checked ~ .bg {
        opacity: 1;
    }

    .cf_radio_v1 input:checked ~ svg path {
        fill: #ffffff;
    }

.rountrip_stops {
    margin-top: 11.28px;
    width: 100%;
}

    .rountrip_stops .fistDrop {
        background: #D2DCE9 url(/assets/images/icons/arrow-down.svg) center right 18px no-repeat;
        width: 216.72px !important;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #123D6C;
    }

    .rountrip_stops .fistDrop_list {
        width: 216.72px !important;
    }

.close {
    border: none;
    outline: none;
    background-color: transparent;
    color: currentColor !important;
    width: 28.42px;
    height: 28.42px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    /*right: -5px;*/
    text-decoration: none;
}

.alert .close {
    text-decoration: none !important;
    top: 20%;
    left: 98%;

}

    .alert .close:hover {
        text-decoration: none !important;
    }

.alert_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close_svg {
    color: currentColor !important;
    fill: currentColor !important;
}

.alert {
    border-radius: 11.3677px;
    /*width: 568.38px !important;*/
    width: 600px !important;
    position: relative;
}

.alert-danger {
    background-color: #FCE8DB;
    border: none;
}

.alert-success {
    background-color: #84D65A;
    border: none;
}

.alert-info {
    background-color: #D7F1FD;
    border: none;
}

.alert-warning {
    background-color: #FEF7D1;
    border: none;
}

.alert_container_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
}

    .alert_container_box .alertContainer {
        position: fixed;
        top: 100px;
        top: 50%;
        z-index: 999;
        left: 50%;
        transform: translate(-50%, -50%);
        height: -moz-fit-content;
        height: fit-content;
    }

.alert_msg {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    margin-left: 9px;
}

ul {
    list-style: none !important;
    margin-bottom: 0 !important;
}

.modal {
    --bs-modal-width: 95% !important;
}

    .modal .modal-content {
        border: none;
    }

    .modal .instant-purchase-wrapper {
        position: absolute;
        z-index: 50;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 773px;
        height: 378px;
        background: #f1f5f9;
        border-radius: 8px;
        border: 1px solid #d2dce9;
    }

@media screen and (max-width: 970px) {
    .modal .instant-purchase-wrapper {
        width: 95%;
    }
}

.modal .instant-purchase-wrapper .btn-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .modal .instant-purchase-wrapper .btn-close img {
        height: 20px;
        width: 20px;
        margin-right: 16px;
    }

.modal .instant-purchase-wrapper .container, .PNR_content {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.modal .instant-purchase-wrapper .middle-content, .PNR_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 29px;
    margin-top: 30px;
}

.PNR_content {
    margin: 20px 50px 50px;
    /*background-color: #FFFFFF;*/
    height: 50vh;
}

.retrieve_PNR {
    position: absolute;
    background: #FFFFFF;
    border-radius: 8px;
    max-width: 1220px;
    width: 90%;
    left: 50%;
    /*top: 50%;*/
    transform: translate(-50%, -50%);
}

.modal .instant-purchase-wrapper .middle-content .circle {
    height: 122px;
    width: 122px;
    border-radius: 50%;
    background: #e2e7ee;
}

.modal .instant-purchase-wrapper .middle-content .text-1 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #2a2d31;
    text-align: center;
}

.modal .instant-purchase-wrapper .middle-content .text-2 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #dd1f03;
    text-align: center;
}

.modal .baggage-policy-wrapper {
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1120px;
    max-height: 600px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    overflow: hidden;
    font-family: "Manrope";
    font-style: normal;
    padding: 25px;
}

/*.modal .baggage-policy-wrapper.pub_v2 {
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }*/

@media screen and (max-width: 1133px) {
    .modal .baggage-policy-wrapper {
        width: 95%;
        padding: 25px 15px 25px 15px;
    }
}

.modal .baggage-policy-wrapper .btn-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .modal .baggage-policy-wrapper .btn-close img {
        height: 20px;
        width: 20px;
        margin-right: 16px;
    }

.modal .baggage-policy-wrapper .container {
    margin-top: -10px;
    overflow: hidden;
    max-width: 1000px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer {
        padding: 65px 0px 0px;
    }

        .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar, #FareRule .middle-content .tab-item-1 .fr-top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: row;
        }

@media screen and (max-width: 915px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar {
        flex-direction: column;
    }
}

#FareRule .middle-content .tab-item-1 {
    margin-top: 15px;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar .right-btns, #FareRule .middle-content .right-btns {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 72px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar .right-btns > li {
        font-weight: 400;
        font-size: 14px;
        line-height: 155.6%;
        display: flex;
        align-items: center;
        color: #67707b;
    }

        .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar .right-btns > li > span {
            font-weight: 500;
            color: #2a2d31;
        }

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner, #FareRule .middle-content .tab-item-1 .tab-content.inner {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 0px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables, #FareRule .middle-content .tab-item-1 .tab-content.inner .tables {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 30px;
        overflow: auto;
    }

        .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper, #FareRule .middle-content .tab-item-1 .tab-content.inner .tables .table-wrapper {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: column;
            width: 680px;
            gap: 16px;
        }

            .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-head, #FareRule .middle-content .tab-item-1 .tab-content.inner .tables .table-wrapper .table-head {
                font-weight: 600;
                font-size: 14px;
                line-height: 19px;
                display: flex;
                align-items: start;
                text-align: center;
                width: 100%;
                color: #2a2d31;
            }

            .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1, #FareRule .middle-content .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 {
                width: 680px;
                line-height: 16px;
                font-size: 12px;
                letter-spacing: -0.003em;
                border-radius: 4px;
            }

                .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 .table-row-1 {
                    background: #e2e7ee;
                    border-radius: 4px 4px 0px 0px;
                }

                .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 .table-row-2 {
                    background: #ffffff;
                    border: 1px solid #e2e7ee;
                    border-radius: 0px 0px 4px 4px;
                }

                .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 th {
                    font-weight: 500;
                    color: #2a2d31;
                    height: 42px;
                    padding-left: 28px;
                }

                .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 td {
                    font-weight: 600;
                    color: #121213;
                    height: 55px;
                    padding-left: 28px;
                }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare, #FareRule .middle-content .tab-item-1 .tab-content.inner .detail-fare {
        display: flex;
        justify-content: center;
        align-items: start;
        overflow: auto;
    }

@media screen and (max-width: 850px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare, #FareRule .middle-content .tab-item-1 .tab-content.inner .detail-fare {
        width: 900px;
        display: flex;
        justify-content: start;
        align-items: start;
    }
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper, #FareRule .middle-content .tab-item-1 #pills-tabContent .detail-fare .detail-fare-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 36.26px;
    width: 100%;
}

@media screen and (max-width: 850px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper {
        width: 900px;
    }
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper {
    padding: 20px 7px 20px 0px;
    background: #ffffff;
    height: 369px;
    border-radius: 4px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts {
        padding-left: 16px;
        width: 270px;
        height: 330px;
        border-radius: 4px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        overflow-y: auto;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: #67707b;
        list-style: none;
    }

@media screen and (max-width: 1000px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts {
        color: black;
    }
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts li {
    padding: 0 !important;
    cursor: pointer;
    width: 100%;
    position: relative;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts .active {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: flex-start;
    color: #189eff;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts .active::after {
        content: " ";
        background: url("/assets/images/icons/right-caret.svg") center no-repeat;
        width: 6px;
        height: 8px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper textarea, #FareRule .middle-content .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper textarea {
    width: 727.74px;
    height: 369px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    resize: none;
    padding: 20px 24px;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 155.6%;
    display: flex;
    align-items: center;
    color: #67707b;
}

@media screen and (max-width: 1133px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper textarea {
        width: 367px;
        height: 370px;
    }
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar {
    padding: 0 10px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .fare-breakdown {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        align-items: center;
        letter-spacing: -0.003em;
        color: #2a2d31;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .right-btns {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 72px;
        margin: 0;
    }

        .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .right-btns > li {
            font-weight: 400;
            font-size: 14px;
            line-height: 155.6%;
            display: flex;
            align-items: center;
            color: #67707b;
        }

            .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .right-btns > li > span {
                font-weight: 500;
                color: #2a2d31;
            }

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 1057.1px;
    gap: 16px;
    overflow: auto;
}

@media screen and (max-width: 1233px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper {
        width: 100%;
    }
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-head {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: start;
    text-align: center;
    width: 100%;
    color: #2a2d31;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 {
    /*width: 1027.1px;*/
    width: 1020.1px;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: -0.003em;
    border-radius: 4px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 .table-row-1 {
        background: #e2e7ee;
        border-radius: 4px 4px 0px 0px;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 .table-row-2 {
        background: #ffffff;
        border: 1px solid #e2e7ee;
        border-radius: 0px 0px 4px 4px;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 th {
        font-weight: 500;
        color: #2a2d31;
        height: 57.17px;
        padding-left: 28px;
        font-size: 14px;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 td {
        font-weight: 500;
        color: #2a2d31;
        height: 85px;
        padding-left: 28px;
    }

.custom-placeholder-style::placeholder {
    font-size: 17px !important;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar, .fr-top-bar {
    padding: 0 10px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .fare-breakdown {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        align-items: center;
        letter-spacing: -0.003em;
        color: #2a2d31;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .right-btns {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 72px;
        margin: 0;
    }

        .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .right-btns > li {
            font-weight: 400;
            font-size: 14px;
            line-height: 155.6%;
            display: flex;
            align-items: center;
            color: #67707b;
        }

            .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .right-btns > li > span {
                font-weight: 500;
                color: #2a2d31;
            }

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 1027px;
}

@media screen and (max-width: 1233px) {
    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper, .table-wrapper {
        width: 100%;
    }
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-head, .table-wrapper .table-head*/ {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: start;
    text-align: center;
    width: 100%;
    color: #2a2d31;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 /*, .table-wrapper .table-1*/ {
    width: 100%;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: -0.003em;
    border-radius: 4px;
    overflow: hidden;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 .table-row-1, .table-wrapper .table-1 .table-row-1 {
        background: #e2e7ee;
        border-radius: 4px 4px 0px 0px;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 .table-row-2 {
        background: #ffffff;
        border-radius: 0px 0px 4px 4px;
    }

.table-wrapper .table-1 td {
    padding-left: 10px;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 th, .table-wrapper .table-1 th, table-row-1 th {
    font-weight: 500;
    color: #2a2d31;
    height: 57.17px;
    padding-left: 28px;
    font-size: 14px;
}

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 td {
    font-weight: 500;
    color: #121213;
    height: 65px;
    padding-left: 28px;
    border-radius: 0px 0px 4px 4px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 td span, .pax-break-up .table-wrapper .table-1 td span {
        color: red;
    }

.modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .policy-cottom, .pax-break-up .policy-cottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 155.6%;
    display: flex;
    align-items: center;
    color: #2a2d31;
    padding: 15px 45px;
}

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .policy-cottom .text-1 {
        margin-right: 35px;
    }

    .modal .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .policy-cottom span, .pax-break-up .policy-cottom span {
        color: red;
    }

.modal .modify-wrapper {
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1120px;
    width:88%;
    max-height: 600px;
    background: white;
    border-radius: 8px;
    font-family: "Manrope";
    font-style: normal;
    padding: 25px;
}

@media screen and (max-width: 1120px) {
    .modal .modify-wrapper {
        max-width: 95%;
    }
}

.modal .modify-wrapper .btn-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.btn-closes{
    display:flex;
    justify-content:center;
    align-items:center;
}
.btn-closes img{
    height:20px;
    width:20px;
    margin-right: 16px;
}

    .modal .modify-wrapper .btn-close img {
        height: 20px;
        width: 20px;
        margin-right: 16px;
    }

.modal .modify-wrapper .container,
.multicityHome .container {
    max-height: auto;
    /*overflow-y: auto;*/
    padding: 10px 0 20px 0;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

    .modal .modify-wrapper .container .destination-cards,
    .multicityHome .container .destination-cards {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 25px;
    }

        .modal .modify-wrapper .container .destination-cards .select-city,
        .multicityHome .container .destination-cards .select-city {
            width: 100%;
            display: flex;
            height: -moz-fit-content;
            height: fit-content;
        }

@media screen and (max-width: 1100px) {
    .modal .modify-wrapper .container .destination-cards .select-city,
    .multicityHome .container .destination-cards .select-city {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.modal .modify-wrapper .container .destination-cards .select-city .oneway-input-disabled,
.multicityHome .container .destination-cards .select-city .oneway-input-disabled {
    pointer-events: none;
}

.modal .modify-wrapper .container .destination-cards .select-city .where-from,
.multicityHome .container .destination-cards .select-city .where-from {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid #d2dce9;
    width: 295px;
    height: 54px; /*changes made here from 72px */
    border-radius: 8px 0px 0px 8px;
}

    .modal .modify-wrapper .container .destination-cards .select-city .where-from .on-border-text {
        position: absolute;
        top: -8px;
        left: 27px;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
        background-color: #f1f5f9;
        padding: 0 5px;
    }

    .modal .modify-wrapper .container .destination-cards .select-city .where-from .location-icon,
    .multicityHome .container .destination-cards .select-city .where-from .location-icon {
        margin-left: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from .location-icon img,
        .multicityHome .container .destination-cards .select-city .where-from .location-icon img {
            height: 18px;
            width: 15px;
        }

    .modal .modify-wrapper .container .destination-cards .select-city .where-from input,
    .multicityHome .container .destination-cards .select-city .where-from input {
        outline: none;
        border: none;
        width: 100%;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #292c31;
        padding: 0 !important;
        background-color: transparent;
    }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from input::-moz-placeholder,
        .multicityHome .container .destination-cards .select-city .where-from input::-moz-placeholder {
            color: #292c31;
        }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from input::placeholder,
        .multicityHome .container .destination-cards .select-city .where-from input::placeholder {
            color: #292c31;
        }

    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1,
    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2,
    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1,
    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 {
        position: relative;
    }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .whereFromInput,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .whereToInput,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .whereFromInput,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .whereToInput,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .whereFromInput,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .whereToInput,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .whereFromInput,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .whereToInput {
            padding: 0;
            background-color: transparent;
        }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 {
            display: none;
            position: absolute;
            left: -56px;
            top: 45px;
            padding-top: 5px;
            width: 295.11px;
            margin-bottom: 30px;
            height: -moz-fit-content;
            height: fit-content;
            background: #f1f5f9;
            border: 1px solid #d2dce9;
            border-radius: 5px;
            z-index: 50;
        }

            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .hasNoResults,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .hasNoResults,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .hasNoResults,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .hasNoResults,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .hasNoResults,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .hasNoResults,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .hasNoResults,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .hasNoResults {
                margin: 0px 15px;
                display: none;
            }

            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete {
                margin: 5px 10px 10px 10px;
                font-style: normal;
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                gap: 10px;
            }

                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete ul,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete ul,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete ul,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete ul,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete ul,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete ul,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete ul,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete ul {
                    height: 100%;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    flex-direction: column;
                    gap: 8px;
                    padding-left: 23px;
                }

                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper img,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper img,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .oneWrapper img,
                    .multicityHome.container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .oneWrapper img,
                    .multicityHome.container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .oneWrapper img {
                        transform: rotate(-20deg);
                        height: 8px;
                        width: 19.33px;
                    }

                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper {
                    display: flex;
                    justify-content: flex-start;
                    align-items: flex-start;
                }

                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper img,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper img,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .enterWrapper img,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .enterWrapper img,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .enterWrapper img {
                        height: 8px;
                        width: 19.33px;
                        margin-top: 4px;
                    }

                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city {
                    height: 100%;
                    width: 100%;
                }

                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .city-name,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .city-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .city-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .city-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .city-name {
                        font-family: "Manrope";
                        font-style: normal;
                        font-weight: 600;
                        font-size: 13px;
                        line-height: 18px;
                        color: #121213;
                    }

                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .country-name,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .country-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .list-autocomplete .airport-city .country-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .list-autocomplete .airport-city .country-name,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .list-autocomplete .airport-city .country-name {
                        font-family: "Work Sans";
                        font-style: normal;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 14px;
                        color: #939393;
                    }

            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history,
            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history,
            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history {
                padding: 15px;
                border-top: 1px solid #d2dce9;
                width: 100%;
            }

                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .search-head,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .search-head,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .search-head,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .search-head,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .search-head,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .search-head,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .search-head,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .search-head {
                    font-weight: 700;
                    font-size: 12px;
                    line-height: 16px;
                    text-transform: capitalize;
                    color: #67707b;
                }

                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra,
                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra,
                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 10px;
                    flex-direction: row;
                    border: none;
                    background-color: transparent;
                }

                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        margin-left: 10px;
                    }

                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            height: 100%;
                            width: 100%;
                        }

                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img,
                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .left-box .oneway-wrapper img,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .left-box .oneway-wrapper img {
                                transform: rotate(-20deg);
                                height: 8px;
                                width: 19.33px;
                            }

                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box,
                    .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box,
                    .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 7.62px;
                    }

                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom {
                            width: 100%;
                            font-family: "Work Sans";
                            font-style: normal;
                            font-weight: 400;
                            font-size: 12px;
                            line-height: 14px;
                            color: #939393;
                            display: flex;
                            justify-content: start;
                            align-items: start;
                        }

                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div,
                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div,
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div
                            .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div, {
                                border-right: 1px solid #189eff;
                                padding-right: 5px;
                                margin-right: 5px;
                            }

                                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child,
                                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child,
                                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child,
                                .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .bottom div:last-child,
                                .multicityHome.container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .bottom div:last-child {
                                    border-right: none;
                                }

                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .top,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .top,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .top,
                        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .top,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-1 .history .btn-extra .box .top,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .dropdown-menu-2 .history .btn-extra .box .top,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-1 .history .btn-extra .box .top,
                        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .dropdown-menu-2 .history .btn-extra .box .top {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            gap: 10px;
                            width: 100%;
                        }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .ShowDropdown,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .ShowDropdown,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .ShowDropdown,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .ShowDropdown {
            display: block;
        }

        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-1 .hideDropdown,
        .modal .modify-wrapper .container .destination-cards .select-city .where-from form .dropdown-2 .hideDropdown,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-1 .hideDropdown,
        .multicityHome .container .destination-cards .select-city .where-from form .dropdown-2 .hideDropdown {
            display: none;
        }

.modal .modify-wrapper .container .destination-cards .select-city .where-to,
.multicityHome .container .destination-cards .select-city .where-to {
    position: relative;
    border-radius: 0px 8px 8px 0px;
    border-left: none;
}

    .modal .modify-wrapper .container .destination-cards .select-city .where-to .location-icon,
    .multicityHome .container .destination-cards .select-city .where-to .location-icon {
        margin-left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 50px;
    }

    .modal .modify-wrapper .container .destination-cards .select-city .where-to .toggle-icon {
        position: absolute;
        top: 18px;
        left: -18px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35px;
        width: 35px;
        border-radius: 50%;
        background-color: #189eff;
        cursor: pointer;
    }

        .modal .modify-wrapper .container .destination-cards .select-city .where-to .toggle-icon img {
            height: 18px;
            width: 20px;
        }

.modal .modify-wrapper .container .destination-cards .select-city .departure,
.multicityHome .container .destination-cards .select-city .departure {
    margin-left: 10px;
    width: 210px;
    height: 54px; /*changes from 72px*/
    border-radius: 8px;
    padding: 5px;
}

@media screen and (max-width: 1100px) {
    .modal .modify-wrapper .container .destination-cards .select-city .departure,
    .multicityHome .container .destination-cards .select-city .departure {
        margin-left: 0px;
        width: 295px;
        height: 54px; /*changes from 72px*/
    }
}

.modal .modify-wrapper .container .destination-cards .select-city .departure .calender-icon,
.multicityHome .container .destination-cards .select-city .departure .calender-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
}

    .modal .modify-wrapper .container .destination-cards .select-city .departure .calender-icon img,
    .multicityHome .container .destination-cards .select-city .departure .calender-icon img {
        height: 18px;
        width: 16.22px;
    }

.modal .modify-wrapper .container .destination-cards .select-city .departure .icon-w,
.multicityHome .container .destination-cards .select-city .departure .icon-w {
    width: 40px;
}

.modal .modify-wrapper .container .destination-cards .select-city .departure .date-day-box,
.multicityHome .container .destination-cards .select-city .departure .date-day-box {
    padding-left: 5px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

    .modal .modify-wrapper .container .destination-cards .select-city .departure .date-day-box input,
    .multicityHome .container .destination-cards .select-city .departure .date-day-box input {
        margin-left: 0;
        outline: none;
        border: none;
        width: 100%;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 14px; /*changes made from 20px*/
        line-height: 27px;
        letter-spacing: -0.003em;
        color: #292c31;
    }

    .modal .modify-wrapper .container .destination-cards .select-city .departure .date-day-box .selected-day {
        font-family: "Work Sans";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
    }

.modal .modify-wrapper .container .destination-cards .select-city .departure .return-placeholder,
.multicityHome .container .destination-cards .select-city .departure .return-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.003em;
    color: #242629;
    margin: 0;
    position: relative;
}

    .modal .modify-wrapper .container .destination-cards .select-city .departure .return-placeholder::-moz-placeholder,
    .multicityHome .container .destination-cards .select-city .departure .return-placeholder::-moz-placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Work Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: -0.003em;
        color: #67707b;
        width: 98%;
        white-space: pre-line;
    }

    .modal .modify-wrapper .container .destination-cards .select-city .departure .return-placeholder::placeholder,
    .multicityHome .container .destination-cards .select-city .departure .return-placeholder::placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Work Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: -0.003em;
        color: #67707b;
        width: 98%;
        white-space: pre-line;
    }

.modal .modify-wrapper .container .destination-cards .select-city .departure-gap,
.multicityHome .container .destination-cards .select-city .departure-gap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .modal .modify-wrapper .container .destination-cards .select-city .departure-gap,
    .multicityHome .container .destination-cards .select-city .departure-gap {
        gap: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}

.modal .modify-wrapper .container .destination-cards .select-city .departure-gap .multicity-departure-wrap,
.multicityHome .container .destination-cards .select-city .departure-gap .multicity-departure-wrap {
    width: 100%;
    padding-right: 10px;
}

@media screen and (max-width: 1100px) {
    .modal .modify-wrapper .container .destination-cards .select-city .departure-gap .multicity-departure-wrap,
    .multicityHome .container .destination-cards .select-city .departure-gap .multicity-departure-wrap {
        width: 538px;
    }
}

.modal .modify-wrapper .container .destination-cards .select-city .departure-gap .multicity-departure-wrap .multicity-departure,
.multicityHome .container .destination-cards .select-city .departure-gap .multicity-departure-wrap .multicity-departure {
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .modal .modify-wrapper .container .destination-cards .select-city .departure-gap .multicity-departure-wrap .multicity-departure,
    .multicityHome .container .destination-cards .select-city .departure-gap .multicity-departure-wrap .multicity-departure {
        width: 538px;
    }
}

.modal .modify-wrapper .container .destination-cards .select-city .departure-gap .right-remove-box .remove-wrapper,
.multicityHome .container .destination-cards .select-city .departure-gap .right-remove-box .remove-wrapper {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 42px;
    background-color: #f2f2f2 !important;
    border-radius: 50%;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .modal .modify-wrapper .container .destination-cards .select-city .departure-gap .right-remove-box .remove-wrapper,
    .multicityHome .container .destination-cards .select-city .departure-gap .right-remove-box .remove-wrapper {
        margin-left: 0;
    }
}

.modal .modify-wrapper .container .destination-cards .select-city .departure-gap .right-remove-box .remove-wrapper img,
.multicityHome .container .destination-cards .select-city .departure-gap .right-remove-box .remove-wrapper img {
    height: 24px;
    width: 24px;
    transform: rotate(45deg);
}

.modal .modify-wrapper .container .bottom-check,
.multicityHome .container .bottom-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
}

    .modal .modify-wrapper .container .bottom-check .checkbox-wrapper,
    .multicityHome .container .bottom-check .checkbox-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.003em;
        color: #67707b;
        cursor: pointer;
    }

        .modal .modify-wrapper .container .bottom-check .checkbox-wrapper .addCircle-wrapper,
        .multicityHome .container .bottom-check .checkbox-wrapper .addCircle-wrapper {
            height: -moz-fit-content;
            height: fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

            .modal .modify-wrapper .container .bottom-check .checkbox-wrapper .addCircle-wrapper img,
            .multicityHome .container .bottom-check .checkbox-wrapper .addCircle-wrapper img {
                height: 24px;
                width: 24px;
            }

        .modal .modify-wrapper .container .bottom-check .checkbox-wrapper input,
        .multicityHome .container .bottom-check .checkbox-wrapper input {
            height: 18px;
            width: 18px !important;
            cursor: pointer;
        }

        .modal .modify-wrapper .container .bottom-check .checkbox-wrapper .destination-text,
        .multicityHome .container .bottom-check .checkbox-wrapper .destination-text {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #189eff;
            cursor: pointer;
        }

        .modal .modify-wrapper .container .bottom-check .checkbox-wrapper label,
        .multicityHome .container .bottom-check .checkbox-wrapper label {
            margin-left: 6px;
            cursor: pointer;
        }

    .modal .modify-wrapper .container .bottom-check .bottom-right,
    .multicityHome .container .bottom-check .bottom-right {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #189eff;
        border-radius: 8px;
        height: 44px;
        width: 161px;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #fafafa;
        cursor: pointer;
        margin-left: auto;
    }

        .modal .modify-wrapper .container .bottom-check .bottom-right .search-wrapper,
        .multicityHome .container .bottom-check .bottom-right .search-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 6px;
        }

            .modal .modify-wrapper .container .bottom-check .bottom-right .search-wrapper img,
            .multicityHome .container .bottom-check .bottom-right .search-wrapper img {
                height: 17px;
                width: 17px;
            }

.modal .generate-quote-wrapper {
    font-family: "Manrope";
    font-style: normal;
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: 1120px;
    background: #f1f5f9;
    border-radius: 8px;
    padding-bottom: 50px;
}

@media screen and (max-width: 1133px) {
    .modal .generate-quote-wrapper {
        width: 95%;
    }
}

.modal .generate-quote-wrapper .btn-close {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal .generate-quote-wrapper .btn-close img {
        height: 20px;
        width: 20px;
        margin-right: 16px;
    }

.modal .generate-quote-wrapper .container {
    display: flex;
    flex-direction: column;
    gap: 31px;
    overflow: auto;
    height: 420px;
    margin: 42px 0 0 0;
}

    .modal .generate-quote-wrapper .container .quote_card {
        background: #FFFFFF;
        border-radius: 4px;
        max-width: 900px;
        min-width: 900px;
        margin: 0 auto;
    }

        .modal .generate-quote-wrapper .container .quote_card .qc_topbar {
            display: flex;
            width: 100%;
            height: 119px;
        }

            .modal .generate-quote-wrapper .container .quote_card .qc_topbar li {
                width: 25%;
                display: flex;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
                padding: 32px;
            }

                .modal .generate-quote-wrapper .container .quote_card .qc_topbar li.drop_box {
                    background: #E2E7EE;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                }

                    .modal .generate-quote-wrapper .container .quote_card .qc_topbar li.drop_box .db_left {
                        display: flex;
                        justify-content: flex-end;
                        align-items: flex-end;
                        flex-direction: column;
                    }

                    .modal .generate-quote-wrapper .container .quote_card .qc_topbar li.drop_box .caret_switch {
                        width: 37px;
                        height: 37px;
                        border-radius: 50%;
                        background: #FAFAFA;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                .modal .generate-quote-wrapper .container .quote_card .qc_topbar li .text_16_ebold {
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 22px;
                    letter-spacing: -0.003em;
                    color: #2A2D31;
                    margin-bottom: 8px;
                }

                .modal .generate-quote-wrapper .container .quote_card .qc_topbar li .sub_text_16 {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 19px;
                    color: #515050;
                }

        .modal .generate-quote-wrapper .container .quote_card .qc_bottombar {
            margin: 32.5px;
        }

            .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .qc_cards_info {
                border: 1px solid #E2E7EE;
                border-radius: 7px;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 30px;
                padding: 35px 21px;
            }

            .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs {
                width: 100%;
                margin-top: 31px;
            }

                .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .Passenger-table {
                    width: 100%;
                    border: 1px solid #E2E7EE;
                    margin-top: 14px;
                    border-radius: 7px !important;
                    border-collapse: separate;
                    border-spacing: 0px !important;
                }

                    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .Passenger-table tbody {
                        max-width: 100%;
                        display: flex !important;
                        flex-direction: column !important;
                        overflow: hidden;
                    }

@media screen and (max-width: 1120px) {
    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .Passenger-table tbody {
        width: 100%;
    }
}

@media screen and (max-width: 1120px) {
    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .Passenger-table {
        width: 100%;
    }
}

.confirmBook5 .Fare-Details {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-radius: 7px;
    width: 100%;
    margin-bottom: 5px;
}

    .confirmBook5 .Fare-Details .Fare-heading, .Fare-heading {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
    }

    .confirmBook5 .Fare-Details .price {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
    }


.upperCase {
    text-transform: uppercase !important;
}

.oneTwoCards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row !important;
}

.twoDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs tr {
    display: flex;
    justify-content: space-between;
}

.modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data {
    padding: 18px;
}

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data.vid_v2 {
        position: relative;
    }

        .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data.vid_v2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 96%;
            border-bottom: 2px solid #E2E7EE;
        }

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data.total_fare {
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
        letter-spacing: -0.003em;
        color: #2A2D31;
        width: 100%;
        gap: 92px;
    }

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data .fare_td_head {
        font-weight: 700;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #2A2D31;
        min-width: 86px;
    }

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data .fare_td {
        min-width: 86px;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #2A2D31;
    }

        .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .view_info_data .fare_td span {
            font-weight: 400;
            font-size: 10px;
            line-height: 14px;
            display: flex;
            align-items: center;
            color: #2A2D31;
            margin-right: 3px;
        }

.modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .table-data {
    max-width: 200px;
    min-width: 200px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #67707b;
    padding-right: 14px;
}

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .table-data .table-sub {
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #121213;
        margin-top: 3px;
    }

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .table-data .link {
        color: #189eff;
        text-decoration: underline;
    }

.modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .table-inner-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .table-inner-heading .plusB-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: -moz-fit-content;
        width: fit-content;
        flex-direction: row;
        cursor: pointer;
    }

        .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .details_tabs .table-inner-heading .plusB-wrapper img {
            height: 14px;
            width: 14px;
        }

.modal .generate-quote-wrapper .container .quote_card .qc_bottombar.active_qc_card {
    display: flex !important;
}

.modal .generate-quote-wrapper .container .quote_card .qc_bottombar .view-departure {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    gap: 6px;
}

    .modal .generate-quote-wrapper .container .quote_card .qc_bottombar .view-departure .return_plane {
        transform: scaleX(-1);
    }

.modal .generate-quote-wrapper .generate_btn_wrapper {
    max-width: 900px;
    margin: 0 auto;
}

    .modal .generate-quote-wrapper .generate_btn_wrapper .generate-que {
        padding: 8px 26px;
        float: right;
        margin-top: 23px;
        cursor: pointer;
        text-decoration: none !important;
        color: #FFF;
    }

.row_seperaterv2 {
    border-bottom: 1px solid #E2E7EE;
    width: 100%;
}

.qc_box_1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}

    .qc_box_1 .plane-img-div {
        display: flex;
    }

        .qc_box_1 .plane-img-div .brand-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 28px;
            width: 28px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid #e2e7ee;
        }

            .qc_box_1 .plane-img-div .brand-wrapper img {
                /*height: 12.33px;*/
                /*width: 18.6px;*/
            }

        .qc_box_1 .plane-img-div .m-left {
            margin-left: -8px;
        }

    .qc_box_1 .plane_name {
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        color: #2A2D31;
    }

.popup_head {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    display: flex;
    align-items: center;
    letter-spacing: -0.003em;
    color: #2A2D31;
    max-width: 900px;
    margin: 0 auto;
}

ul {
    padding-left: 0;
}

.search-list-container {
    position: relative;
}

    .search-list-container .search-input-container {
        margin-bottom: 10px;
    }

    .search-list-container .search-input {
        width: 100%;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    .search-list-container .no-match {
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        color: #121213;
        margin-bottom: 10px;
    }

    .search-list-container .search-list {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 160px;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .search-list-container .search-list li label {
            display: flex;
            align-items: center;
        }

        .search-list-container .search-list li.hidden {
            display: none;
        }

        .search-list-container .search-list .select-all {
            position: sticky;
            top: 0;
            z-index: 9;
            background-color: #fff;
        }

    .search-list-container .view-all {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.003em;
        outline: none;
        border: none;
        color: #189eff;
        cursor: pointer;
        background-color: transparent;
    }

.load {
    position: relative;
    background-color: #CBD5DC;
    width: 100%;
    height: 155px;
    overflow: hidden;
}

    .load::after {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background: linear-gradient(90deg, transparent, rgba(164, 164, 164, 0.35), transparent);
        animation: loading 1.5s infinite;
    }

@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}

.skeleton_wrapper {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    background-color: #eaeef2;
    /*padding: 18px;*/
    display: none;
    padding: 30px 0;
    top: 0;
}

    .skeleton_wrapper .spacer {
        height: 1px;
        width: 100%;
        background-color: #CBD5DC;
        margin-bottom: 30px;
    }

    .skeleton_wrapper .load-top-sec {
        z-index: 2;
        width: 100%;
        min-height: -moz-fit-content;
        min-height: fit-content;
        padding: 23px 0;
    }

    .skeleton_wrapper .top_card {
        border: 1px solid #CBD5DC;
        max-width: 1120px;
        margin: 0px auto 30px;
        border-radius: 4px;
        padding: 16px 26px;
    }

        .skeleton_wrapper .top_card .dropdowns {
            display: flex;
            gap: 10px;
        }

            .skeleton_wrapper .top_card .dropdowns li {
                border-radius: 17px;
                height: 34px;
                width: 154px;
            }

        .skeleton_wrapper .top_card .select {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

            .skeleton_wrapper .top_card .select .where {
                height: 54px;
                width: 750px;
                border-radius: 8px;
            }

            .skeleton_wrapper .top_card .select .search {
                height: 44px;
                width: 117px;
                border-radius: 8px;
            }

    .skeleton_wrapper .comp {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 29px;
    }

        .skeleton_wrapper .comp .left_sidebar {
            display: flex;
            flex-direction: column;
            gap: 13px;
            width: 261px;
            height: 1000px;
        }

            .skeleton_wrapper .comp .left_sidebar .top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 52px;
            }

                .skeleton_wrapper .comp .left_sidebar .top .clear_all {
                    border-radius: 17px;
                    height: 32px;
                    width: 85px;
                }

                .skeleton_wrapper .comp .left_sidebar .top .filter {
                    border-radius: 4px;
                    height: 32px;
                    width: 85px;
                }

            .skeleton_wrapper .comp .left_sidebar .bottom {
                border-radius: 7px;
                height: 100%;
                padding: 18.5px 20px;
                border: 1px solid #ddd;
            }

                .skeleton_wrapper .comp .left_sidebar .bottom .line {
                    width: 100%;
                    /* height: 10px; */
                    margin-bottom: 8px;
                    background-color: #CBD5DC;
                    border-radius: 5px;
                    /* animation: loading 1.5s infinite; */
                }

.skeleton-load-stops {
    margin-bottom: 28px;
}

.load-travel-duration {
    margin-top: 60px;
}

.skeleton_wrapper .comp .left_sidebar .bottom .line-1, .line-5, .line-11, .line-13, .line-15 {
    height: 30px;
    line-height: 22px;
    width: 50% !important;
}

.line-2, .line-3, .line-4, .line-6, .line-7, .line-8, .line-9, .line-12, .line-14 {
    margin-top: 17px;
    height: 15px;
    margin-bottom: 28px;
}

.line-10 {
    width: 15% !important;
    height: 10px;
}

.skeleton_wrapper .comp .left_sidebar .bottom .line:nth-child(even) {
    animation-duration: 1.7s;
}

.load-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5.5px;
    margin-top: 15px;
}

.line-16, .line-17, .line-18, .line-19 {
    height: 50px;
}

.skeleton_wrapper .comp .right_sidebar {
    width: 836px !important;
}

    .skeleton_wrapper .comp .right_sidebar .top_bar {
        width: 836px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 11px;
    }

        .skeleton_wrapper .comp .right_sidebar .top_bar .left_box {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

            .skeleton_wrapper .comp .right_sidebar .top_bar .left_box .title {
                width: 200px;
                height: 22px;
                border-radius: 2px;
            }

            .skeleton_wrapper .comp .right_sidebar .top_bar .left_box .sub_title {
                width: 125px;
                height: 19px;
                border-radius: 2px;
            }

        .skeleton_wrapper .comp .right_sidebar .top_bar .right_box {
            display: flex;
            gap: 8px;
        }

            .skeleton_wrapper .comp .right_sidebar .top_bar .right_box .dropdown {
                border-radius: 17px;
                height: 34px;
                width: 154px;
            }

    .skeleton_wrapper .comp .right_sidebar .card_items {
        width: 836px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

        .skeleton_wrapper .comp .right_sidebar .card_items .card_item {
            width: 100%;
            height: 195px;
            border: none;
            border-radius: 7px;
        }

            .skeleton_wrapper .comp .right_sidebar .card_items .card_item.roundtrip_card {
                height: 368px;
            }

            .skeleton_wrapper .comp .right_sidebar .card_items .card_item.multicity_card {
                height: 363px;
            }
/*Confirm booking loader*/
.load-booking-pub {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 23px;
}

    .load-booking-pub .load-booking-container-1 {
        display: flex;
        flex-direction: column;
        width: 900px;
        margin-bottom: 45px;
    }

    .load-booking-pub .load-view-booking-container {
        margin-top: 20px;
        font-family: "Manrope";
        font-style: normal;
        height: 59px;
        padding: 0 30px;
        border-radius: 7px;
        border: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.load-container1 {
    height: 25px;
    width: 250px;
    border-radius: 7px;
}

.load-container2 {
    height: 20px;
    width: 190px;
    border-radius: 7px;
}

.load-container3, .load-container4 {
    height: 20px;
    border-radius: 7px;
}

.load-booking-pub .load-Itinerary-container {
    border-radius: 7px;
    padding: 10px 30px;
    margin-top: 15px;
    border: 1px solid #ddd;
}

.load-ic_topbar {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 !important;
    margin-bottom: 15px;
}

    .load-ic_topbar div {
        height: 40px;
        width: 25%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        padding: 5px 0px;
        gap: 10px;
    }

.load_airline {
    width: 25%;
}

.load_airline, .load_airline1, .load_airline2, .load_airline3, .load_airline4, .load_airline5 {
    border-radius: 7px;
}

.load_airline3 {
    display: flex !important;
    flex-direction: row !important;
    justify-content: end !important;
}

.load_airline4 {
    width: 250px !important;
    border-radius: 7px;
}

.load-caret_switch_v1 {
    width: 37px !important;
    height: 37px !important;
    border-radius: 50%;
    background: #FAFAFA;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.load-passenger_details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 24px 32px;
    border-radius: 7px;
    margin-top: 15px;
    height: 49px;
    border: 1px solid #ddd;
}

.load-image-placeholder-icon {
    width: 25px;
    height: 25px;
    color: #aeacac;
    border-radius: 7px;
}

.load_passname {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
}

.passname {
    width: 200px;
    height: 25px;
    border-radius: 7px;
}

.load_pdb_topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.load-passname_tkt {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.load-tkt {
    height: 15px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 7px;
}
/* Flightpaxdetails loader*/
.load_pdp_topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.load_faxdetTop {
    padding: 12px 0px !important;
    border: 1px solid #CBD5DC;
    margin: 0 auto !important;
    border-radius: 0 !important;
    top: -0.1px;
    z-index: 9;
}

.load_pdb_topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.load_faxdetTopBar {
    max-width: 1120px !important;
    margin: auto !important;
}

.load_left_btns {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 200px;
    height: 50px;
}

.load_mid_btns {
    width: 500px;
    height: 50px;
    border-radius: 10px;
}

.load_right_btns {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.round {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.flightText {
    width: 150px;
    height: 40px;
    border-radius: 5px;
}

.load-Passenger-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
}

.load-passenger-sub {
    display: flex;
    flex-direction: column;
    width: 1120px;
}

.load-top-container {
    width: 100%;
    display: flex;
    padding-top: 35.9px;
    position: relative;
}

.load-back-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 20px;
    border-radius: 7px;
}

.load-timer-container {
    width: 438px;
    height: 68.1px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #FCE8DB; */
    border-radius: 11.3677px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.load-passenger-heading {
    margin-top: 35px;
    margin-bottom: 35px;
    height: 30px;
    width: 250px;
    border-radius: 7px;
}

.load-person-section {
    width: 1120px;
    /* background: #ffffff; */
    /* height: 50vh;*/
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.image-placeholder-icon {
    width: 30px;
    height: 30px;
    color: #aeacac; /* Match the skeleton loader's color */
    margin: 10px 9px;
}

.image-placeholder-icon-1, .image-placeholder-icon-2 {
    width: 28px;
    height: 28px;
    margin: 5px;
    color: #aeacac;
    border-radius: 50px;
    /* padding: 5px; */
}

.image-placeholder-icon-2 {
    width: 16px;
    height: 9px;
    margin: 5px;
    color: #aeacac;
    border-radius: 50px;
    /* padding: 5px; */
}

.load-profile-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 35px;
    /* cursor: pointer; */
}

.load-icon-name {
    display: flex;
    align-items: center;
}

.load-profile-circle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.load-profile-heading {
    width: 150px !important;
    height: 20px !important;
    border-radius: 7px;
}

.load-person-details-heading {
    margin-bottom: 20px;
    margin-top: 20px;
    height: 20px;
    width: 250px;
    border-radius: 7px;
}

.load-person-details-main {
    padding-left: 40px;
    padding-right: 40px;
}

    .load-person-details-main .load-input-1, .load-input-2, .load-input-4 {
        width: 100%;
        height: 46px;
        margin-right: 20px;
        border-radius: 8px;
    }

.load-input-3 {
    width: 500px !important;
    height: 46px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.load-input-5 {
    width: 450px;
    height: 47px;
    border-radius: 7px;
}

.load-travel-frequent {
    display: flex;
    gap: 50px;
}

.load-profile-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 35px;
}

.load-travel-frequent {
    display: flex;
    gap: 50px;
}

.load-profile-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 35px;
}

.load-contact {
    display: flex;
    gap: 20px;
}

.load-note-text {
    width: 500px;
    height: 25px;
    border-radius: 7px;
    margin: 20px 0;
}

.load-Proceed-button {
    /* background: #189eff; */
    border-radius: 8px;
    width: 108px !important;
    height: 36px;
    /* align-self: flex-end; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
}

.gds_btns_load {
    display: flex;
    width: auto;
    gap: 10px;
}

.Loader_gds {
    height: 50px;
    width: 200px;
    border-radius: 7px;
}

.loader_supplier {
    width: 200px;
    height: 50px;
    border-radius: 7px;
}

.icon_arrow_load {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.load_table_header, .load_table_body .load_table_row {
    display: flex;
    /* gap: 10px; */
}

.load_header_cell, .load_cell {
    /* height: 20px; */
    height: 60.549px !important;
    background-color: #eaeef2;
    /* border-radius: 4px; */
    position: relative;
    overflow: hidden;
}

    .load_header_cell:first-child {
        border-radius: 7px 0 0 0;
    }

    .load_header_cell:last-child {
        border-radius: 0 7px 0 0;
    }

.load_header_cell {
    flex: 1;
    background-color: #CBD5DC;
}

.load_cell {
    flex: 1;
}

.load_actions {
    display: flex;
    justify-content: end;
    border-radius: 8px;
    width: 200px !important;
    height: 46px;
    /* align-self: flex-end; */
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    border: none;
}


/*AerTicket and MyAgent Fare family loader*/
.skeleton-header {
    width: 80%;
    height: 15px;
    border-radius: 8px;
}
.skeleton-basic {
    width: 60%;
    height: 15px;
    border-radius: 8px;
    margin-top:15px;
}
.skeleton-head_strong{
    width:50%;
    height: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.skeleton-fare-body {
    flex-grow: 1;
    max-height: 250px;
/*    overflow-y: auto;*/
    padding-right: 10px;
    
}
.load-fare-option{
    border:1px solid #ddd;
}
.baggage_skel {
    width: 90%;
    margin-top: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.aer-fare-image {
    width: 20px;
    height: 20px;
    padding: 0 2px;
    border-radius: 8px;
}
.image-fare-icon {
/*    align-items: center;*/
    width:15px;
    height:15px;
}
.baggage_load_data{
    width:70%;
    height:15px;
    border-radius:8px
}
.no_results {
    height: 400px;
    width: 400px;
    margin: 0 auto;
}

    .no_results img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.cf_dropdown_v1 {
    font-family: "Work Sans", sans-serif;
    position: relative;
    width: 154px;
}

    .cf_dropdown_v1.lowest {
        width: 186px;
    }

        .cf_dropdown_v1.lowest #input-text-1 {
            padding-right: 20px;
        }

    .cf_dropdown_v1.inr {
        width: 80px;
    }

        .cf_dropdown_v1.inr #input-text-1 {
            padding-right: 20px;
        }

    .cf_dropdown_v1.baggage {
        width: 159px;
    }

        .cf_dropdown_v1.baggage #input-text-1 {
            padding-right: 20px;
        }

    .cf_dropdown_v1.min_width_180 {
        min-width: 180px;
    }

.cf_dropdown_v1--show {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0 url("/assets/images/icons/arrow-down.svg") center right 18px no-repeat;
    border-radius: 17px;
    height: 34px;
    padding: 0 8px;
    cursor: pointer;
}

    .cf_dropdown_v1--show .icon {
        min-width: 20px;
        display: inline-flex;
    }

    .cf_dropdown_v1--show .text, .auto-1, .auto {
        font-weight: 500;
        font-size: 13px;
        line-height: 15px;
        color: #2a2d31;
    }

    .cf_dropdown_v1--show .traveler_count {
        font-weight: 700;
        color: #000;
    }

.cf_dropdown_v1.cf_hover .cf_dropdown_v1_list {
    display: block;
    animation: fadeIn 0.35s linear;
}

.cf_dropdown_v1.large .cf_dropdown_v1_list {
    width: calc(100% + 150px);
    background: #ffffff;
}

.cf_dropdown_v1_list {
    background: #ffffff url("/assets/images/icons/arrow-down.svg") top 14px right 16px no-repeat;
    border: 1px solid #e8f0f5;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    position: absolute;
    width: 100%;
    left: -1px;
    top: -1px;
    display: none;
    padding-bottom: 10px;
    z-index: 9;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_dropdown_v1_list .cf_select2 {
        margin: 15px;
    }

.cf_dropdown_v1_list_each {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
    color: #939393;
    font-weight: 400;
    height: 34px;
    padding: 0 15px;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_dropdown_v1_list_each input {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        cursor: pointer;
    }

    .cf_dropdown_v1_list_each.active, .cf_dropdown_v1_list_each.open {
        color: #2a2d31;
        font-weight: 500;
    }

    .cf_dropdown_v1_list_each:last-child {
        padding-bottom: 0px;
    }

    .cf_dropdown_v1_list_each .icon {
        min-width: 20px;
        display: inline-flex;
    }

    .cf_dropdown_v1_list_each .text {
        font-size: 13px;
        line-height: 15px;
    }

.cf_dropdown_v1_list .btn_div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

    .cf_dropdown_v1_list .btn_div button {
        background: #189eff;
        border-radius: 4px;
        color: #fafafa;
        border: none;
        display: flex;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        justify-content: center;
        align-items: center;
        padding: 6px 12px;
    }

.cf_travel {
    font-family: "Work Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 15px;
}

.cf_travel--title {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #2a2d31;
}

    .cf_travel--title span {
        display: block;
        font-weight: 500;
        font-size: 10px;
        line-height: 14px;
        color: #b9bcbe;
    }

.cf_travel--count, .log_cf_travel--count {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .cf_travel--count input, .log_cf_travel--count input {
        width: 15px;
        pointer-events: none;
        font-weight: 500;
        font-size: 12px;
        line-height: 14px;
        color: #2a2d31;
        padding: 0px;
        border: none;
        box-shadow: none;
    }

    .cf_travel--count button, .log_cf_travel--count button{
        border-radius: 3px;
        min-width: 16px;
        width: 16px;
        height: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .cf_travel--count button.minus, .log_cf_travel--count button.log_minus {
            background: rgba(205, 200, 200, 0.25);
            color: #343232;
            /*pointer-events: none;*/
        }

        .cf_travel--count button.plus, log_cf_travel--count button.log_plus {
            background: rgba(24, 158, 255, 0.25);
            color: #189eff;
        }


.cf_flight_tabs_content_each {
    display: none;
}

    .cf_flight_tabs_content_each.active {
        display: block;
        animation: fadeIn 0.35s linear;
    }

    .cf_flight_tabs_content_each .oneway_calendar {
        display: flex;
        animation: fadeIn 0.35s linear;
    }

    .cf_flight_tabs_content_each .roundtrip_calendar {
        display: none !important;
    }

    .cf_flight_tabs_content_each.roundtrip_enable .oneway_calendar {
        display: none !important;
    }

    .cf_flight_tabs_content_each.roundtrip_enable .roundtrip_calendar {
        display: flex !important;
        animation: fadeIn 0.35s linear;
    }

.cf_select2 {
    font-family: "Work Sans", sans-serif;
}

.cf_select2--label {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 2px;
}

.cf_select2:last-child {
    margin-bottom: 5px;
}

.cf_select2 .multiple-select {
    cursor: pointer;
    min-width: 100% !important;
}

    .cf_select2 .multiple-select input[type=checkbox] {
        opacity: 0;
    }

        .cf_select2 .multiple-select input[type=checkbox] ~ span {
            position: relative;
            color: #939393;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
            white-space: pre-wrap;
            width: 78%;
        }

            .cf_select2 .multiple-select input[type=checkbox] ~ span::before {
                content: "";
                position: absolute;
                left: -12px;
                top: 4px;
                border: 1.3px solid #2a2d31;
                border-radius: 2px;
                width: 12px;
                height: 12px;
            }

            .cf_select2 .multiple-select input[type=checkbox] ~ span::after {
                content: "";
                position: absolute;
                left: -12px;
                top: 4px;
                width: 12px;
                height: 12px;
                background: url("/assets/images/icons/check.svg") center no-repeat;
                background-size: 8px;
                opacity: 0;
                transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
            }

        .cf_select2 .multiple-select input[type=checkbox]:checked ~ span {
            color: #2a2d31;
        }

            .cf_select2 .multiple-select input[type=checkbox]:checked ~ span::after {
                opacity: 1;
            }

.cf_select2 .placeholder {
    background: transparent;
    color: #2a2d31 !important;
    opacity: 1;
    cursor: pointer !important;
    line-height: 28px;
    font-size: 12px;
}

.cf_select2 .ms-choice {
    border: 1px solid #d2dce9;
    border-radius: 5px;
    height: 28px;
    color: #2a2d31;
    line-height: 28px;
    font-size: 12px;
}

.cf_select2 .ms-parent .icon-caret {
    background: url("/assets/images/icons/arrow-down.svg") center right no-repeat;
    width: 12px;
    height: 12px;
    border: none;
    background-size: 10px;
    top: calc(50% - 3px);
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_select2 .ms-parent .icon-caret.open {
        transform: rotateX(180deg);
    }

.ms-drop {
    z-index: 9 !important;
}

.cf_select2 .ms-drop {
    border: 1px solid #d2dce9;
    border-top: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    margin-top: -4px;
    padding-top: 6px;
    width: 100%;
}

    .cf_select2 .ms-drop ul {
        margin-right: 4px;
    }

        .cf_select2 .ms-drop ul::-webkit-scrollbar {
            width: 2px;
            border-radius: 3px;
        }

        .cf_select2 .ms-drop ul::-webkit-scrollbar-track {
            box-shadow: inset 0 0 6px #d2dce9;
            border-radius: 3px;
        }

        .cf_select2 .ms-drop ul::-webkit-scrollbar-thumb {
            background-color: #189EFF;
            border-radius: 3px;
        }

        .cf_select2 .ms-drop ul li {
            font-size: 12px;
        }

            .cf_select2 .ms-drop ul li.ms-select-all input[type=checkbox] {
                opacity: 0;
            }

                .cf_select2 .ms-drop ul li.ms-select-all input[type=checkbox] ~ span::before {
                    border: 1.3px solid #189EFF;
                }

                .cf_select2 .ms-drop ul li.ms-select-all input[type=checkbox] ~ span::after {
                    background: url("/assets/images/icons/check-blue.svg") center no-repeat;
                }

                .cf_select2 .ms-drop ul li.ms-select-all input[type=checkbox]:checked ~ span {
                    color: #189EFF;
                }

                    .cf_select2 .ms-drop ul li.ms-select-all input[type=checkbox]:checked ~ span::after {
                        opacity: 1;
                    }

            .cf_select2 .ms-drop ul li.ms-select-all label .cf_only {
                display: none;
            }

            .cf_select2 .ms-drop ul li label {
                display: flex;
                align-items: center;
                padding-left: 0;
            }

                .cf_select2 .ms-drop ul li label .cf_only {
                    position: absolute;
                    right: 0px;
                    top: 0px;
                    color: #189EFF;
                    opacity: 0;
                    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                }

                .cf_select2 .ms-drop ul li label:hover .cf_only {
                    opacity: 1;
                }

                .cf_select2 .ms-drop ul li label input {
                    margin-top: 0px;
                    margin-left: 0;
                    position: relative;
                }

                .cf_select2 .ms-drop ul li label span {
                    padding-left: 6px;
                }

.cf_select2 .ms-search {
    padding: 0 8px;
    margin-bottom: 8px;
}

.cf_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 10px 10px;
    margin-top: 20px;
}

.cf_btns--reset {
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    height: 28px;
    border: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #189EFF;
    padding: 0 30px;
    width: 76px;
    border: #189eff 1px solid;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_btns--reset:hover {
        background: #189EFF;
        color: #FAFAFA;
    }

.cf_btns--done {
    background: #189EFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    height: 28px;
    border: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #FAFAFA;
    padding: 0 30px;
    width: 76px;
    border: #189eff 1px solid;
    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .cf_btns--done:hover {
        background: #FAFAFA;
        color: #189EFF;
    }

.ms-drop ul > li.hide-radio.selected {
    background: #189EFF;
}

.nav-pills .nav-link {
    background: white;
    border: 0;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #67707b;
    width: 135.76px;
    height: 34px;
}

    .nav-pills .nav-link.mini {
        border-radius: 50px 0 0 50px;
    }

    .nav-pills .nav-link.detail {
        border-radius: 0 50px 50px 0;
    }

    .nav-pills .nav-link.active {
        background: #123d6c;
        color: white !important;
    }

.fade:not(.show) {
    display: none !important;
}

:root {
    --primary: #2196f3;
    --primary-md: #42a5f5;
    --primary-lt: #64b5f6;
    --primary-lightest: #e3f2fd;
    --secondary: #ff6f00;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-700: #616161;
    --shadow-2dp: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    --shadow-4dp: 0 4px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    --shadow-8dp: 0 8px 10px 0 rgba(0, 0, 0, 0.14), 0 3px 12px 2px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.single-calender {
    margin-bottom: 20px;
    /* Date Styling */
    /* DO NOT CHANGE THE ORDER */
}

    .single-calender .inputs {
        height: 200px;
        width: 500px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .single-calender .inputs > * {
            margin-bottom: 48px;
        }

        .single-calender .inputs input {
            font-family: "Nunito";
            font-size: 90%;
        }

    .single-calender .fields {
        display: flex;
    }

    .single-calender .input-wrapper {
        display: inline-block;
        position: relative;
    }

        .single-calender .input-wrapper label {
            position: absolute;
            display: block;
            font-family: "Manrope";
            font-style: normal;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
            left: 10px;
            top: -6px;
            background-color: #ffffff;
            padding-left: 5px;
            padding-right: 5px;
        }

        .single-calender .input-wrapper input {
            display: inline-block;
            border: none;
            border-radius: 8px;
            width: 200px;
            height: 49px;
            margin-right: 20px;
            padding-left: 16px;
            border: 1px solid #189eff;
        }

            .single-calender .input-wrapper input::-moz-placeholder {
                font-family: "Manrope";
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                color: #292c31;
            }

            .single-calender .input-wrapper input::placeholder {
                font-family: "Manrope";
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                color: #292c31;
            }

    .single-calender .date-field {
        cursor: pointer;
    }

    .single-calender .calendar-widget-el {
        position: relative;
    }

        .single-calender .calendar-widget-el:focus {
            outline: none;
        }

    .single-calender .calendar-wrapper-el {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-top: 8px;
        z-index: 3;
    }

    .single-calender .dual-calendar-el {
        display: flex;
        border-radius: 8px;
        padding: 16px;
        box-shadow: var(--shadow-2dp);
        background-color: white;
    }

    .single-calender .calendar-el {
        width: auto;
    }

    .single-calender .calendar-header {
        position: relative;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .single-calender .month-text {
        font-family: "Nunito";
        color: var(--gray-700);
    }

    .single-calender .prev-btn,
    .single-calender .next-btn {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50px;
        box-shadow: var(--shadow-2dp);
        /* background-color: var(--primary); */
        color: white;
        transition: background-color 0.2s, box-shadow 0.2s;
    }

        .single-calender .prev-btn img,
        .single-calender .next-btn img {
            height: 18px;
            width: 18px;
        }

        .single-calender .prev-btn:hover,
        .single-calender .next-btn:hover {
            box-shadow: var(--shadow-4dp);
        }

        .single-calender .prev-btn:active,
        .single-calender .next-btn:active {
            box-shadow: var(--shadow-8dp);
        }

        .single-calender .prev-btn *,
        .single-calender .next-btn * {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

    .single-calender .prev-btn {
        left: 0;
    }

    .single-calender .next-btn {
        right: 0;
    }

    .single-calender .date-table-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 8px;
    }

    .single-calender .day {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-weight: 700;
        color: var(--gray-700);
    }

    .single-calender .date-table-row {
        display: flex;
        height: 40px;
        justify-content: space-between;
    }

    .single-calender .date {
        cursor: pointer;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40px;
        height: 40px;
        transition: color 0.2s;
    }

        .single-calender .date.today {
            color: var(--primary);
        }

        .single-calender .date.selected {
            color: white;
        }

        .single-calender .date.disabled {
            color: var(--gray-300);
        }

        .single-calender .date.empty {
            cursor: default;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        .single-calender .date * {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        .single-calender .date.disabled * {
            cursor: not-allowed;
        }

        .single-calender .date .help-text {
            position: absolute;
            top: 0;
            display: none;
            align-items: flex-start;
            justify-content: center;
            width: 100%;
            height: 15px;
            font-size: 10px;
            z-index: 1;
        }

        .single-calender .date .date-text {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            font-size: 90%;
            z-index: 1;
        }

        .single-calender .date .date-ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 40px;
            height: 100%;
            background-color: transparent;
            will-change: transform;
            transition: transform 0.18s cubic-bezier(0, 0.75, 0.5, 1), background-color 0.2s;
        }

            .single-calender .date .date-ripple.no-transition {
                transition: none;
            }

        .single-calender .date.hover .date-ripple {
            background-color: var(--gray-300);
            transform: translate(-50%, -50%) scale(1);
        }

        .single-calender .date.in-range .date-ripple {
            background-color: var(--primary-lightest);
            transform: translate(-50%, -50%) scale(1);
        }

        .single-calender .date.selected .date-ripple {
            background-color: var(--primary);
            transform: translate(-50%, -50%) scale(1);
        }

.top-sec {
    width: 100%;
    z-index: 2;
    background: #123d6c;
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding: 23px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .top-sec .top-sub {
        width: 1120px;
        display: flex;
        font-family: "Manrope";
        font-style: normal;
    }

        .top-sec .top-sub .Flight-Details {
            background-color: #ffffff;
            border-radius: 7px;
            padding: 0;
            width: 75%;
        }

        .top-sec .top-sub .flight-heading {
            font-weight: 700;
            font-size: 22px;
            line-height: 30px;
            letter-spacing: -0.003em;
            color: #121213;
        }

        .top-sec .top-sub .Flight-Details .detalis-list {
            display: flex;
            margin-top: 15px;
            justify-content: space-between;
        }

        .top-sec .top-sub .Flight-Details .box-1 {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-direction: column;
            width: 25%;
        }

            .top-sec .top-sub .Flight-Details .box-1 .plane-img-div {
                display: flex;
            }

                .top-sec .top-sub .Flight-Details .box-1 .plane-img-div .brand-wrapper {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 28px;
                    width: 28px;
                    border-radius: 50%;
                    background-color: #f3f3f3;
                }

                    .top-sec .top-sub .Flight-Details .box-1 .plane-img-div .brand-wrapper img {
                        /*height: 12.33px;*/
                        /*width: 18.6px;*/
                    }

                .top-sec .top-sub .Flight-Details .box-1 .plane-img-div .m-left {
                    margin-left: -8px;
                }

            .top-sec .top-sub .Flight-Details .box-1 .p1 {
                font-family: "Manrope";
                font-style: normal;
                font-weight: 500;
                font-size: 12px;
                line-height: 16px;
                letter-spacing: -0.003em;
                color: #2a2d31;
                margin-top: 7px;
            }

            .top-sec .top-sub .Flight-Details .box-1 .p2 {
                font-family: "Manrope";
                font-style: normal;
                font-weight: 500;
                font-size: 10px;
                line-height: 14px;
                letter-spacing: -0.003em;
                color: #67707b;
                margin-top: 3px;
            }

        .top-sec .top-sub .Flight-Details .box-2 {
            display: flex;
            justify-content: center;
            align-items: start;
            gap: 7.5px;
            flex-direction: column;
            width: 15%;
        }

@media screen and (max-width: 950px) {
    .top-sec .top-sub .Flight-Details .box-2 {
        width: 20%;
    }
}

.user-initials {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
}

.top-sec .top-sub .Flight-Details .box-2 .p3 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #2a2d31;
}

.top-sec .top-sub .Flight-Details .box-2 .p2 span {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #189eff;
    position: relative;
    top: -9px;
    right: 2px;
}

.top-sec .top-sub .Flight-Details .box-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
}

    .top-sec .top-sub .Flight-Details .box-3 .eye {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop .journey-city {
                pointer-events: auto;
                cursor: pointer;
            }

                .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop .journey-city.tech-stop {
                    border-color: #67707b;
                }

            .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop:hover .journey-tooltip {
                visibility: visible;
                opacity: 1;
            }

            .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop .journey-tooltip {
                visibility: hidden;
                opacity: 0;
                position: absolute;
                bottom: 16px;
                left: 50%;
                transform: translateX(-50%);
                transition: visibility 0s, opacity 0.5s ease-in-out;
            }

                .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop .journey-tooltip::before {
                    content: "";
                    position: absolute;
                    bottom: -3px;
                    left: 50%;
                    transform: translateX(-50%) rotate(45deg);
                    height: 10px;
                    width: 10px;
                    background-color: #f1f5f9;
                    z-index: 1;
                }

                .top-sec .top-sub .Flight-Details .box-3 .eye .journey-stop .journey-tooltip .journey-tooltip-box {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: #f1f5f9;
                    border-radius: 8px;
                    height: 22px;
                    width: 100px;
                    font-weight: 400;
                    font-size: 10px;
                    line-height: 14px;
                    color: #67707b;
                    position: relative;
                    z-index: 100;
                }

        .top-sec .top-sub .Flight-Details .box-3 .eye p {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #2a2d31;
            margin-left: 5px;
        }

        .top-sec .top-sub .Flight-Details .box-3 .eye img {
            cursor: pointer;
        }

    .top-sec .top-sub .Flight-Details .box-3 .group {
        background-color: #d2dce9;
        width: 84px;
        margin: 20px auto;
        height: 2px;
        border-radius: 5px;
        box-shadow: inset 0 1px 2px #d2dce9;
        position: relative;
    }

        .top-sec .top-sub .Flight-Details .box-3 .group .range-input input {
            -webkit-appearance: none;
            position: absolute;
            width: 100%;
            height: 3px;
            margin: 0;
            background-color: transparent;
            pointer-events: none;
        }

            .top-sec .top-sub .Flight-Details .box-3 .group .range-input input::-webkit-slider-thumb {
                -webkit-appearance: none;
                width: 10px;
                height: 10px;
                border: 3px solid #189eff;
                background-color: #ffffff;
                border-radius: 100%;
                pointer-events: auto;
            }

        .top-sec .top-sub .Flight-Details .box-3 .group .progress {
            position: absolute;
            height: 100%;
            left: 0;
            right: 0;
            background-color: #d2dce9;
            border-radius: 1px;
        }

    .top-sec .top-sub .Flight-Details .box-3 .refund {
        background: #f5f5f5;
        border-radius: 27px;
        padding: 4px 12px;
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        display: flex;
        align-items: center;
        color: #121213;
    }

.top-sec .top-sub .Flight-Details .box-2.second {
    width: 35%;
    padding-left: 70px;
}

@media screen and (max-width: 950px) {
    .top-sec .top-sub .Flight-Details .box-2.second {
        padding-left: 0px;
        width: 25%;
    }
}

.top-sec .top-sub .Fare-Details {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 7px;
    width: 25%;
    /*border-left: 1px solid #123d6c;*/
}

.mark_fare {
    display: block;
    width: 100%;
}

.markup_label {
    font-size: 16px;
    font-weight: 500;
}

.markup_table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Manrope"
}

    .markup_table td {
        padding: 10px;
        /*font-size: 20px;*/
        color: #121213;
    }

.markup_total {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.003em;
    color: #121213;
}

.markup_table td:nth-child(2) {
    width: 400px;
}

.markup_table td:nth-child(1) {
    width: 150px;
    text-align: left;
}

.horizontal_markup {
    border-top: 1px dotted #ddd;
    padding: 0 !important;
}

.markup_haeading {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
    margin-top: 20px
}

.top-sec .top-sub .Fare-Details .Fare-heading {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.003em;
    color: #121213;
}

.top-sec .top-sub .Fare-Details .box-4, .mark_fare .Fare-Details .box-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

    .top-sec .top-sub .Fare-Details .box-4 .price, .price, .mark_fare .Fare-Details .box-4 .price {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
    }

    .top-sec .top-sub .Fare-Details .box-4 .view-details {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.003em;
        text-decoration-line: underline;
        color: #189eff;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

        .top-sec .top-sub .Fare-Details .box-4 .view-details img {
            margin-left: 3px;
        }

.top-sec .journey-line {
    font-family: "Manrope";
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 2px;
    width: 86px;
    margin: 12px auto;
    background-color: #d2dce9;
    border-radius: 10px;
}

    .top-sec .journey-line .journey-stop {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .top-sec .journey-line .journey-stop .journey-city {
            width: 10px;
            height: 10px;
            border: 3px solid #189eff;
            background-color: #ffffff;
            border-radius: 100%;
            pointer-events: auto;
            cursor: pointer;
        }

            .top-sec .journey-line .journey-stop .journey-city.tech-stop {
                border-color: #67707b;
            }

        .top-sec .journey-line .journey-stop:hover .journey-tooltip {
            visibility: visible;
            opacity: 1;
        }

        .top-sec .journey-line .journey-stop .journey-tooltip {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            transition: visibility 0s, opacity 0.5s ease-in-out;
        }

            .top-sec .journey-line .journey-stop .journey-tooltip::before {
                content: "";
                position: absolute;
                bottom: -3px;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
                height: 10px;
                width: 10px;
                background-color: #f1f5f9;
                z-index: 1;
            }

            .top-sec .journey-line .journey-stop .journey-tooltip .journey-tooltip-box {
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f1f5f9;
                border-radius: 8px;
                height: 22px;
                width: 100px;
                font-weight: 400;
                font-size: 10px;
                line-height: 14px;
                color: #67707b;
                position: relative;
                z-index: 100;
            }

.heading-16 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
}

.heading-14 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #121213;
}

.heading-12 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #7d8b9c;
}

.heading-16-w {
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
}

.heading-12-w {
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #7d8b9c;
}

.heading-8 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 8px;
    line-height: 9px;
    text-align: center;
    color: #2a2d31;
}

.input-16 {
    height: 16px !important;
    width: 16px !important;
    cursor: pointer;
}

.label-m-12 {
    margin-left: 11.64px;
    cursor: pointer;
}

.Passenger-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eaeef2;
}

    .Passenger-section .passenger-sub {
        display: flex;
        flex-direction: column;
        width: 1120px;
    }

    .Passenger-section .top_container {
        width: 100%;
        display: flex;
        padding-top: 35.9px;
        position: relative;
    }

        .Passenger-section .top_container .back-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 10%;
        }

            .Passenger-section .top_container .back-container .back-tag {
                color: #189eff;
                font-family: "Manrope";
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                text-decoration-line: underline;
                margin-left: 15px;
            }

        .Passenger-section .top_container .timer_container {
            max-width: 80%;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #FCE8DB;
            border-radius: 11.3677px;
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            flex-direction: column;
            padding: 20px;
            white-space: nowrap;
        }
        .Passenger-section .top_container .timer_container .timer_top{
            display:flex;
            align-items:center;

        }
            .Passenger-section .top_container .timer_container .timer_text, .timer_top {
                font-weight: 500;
                font-size: 14px;
                line-height: 22px;
                text-align: center;
                letter-spacing: -0.003em;
                color: #DD1F03;
                margin-left: 10px;
            }

    .Passenger-section .passenger-heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #000000;
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .Passenger-section .profile-circle {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f1f5f9;
    }

    .Passenger-section .profile-heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.003em;
        color: #121213;
        margin-left: 15px;
    }

    .Passenger-section .person-information-container {
        display: flex;
        background-color: #ffffff;
        padding: 20px 35px;
        justify-content: space-between;
        margin-top: 40px;
    }

    .Passenger-section .Proceed-button, .pnr_btn {
        background: #189eff;
        border-radius: 8px;
        width: 108px;
        height: 36px;
        align-self: flex-end;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
        cursor: pointer;
    }

        .Passenger-section .Proceed-button span, .pnr_btn span {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            color: #ffffff;
        }

    .Passenger-section .Modal-heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #121213;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .Passenger-section .Itinerary-table {
        border-collapse: collapse;
        border: 1px solid #e2e7ee;
        border-radius: 7px;
        background-color: white;
        max-width: 1027px;
        margin-bottom: 10px;
    }

        .Passenger-section .Itinerary-table .table1 {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 30px;
            background: #ffffff;
            border: 1px solid #e2e7ee;
            border-radius: 7px;
            padding: 47.49px 36.34px 38.87px 35.88px;
        }

        .Passenger-section .Itinerary-table .black-text {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #2a2d31;
            position: relative;
        }

        .Passenger-section .Itinerary-table .day-text {
            font-weight: 500;
            font-size: 10px;
            line-height: 14px;
            letter-spacing: -0.003em;
            color: #189eff;
            position: absolute;
            top: 10px;
            right: 5px;
        }

        .Passenger-section .Itinerary-table .gry-color {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
        }

        .Passenger-section .Itinerary-table .time-text {
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #2a2d31;
            margin-left: 5px;
        }

        .Passenger-section .Itinerary-table .circle-img {
            background: #f3f3f3;
            height: 16px;
            width: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        .Passenger-section .Itinerary-table .first-td {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #515050;
        }

        .Passenger-section .Itinerary-table .sub-text {
            font-weight: 400;
            font-size: 10px;
            line-height: 14px;
            color: #67707b;
        }

    .Passenger-section .person-table-container {
        border-collapse: collapse;
        width: 100%;
        border: 1px solid #e2e7ee;
        margin-top: 20px;
        font-family: "Manrope";
        font-style: normal;
        overflow: hidden;
        background: #FFFFFF;
        border-radius: 7px;
        padding: 28px;
        max-width: 1027px;
        margin: 10px auto;
    }

        .Passenger-section .person-table-container .Passenger-table {
            border: 1px solid #E2E7EE;
            border-radius: 7px;
            padding: 20px 44px 44px 44px;
            width: 100%;
            border-collapse: separate;
            margin-bottom: 20px;
        }

            .Passenger-section .person-table-container .Passenger-table tbody {
                width: 836px;
                display: flex !important;
                flex-direction: column !important;
            }

@media screen and (max-width: 1120px) {
    .Passenger-section .person-table-container .Passenger-table tbody {
        width: 100%;
        padding: 12px 22px 40px 22px;
    }
}

@media screen and (max-width: 1120px) {
    .Passenger-section .person-table-container .Passenger-table {
        width: 100%;
    }
}

.Passenger-section .person-table-container .passenger-details-head {
    background: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #121213;
    height: 50px;
    width: 1080px;
    display: flex;
    align-items: center;
    padding-left: 28.93px;
    gap: 12px;
    margin-bottom: 30px;
}

    .Passenger-section .person-table-container .passenger-details-head img {
        width: 28px;
        height: 28px;
    }

    .Passenger-section .person-table-container .passenger-details-head .edit_details_btn {
        width: 116px;
        height: 32px;
        background: #F1F5F9;
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #000000;
        margin-left: 11px;
        cursor: pointer;
    }

        .Passenger-section .person-table-container .passenger-details-head .edit_details_btn img {
            width: 12px;
            height: 12px;
        }

.Passenger-section .person-table-container tr {
    margin-top: 22px;
}

.Passenger-section .person-table-container .table-data {
    max-width: 200px;
    min-width: 190px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #67707b;
    padding-right: 14px;
}

    .Passenger-section .person-table-container .table-data .table-sub {
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #121213;
    }

    .Passenger-section .person-table-container .table-data .link {
        color: #189eff;
        text-decoration: underline;
    }

.Passenger-section .person-table-container .table-inner-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

    .Passenger-section .person-table-container .table-inner-heading .plusB-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: -moz-fit-content;
        width: fit-content;
        flex-direction: row;
        cursor: pointer;
    }

        .Passenger-section .person-table-container .table-inner-heading .plusB-wrapper img {
            height: 14px;
            width: 14px;
        }

.Passenger-section .Passenger-table-container {
    border-collapse: collapse;
    margin-top: 25px;
    border: 1px solid #e2e7ee;
    border-radius: 7px;
    background-color: white;
}

.Passenger-section .confirm-button {
    margin-left: 20px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #ffffff;
    border: 1px solid #189eff;
    padding: 10px 20px;
    background: #189eff;
    border-radius: 8px;
    width: 220px;
    text-decoration: none !important;
    text-align: center;
}

.Passenger-section .modal-button {
    display: flex;
    justify-content: flex-end;
    max-width: 1027px;
    margin: 35px auto 0;
    padding: 0 10px;
}

    .Passenger-section .modal-button a {
        text-decoration: none;
        color: #FFF;
    }

.Passenger-section .passenger-cards .person-section {
    background: #ffffff;
    border-radius: 7px;
    margin-bottom: 10px;
}

    .Passenger-section .passenger-cards .person-section.active-passenger {
        display: block !important;
    }

    .Passenger-section .passenger-cards .person-section .passenger_form {
        display: none;
    }

    .Passenger-section .passenger-cards .person-section .small_note {
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: #67707b;
        /*padding: 0 40px;*/
        /*padding-bottom: 40px;*/
        padding-bottom: 10px;
    }

        .Passenger-section .passenger-cards .person-section .small_note span {
            font-weight: 600;
        }

    .Passenger-section .passenger-cards .person-section .profile-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f1f5f9;
        padding: 20px 35px;
        cursor: pointer;
    }

    .Passenger-section .passenger-cards .person-section .person-details-main {
        padding-left: 40px;
    }

        .Passenger-section .passenger-cards .person-section .person-details-main .input-l {
            width: 420px !important;
        }

        .Passenger-section .passenger-cards .person-section .person-details-main .input-l-2,
        .CFR_input .input-l-2 {
            width: 37% !important;
        }

        .Passenger-section .passenger-cards .person-section .person-details-main .input-group, .person-details-main .input-group,
        .CFR_input .input-group {
            box-sizing: border-box;
            position: relative;
            height: 49px;
            width: 200px;
            border-radius: 8px;
            border: 1px solid #d2dce9;
            margin-bottom: 30px;
            margin-right: 20px;
        }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group.title {
                width: 8%;
            }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group.title .ms-choice .icon-caret {
                    margin-bottom: 5px;
                }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .select-el,
            .CFR_input .input-group .select-el {
                display: flex;
                align-items: center;
                border-radius: 8px;
                height: 49px;
                width: 100% !important;
                border: none;
                padding-left:5px;
            }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .select-el .ms-choice {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    height: 50%;
                    border: none;
                    padding-left: 10px;
                    padding-right: 20px;
                    margin-left: 2px;
                }

                    .Passenger-section .passenger-cards .person-section .person-details-main .input-group .select-el .ms-choice span {
                        position: static;
                        font-family: "Manrope";
                        font-style: normal;
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 19px;
                        color: #292c31;
                    }

                    .Passenger-section .passenger-cards .person-section .person-details-main .input-group .select-el .ms-choice > div.icon-caret {
                        margin-top: 0px;
                        position: static;
                        border: solid black;
                        border-width: 0 2px 2px 0;
                        display: inline-block;
                        padding: 3px;
                        transform: rotate(45deg);
                        -webkit-transform: rotate(45deg);
                    }

                        .Passenger-section .passenger-cards .person-section .person-details-main .input-group .select-el .ms-choice > div.icon-caret.open {
                            transform: rotate(-135deg);
                            -webkit-transform: rotate(-135deg);
                            margin-top: 10px;
                        }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .error {
                position: absolute;
                font-size: 10px;
                line-height: 10px;
                color: #dd1f03;
                bottom: -16px;
                left: 0;
                margin-left: 0px !important;
                background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
                background-size: 10px;
                padding-left: 14px;
            }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el,
            .CFR_input .input-group .input-el {
                border: none;
                border-radius: 8px !important;
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                color: #292C31;
                height: 46px;
                z-index: 1;
                width: 100%;
            }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el.error,
                .CFR_input .input-group .input-el.error {
                    position: relative;
                    bottom: 0px;
                    font-size: 14px;
                    line-height: 19px;
                    background: transparent;
                    /*padding-left: 44px;*/
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el::-moz-placeholder,
                .CFR_input .input-group .input-el::-moz-placeholder {
                    opacity: 0;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el::placeholder,
                .CFR_input .input-group .input-el::placeholder {
                    opacity: 0;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:focus,
                .CFR_input .input-group .input-el:focus {
                    box-shadow: none;
                    background: transparent;
                }

                    .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:focus ~ .input-border,
                    .CFR_input .input-group .input-el:focus ~ .input-border {
                        opacity: 1;
                    }

                    .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:focus ~ .input-label,
                    .CFR_input .input-group .input-el:focus ~ .input-label {
                        top: -10px;
                        font-size: 12px;
                    }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
                    opacity: 1;
                    pointer-events: none;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:not(:placeholder-shown) ~ .input-border,
                .CFR_input .input-group .input-el:not(:placeholder-shown) ~ .input-border {
                    opacity: 1;
                    pointer-events: none;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label,
                .CFR_input .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
                    top: -10px;
                    top: -10px;
                    font-size: 12px;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el:not(:placeholder-shown) ~ .input-label,
                .CFR_input .input-group .input-el:not(:placeholder-shown) ~ .input-label {
                    top: -10px;
                    font-size: 12px;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el.error ~ .input-border,
                .CFR_input .input-group .input-el.error ~ .input-border {
                    border: 1px solid #DD1F03;
                    opacity: 1;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el.error ~ .input-group-text svg path, .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el.error ~ .input-group-text svg rect, .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-el.error ~ .input-group-text svg circle {
                    stroke: #DD1F03;
                }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-border,
            .CFR_input .input-group .input-border {
                border: #189EFF 1px solid;
                position: absolute;
                width: calc(100% + 2px);
                height: calc(100% + 2px);
                left: 0;
                top: -1px;
                border-radius: 8px !important;
                opacity: 0;
                transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
            }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-group-text,
            .CFR_input .input-group .input-group-text {
                background: transparent;
                border: none;
                padding: 12px;
                min-width: 44px;
                height: 48px;
                display: inline-flex;
                justify-content: center;
                position: absolute;
                left: 0;
                z-index: 2;
            }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-label,
            .CFR_input .input-group .input-label {
                position: absolute;
                top: 14px;
                left: 10px;
                font-weight: 400;
                font-size: 14px;
                line-height: 19px;
                background: #fff;
                padding: 0 8px;
                color: #67707B;
                pointer-events: none;
                z-index: 1;
                transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
            }

            .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-eye {
                position: absolute;
                right: 0px;
                top: 0;
                height: 48px;
                width: 48px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                z-index: 9;
                cursor: pointer;
            }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-eye svg path {
                    fill: #c4c4c4;
                    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-eye svg circle {
                    stroke: #c4c4c4;
                    transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-eye.active svg path {
                    fill: #189EFF;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-eye.active svg circle {
                    stroke: #189EFF;
                }

                .Passenger-section .passenger-cards .person-section .person-details-main .input-group .input-eye::before {
                    content: "";
                    position: absolute;
                    width: 1px;
                    height: calc(100% - 20px);
                    top: 10px;
                    left: 0;
                    background: #d2dce9;
                }

        .Passenger-section .passenger-cards .person-section .person-details-main .person-details-heading {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 600;
            font-size: 20px;
            line-height: 27px;
            margin-bottom: 20px;
            margin-top: 20px;
        }

        .Passenger-section .passenger-cards .person-section .person-details-main .flyer_detail_sec {
            display: flex;
            flex-direction: column;
        }

            .Passenger-section .passenger-cards .person-section .person-details-main .flyer_detail_sec .ssr-cards {
                padding-top: 10px;
                height: -moz-fit-content;
                height: fit-content;
            }

.search_caret_only {
    z-index: 9 !important;
    background: url(/assets/images/icons/arrow-down.svg) center right 18px no-repeat;
}


.parsley-errors-list {
    display: none !important;
}

.tags_input {
    width: 100%;
    border: 1px solid #d2dce9;
    border-radius: 5px;
    height: 28px;
    color: #2a2d31;
    line-height: 28px;
    font-size: 12px;
}

.modal {
    --bs-modal-width: 95% !important;
}

    .modal .modal-content {
        border: none;
    }

    .modal .modal-body {
        /*overflow: hidden;*/
        overflow-y: scroll !important;
    }
        /* Custom scrollbar styles */
        .modal .modal-body::-webkit-scrollbar {
            width: 10px;
        }

        .modal .modal-body::-webkit-scrollbar-thumb {
            background-color: #979696;
            border-radius: 5px;
        }

            .modal .modal-body::-webkit-scrollbar-thumb:hover {
                background-color: #979696;
            }

        .modal .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 5px;
        }

    .modal .proceed-popup-wrapper {
        position: absolute;
        z-index: 50;
        top: 0px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1120px;
        max-width: 90%;
        height: 650px;
        background: #f1f5f9;
        border: 1px solid rgba(42, 65, 87, 0.24);
        border-radius: 8px;
        padding: 40px 20px !important;
        overflow: auto;
    }

        .modal .proceed-popup-wrapper .proceed-popup-wrapper::-webkit-scrollbar {
            width: 0;
            height: 0;
        }

        .modal .proceed-popup-wrapper .btn-close {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: absolute;
            top: 10px;
            right: 10px;
        }

            .modal .proceed-popup-wrapper .btn-close img {
                height: 20px;
                width: 20px;
                margin-right: 16px;
            }

        .modal .proceed-popup-wrapper .container_p {
            overflow: auto;
            height: fit-content;
            padding: 0 2px;
        }

@media screen and (max-width: 1000px) {
    .top-sec .top-sub {
        width: 95%;
        display: flex;
        font-family: "Manrope";
        font-style: normal;
    }

    .Passenger-section .passenger-sub {
        width: 95%;
    }
}

@media screen and (min-width: 851px) and (max-width: 1120px) {
    .Passenger-section .person-section .person-details-main .input-l {
        width: 420px !important;
    }
}

@media screen and (max-width: 850px) {
    .Passenger-section .person-section .person-details-main .input-l {
        width: 200px !important;
    }

    .Passenger-section .Itinerary-table td {
        width: 50px;
        padding-left: 5px;
    }

    .Passenger-section .Itinerary-table .black-text {
        font-size: 10px;
    }

    .Passenger-section .Itinerary-table .gry-color {
        font-size: 10px;
    }

    .Passenger-section .Itinerary-table .time-text {
        font-size: 10px;
    }

    .top-sec .top-sub .flight-heading {
        font-size: 15px;
    }

    .top-sec .top-sub .Fare-Details .Fare-heading {
        font-size: 15px;
    }

    .top-sec .top-sub .Flight-Details .box-2 .p2 span {
        top: -37px;
        right: -64px;
    }

    .top-sec .top-sub .Fare-Details .box-4 .view-details {
        font-size: 12px;
    }

    .top-sec .top-sub .Flight-Details .box-3 .refund {
        font-size: 8px;
    }
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.status_wrap {
    height: 28px;
    border-radius: 48px;
    padding: 7px 19px;
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
}

    .status_wrap.s_quote {
        background: #FDF3F1;
        color: #EC7652;
    }

    .status_wrap.s_bookingExpired {
        background: #FCE8DB;
        color: #71192F;
    }

    .status_wrap.s_cancelled {
        background: #F7F7F7;
        color: #33333C;
    }

    .status_wrap.s_ticketed {
        background: #84D65A;
        color: #2B641E;
    }

    .status_wrap.s_booked {
        background: #D7F1FD;
        color: #0C2A75;
    }

    .status_wrap.s_ticketInProcess {
        background: #EFFBFD;
        color: #3E8D9E;
    }
    .status_wrap.default {
        background: #FFF;
        color: #000;
        border: 1px solid #ddd;
    }

.status_updating {
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    margin-left: 5px;
    color: #000;
}
.web_check_sec {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 19px;
    flex-direction: column;
    padding: 22px 0 42.36px;
}

    .web_check_sec .wc_title {
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.003em;
        color: #121213;
        width: 100%;
    }

    .web_check_sec .wc_desc_container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 8.67px;
    }

        .web_check_sec .wc_desc_container .img_wrapper {
            height: 32px;
            min-width: 32px;
        }

        .web_check_sec .wc_desc_container .wc_desc {
            font-weight: 400;
            font-size: 12px;
            line-height: 20px;
            letter-spacing: -0.003em;
            color: #2a2d31;
        }

.divider {
    width: 90%;
    height: 2px;
    color: #ff1e05;
}

p {
    margin: 0px;
    padding: 0px;
}

.row_seperater {
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
}

.show_it {
    display: block;
}

.hide_it {
    display: none;
}

.btn_comp {
    width: 146px;
    height: 36px;
    background: #189eff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border: none;
}

    .btn_comp a {
        text-decoration: none;
        color: #FFF;
    }

    .btn_comp.outline_blue {
        border: 1px solid #189eff;
        background: transparent;
        color: #189eff;
    }

    .btn_comp.outline_black {
        border: 1px solid #E2E7EE;
        background: transparent;
        color: #2A2D31;
        display: flex;
        gap: 14px;
    }

    .btn_comp.outline_red {
        border: 1px solid #DD1F03;
        background: transparent;
        color: #DD1F03;
    }

.status_btn {
    width: 146px;
    height: 36px;
    background: #189eff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    display: none;
    border: none;
}

    .status_btn.outline {
        border: 1px solid #189eff;
        background: transparent;
        color: #189eff;
    }

    .status_btn.cancel_btn {
        background: #dd1f03;
    }

.status_btn_v2, .view-search {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 26px;
    height: 36px;
    background: #189eff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border: none;
}

@media screen and (max-width: 900px) {
    .status_btn_v2, .view-search {
        padding: 0 20px;
    }
}

.status_btn_v2.outline_blue {
    border: 1px solid #189eff;
    background: transparent;
    color: #189eff;
}

.status_btn_v2.outline_black {
    border: 1px solid #E2E7EE;
    background: transparent;
    color: #2A2D31;
    display: flex;
    gap: 14px;
}

.status_btn_v2.outline_red {
    border: 1px solid #DD1F03;
    background: transparent;
    color: #DD1F03;
}

.status-container {
    background: #ffffff;
    border: 1px solid #e2e7ee;
    border-radius: 7px;
    height: 58px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

    .status-container .active {
        display: block !important;
    }

    .status-container .left_box {
        width: 55%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 70px;
    }

        .status-container .left_box .status-text {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
        }

        .status-container .left_box .Booked-text {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #121213;
        }

        .status-container .left_box .time-text {
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #dd1f03;
        }

        .status-container .left_box .booking_time {
            display: none;
        }

    .status-container .right_box {
        width: 45%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 25px;
    }

.status-container_v2 {
    background: #ffffff;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .status-container_v2 {
        max-width: 738px;
    }
}

.status-container_v2 .active {
    display: flex !important;
}

.status-container_v2 .left_box_v2 {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .status-container_v2 .left_box_v2 .status_details_v2 {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
    }

.status-container_v2 .right_box_v2 {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

    .status-container_v2 .right_box_v2 a {
        text-decoration: none;
    }

.details_bar {
    width: 100%;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1;
}

.person-container {
    background: #ffffff;
    border-radius: 7px;
    padding: 30px 30px;
    margin-top: 40px;
}

    .person-container .person-table-container {
        border-collapse: collapse;
        width: 100%;
        border: 1px solid #e2e7ee;
        border-radius: 7px;
        margin-top: 20px;
        font-family: "Manrope";
        font-style: normal;
        overflow: hidden;
    }

        .person-container .person-table-container .Passenger-table tbody {
            width: 836px;
            padding: 27px 44px 44px 44px;
            display: flex !important;
            flex-direction: column !important;
        }

@media screen and (max-width: 1120px) {
    .person-container .person-table-container .Passenger-table tbody {
        width: 100%;
        padding: 12px 22px 40px 22px;
    }
}

@media screen and (max-width: 1120px) {
    .person-container .person-table-container .Passenger-table {
        width: 100%;
    }
}

.person-container .person-table-container .passenger-details-head {
    background: #e2e7ee;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #121213;
    height: 50px;
    width: 1080px;
    display: flex;
    align-items: center;
    padding-left: 28.93px;
    gap: 5px;
}

    .person-container .person-table-container .passenger-details-head img {
        width: 28px;
        height: 28px;
    }

.person-container .person-table-container tr {
    margin-top: 22px;
}

.person-container .person-table-container .table-data {
    max-width: 200px;
    min-width: 200px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #67707b;
    padding-right: 14px;
}

    .person-container .person-table-container .table-data .table-sub {
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #121213;
    }

    .person-container .person-table-container .table-data .link {
        color: #189eff;
        text-decoration: underline;
    }

.person-container .person-table-container .table-inner-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

    .person-container .person-table-container .table-inner-heading .plusB-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: -moz-fit-content;
        width: fit-content;
        flex-direction: row;
        cursor: pointer;
    }

        .person-container .person-table-container .table-inner-heading .plusB-wrapper img {
            height: 14px;
            width: 14px;
        }

.faxdetTop {
    padding: 12px 0px !important;
    background: #123d6c !important;
    color: white !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    position: sticky;
    top: -0.1px;
    z-index: 9;
}

    .faxdetTop .pd_text {
        color: white !important;
    }

    .faxdetTop .faxdetTopBar {
        max-width: 1120px !important;
        margin: auto !important;
    }

    .faxdetTop .faxdetBotBar {
        margin-top: 0 !important;
        border: none !important;
    }

.booking-pub {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f1f5f9;
    padding-top: 23px;
}

    .booking-pub .booking-container-1 {
        display: flex;
        flex-direction: column;
        width: 900px;
        margin-bottom: 45px;
    }

    .booking-pub .main-heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
        margin-top: 20px;
    }

    .booking-pub .view-booking-container {
        margin-top: 20px;
        font-family: "Manrope";
        font-style: normal;
    }

        .booking-pub .view-booking-container .view-head-non {
            height: 59px;
            background-color: #ffffff;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0px 40px;
        }

        .booking-pub .view-booking-container .view-booking-text {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            text-decoration-line: underline;
            color: #123d6c;
            margin-right: 15px;
        }

        .booking-pub .view-booking-container .caret_wrap {
            background: #fafafa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 37px;
            width: 37px;
            border-radius: 50%;
        }

            .booking-pub .view-booking-container .caret_wrap img {
                height: 16px;
                width: 16px;
            }

        .booking-pub .view-booking-container .view-head-active {
            border-bottom-right-radius: 0px;
            border-bottom-left-radius: 0px;
            border-bottom: 1px solid #e2e7ee;
        }

        .booking-pub .view-booking-container .view-ref {
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #121213;
        }

        .booking-pub .view-booking-container .img-active1 {
            display: block;
        }

        .booking-pub .view-booking-container .img-non1 {
            display: none;
        }

        .booking-pub .view-booking-container .img-non2 {
            display: none;
        }

        .booking-pub .view-booking-container .img-active2 {
            display: block;
        }

        .booking-pub .view-booking-container .view-table {
            display: none;
            background: #ffffff;
            border-radius: 0 0 7px 7px;
            border-bottom: 1px solid #e2e7ee;
            border-top-right-radius: 0px;
            border-top-right-radius: 0px;
            padding: 20px 40px;
        }

        .booking-pub .view-booking-container .view-table-active {
            display: block;
        }

        .booking-pub .view-booking-container .table-data {
            display: flex;
            margin-top: 20px;
            font-family: "Manrope";
            font-style: normal;
        }

            .booking-pub .view-booking-container .table-data .td-container {
                width: 200px;
            }

            .booking-pub .view-booking-container .table-data .td-text-1 {
                font-weight: 600;
                font-size: 13px;
                line-height: 18px;
                display: flex;
                align-items: center;
                color: #67707b;
            }

            .booking-pub .view-booking-container .table-data .td-text-2 {
                font-weight: 500;
                font-size: 14px;
                line-height: 19px;
                display: flex;
                align-items: center;
                color: #121213;
            }

    .booking-pub .Itinerary-container {
        background: white;
        border-radius: 7px;
        padding: 30px 30px;
        margin-top: 15px;
        font-family: "Manrope";
        font-style: normal;
    }

        .booking-pub .Itinerary-container .Itinerary-heading {
            font-weight: 600;
            font-size: 20px;
            line-height: 27px;
            color: #121213;
        }

        .booking-pub .Itinerary-container .Itinerary-table {
            border-collapse: collapse;
            border: 1px solid #e2e7ee;
            border-radius: 7px;
            margin-top: 20px;
        }

            .booking-pub .Itinerary-container .Itinerary-table .table1 {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 30px;
                padding: 35px 20px;
            }

@media screen and (max-width: 900px) {
    .booking-pub .Itinerary-container .Itinerary-table .table1 {
        padding: 24px 10px;
    }
}

.booking-pub .Itinerary-container .Itinerary-table .black-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #2a2d31;
    position: relative;
}

.booking-pub .Itinerary-container .Itinerary-table .day-text {
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: -0.003em;
    color: #189eff;
    position: absolute;
    top: 10px;
    right: 5px;
}

.booking-pub .Itinerary-container .Itinerary-table .gry-color {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #67707b;
}

.booking-pub .Itinerary-container .Itinerary-table .time-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #2a2d31;
    margin-left: 5px;
}

.booking-pub .Itinerary-container .Itinerary-table .circle-img {
    background: #f3f3f3;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.booking-pub .Itinerary-container .Itinerary-table .first-td {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #515050;
}

.booking-pub .Itinerary-container .Itinerary-table .sub-text {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #67707b;
}

.booking-pub .Itinerary-container .bottom-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 27px;
    font-family: "Manrope";
    font-style: normal;
    margin-bottom: 27px;
}

    .booking-pub .Itinerary-container .bottom-container .bottom-el-1 {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #189eff;
        cursor: pointer;
    }

    .booking-pub .Itinerary-container .bottom-container .bottom-el {
        font-weight: 500;
        font-size: 12px !important;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #189eff;
        margin-right: 40px;
        cursor: pointer;
    }

    .booking-pub .Itinerary-container .bottom-container .free-text {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        color: #67707b;
    }

    .booking-pub .Itinerary-container .bottom-container .amount-text {
        font-weight: 600;
        font-size: 20px;
        color: #121213;
    }

    .booking-pub .Itinerary-container .bottom-container .cancel-booking {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #dd1f03;
        align-self: end;
    }

.delete_note_wrap {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

.booking-pub .Penalities-container {
    background: #ffffff;
    border-radius: 7px;
    padding: 30px 30px;
    margin-top: 26px;
}

    .booking-pub .Penalities-container .penalities-head {
        display: flex;
        justify-content: space-between;
        font-family: "Manrope";
        font-style: normal;
    }

        .booking-pub .Penalities-container .penalities-head .non-active {
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            color: #515050;
            border-bottom: 1px solid #d2dce9;
            width: 122px;
            cursor: pointer;
            text-align: center;
        }

        .booking-pub .Penalities-container .penalities-head .table-active {
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            text-align: center;
            color: #121213;
            border-bottom: 3px solid #189eff;
            width: 122px;
            cursor: pointer;
        }

        .booking-pub .Penalities-container .penalities-head .penalities-text {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            color: #121213;
        }

    .booking-pub .Penalities-container .penalities-table {
        border-collapse: collapse;
        width: 100%;
        border: 1px solid #e2e7ee;
        border-radius: 7px;
        margin-top: 20px;
        font-family: "Manrope";
        font-style: normal;
    }

        .booking-pub .Penalities-container .penalities-table table {
            width: 100%;
        }

        .booking-pub .Penalities-container .penalities-table th {
            height: 50px;
            padding-left: 40px;
            background: #e2e7ee;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #121213;
        }

        .booking-pub .Penalities-container .penalities-table td {
            padding-left: 40px;
            padding-top: 20px;
            padding-bottom: 20px;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #67707b;
        }

    .booking-pub .Penalities-container .booking-container {
        display: flex;
        flex-direction: column;
        font-family: "Manrope";
        font-style: normal;
    }

        .booking-pub .Penalities-container .booking-container .heading {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            display: flex;
            align-items: center;
            letter-spacing: -0.003em;
            color: #2a2d31;
        }

        .booking-pub .Penalities-container .booking-container .text-area,
        .booking-pub .Penalities-container .booking-container .text-edit {
            margin-top: 20px;
            background: #ffffff;
            border: 1px solid #d2dce9;
            border-radius: 7px;
            resize: none;
            padding-left: 20px;
            font-size: 12px;
        }

        .booking-pub .Penalities-container .booking-container .add-button {
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            color: #189eff;
            border: 1px solid #189eff;
            padding: 10px 20px;
            align-self: flex-end;
            margin-top: 20px;
            height: 40px;
            width: 136px;
            border-radius: 8px;
        }

        .booking-pub .Penalities-container .booking-container .update_btn {
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            color: #189eff;
            border: 1px solid #189eff;
            padding: 10px 20px;
            align-self: flex-end;
            margin-top: 20px;
            height: 40px;
            width: 136px;
            border-radius: 8px;
        }

        .booking-pub .Penalities-container .booking-container .add-item {
            /*margin-top: 30px;*/
            font-family: "Manrope";
            font-style: normal;
            padding: 0 20px;
        }

            .booking-pub .Penalities-container .booking-container .add-item .head-container {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .booking-pub .Penalities-container .booking-container .add-item .head-container p {
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 16px;
                    letter-spacing: -0.003em;
                    color: #67707b;
                }

                .booking-pub .Penalities-container .booking-container .add-item .head-container .circle-container {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                }

                    .booking-pub .Penalities-container .booking-container .add-item .head-container .circle-container .circle-el {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        height: 24px;
                        width: 24px;
                        border-radius: 50%;
                    }

                    .booking-pub .Penalities-container .booking-container .add-item .head-container .circle-container .edit_btn img {
                        height: 16px;
                        width: 16px;
                        cursor: pointer;
                    }

                    .booking-pub .Penalities-container .booking-container .add-item .head-container .circle-container .update_btn {
                        font-weight: 600;
                        font-size: 14px;
                        line-height: 19px;
                        display: flex;
                        align-items: center;
                        color: #189eff;
                        cursor: pointer;
                    }

            .booking-pub .Penalities-container .booking-container .add-item .para-el {
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
                letter-spacing: -0.003em;
                color: #67707b;
                margin-top: 10px;
            }

    .booking-pub .Penalities-container .histroy-container {
        /*  margin-top: 60px;*/
        font-family: "Manrope";
        font-style: normal;
    }

        .booking-pub .Penalities-container .histroy-container .hisotry-head {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            display: flex;
            align-items: center;
            letter-spacing: -0.003em;
            color: #2a2d31;
        }

.footer-section {
    height: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope";
    font-style: normal;
}

    .footer-section .footer-el {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        color: #000000;
    }

.hide_scroll::-webkit-scrollbar {
    height: 0px;
    width: 0px;
}

.show {
    display: flex;
}

.bank_details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
    margin: 24px auto 0;
    width: 100%;
    width: 322px;
    min-height: 144px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    position: relative;
}

    .bank_details li {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        width: 100%;
    }

        .bank_details li .title2 {
            color: #67707b;
            width: 50%;
        }

        .bank_details li .value {
            color: #121213;
            text-align: left;
            width: 50%;
            padding-left: 5.75px;
        }

    .bank_details .copy_wrapper {
        position: absolute;
        width: -moz-fit-content;
        width: fit-content;
        top: 8px;
        right: 8px;
        cursor: pointer;
    }

.error-message {
    text-align: center;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #dd1f03;
    margin-top: 20px;
}

.top-fourth {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
}

    .top-fourth .Add-button {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        display: none;
        align-items: center;
        justify-content: center;
        color: #189eff;
        width: 130px;
        height: 35px;
        border: 1px solid #189eff;
        cursor: pointer;
        margin-right: 10px;
        border-radius: 8px;
    }

    .top-fourth .search-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #189eff;
        border-radius: 8px;
        height: 36px;
        width: 151px;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        color: #fafafa;
        cursor: pointer;
    }

    .top-fourth .close_funds_btn {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #189eff;
        width: 96px;
        height: 36px;
        border: 1px solid #189eff;
        cursor: pointer;
        border-radius: 8px;
    }

    .top-fourth .opacity-btn {
        opacity: 2;
        background: #d2dce9;
    }

.right-remove-box .remove-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 42px;
    background-color: #f2f2f2 !important;
    border-radius: 50%;
    cursor: pointer;
}

    .right-remove-box .remove-wrapper.delete_wrap {
        height: 32px;
        width: 32px;
    }

@media screen and (max-width: 1100px) {
    .right-remove-box .remove-wrapper {
        margin-left: 0;
    }
}

.right-remove-box .remove-wrapper .remove_img {
    height: 24px;
    width: 24px;
    transform: rotate(45deg);
}

.right-remove-box .remove-wrapper .delete_img {
    height: 14px;
    width: 12.44px;
}

.bottom-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .bottom-check .checkbox-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.003em;
        color: #67707b;
        cursor: pointer;
    }

        .bottom-check .checkbox-wrapper .addCircle-wrapper {
            height: -moz-fit-content;
            height: fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

            .bottom-check .checkbox-wrapper .addCircle-wrapper img {
                height: 24px;
                width: 24px;
            }

        .bottom-check .checkbox-wrapper input {
            height: 18px;
            width: 18px !important;
            cursor: pointer;
        }

        .bottom-check .checkbox-wrapper .destination-text {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #189eff;
            cursor: pointer;
        }

        .bottom-check .checkbox-wrapper label {
            margin-left: 6px;
            cursor: pointer;
        }

    .bottom-check .bottom-right {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #189eff;
        border-radius: 8px;
        height: 44px;
        width: 161px;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #fafafa;
        cursor: pointer;
    }

        .bottom-check .bottom-right .search-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 6px;
        }

            .bottom-check .bottom-right .search-wrapper img {
                height: 17px;
                width: 17px;
            }

@media screen and (max-width: 900px) {
    .booking-pub .booking-container-1 {
        width: 95% !important;
    }

    .booking-pub .view-booking-container .view-ref {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.003em;
    }

    .booking-pub .view-booking-container .view-booking-text {
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.003em;
        text-decoration-line: underline;
        color: #123d6c;
        margin-right: 5px;
    }

    .booking-pub .view-booking-container .view-head-non {
        padding: 0px 20px;
    }

    .booking-pub .view-booking-container .view-head-non {
        padding: 0px 20px;
        display: flex;
        flex-wrap: wrap;
    }

    .booking-pub .Itinerary-container .Itinerary-table td {
        padding: 0px;
    }

    .booking-pub .Itinerary-container {
        padding: 20px !important;
    }

        .booking-pub .Itinerary-container .Itinerary-table .day-text {
            color: #189eff;
            position: absolute;
            top: 4px;
            right: -1px;
        }

        .booking-pub .Itinerary-container .Itinerary-table th {
            padding-left: 10px;
        }

        .booking-pub .Itinerary-container .bottom-container .bottom-el {
            margin-right: 10px;
            font-size: 10px;
        }

    booking-pub .Itinerary-container .bottom-container .free-text {
        font-size: 12px;
    }

    .booking-pub .Itinerary-container .bottom-container .amount-text {
        font-size: 15px;
    }

    .booking-pub .Itinerary-container .bottom-container .cancel-booking {
        font-size: 12px;
    }

    .booking-pub .person-container .person-table-container .table-inner-heading {
        font-size: 12px;
    }

    .booking-pub .person-container .person-table-container th {
        padding-left: 5px;
    }

    .booking-pub .person-container .person-table-container .table-data {
        font-size: 10px;
    }

    .booking-pub .view-booking-container .table-data .td-container {
        width: 150px;
    }

    .booking-pub .view-booking-container .view-table {
        padding: 20px 20px;
    }
}

@media screen and (min-device-width: 801px) and (max-device-width: 1120px) {
    .booking-pub .booking-container-1 {
        width: 90%;
    }

    .booking-pub .view-booking-container .table-data .td-container {
        width: 166px;
    }

    .booking-pub .Itinerary-container .Itinerary-table td {
        width: 227px;
        padding: 18px 5px;
    }

    .booking-pub .Itinerary-container .bottom-container .bottom-el {
        margin-right: 15px;
    }

    .booking-pub .Itinerary-container .bottom-container .free-text {
        font-size: 12px;
    }

    .booking-pub .Itinerary-container .bottom-container .amount-text {
        font-size: 15px;
    }
}

.modal .modal-content.pub_page {
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1120px;
    background: #f1f5f9;
    border-radius: 8px;
    /*border: 1px solid #d2dce9;*/
    padding: 0 !important;
    /*overflow: hidden;*/
}

.popup-wrapper-service {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 773px;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 40px;
}

@media screen and (max-width: 970px) {
    .popup-wrapper-service {
        width: 95%;
    }
}

.popup-wrapper-service .first-one {
    width: 100%;
    display: flex;
    justify-content: end;
}

.popup-wrapper-service .addFunds {
    display: none;
}

.popup-wrapper-service .modal-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .popup-wrapper-service .modal-item .ticket-body {
        width: 389.5px;
        background: #ffffff;
        border-radius: 7px;
        padding: 11px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
    }

        .popup-wrapper-service .modal-item .ticket-body.bg_none {
            background: transparent;
        }

        .popup-wrapper-service .modal-item .ticket-body .vertical-line {
            border: 1px solid #d2dce9;
            width: 0px;
            height: 71.37px;
        }

        .popup-wrapper-service .modal-item .ticket-body .ticket-heding {
            text-align: center;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #67707b;
            margin-bottom: 10px;
        }

        .popup-wrapper-service .modal-item .ticket-body .money-text {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            margin-left: 10px;
        }

    .popup-wrapper-service .modal-item .heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
    }

    .popup-wrapper-service .modal-item .input-group {
        box-sizing: border-box;
        position: relative;
        height: 49px;
        max-width: 439px;
        border-radius: 8px;
        border: 1px solid #d2dce9;
        margin-top: 60px;
        background: #f1f4f9;
    }

        .popup-wrapper-service .modal-item .input-group .error {
            position: absolute;
            font-size: 10px;
            line-height: 10px;
            color: #dd1f03;
            bottom: -16px;
            left: 0;
            margin-left: 0px !important;
            background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
            background-size: 10px;
            padding-left: 14px;
        }

        .popup-wrapper-service .modal-item .input-group .input-el {
            border: none;
            border-radius: 8px !important;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #292C31;
            height: 46px;
            position: relative;
            z-index: 1;
            width: 100%;
        }

            .popup-wrapper-service .modal-item .input-group .input-el.error {
                position: relative;
                bottom: 0px;
                font-size: 14px;
                line-height: 19px;
                background: transparent;
                padding-left: 44px;
            }

            .popup-wrapper-service .modal-item .input-group .input-el::-moz-placeholder {
                opacity: 0;
            }

            .popup-wrapper-service .modal-item .input-group .input-el::placeholder {
                opacity: 0;
            }

            .popup-wrapper-service .modal-item .input-group .input-el:focus {
                box-shadow: none;
                background: transparent;
            }

                .popup-wrapper-service .modal-item .input-group .input-el:focus ~ .input-border {
                    opacity: 1;
                }

                .popup-wrapper-service .modal-item .input-group .input-el:focus ~ .input-label {
                    top: -10px;
                    font-size: 12px;
                }

            .popup-wrapper-service .modal-item .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
                opacity: 1;
            }

            .popup-wrapper-service .modal-item .input-group .input-el:not(:placeholder-shown) ~ .input-border {
                opacity: 1;
            }

            .popup-wrapper-service .modal-item .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .popup-wrapper-service .modal-item .input-group .input-el:not(:placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .popup-wrapper-service .modal-item .input-group .input-el.error ~ .input-border {
                border: 1px solid #DD1F03;
                opacity: 1;
            }

            .popup-wrapper-service .modal-item .input-group .input-el.error ~ .input-group-text svg path, .popup-wrapper-service .modal-item .input-group .input-el.error ~ .input-group-text svg rect, .popup-wrapper-service .modal-item .input-group .input-el.error ~ .input-group-text svg circle {
                stroke: #DD1F03;
            }

        .popup-wrapper-service .modal-item .input-group .input-border {
            border: #189EFF 1px solid;
            position: absolute;
            width: calc(100% + 2px);
            height: calc(100% + 2px);
            left: 0;
            top: -1px;
            border-radius: 8px !important;
            opacity: 0;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .popup-wrapper-service .modal-item .input-group .input-group-text {
            background: transparent;
            border: none;
            padding: 12px;
            min-width: 44px;
            height: 48px;
            display: inline-flex;
            justify-content: center;
            position: absolute;
            left: 0;
            z-index: 2;
        }

        .popup-wrapper-service .modal-item .input-group .input-label {
            position: absolute;
            top: 14px;
            left: 10px;
            font-weight: 500;
            font-size: 12px;
            line-height: 19px;
            background: #f1f4f9;
            padding: 0 8px;
            color: #67707b;
            z-index: 2;
            pointer-events: none;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

.quote_email_wrap {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 773px;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 40px;
}

@media screen and (max-width: 970px) {
    .quote_email_wrap {
        width: 95%;
    }
}

.quote_email_wrap .first-one {
    width: 100%;
    display: flex;
    justify-content: end;
}

.quote_email_wrap .modal-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .quote_email_wrap .modal-item .ticket-body {
        width: 389.5px;
        background: #ffffff;
        border-radius: 7px;
        padding: 11px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
    }

        .quote_email_wrap .modal-item .ticket-body.bg_none {
            background: transparent;
        }

        .quote_email_wrap .modal-item .ticket-body .vertical-line {
            border: 1px solid #d2dce9;
            width: 0px;
            height: 71.37px;
        }

        .quote_email_wrap .modal-item .ticket-body .ticket-heding {
            text-align: center;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #67707b;
            margin-bottom: 10px;
        }

        .quote_email_wrap .modal-item .ticket-body .money-text {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            margin-left: 10px;
        }

    .quote_email_wrap .modal-item .heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
    }

    .quote_email_wrap .modal-item .input-group {
        box-sizing: border-box;
        position: relative;
        height: 49px;
        max-width: 439px;
        border-radius: 8px;
        border: 1px solid #d2dce9;
        margin-top: 60px;
        background: #f1f4f9;
    }

        .quote_email_wrap .modal-item .input-group .error {
            position: absolute;
            font-size: 10px;
            line-height: 10px;
            color: #dd1f03;
            bottom: -16px;
            left: 0;
            margin-left: 0px !important;
            background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
            background-size: 10px;
            padding-left: 14px;
        }

        .quote_email_wrap .modal-item .input-group .input-el {
            border: none;
            border-radius: 8px !important;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #292C31;
            height: 46px;
            position: relative;
            z-index: 1;
            width: 100%;
        }

            .quote_email_wrap .modal-item .input-group .input-el.error {
                position: relative;
                bottom: 0px;
                font-size: 14px;
                line-height: 19px;
                background: transparent;
                padding-left: 44px;
            }

            .quote_email_wrap .modal-item .input-group .input-el::-moz-placeholder {
                opacity: 0;
            }

            .quote_email_wrap .modal-item .input-group .input-el::placeholder {
                opacity: 0;
            }

            .quote_email_wrap .modal-item .input-group .input-el:focus {
                box-shadow: none;
                background: transparent;
            }

                .quote_email_wrap .modal-item .input-group .input-el:focus ~ .input-border {
                    opacity: 1;
                }

                .quote_email_wrap .modal-item .input-group .input-el:focus ~ .input-label {
                    top: -10px;
                    font-size: 12px;
                }

            .quote_email_wrap .modal-item .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
                opacity: 1;
            }

            .quote_email_wrap .modal-item .input-group .input-el:not(:placeholder-shown) ~ .input-border {
                opacity: 1;
            }

            .quote_email_wrap .modal-item .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .quote_email_wrap .modal-item .input-group .input-el:not(:placeholder-shown) ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

            .quote_email_wrap .modal-item .input-group .input-el.error ~ .input-border {
                border: 1px solid #DD1F03;
                opacity: 1;
            }

            .quote_email_wrap .modal-item .input-group .input-el.error ~ .input-group-text svg path, .quote_email_wrap .modal-item .input-group .input-el.error ~ .input-group-text svg rect, .quote_email_wrap .modal-item .input-group .input-el.error ~ .input-group-text svg circle {
                stroke: #DD1F03;
            }

        .quote_email_wrap .modal-item .input-group .input-border {
            border: #189EFF 1px solid;
            position: absolute;
            width: calc(100% + 2px);
            height: calc(100% + 2px);
            left: 0;
            top: -1px;
            border-radius: 8px !important;
            opacity: 0;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .quote_email_wrap .modal-item .input-group .input-group-text {
            background: transparent;
            border: none;
            padding: 12px;
            min-width: 44px;
            height: 48px;
            display: inline-flex;
            justify-content: center;
            position: absolute;
            left: 0;
            z-index: 2;
        }

        .quote_email_wrap .modal-item .input-group .input-label {
            position: absolute;
            top: 14px;
            left: 10px;
            font-weight: 500;
            font-size: 12px;
            line-height: 19px;
            background: #f1f4f9;
            padding: 0 8px;
            color: #67707b;
            z-index: 2;
            pointer-events: none;
            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

.popup-wrapper-ssr {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 40px;
}

@media screen and (max-width: 1100px) {
    .popup-wrapper-ssr {
        width: 95%;
        padding: 20px;
    }
}

.popup-wrapper-ssr .first-one {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .popup-wrapper-ssr .first-one .heading {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #121213;
    }

.popup-wrapper-ssr .modal-wrapper {
    background-color: white;
    border-radius: 7px;
    margin-bottom: 20px;
    margin-top: 25px;
    padding: 20px 5px 25px 25px !important;
}

    .popup-wrapper-ssr .modal-wrapper .modal-body {
        overflow-y: auto !important;
        max-height: 400px;
        padding: 0;
        padding-right: 20px;
        padding-top: 5px;
    }

        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards {
            padding-top: 10px;
            height: -moz-fit-content;
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 34px;
        }

            .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 24px;
            }

                .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .add-text {
                    font-family: "Manrope";
                    font-style: normal;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 22px;
                    letter-spacing: -0.003em;
                    color: #189eff;
                    margin-left: 5px;
                }

                .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group {
                    box-sizing: border-box;
                    position: relative;
                    height: 49px;
                    width: 203px;
                    border-radius: 8px;
                    border: 1px solid #d2dce9;
                }

                    .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .select-el {
                        display: flex;
                        align-items: center;
                        border-radius: 8px;
                        height: 49px;
                        width: 100% !important;
                    }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .select-el .ms-choice {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            height: 50%;
                            border: none;
                            padding-left: 10px;
                            padding-right: 20px;
                        }

                            .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .select-el .ms-choice span {
                                position: static;
                                font-family: "Manrope";
                                font-style: normal;
                                font-weight: 500;
                                font-size: 14px;
                                line-height: 19px;
                                color: #292c31;
                            }

                            .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .select-el .ms-choice > div.icon-caret {
                                margin-top: 0px;
                                position: static;
                                border: solid black;
                                border-width: 0 2px 2px 0;
                                display: inline-block;
                                padding: 3px;
                                transform: rotate(45deg);
                                -webkit-transform: rotate(45deg);
                            }

                                .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .select-el .ms-choice > div.icon-caret.open {
                                    transform: rotate(-135deg);
                                    -webkit-transform: rotate(-135deg);
                                }

                    .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .error {
                        position: absolute;
                        font-size: 10px;
                        line-height: 10px;
                        color: #dd1f03;
                        bottom: -16px;
                        left: 0;
                        margin-left: 0px !important;
                        background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
                        background-size: 10px;
                        padding-left: 14px;
                    }

                    .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el {
                        border: none;
                        border-radius: 8px !important;
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 19px;
                        color: #292C31;
                        height: 46px;
                        z-index: 1;
                        width: 100%;
                    }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el.error {
                            position: relative;
                            bottom: 0px;
                            font-size: 14px;
                            line-height: 19px;
                            background: transparent;
                            padding-left: 44px;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el::-moz-placeholder {
                            opacity: 0;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el::placeholder {
                            opacity: 0;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:focus {
                            box-shadow: none;
                            background: transparent;
                        }

                            .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:focus ~ .input-border {
                                opacity: 1;
                            }

                            .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:focus ~ .input-label {
                                top: -10px;
                                font-size: 12px;
                            }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
                            opacity: 1;
                            pointer-events: none;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:not(:placeholder-shown) ~ .input-border {
                            opacity: 1;
                            pointer-events: none;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
                            top: -10px;
                            font-size: 12px;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el:not(:placeholder-shown) ~ .input-label {
                            top: -10px;
                            font-size: 12px;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el.error ~ .input-border {
                            border: 1px solid #DD1F03;
                            opacity: 1;
                        }

                        .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el.error ~ .input-group-text svg path, .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el.error ~ .input-group-text svg rect, .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-el.error ~ .input-group-text svg circle {
                            stroke: #DD1F03;
                        }

                    .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-border {
                        border: #189EFF 1px solid;
                        position: absolute;
                        width: calc(100% + 2px);
                        height: calc(100% + 2px);
                        left: 0;
                        top: -1px;
                        border-radius: 8px !important;
                        opacity: 0;
                        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                    }

                    .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-group-text {
                        background: transparent;
                        border: none;
                        padding: 12px;
                        min-width: 44px;
                        height: 48px;
                        display: inline-flex;
                        justify-content: center;
                        position: absolute;
                        left: 0;
                    }

                    .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .input-group .input-label {
                        position: absolute;
                        top: 14px;
                        left: 10px;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 19px;
                        background: #fff;
                        padding: 0 8px;
                        color: #67707B;
                        pointer-events: none;
                        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                    }

                .popup-wrapper-ssr .modal-wrapper .modal-body .ssr-cards .ssr-card .tooltip_box::before {
                    content: "";
                    position: absolute;
                    bottom: -3px;
                    left: 50%;
                    transform: translateX(-50%) rotate(45deg);
                    height: 10px;
                    width: 10px;
                    background-color: #e2e7ee;
                }

        .popup-wrapper-ssr .modal-wrapper .modal-body .bottom-check .done_btn {
            background: #189eff;
            border-radius: 8px;
            height: 36px;
            width: 88px;
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
        }

.baggage-policy-wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 1120px;
    max-height: 600px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    overflow: hidden;
    font-family: "Manrope";
    font-style: normal;
    padding: 25px;
}

/* .baggage-policy-wrapper.pub_v2 {
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }*/

@media screen and (max-width: 1133px) {
    .baggage-policy-wrapper {
        width: 95%;
        padding: 25px 15px 25px 15px;
    }
}

.baggage-policy-wrapper .btn-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .baggage-policy-wrapper .btn-close img {
        height: 20px;
        width: 20px;
        margin-right: 16px;
    }

.baggage-policy-wrapper .container {
    margin-top: -10px;
    overflow: hidden;
    max-width: 1000px;
}

    .baggage-policy-wrapper .container .tabs input[type=radio] {
        width: 100% !important;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer {
        padding: 65px 0px 0px;
    }

        .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: row;
        }

@media screen and (max-width: 915px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar {
        flex-direction: column;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar .right-btns {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 72px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar .right-btns > li {
        font-weight: 400;
        font-size: 14px;
        line-height: 155.6%;
        display: flex;
        align-items: center;
        color: #67707b;
    }

        .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .fr-top-bar .right-btns > li > span {
            font-weight: 500;
            color: #2a2d31;
        }

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 30px;
        overflow: auto;
    }

        .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: column;
            width: 680px;
            gap: 16px;
        }

            .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-head {
                font-weight: 600;
                font-size: 14px;
                line-height: 19px;
                display: flex;
                align-items: start;
                text-align: center;
                width: 100%;
                color: #2a2d31;
            }

            .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 /*, .table-wrapper .table-1*/ {
                width: 680px;
                line-height: 16px;
                font-size: 12px;
                letter-spacing: -0.003em;
                border-radius: 4px;
            }

                .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 .table-row-1 {
                    background: #e2e7ee;
                    border-radius: 4px 4px 0px 0px;
                }

                .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 .table-row-2, .table-1 td {
                    background: #ffffff;
                    border: 1px solid #e2e7ee;
                    border-radius: 0px 0px 4px 4px;
                }

                .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 th {
                    font-weight: 500;
                    color: #2a2d31;
                    height: 42px;
                    padding-left: 28px;
                }

                .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .tables .table-wrapper .table-1 td {
                    font-weight: 600;
                    color: #121213;
                    height: 55px;
                    padding-left: 28px;
                }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare {
        display: flex;
        justify-content: center;
        align-items: start;
        overflow: auto;
    }

@media screen and (max-width: 850px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare {
        width: 900px;
        display: flex;
        justify-content: start;
        align-items: start;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 36.26px;
    width: 100%;
}

@media screen and (max-width: 850px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper {
        width: 900px;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper {
    padding: 20px 7px 20px 0px;
    background: #ffffff;
    height: 369px;
    border-radius: 4px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts {
        padding-left: 16px;
        width: 270px;
        height: 330px;
        border-radius: 4px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        overflow-y: auto;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: #67707b;
        list-style: none;
    }

@media screen and (max-width: 1000px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts {
        color: black;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts li {
    padding: 0 !important;
    cursor: pointer;
    width: 100%;
    position: relative;
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts .active {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: flex-start;
    color: #189eff;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper .other-discounts-wrapper .other-discounts .active::after {
        content: " ";
        background: url("/assets/images/icons/right-caret.svg") center no-repeat;
        width: 6px;
        height: 8px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper textarea {
    width: 727.74px;
    height: 369px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    resize: none;
    padding: 20px 24px;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 155.6%;
    display: flex;
    align-items: center;
    color: #67707b;
}

@media screen and (max-width: 1133px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-1 .tab-content.inner .detail-fare .detail-fare-wrapper textarea {
        width: 367px;
        height: 370px;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar {
    padding: 0 10px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .fare-breakdown {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        align-items: center;
        letter-spacing: -0.003em;
        color: #2a2d31;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .right-btns {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 72px;
        margin: 0;
    }

        .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .right-btns > li {
            font-weight: 400;
            font-size: 14px;
            line-height: 155.6%;
            display: flex;
            align-items: center;
            color: #67707b;
        }

            .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .fr-top-bar .right-btns > li > span {
                font-weight: 500;
                color: #2a2d31;
            }

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 1057.1px;
    gap: 16px;
    overflow: auto;
}

@media screen and (max-width: 1233px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper {
        width: 100%;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-head {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: start;
    text-align: center;
    width: 100%;
    color: #2a2d31;
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 {
    width: 1027.1px;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: -0.003em;
    border-radius: 4px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 .table-row-1 {
        background: #e2e7ee;
        border-radius: 4px 4px 0px 0px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 .table-row-2 {
        background: #ffffff;
        border: 1px solid #e2e7ee;
        border-radius: 0px 0px 4px 4px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 th {
        font-weight: 500;
        color: #2a2d31;
        height: 57.17px;
        padding-left: 28px;
        font-size: 14px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-2 .table-wrapper .table-1 td {
        font-weight: 500;
        color: #2a2d31;
        height: 85px;
        padding-left: 28px;
    }

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar {
    padding: 0 10px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .fare-breakdown {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        align-items: center;
        letter-spacing: -0.003em;
        color: #2a2d31;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .right-btns {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 72px;
        margin: 0;
    }

        .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .right-btns > li {
            font-weight: 400;
            font-size: 14px;
            line-height: 155.6%;
            display: flex;
            align-items: center;
            color: #67707b;
        }

            .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .fr-top-bar .right-btns > li > span {
                font-weight: 500;
                color: #2a2d31;
            }

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 1027px;
}

@media screen and (max-width: 1233px) {
    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper {
        width: 100%;
    }
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-head {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: start;
    text-align: center;
    width: 100%;
    color: #2a2d31;
}

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 {
    width: 100%;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: -0.003em;
    border-radius: 4px;
    overflow: hidden;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 .table-row-1 {
        background: #e2e7ee;
        border-radius: 4px 4px 0px 0px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 .table-row-2 {
        background: #ffffff;
        border-radius: 0px 0px 4px 4px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 th {
        font-weight: 500;
        color: #2a2d31;
        height: 57.17px;
        padding-left: 28px;
        font-size: 14px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 td {
        font-weight: 500;
        color: #121213;
        height: 65px;
        padding-left: 28px;
        border-radius: 0px 0px 4px 4px;
    }

        .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .table-wrapper .table-1 td span {
            color: red;
        }

.baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .policy-cottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 155.6%;
    display: flex;
    align-items: center;
    color: #2a2d31;
    padding: 15px 45px;
}

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .policy-cottom .text-1 {
        margin-right: 35px;
    }

    .baggage-policy-wrapper .container .tabs .tab-content.outer .tab-item-3 .policy-cottom span {
        color: red;
    }

.bookingPending_wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 773px;
    height: 247px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .bookingPending_wrapper {
        width: 95%;
    }
}

.bookingPending_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

    .bookingPending_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.bookingPending_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.bookingPending_wrapper .middle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
}

    .bookingPending_wrapper .middle-content .img_wrapper {
        height: 100px;
        width: 100px;
    }

        .bookingPending_wrapper .middle-content .img_wrapper img {
            height: 100%;
            width: 100%;
        }

    .bookingPending_wrapper .middle-content .text-1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #121213;
    }

    .bookingPending_wrapper .middle-content .text-2 {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        color: #121213;
    }

        .bookingPending_wrapper .middle-content .text-2 a {
            color: #189eff;
        }

.flightNotAvailable_wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 773px;
    height: 247px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .flightNotAvailable_wrapper {
        width: 95%;
    }
}

.flightNotAvailable_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

    .flightNotAvailable_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.flightNotAvailable_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.flightNotAvailable_wrapper .middle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
}

    .flightNotAvailable_wrapper .middle-content .img_wrapper {
        height: 100px;
        width: 100px;
    }

        .flightNotAvailable_wrapper .middle-content .img_wrapper img {
            height: 100%;
            width: 100%;
        }

    .flightNotAvailable_wrapper .middle-content .text-1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #121213;
    }

    .flightNotAvailable_wrapper .middle-content .text-2 {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        color: #121213;
    }

        .flightNotAvailable_wrapper .middle-content .text-2 a {
            color: #189eff;
        }

.priceChangeAlert_wrapper {
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 773px;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .priceChangeAlert_wrapper {
        width: 95%;
    }
}

.priceChangeAlert_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

    .priceChangeAlert_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.priceChangeAlert_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.priceChangeAlert_wrapper .middle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding: 67px 32px 43px 32px;
}

    .priceChangeAlert_wrapper .middle-content .img_wrapper {
        height: 100px;
        width: 100px;
        background: #e2e7ee;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .priceChangeAlert_wrapper .middle-content .img_wrapper img {
            height: 100%;
            width: 100%;
        }

    .priceChangeAlert_wrapper .middle-content .text-1 {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        letter-spacing: -0.003em;
        color: #2a2d31;
        max-width: 595px;
    }

    .priceChangeAlert_wrapper .middle-content .text-2 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        text-align: center;
        color: #67707b;
    }

        .priceChangeAlert_wrapper .middle-content .text-2 span {
            color: #121213;
        }

    .priceChangeAlert_wrapper .middle-content .buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        .priceChangeAlert_wrapper .middle-content .buttons .cancel_btn {
            width: 120px;
            height: 36px;
            background: #e2e7ee;
            border-radius: 8px;
            color: #2a2d31;
            font-weight: 600;
            line-height: 19px;
        }

        .priceChangeAlert_wrapper .middle-content .buttons .proceed_btn {
            width: 120px;
            height: 36px;
            color: #189eff;
            border: 1px solid #189eff;
            border-radius: 8px;
            font-weight: 600;
            line-height: 19px;
        }

.bookingConfirmed_wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 773px;
    height: 247px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .bookingConfirmed_wrapper {
        width: 95%;
    }
}

.bookingConfirmed_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

    .bookingConfirmed_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.bookingConfirmed_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.bookingConfirmed_wrapper .middle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
}

    .bookingConfirmed_wrapper .middle-content .img_wrapper {
        height: 100px;
        width: 100px;
    }

        .bookingConfirmed_wrapper .middle-content .img_wrapper img {
            height: 100%;
            width: 100%;
        }

    .bookingConfirmed_wrapper .middle-content .text-1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #121213;
    }

    .bookingConfirmed_wrapper .middle-content .text-2 {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        color: #121213;
    }

        .bookingConfirmed_wrapper .middle-content .text-2 a {
            color: #189eff;
        }

.quote_book_email_wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .quote_book_email_wrapper {
        width: 95%;
    }
}

.quote_book_email_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 999;
}

    .quote_book_email_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.quote_book_email_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.quote_book_email_wrapper .middle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
}

    .quote_book_email_wrapper .middle-content .multiple_emails .heading_return {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        margin-bottom: 46px;
    }

        .quote_book_email_wrapper .middle-content .multiple_emails .heading_return .back_btn {
            cursor: pointer;
        }

    .quote_book_email_wrapper .middle-content .multiple_emails .modal-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background: #FFFFFF;
        border-radius: 7px;
        min-height: 143px;
        max-width: 835px;
        min-width: 835px;
        padding: 36px 32px;
    }

@media screen and (max-width: 1000px) {
    .quote_book_email_wrapper .middle-content .multiple_emails .modal-item {
        max-width: 835px;
        min-width: 300px;
    }
}

.quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group {
    box-sizing: border-box;
    position: relative;
    height: 49px;
    max-width: 439px;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    background: #FFFFFF;
}

    .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el {
        border: none;
        border-radius: 8px !important;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        color: #292C31;
        height: 46px;
        position: relative;
        z-index: 1;
        width: 100%;
    }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el::-moz-placeholder {
            opacity: 0;
        }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el::placeholder {
            opacity: 0;
        }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:focus {
            box-shadow: none;
            background: transparent;
        }

            .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:focus ~ .input-border {
                opacity: 1;
            }

            .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:focus ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
            opacity: 1;
        }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:not(:placeholder-shown) ~ .input-border {
            opacity: 1;
        }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
            top: -10px;
            font-size: 12px;
        }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-el:not(:placeholder-shown) ~ .input-label {
            top: -10px;
            font-size: 12px;
        }

    .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-border {
        border: #189EFF 1px solid;
        position: absolute;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        left: 0;
        top: -1px;
        border-radius: 8px !important;
        opacity: 0;
        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-border.invalid {
            border-color: red;
        }

        .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-border.valid {
            border-color: green;
        }

    .quote_book_email_wrapper .middle-content .multiple_emails .modal-item .input-group .input-label {
        position: absolute;
        top: 14px;
        left: 10px;
        font-weight: 500;
        font-size: 12px;
        line-height: 19px;
        background: #FFFFFF;
        padding: 0 8px;
        color: #67707b;
        z-index: 2;
        pointer-events: none;
        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

.quote_book_email_wrapper .middle-content .multiple_emails .modal-item .email_lists {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
    width: 100%;
    flex-wrap: wrap;
}

.quote_book_email_wrapper .middle-content .multiple_emails .modal-item .error_mail_msg {
    font-size: 10px;
    line-height: 10px;
    color: #dd1f03;
    margin-left: 0px !important;
    background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
    background-size: 10px;
    padding-left: 14px;
    margin-top: -6px;
}

.quote_book_email_wrapper .middle-content .multiple_emails .email-item {
    display: inline-block;
    background: #E2E7EE;
    border-radius: 8px;
    height: 18px;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #2A2D31;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 7px;
}

    .quote_book_email_wrapper .middle-content .multiple_emails .email-item .email {
        display: inline-block;
        margin-right: 5px;
    }

    .quote_book_email_wrapper .middle-content .multiple_emails .email-item .remove {
        cursor: pointer;
    }

.quote_book_email_wrapper .middle-content .multiple_emails .sendmail_wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 22px;
}

.quote_book_email_wrapper .middle-content .email_thanks_msg {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

    .quote_book_email_wrapper .middle-content .email_thanks_msg a {
        text-decoration: none;
        color: #FFF;
    }

    .quote_book_email_wrapper .middle-content .email_thanks_msg .img_wrapper {
        height: 100px;
        width: 100px;
    }

        .quote_book_email_wrapper .middle-content .email_thanks_msg .img_wrapper img {
            height: 100%;
            width: 100%;
        }

    .quote_book_email_wrapper .middle-content .email_thanks_msg .text-1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #121213;
        text-align: center;
    }

.modal-dialog.pub_page1 {
    position: static !important;
}


.simple-btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #189eff;
    margin-top: 13px;
    padding-bottom: 2px;
    /*border-bottom: 1px solid #189eff;*/
}

overflowscroll {
    overflow: scroll;
    max-height: 400px !important;
}


.pax-break-up {
    background: white;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 7px;
    padding: 10px;
    /* overflow-y: auto; 
    max-height: 600px; */
}

    .pax-break-up .fr-top-bar {
        padding: 5px 4px;
        width: 100%;
        text-align: center;
        display: flex;
        /*justify-content: space-between;*/
        justify-content: flex-start !important;
        gap: 280px;
        align-items: center;
        margin: 5px 0;
    }

        .pax-break-up .fr-top-bar .fare-breakdown {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            display: flex;
            align-items: center;
            letter-spacing: -0.003em;
            color: #2a2d31;
        }

        .pax-break-up .fr-top-bar .right-btns {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*gap: 72px;*/
            gap: 10px;
            margin: 0;
        }

            .pax-break-up .fr-top-bar .right-btns > li {
                font-weight: 400;
                font-size: 14px;
                line-height: 155.6%;
                display: flex;
                align-items: center;
                color: #67707b;
            }

                .pax-break-up .fr-top-bar .right-btns > li > span {
                    font-weight: 500;
                    color: #2a2d31;
                }

    .pax-break-up .table-wrapper {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        overflow: auto;
        margin: 0 auto;
    }

@media screen and (max-width: 1233px) {
    .pax-break-up .table-wrapper {
        width: 100%;
    }
}

.pax-break-up .table-wrapper .table-head {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: start;
    text-align: center;
    width: 100%;
    color: #2a2d31;
}

.pax-break-up .table-wrapper .table-1, .table-1 {
    width: 100%;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: -0.003em;
    border-radius: 4px;
    margin: 0 auto 10px;
}

    .pax-break-up .table-wrapper .table-1 .table-row-1, .table-1 .table-row-1 {
        background: #e2e7ee !important;
        border-radius: 4px 4px 0px 0px;
    }

    .pax-break-up .table-wrapper .table-1 .table-row-2 {
        background: #ffffff;
        border: 1px solid #e2e7ee;
        border-radius: 0px 0px 4px 4px;
    }

    .pax-break-up .table-wrapper .table-1 th {
        font-weight: 500;
        color: #2a2d31;
        height: 57.17px;
        padding-left: 28px;
        font-size: 14px;
    }

    .pax-break-up .table-wrapper .table-1 td, .table-wrapper .table-1 td {
        font-weight: 500;
        color: #2a2d31;
        height: 45px;
        padding-left: 28px;
    }


.activePagBtn {
    background-color: #189EFF !important;
    color: white !important;
    height: 36px;
    width: 36px;
    border-radius: 4px;
}

.pagination-container .page-info, .pagination-containers .page-info {
    font-size: 16px;
    text-align: end;
}

.pagination-container button, .pagination-containers button {
    white-space: normal;
    border: none;
}


.pagination-container .paginate_button, .pagination-containers .paginate_buttons {
    height: 36px;
    width: 36px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border: 1px solid #DDD;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .pagination-container .paginate_button:hover:not(.activePagBtn),
    .pagination-containers .paginate_buttons:hover:not(.activePagBtn) {
        background-color: #DDD;
        border-radius: 4px;
    }

.form-control {
    border-radius: 4px !important;
}

    .form-control:focus {
        border-color: #189eff;
        box-shadow: none;
        outline: none;
    }


.row {
    margin: 10px 0;
}


.common_modal_wrapper {
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1120px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 1120px) {
    .common_modal_wrapper {
        width: 95%;
    }
}

.common_modal_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 999;
}

    .common_modal_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.common_modal_wrapper .container {
    max-width: fit-content !important;
}

.common_modal_wrapper .middle-content {
    padding: 32px;
    width: 100% !important;
    margin: 0;
    height: fit-content;
    max-width: 100% !important;
}

    .common_modal_wrapper .middle-content .head_text, .head_text {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
        max-width: 1006px;
        margin-bottom: 20px;
    }

.panel-heading {
    max-width: 1119px;
    margin: 0 auto;
}

.common_modal_wrapper .middle-content .scrollable_wrapper, .scrollable_wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: auto !important;
    max-height: 476px;
    margin-top: 28px;
}

    .common_modal_wrapper .middle-content .scrollable_wrapper .form_wrap {
        background: #FFFFFF;
        border-radius: 7px;
    }


.titleV5 {
    color: var(--corefares-primary-black, #2A2D31);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    min-width: 100px !important;
    text-align: start;
    padding-bottom: 5px;
}


.roleAndP .role_box .active {
    background-color: #189eff !important;
    color: white;
    opacity: 1;
}
/*
.nav-link:hover {
    background-color: #e2e7ee !important;
}*/

.nav-tabs::after {
    display: none
}

.nav::after {
    display: none
}

.nav-tabs:before {
    display: none
}

.nav-tabs .nav-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.checkbox_grid_role {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.fare_break_wrapper {
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1120px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

    .fare_break_wrapper .btn-close {
        position: absolute;
        top: 33px;
        right: 33px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: -moz-fit-content;
        height: fit-content;
        width: -moz-fit-content;
        width: fit-content;
        z-index: 999;
        margin-bottom: 20px;
    }

        .fare_break_wrapper .btn-close img {
            height: 20px;
            width: 20px;
        }

    .fare_break_wrapper .middle-content {
        padding: 10px 20px;
        width: 100% !important;
        margin: 0;
        height: fit-content;
        max-width: 100% !important;
        max-height: 600px !important;
        overflow: auto;
        /* Custom scrollbar for Firefox */
        scrollbar-width: thin; /* Thin scrollbar */
        scrollbar-color: #888 transparent; /* Track color */
    }

        /* Custom scrollbar for Webkit browsers */
        .fare_break_wrapper .middle-content::-webkit-scrollbar {
            width: 2px; /* Thin scrollbar width */
        }

        .fare_break_wrapper .middle-content::-webkit-scrollbar-track {
            background: transparent; /* Transparent background for the track */
        }

        .fare_break_wrapper .middle-content::-webkit-scrollbar-thumb {
            background-color: #888; /* Scrollbar thumb color */
            border-radius: 3px; /* Rounded corners for the thumb */
        }

            .fare_break_wrapper .middle-content::-webkit-scrollbar-thumb:hover {
                background-color: #555; /* Darker color on hover */
            }


        .fare_break_wrapper .middle-content .head_text {
            font-weight: 700;
            font-size: 22px;
            line-height: 30px;
            letter-spacing: -0.003em;
            color: #121213;
            max-width: 1006px;
            /*margin-bottom: 20px;*/
        }

@media screen and (max-width: 1120px) {
    .fare_break_wrapper {
        width: 95%;
    }
}

.add_passenger_wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}


@media screen and (max-width: 970px) {
    .add_passenger_wrapper {
        width: 95%;
    }
}

.add_passenger_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 999;
}

    .add_passenger_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.add_passenger_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.add_passenger_wrapper .middle-content {
    padding: 32px;
    width: 100% !important;
    margin: 0;
    height: 600px;
}

    .add_passenger_wrapper .middle-content .head_text {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
        max-width: 1006px;
    }

    .add_passenger_wrapper .middle-content .scrollable_wrapper {
        display: flex;
        flex-direction: column;
        gap: 28px;
        overflow: auto !important;
        height: 476px;
        margin-top: 28px;
    }

        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap {
            background: #FFFFFF;
            border-radius: 7px;
            padding-bottom: 40px;
        }

            .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main {
                padding-left: 40px;
            }

                .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-l {
                    width: 420px !important;
                }

                .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-l-2 {
                    width: 37% !important;
                }

                .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group {
                    box-sizing: border-box;
                    position: relative;
                    height: 49px;
                    width: 200px;
                    border-radius: 8px;
                    border: 1px solid #d2dce9;
                    margin-bottom: 20px;
                    margin-right: 20px;
                }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group.title {
                        width: 8%;
                    }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group.title .ms-choice .icon-caret {
                            margin-bottom: 5px;
                        }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .select-el {
                        display: flex;
                        align-items: center;
                        border-radius: 8px;
                        height: 49px;
                        width: 100% !important;
                    }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .select-el .ms-choice {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            height: 50%;
                            border: none;
                            padding-left: 10px;
                            padding-right: 20px;
                        }

                            .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .select-el .ms-choice span {
                                position: static;
                                font-family: "Manrope";
                                font-style: normal;
                                font-weight: 500;
                                font-size: 14px;
                                line-height: 19px;
                                color: #292c31;
                            }

                            .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .select-el .ms-choice > div.icon-caret {
                                margin-top: 0px;
                                position: static;
                                border: solid black;
                                border-width: 0 2px 2px 0;
                                display: inline-block;
                                padding: 3px;
                                transform: rotate(45deg);
                                -webkit-transform: rotate(45deg);
                            }

                                .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .select-el .ms-choice > div.icon-caret.open {
                                    transform: rotate(-135deg);
                                    -webkit-transform: rotate(-135deg);
                                    margin-top: 10px;
                                }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .error {
                        position: absolute;
                        font-size: 10px;
                        line-height: 10px;
                        color: #dd1f03;
                        bottom: -16px;
                        left: 0;
                        margin-left: 0px !important;
                        background: url("/assets/images/icons/exclamation-mark-circle.svg") center left no-repeat;
                        background-size: 10px;
                        padding-left: 14px;
                    }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el {
                        border: none;
                        border-radius: 8px !important;
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 19px;
                        color: #292C31;
                        height: 46px;
                        position: relative;
                        z-index: 1;
                        width: 100%;
                    }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el.error {
                            position: relative;
                            bottom: 0px;
                            font-size: 14px;
                            line-height: 19px;
                            background: transparent;
                            padding-left: 44px;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el::-moz-placeholder {
                            opacity: 0;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el::placeholder {
                            opacity: 0;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:focus {
                            box-shadow: none;
                            background: transparent;
                        }

                            .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:focus ~ .input-border {
                                opacity: 1;
                            }

                            .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:focus ~ .input-label {
                                top: -10px;
                                font-size: 12px;
                            }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
                            opacity: 1;
                            pointer-events: none;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:not(:placeholder-shown) ~ .input-border {
                            opacity: 1;
                            pointer-events: none;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
                            top: -10px;
                            font-size: 12px;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el:not(:placeholder-shown) ~ .input-label {
                            top: -10px;
                            font-size: 12px;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el.error ~ .input-border {
                            border: 1px solid #DD1F03;
                            opacity: 1;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el.error ~ .input-group-text svg path, .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el.error ~ .input-group-text svg rect, .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-el.error ~ .input-group-text svg circle {
                            stroke: #DD1F03;
                        }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-border {
                        border: #189EFF 1px solid;
                        position: absolute;
                        width: calc(100% + 2px);
                        height: calc(100% + 2px);
                        left: 0;
                        top: -1px;
                        border-radius: 8px !important;
                        opacity: 0;
                        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                    }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-group-text {
                        background: transparent;
                        border: none;
                        padding: 12px;
                        min-width: 44px;
                        height: 48px;
                        display: inline-flex;
                        justify-content: center;
                        position: absolute;
                        left: 0;
                        z-index: 2;
                    }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-label {
                        position: absolute;
                        top: 14px;
                        left: 10px;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 19px;
                        background: #fff;
                        padding: 0 8px;
                        color: #67707B;
                        pointer-events: none;
                        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                    }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-eye {
                        position: absolute;
                        right: 0px;
                        top: 0;
                        height: 48px;
                        width: 48px;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        z-index: 9;
                        cursor: pointer;
                    }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-eye svg path {
                            fill: #c4c4c4;
                            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-eye svg circle {
                            stroke: #c4c4c4;
                            transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-eye.active svg path {
                            fill: #189EFF;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-eye.active svg circle {
                            stroke: #189EFF;
                        }

                        .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .input-group .input-eye::before {
                            content: "";
                            position: absolute;
                            width: 1px;
                            height: calc(100% - 20px);
                            top: 10px;
                            left: 0;
                            background: #d2dce9;
                        }

                .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .person-details-heading {
                    font-family: "Manrope";
                    font-style: normal;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 27px;
                    margin-bottom: 20px;
                    margin-top: 20px;
                }

                .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .flyer_detail_sec {
                    display: flex;
                    flex-direction: column;
                }

                    .add_passenger_wrapper .middle-content .scrollable_wrapper .form_wrap .person-details-main .flyer_detail_sec .ssr-cards {
                        padding-top: 10px;
                        height: -moz-fit-content;
                        height: fit-content;
                    }

        .add_passenger_wrapper .middle-content .scrollable_wrapper .ap_btn_wrapper {
            background-color: #FFFFFF;
            border-radius: 7px;
            max-width: 100%;
            padding: 15.31px 29px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

            .add_passenger_wrapper .middle-content .scrollable_wrapper .ap_btn_wrapper a {
                font-weight: 500;
                font-size: 16px;
                line-height: 22px;
                letter-spacing: -0.003em;
                text-decoration-line: underline;
                color: #123D6C;
            }

        .add_passenger_wrapper .middle-content .scrollable_wrapper .save_continue {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 20px;
        }

.quote_book_select_itinerary_wrapper {
    /* position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 1120px;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;*/
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #d2dce9;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .quote_book_select_itinerary_wrapper {
        width: 95%;
    }
}

.quote_book_select_itinerary_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 999;
}

    .quote_book_select_itinerary_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.quote_book_select_itinerary_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.quote_book_select_itinerary_wrapper .middle-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    padding: 32px;
    width: 100% !important;
    margin: 0 auto;
}

    .quote_book_select_itinerary_wrapper .middle-content .head_text {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
        max-width: 1006px;
    }

    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards {
        width: 900px;
        margin: 0 auto;
        height: 427px;
        overflow: auto;
        display: flex;
        flex-direction: column;
        gap: 31px;
    }

@media screen and (max-width: 900px) {
    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards {
        width: 716px;
    }
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card {
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar {
        display: flex;
        width: 100%;
        height: 119px;
    }

        .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li {
            width: 25%;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-direction: column;
            padding: 32px;
        }

@media screen and (max-width: 900px) {
    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li {
        padding: 10px;
    }
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li.drop_box {
    background: #E2E7EE;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px 15px 32px 32px !important;
}

@media screen and (max-width: 900px) {
    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li.drop_box {
        padding: 10px !important;
    }
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li.drop_box .db_left {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li.drop_box .caret_switch {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li .text_16_ebold {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #2A2D31;
    margin-bottom: 8px;
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar li .sub_text_16 {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #515050;
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar .qc_check_wrapper {
    width: 63px;
    border-right: 1px solid #E2E7EE;
    position: relative;
    transition: border-color 0.3s ease;
}

    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .quote_card .qc_topbar .qc_check_wrapper .big_check {
        position: absolute !important;
        top: 57% !important;
        left: 77% !important;
        transform: translate(-50%, -50%) !important;
    }

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar {
    margin: 32.5px;
}

@media screen and (max-width: 900px) {
    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar {
        margin: 12.5px;
    }
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar .qc_cards_info {
    border: 1px solid #E2E7EE;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 35px 21px;
}

@media screen and (max-width: 900px) {
    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar .qc_cards_info {
        padding: 24px 8px;
    }
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar.active_qc_card {
    display: flex !important;
}

.quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar .view-departure {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    gap: 6px;
}

    .quote_book_select_itinerary_wrapper .middle-content .qbs_cards .qc_bottombar .view-departure .return_plane {
        transform: scaleX(-1);
    }

.quote_book_select_itinerary_wrapper .save_continue {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 30px 0;
}

    .quote_book_select_itinerary_wrapper .save_continue a {
        text-decoration: none;
        color: #FFF;
    }

.modal_triggers {
    border: 1px solid red;
    min-height: 100px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
}

    .modal_triggers ul {
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.003em;
        color: #121213;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 60%;
    }

        .modal_triggers ul button {
            width: 146px;
            height: 36px;
            background: #189eff;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
            border: none;
        }

.Itinerary-container.status_page {
    padding: 0px 32.5px 0px !important;
}

@media screen and (max-width: 900px) {
    .Itinerary-container.status_page {
        padding: 0px 20px 0px !important;
    }
}

.Itinerary-container .ic_topbar {
    display: flex;
    width: 100%;
    height: 119px;
}

    .Itinerary-container .ic_topbar li {
        width: 25%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        padding: 32px 0px;
    }

        .Itinerary-container .ic_topbar li.drop_box {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0px 22px 22px;
        }

            .Itinerary-container .ic_topbar li.drop_box .db_left {
                display: flex;
                justify-content: flex-end;
                align-items: flex-end;
                flex-direction: column;
            }

        .Itinerary-container .ic_topbar li .text_16_ebold {
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #2A2D31;
            margin-bottom: 8px;
        }

        .Itinerary-container .ic_topbar li .sub_text_16 {
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #515050;
        }

.caret_switch_v1 {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caret_switch_v2 {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-cir {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.passenger_details.pds_quote {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 7px;
    margin-top: 26px;
}

.passenger_details .pdb_topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .passenger_details .pdb_topbar .left_btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 23px;
    }

        .passenger_details .pdb_topbar .left_btns .pd_text {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #121213;
        }

        .passenger_details .pdb_topbar .left_btns .edit_details {
            width: 116px;
            height: 32px;
            background: #F1F5F9;
            border-radius: 40px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

    .passenger_details .pdb_topbar .right_btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 23px;
    }

        .passenger_details .pdb_topbar .right_btns .add_passenger_btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #515050;
            width: 139px;
            height: 32px;
            background: #F1F5F9;
            border-radius: 40px;
            border: none;
            outline: none;
        }

.Itinerary-container .ic_topbar li .time_limit {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #DD1F03;
    display: flex;
    gap: 3px;
}

.pd_left_1 {
    flex-direction: column;
    gap: 0px !important;
    justify-content: flex-start;
}

.passenger_details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 24px 32px;
    background: #FFFFFF;
    border-radius: 7px;
    margin-top: 15px;
}

@media screen and (max-width: 900px) {
    .passenger_details {
        padding: 20px;
    }
}

.passenger_details .pdb_topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .passenger_details .pdb_topbar .left_btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 23px;
    }

        .passenger_details .pdb_topbar .left_btns .pd_text {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #121213;
        }

        .passenger_details .pdb_topbar .left_btns .edit_details {
            width: 116px;
            height: 32px;
            background: #F1F5F9;
            border-radius: 40px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

    .passenger_details .pdb_topbar .right_btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 23px;
    }

        .passenger_details .pdb_topbar .right_btns .add_passenger_btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: -0.003em;
            color: #515050;
            width: 139px;
            height: 32px;
            background: #F1F5F9;
            border-radius: 40px;
            border: none;
            outline: none;
        }

.passenger_details .pdb_bottombar {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #e2e7ee;
    border-radius: 7px;
    margin-top: 20px;
    font-family: "Manrope";
    font-style: normal;
    overflow: hidden;
}

    .passenger_details .pdb_bottombar .Passenger-table tbody {
        width: 836px;
        padding: 14px 44px 44px 44px;
        display: flex !important;
        flex-direction: column !important;
    }

    .passenger_details .pdb_bottombar .passenger-contact tbody {
        padding: 10px 44px;
    }

@media screen and (max-width: 1120px) {
    .passenger_details .pdb_bottombar .Passenger-table tbody {
        width: 100%;
        padding: 12px 22px 40px 22px;
    }
}

@media screen and (max-width: 1120px) {
    .passenger_details .pdb_bottombar .Passenger-table {
        width: 100%;
    }
}

.passenger_details .pdb_bottombar .passenger-details-head {
    background: #e2e7ee;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #121213;
    height: 50px;
    width: 1080px;
    display: flex;
    align-items: center;
    padding-left: 28.93px;
    gap: 5px;
}

    .passenger_details .pdb_bottombar .passenger-details-head img {
        width: 28px;
        height: 28px;
    }

.passenger_details .pdb_bottombar tr {
    margin-top: 22px;
}

.passenger_details .pdb_bottombar .table-data {
    max-width: 200px;
    min-width: 200px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #67707b;
    padding-right: 14px;
}

@media screen and (max-width: 900px) {
    .passenger_details .pdb_bottombar .table-data {
        max-width: 170px;
        min-width: 170px;
    }
}

.passenger_details .pdb_bottombar .table-data .table-sub, .table-datas .table-sub {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #121213;
}

.passenger_details .pdb_bottombar .table-data .link {
    color: #189eff;
    text-decoration: underline;
}

.passenger_details .pdb_bottombar .table-inner-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.003em;
    color: #121213;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

    .passenger_details .pdb_bottombar .table-inner-heading .plusB-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: -moz-fit-content;
        width: fit-content;
        flex-direction: row;
        cursor: pointer;
    }

        .passenger_details .pdb_bottombar .table-inner-heading .plusB-wrapper img {
            height: 14px;
            width: 14px;
        }

.que {
    background-color: #ffffff;
}

.que_wrapper {
    max-width: 1119px;
    margin: 0px auto 0;
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 32.25px 0;
    min-height: 100vh;
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (pointer: coarse), only screen and (device-width: 820px) and (device-height: 1180px) {
    .que_wrapper {
        margin: 0 25px 0;
    }
}

@media screen and (max-width: 1024px) {
    .que_wrapper {
        margin: 0 20px 0;
    }
}
/*@media screen and (max-width: 1024px) {
    .que_wrapper {*/
/*max-width: 1119px;*/
/*margin: 0px 20px;
        0px;
        min-height: 100vh;
    }
}*/

.que_wrapper_tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #D2DCE9;
    gap: 50px;
}

    .que_wrapper_tabs .active {
        position: relative;
    }

        .que_wrapper_tabs .active::after {
            content: " ";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            width: 100%;
            background-color: #189EFF;
            z-index: 1;
            border-radius: 5px;
        }

.que_wrapper_tabs_tab {
    color: var(--corefares-primary-black, #2A2D31);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    min-width: 100px !important;
    text-align: center;
    padding-bottom: 5px;
}

.que_wrapper_content td {
    word-break: break-word;
}

.que_wrapper_content_item {
    display: none;
}

    .que_wrapper_content_item:first-child {
        display: block;
    }

    .que_wrapper_content_item .containerv1 {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 155.6%;
        margin: 0 !important;
        padding: 0;
        width: 100% !important;
    }

        .que_wrapper_content_item .containerv1 table th {
            text-align: start;
            color: var(--corefares-primary-dark, #121213);
            font-size: 12px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            letter-spacing: -0.036px;
        }

        .que_wrapper_content_item .containerv1 table td {
            text-align: start;
            color: var(--corefares-primary-dark, #2A2D31);
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 155.6%;
        }

        .que_wrapper_content_item .containerv1 .table-id, .table-id, .que_wrapper_content_item .containerv1 .table-ids, .table-ids {
            border-radius: 8px !important;
            border: 1px solid #f1f5f9 !important;
            box-shadow: 0px 0px 1px 1px #f1f5f9;
            overflow: hidden;
            width: 100%;
        }
            /*@media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (pointer: coarse), only screen and (device-width: 820px) and (device-height: 1180px) {
    .que_wrapper_content_item .containerv1 .table-id, .table-id, .que_wrapper_content_item .containerv1 .table-ids {
        border-radius: 8px !important;
        border: 1px solid #f1f5f9 !important;
        box-shadow: 0px 0px 1px 1px #f1f5f9;
        overflow: hidden;
        max-width: 100%;
    }
}*/

            .que_wrapper_content_item .containerv1 .table-id thead tr, .table-id thead tr,
            .que_wrapper_content_item .containerv1 .table-ids thead tr, .table-ids thead tr {
                /*height: 60.549px;*/
                height: 45px !important;
                overflow: hidden !important;
                background: var(--table-header, #E2E7EE);
            }

                .que_wrapper_content_item .containerv1 .table-id thead tr th, .table-id thead tr th,
                .que_wrapper_content_item .containerv1 .table-ids thead tr th, .table-ids thead tr th {
                    padding: 18px 12px !important;
                }

            .que_wrapper_content_item .containerv1 .table-id tbody tr, .table-id tbody tr,
            .que_wrapper_content_item .containerv1 .table-ids tbody tr, .table-ids tbody tr {
                border: 1px solid #f1f5f9 !important;
            }

                .que_wrapper_content_item .containerv1 .table-id tbody tr td, .table-id, .table-ids tbody tr td,
                .que_wrapper_content_item .containerv1 .table-ids tbody tr td, .table-ids tbody tr td {
                    padding: 6px;
                }

                    .que_wrapper_content_item .containerv1 .table-id tbody tr td:nth-child(2), .table-id tbody tr td:nth-child(2),
                    .que_wrapper_content_item .containerv1 .table-ids tbody tr td:nth-child(2), .table-ids tbody tr td:nth-child(2) {
                        color: var(--corefares-primary-blue, #189EFF) !important;
                        text-transform: uppercase;
                    }

                    .que_wrapper_content_item .containerv1 .table-id tbody tr td.user, .table-id tbody tr td.user,
                    .que_wrapper_content_item .containerv1 .table-ids tbody tr td.user, .table-ids tbody tr td.user {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                        .que_wrapper_content_item .containerv1 .table-id tbody tr td.user span, .table-id tbody tr td.user span,
                        .que_wrapper_content_item .containerv1 .table-ids tbody tr td.user span, .table-ids tbody tr td.user span {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            height: 24px;
                            width: 24px;
                            background-color: #7D8B9C;
                            border-radius: 50%;
                            color: #fff;
                            font-size: 12px;
                            font-weight: 500;
                        }

                    .que_wrapper_content_item .containerv1 .table-id tbody tr td.status_cell div,
                    .que_wrapper_content_item .containerv1 .table-ids tbody tr td.status_cell div {
                        margin: 0 auto;
                    }

        .que_wrapper_content_item .containerv1 .pagination {
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .que_wrapper_content_item .containerv1 .pagination li {
                min-width: 40px;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: var(--corefares-primary-dark, #121213);
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
            }

                /*.que_wrapper_content_item .containerv1 .pagination li.active {
                    color: var(--corefares-secondary-gray, #67707B);
                }*/
                .que_wrapper_content_item .containerv1 .pagination li.active {
                    color: #fff;
                    background-color: #189EFF;
                    border-radius: 3px;
                    height: 35px;
                    width: 35px;
                }

                .que_wrapper_content_item .containerv1 .pagination li:hover {
                    cursor: pointer;
                }

        .que_wrapper_content_item .containerv1 .header_wrap {
            margin-bottom: 34px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left {
                width: 100%;
                display: flex;
            }

                .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap {
                    display: flex;
                    width: 100%;
                    justify-content: flex-start;
                    align-items: center;
                    max-width: 508px;
                    height: 36px;
                    border-radius: 8px;
                    background: var(--corefare-tag-gray, #F1F5F9);
                    padding: 10px 12px;
                }

                    .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 {
                        position: relative;
                        width: 250px;
                    }

                        .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectBtn {
                            /*background: url("../../images/icons/down-caret.png") no-repeat fixed center;*/
                            padding: 8px 0;
                            box-sizing: border-box;
                            border-radius: 3px;
                            width: 100%;
                            cursor: pointer;
                            position: relative;
                            -webkit-user-select: none;
                            -moz-user-select: none;
                            user-select: none;
                        }

                            .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectBtn:after {
                                content: "";
                                position: absolute;
                                top: 45%;
                                right: 15px;
                                width: 6px;
                                height: 6px;
                                transform: translateY(-50%) rotate(45deg);
                                border-right: 2px solid #666;
                                border-bottom: 2px solid #666;
                                transition: 0.2s ease;
                            }

                            .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectBtn.after-toggle:after {
                                transform: rotate(-135deg);
                            }

                        .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectDropdown {
                            position: absolute;
                            top: 35px;
                            width: 130%;
                            overflow: hidden;
                            background: url("../../images/icons/down-caret.png") no-repeat fixed center;
                            z-index: 1;
                            transform: scale(1, 0);
                            transform-origin: top center;
                            visibility: hidden;
                            transition: 0.2s ease;
                            border-radius: 6px;
                            border-top: 1px solid var(--table-header, #E2E7EE);
                            background: #FFF;
                            box-shadow: 10px 14px 14px 0px rgba(0, 0, 0, 0.05);
                            padding: 15px 0;
                        }

                            .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectDropdown .option {
                                padding: 7px 25px;
                                box-sizing: border-box;
                                cursor: pointer;
                                color: var(--corefares-primary-black, #2A2D31);
                                font-size: 12px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: normal;
                            }

                                .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectDropdown .option:hover {
                                    background: #f8f8f8;
                                }

                                .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectDropdown .option.active {
                                    color: var(--corefares-primary-blue, #189EFF);
                                    font-size: 12px;
                                    font-style: normal;
                                    font-weight: 400;
                                    line-height: normal;
                                }

                            .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .select_v2 .selectDropdown.toggle {
                                visibility: visible;
                                transform: scale(1, 1);
                            }

                    .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .select_search_wrap .divider_v2 {
                        width: 3px;
                        height: 12px;
                        background: #D2DCE9;
                        margin-right: 3px;
                    }

                .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .ad_search_clear {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-left: 14px;
                }

                    .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .ad_search_clear .advanced_search {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        border-radius: 8px;
                        border: 1px solid var(--corefares-secondary-light-line, #D2DCE9);
                        background: var(--light-grey, #FAFAFA);
                        height: 36px;
                        width: -moz-fit-content;
                        width: fit-content;
                        padding: 10px;
                        color: var(--corefares-primary-black, #2A2D31);
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: normal;
                        gap: 8px;
                    }

                        .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .ad_search_clear .advanced_search .search_group {
                            position: relative;
                        }

                            .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .ad_search_clear .advanced_search .search_group .plus {
                                position: absolute;
                                top: -3px;
                                right: -3px;
                            }

                        .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .ad_search_clear .advanced_search span {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 22px;
                            height: 22px;
                            border-radius: 22px;
                            background: var(--corefares-primary-blue, #189EFF);
                            color: #FFF;
                            font-size: 10px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: normal;
                        }

                    .que_wrapper_content_item .containerv1 .header_wrap .wrapper_left .ad_search_clear .clear {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        margin-left: 14px;
                        color: var(--corefares-gray, #515050);
                        font-size: 12px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: normal;
                        letter-spacing: -0.036px;
                        gap: 3px;
                        height: 36px;
                    }

            .que_wrapper_content_item .containerv1 .header_wrap .export_btn {
                display: flex;
                height: 36px;
                padding: 5px 26px;
                justify-content: center;
                align-items: center;
                gap: 4px;
                color: var(--corefares-primary-black, #2A2D31);
                font-size: 14px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
                border-radius: 8px;
                border: 1px solid var(--table-header, #E2E7EE);
            }

        .que_wrapper_content_item .containerv1 .num_rows {
            width: 20%;
            float: left;
        }

        .que_wrapper_content_item .containerv1 .tb_search {
            width: 100%;
            display: flex;
        }

            .que_wrapper_content_item .containerv1 .tb_search input {
                width: 100%;
                color: var(--corefares-primary-black, #2A2D31);
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
            }

                .que_wrapper_content_item .containerv1 .tb_search input ::-moz-placeholder {
                    color: var(--corefares-secondary-gray-2, #7D8B9C);
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }

                .que_wrapper_content_item .containerv1 .tb_search input ::placeholder {
                    color: var(--corefares-secondary-gray-2, #7D8B9C);
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }

        .que_wrapper_content_item .containerv1 .pagination-container, .pagination-containers {
            float: right;
            margin-top: 50px;
        }

        .que_wrapper_content_item .containerv1 .rows_count {
            width: 20%;
            float: right;
            text-align: right;
            color: #999;
        }

/* checkbox settings 👇 */
.fill-checkbox {
    --color: #189EFF;
}

    .fill-checkbox .fill-control-input {
        opacity: 0;
        width: 16px !important;
        height: 16px;
    }

        .fill-checkbox .fill-control-input:checked ~ .fill-control-indicator {
            background-color: var(--color);
            border-color: var(--color);
            background-size: 80%;
        }

    .fill-checkbox .fill-control-indicator {
        border-radius: 3px;
        display: inline-block;
        position: absolute;
        top: 0px;
        left: 0;
        width: 16px;
        height: 16px;
        border: 2px solid #aaa;
        transition: 0.3s;
        background: transperent;
        background-size: 0%;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    }

.fill-checkbox2 {
    --color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9.68px;
}

    .fill-checkbox2 .fill-control-input2 {
        opacity: 0;
        width: 12px !important;
        height: 12px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .fill-checkbox2 .fill-control-input2:checked ~ .fill-control-indicator2 {
            background-color: var(--color);
            border-color: #2A2D31;
            background-size: 100%;
        }

            .fill-checkbox2 .fill-control-input2:checked ~ .fill-control-indicator2 ~ .label-name {
                color: #2A2D31;
            }

    .fill-checkbox2 .fill-control-indicator2 {
        border-radius: 2px;
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 12px;
        height: 12px;
        border: 1.5px solid #2A2D31;
        transition: 0.3s;
        background: transperent;
        background-size: 0%;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14L8.23309 16.4248C8.66178 16.7463 9.26772 16.6728 9.60705 16.2581L18 6' stroke='%232A2D31' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    .fill-checkbox2 .label-name {
        color: var(--corefares-secondary-gray, #67707B);
        font-size: 12px;
        font-weight: 400;
    }

.tooltip_sec_que {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: inline-block;
}

    .tooltip_sec_que .tooltip_target_que {
        pointer-events: auto;
        cursor: pointer;
        background-color: var(--table-header, #E2E7EE);
        height: 20px;
        width: 20px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--corefares-primary-blue, #189EFF);
        font-size: 10px;
        font-weight: 600;
    }

    .tooltip_sec_que:hover .tooltip_box_que {
        visibility: visible;
        opacity: 1;
    }

    .tooltip_sec_que .tooltip_box_que {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        bottom: 26px;
        left: 50%;
        transform: translateX(-50%);
        transition: visibility 0s, opacity 0.5s ease-in-out;
        white-space: nowrap;
        z-index: 10;
    }

        .tooltip_sec_que .tooltip_box_que::before {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            height: 0px;
            width: 0px;
            border-bottom: 4px solid rgba(0, 0, 0, 0.85);
            border-right: 4px solid rgba(0, 0, 0, 0.85);
            border-top: 4px solid transparent;
            border-left: 4px solid transparent;
            z-index: 100;
        }

        .tooltip_sec_que .tooltip_box_que .tooltip_data_que {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.85);
            filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
            border-radius: 4px !important;
            height: -moz-fit-content;
            height: fit-content;
            width: -moz-fit-content !important;
            width: fit-content !important;
            position: relative;
            z-index: 100;
            padding: 20px;
            flex-direction: column;
        }

            .tooltip_sec_que .tooltip_box_que .tooltip_data_que li {
                color: var(--light-grey, #FAFAFA);
                font-size: 10px;
                font-weight: 500;
            }

.box-heading {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.048px;
}

.loaderV2 {
    border: 2px solid White;
    border-left-color: transparent;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: spin89345 1s linear infinite;
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
    display: none;
}

    .overlay .overlayDoor:before, .overlay .overlayDoor:after {
        content: "";
        position: absolute;
        width: 50%;
        height: 100%;
        background: rgba(17, 17, 17, 0.9);
        backdrop-filter: blur(5px);
        transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
        transition-delay: 0.8s;
    }

    .overlay .overlayDoor:before {
        left: 0;
    }

    .overlay .overlayDoor:after {
        right: 0;
    }

    .overlay .overlayContent {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    }

.loader32 {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loader32 .inner {
        width: 64px;
        height: 64px;
        border: 3px solid transparent;
        border-top: 3px solid #fff;
        border-radius: 50%;
        animation: spinInner 1s linear infinite;
    }

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

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

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}


@keyframes spin89345 {
    0% {
        transform: rotate(0deg);
    }

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

.advanced_search_wrapper {
    position: absolute;
    z-index: 50;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    height: -moz-fit-content;
    height: fit-content;
    background: #fff;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 0 !important;
    overflow: hidden;
}

@media screen and (max-width: 970px) {
    .advanced_search_wrapper {
        width: 95%;
    }
}

.advanced_search_wrapper .btn-close {
    position: absolute;
    top: 33px;
    right: 33px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

    .advanced_search_wrapper .btn-close img {
        height: 20px;
        width: 20px;
    }

.advanced_search_wrapper .container {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.advanced_search_wrapper .middle-content {
    padding: 32px;
    min-width: 100%;
    margin: 0;
    height: 600px;
}

    .advanced_search_wrapper .middle-content .head_text {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        color: #121213;
        max-width: 1006px;
        letter-spacing: -0.066px;
    }

    .advanced_search_wrapper .middle-content .scrollable_wrapper {
        overflow: auto;
        height: 476px;
        margin-top: 28px;
        width: 100%;
        padding: 58px;
        border-radius: 8px;
    }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
            margin-bottom: 25px;
        }

            .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box {
                display: flex;
                margin-top: 16px;
                border-radius: 8px;
                border: 1px solid var(--table-header, #E2E7EE);
                background: #FFF;
                box-sizing: border-box;
            }

                .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .vertical_divider {
                    width: 1px;
                    background-color: #E2E7EE;
                }

                .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .wrapper_cal {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 15px 20px;
                }

                    .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .wrapper_cal .calender-icon {
                        width: 24px;
                        height: 16px;
                    }

                        .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .wrapper_cal .calender-icon img {
                            height: 100%;
                            width: 100%;
                            -o-object-fit: contain;
                            object-fit: contain;
                        }

                    .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .wrapper_cal input {
                        height: auto !important;
                        padding: 0 !important;
                    }

                        .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .wrapper_cal input::-moz-placeholder {
                            color: #292C31 !important;
                            font-size: 14px;
                            font-weight: 500;
                        }

                        .advanced_search_wrapper .middle-content .scrollable_wrapper .calenders .cal_box .wrapper_cal input::placeholder {
                            color: #292C31 !important;
                            font-size: 14px;
                            font-weight: 500;
                        }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 {
            display: grid !important;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            position: relative;
            z-index: 1;
        }

@media screen and (max-width: 768px) {
    .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2.input-h {
    display: flex !important;
    gap: 12px;
}

.advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-l-2 {
    width: 222px !important;
}

.advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group {
    box-sizing: border-box;
    position: relative;
    height: 49px;
    max-width: 439px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #d2dcf9;
    margin-top: 6px;
}

    .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el {
        border: none;
        border-radius: 8px !important;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        color: #292C31;
        height: 46px;
        position: relative;
        z-index: 1;
        width: 100%;
    }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el::-moz-placeholder {
            opacity: 0;
        }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el::placeholder {
            opacity: 0;
        }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:focus {
            box-shadow: none;
            background: transparent;
        }

            .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:focus ~ .input-border {
                opacity: 1;
            }

            .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:focus ~ .input-label {
                top: -10px;
                font-size: 12px;
            }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-border {
            opacity: 1;
        }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:not(:placeholder-shown) ~ .input-border {
            opacity: 1;
        }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:not(:-moz-placeholder-shown) ~ .input-label {
            top: -10px;
            font-size: 12px;
        }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-el:not(:placeholder-shown) ~ .input-label {
            top: -10px;
            font-size: 12px;
        }

    .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-border {
        border: #189EFF 1px solid;
        position: absolute;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        left: 0;
        top: -1px;
        border-radius: 8px !important;
        opacity: 0;
        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .advanced_search_wrapper .middle-content .scrollable_wrapper .inputsV2 .input-group .input-label {
        position: absolute;
        top: 14px;
        left: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        background: #fff;
        padding: 0 8px;
        color: #292C31;
        z-index: 2;
        pointer-events: none;
        transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

.advanced_search_wrapper .middle-content .scrollable_wrapper .searchs_que {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 31px 0 34px;
}

    .advanced_search_wrapper .middle-content .scrollable_wrapper .searchs_que .asm_select .ms-choice {
        height: 50px;
    }

        .advanced_search_wrapper .middle-content .scrollable_wrapper .searchs_que .asm_select .ms-choice span {
            height: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

    .advanced_search_wrapper .middle-content .scrollable_wrapper .searchs_que .asm_select .placeholder {
        color: #292C31 !important;
        font-size: 14px !important;
        font-style: normal;
        font-weight: 500 !important;
        line-height: normal;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        padding: 15px 20px;
    }

.advanced_search_wrapper .middle-content .scrollable_wrapper .checkboxes {
    margin-top: 31px;
}

    .advanced_search_wrapper .middle-content .scrollable_wrapper .checkboxes .box {
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        gap: 29px;
    }

.advanced_search_wrapper .middle-content .scrollable_wrapper .btns {
    margin-top: 55px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.fade:not(.show) {
    display: none !important;
}

.transactions .cal_trans {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .transactions .cal_trans .export_btn {
        display: flex;
        height: 36px;
        padding: 5px 26px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        color: var(--corefares-primary-black, #2A2D31);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: 8px;
        border: 1px solid var(--table-header, #E2E7EE);
    }

.transactions .balance_box {
    margin: 20px 0 21px;
    display: flex;
    gap: 20px;
}

    .transactions .balance_box .divider_v3 {
        width: 1px;
        background-color: #D2DCE9;
        margin: 0 50px;
    }

    .transactions .balance_box .title_lg {
        color: var(--corefares-secondary-gray, #67707B);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .transactions .balance_box .title_md {
        color: var(--corefares-secondary-gray, #67707B);
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 9px;
    }

    .transactions .balance_box .balance_text_lg {
        font-size: 20px;
        color: var(--corefares-primary-black, #2A2D31);
        font-weight: 600;
    }

        .transactions .balance_box .balance_text_lg.balance_blue {
            color: var(--corefares-primary-blue, #189EFF) !important;
        }

    .transactions .balance_box .balance_text_md {
        font-size: 14px;
        color: var(--corefares-primary-black, #2A2D31);
        font-weight: 600;
    }

    .transactions .balance_box .left {
        display: flex;
        padding: 36px 45px;
        border-radius: 7px;
        background: rgba(24, 158, 255, 0.1);
    }

        .transactions .balance_box .left .box {
            min-width: 134px;
        }

    .transactions .balance_box .right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 7px;
        background: var(--corefare-tag-gray, #F1F5F9);
        width: 100%;
    }

        .transactions .balance_box .right .left_wrap {
            display: flex;
            padding: 40px 45px;
        }

            .transactions .balance_box .right .left_wrap .box {
                min-width: 112px;
            }

        .transactions .balance_box .right .right_wrap {
            margin: 15px 15px 15px 0;
            border-radius: 7px;
            background: rgba(24, 158, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .transactions .balance_box .right .right_wrap .box {
                padding: 24px;
                min-width: 160px;
            }

.transactions .containerv1 table th {
    color: #67707B;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.036px;
    text-align: start;
}

.transactions .containerv1 table td {
    text-align: start;
    color: var(--corefares-primary-dark, #121213);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 155.6%;
}

    .transactions .containerv1 table td.debit {
        color: #FE0002 !important;
    }

    .transactions .containerv1 table td.credit {
        color: #39B172 !important;
    }

    .transactions .containerv1 table td span {
        text-align: right;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

        .transactions .containerv1 table td span.running_inr {
            color: var(--corefares-secondary-gray, #67707B);
        }

.transactions .trsn_page {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .transactions .trsn_page .calender-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.transactions .input-wrapper1 {
    position: relative;
    border: 1px solid #189eff;
    border-radius: 8px;
    padding: 0 21px;
}

    .transactions .input-wrapper1 label {
        position: absolute;
        display: block;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #67707b;
        left: 10px;
        top: -6px;
        background-color: #ffffff;
        padding-left: 5px;
        padding-right: 5px;
    }

    .transactions .input-wrapper1 input {
        display: inline-block;
        border: none;
        width: 225px;
        height: 49px;
        padding: 0 !important;
        color: #292C31;
        font-size: 14px !important;
        font-weight: 500 !important;
    }

        .transactions .input-wrapper1 input::-moz-placeholder {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #292c31;
        }

        .transactions .input-wrapper1 input::placeholder {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 19px;
            color: #292c31;
        }

.without-logIn a {
    text-decoration: none;
}

.without-logIn .login-btn {
    border-radius: 30px;
}

    .without-logIn .login-btn:hover {
        background-color: #189eff;
        color: white;
        transition: all 0.3s ease;
        cursor: pointer;
    }

.layout_v1 {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 20px 100px;
}

    .layout_v1 .title {
        color: #123D6C;
        text-align: start;
        font-size: 64px;
        font-style: normal;
        font-weight: 700;
        line-height: 74px;
        margin-bottom: 20px;
    }

@media screen and (max-width: 768px) {
    .layout_v1 .title {
        font-size: 34px;
        line-height: 49px;
        margin-bottom: 15px;
    }
}

.layout_v1 .subtitle {
    color: #000000;
    text-align: start;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .layout_v1 .subtitle {
        font-size: 22px;
        font-style: normal;
    }
}

.layout_v1 .desc {
    color: #9B9B9C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .layout_v1 .desc {
        font-size: 16px;
        line-height: 22px;
    }
}

.layout_v1 .desc a {
    color: #189eff;
}

.layout_v1 ol {
    padding-left: 100px;
}

    .layout_v1 ol li {
        line-height: 34px;
    }

.layout_v1 ul {
    list-style-type: disc !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 100px;
}

.layout_v1 .circle_ul {
    list-style-type: circle !important;
}

.about_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 100px 30px;
}

@media screen and (max-width: 900px) {
    .about_wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

.about_wrapper .left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 900px) {
    .about_wrapper .left {
        width: 100%;
    }
}

.about_wrapper .left .title {
    color: #189eff;
    margin-bottom: 20px;
}

.about_wrapper .left .desc {
    color: #9B9B9C;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    max-width: 500px;
}

@media screen and (max-width: 768px) {
    .about_wrapper .left .desc {
        font-size: 16px;
        line-height: 22px;
    }
}

.about_wrapper .left a {
    margin: 30px auto 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 30px auto 0;
    padding: 18px 57px 19px;
    border: 2px solid #000;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
}

.about_wrapper .img-wrapper {
    height: 500px;
    width: 500px;
    width: 50%;
}

@media screen and (max-width: 900px) {
    .about_wrapper .img-wrapper {
        width: 100%;
        height: 300px;
        width: 300px;
    }
}

.about_wrapper .img-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.header_v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 50px 96px;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 99;
    transition: 0.3s linear;
}

@media (max-width: 768px) {
    .header_v2 {
        padding: 10px 20px;
    }
}

.header_v2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(132deg, #4D4D4F 0%, #123D6C 69.79%);
    z-index: -1;
    opacity: 0;
    transition: 0.3s linear;
}

.header_v2.darkHeader {
    padding: 10px 96px;
    box-shadow: rgba(255, 255, 255, 0.15) 0 0 2px 0px;
}

@media (max-width: 768px) {
    .header_v2.darkHeader {
        padding: 10px 20px;
    }
}

.header_v2.darkHeader::before {
    opacity: 1;
}

.header_v2.darkHeader .header_v2--logo {
    transform: scale(0.75);
    transform-origin: left;
}

@media (max-width: 768px) {
    .header_v2.darkHeader .header_v2--logo {
        transform: scale(1);
    }
}

.header_v2.darkHeader .header_v2_menu {
    transform: scale(0.85);
    transform-origin: right;
}

@media (max-width: 768px) {
    .header_v2.darkHeader .header_v2_menu {
        transform: scale(1);
    }
}

.header_v2.darkHeader .header_v2_menu_hamburger_menu {
    padding-top: 106px;
}

@media (max-width: 768px) {
    .header_v2.darkHeader .header_v2_menu_hamburger_menu {
        padding-top: 96px;
    }
}

@keyframes text-slide-in-scale {
    0% {
        transform: scale(0.85) translateY(100px);
    }

    100% {
        transform: scale(0.85) translateY(0);
    }
}

@media (min-width: 1200px) {
    .header_v2.darkHeader .header_v2_menu_hamburger_menu_each {
        transform: scale(0.85);
        transform-origin: left;
    }
}

@media (min-width: 1200px) {
    .header_v2.darkHeader .header_v2_menu_hamburger_menu_each:first-child {
        animation: text-slide-in-scale 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
    }
}

@media (min-width: 1200px) {
    .header_v2.darkHeader .header_v2_menu_hamburger_menu_each:last-child {
        animation: text-slide-in-scale 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
    }
}

.header_v2--logo {
    transform: scale(1);
    transition: 0.3s linear;
}

@media (max-width: 768px) {
    .header_v2--logo img {
        height: 30px;
    }
}

.header_v2_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: scale(1);
    transition: 0.3s linear;
}

@media (max-width: 768px) {
    .header_v2_menu {
        gap: 15px;
    }
}

.header_v2_menu_info {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: lowercase;
    text-align: end;
}

    .header_v2_menu_info a {
        text-decoration: none;
        display: block;
        color: #FFF;
    }

@media (max-width: 768px) {
    .header_v2_menu_info {
        font-size: 12px;
    }
}

.header_v2_menu_hamburger {
    cursor: pointer;
    height: 60px;
    width: 60px;
    background: #FFF;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger {
        height: 30px;
        width: 30px;
        gap: 3px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes text-slide-in {
    0% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
    }
}

.header_v2_menu_hamburger_menu {
    position: fixed;
    padding: 196px 96px 96px;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    gap: 74px;
    z-index: -1;
    display: none;
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger_menu {
        padding: 96px 20px 50px;
        flex-direction: column;
        gap: 30px;
    }
}

.header_v2_menu_hamburger_menu.open {
    display: flex;
    animation: fadeIn 0.35s linear;
}

    .header_v2_menu_hamburger_menu.open .header_v2_menu_hamburger_menu_each:first-child {
        animation: text-slide-in 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .header_v2_menu_hamburger_menu.open .header_v2_menu_hamburger_menu_each:last-child {
        opacity: 1;
        animation: text-slide-in 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

.header_v2_menu_hamburger_menu::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0px 0px 200px 0px;
    background: linear-gradient(172deg, rgba(18, 61, 108, 0.5) 0%, rgba(18, 61, 108, 0) 100%), #0092D2;
    z-index: -1;
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger_menu::after {
        border-radius: 0px 0px 100px 0px;
    }
}

.header_v2_menu_hamburger_menu::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.9;
    background: #133E6D;
    left: 0;
    top: 0;
}

.header_v2_menu_hamburger_menu_each {
    transition: 0.3s linear;
}

.header_v2_menu_hamburger_menu_each--title {
    color: #40C5FF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger_menu_each--title {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 22px;
    }
}

.header_v2_menu_hamburger_menu_each ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

    .header_v2_menu_hamburger_menu_each ul li {
        margin-bottom: 6px;
    }

@media (max-width: 768px) {
    .header_v2_menu_hamburger_menu_each ul li {
        margin-bottom: 2px;
    }
}

.header_v2_menu_hamburger_menu_each ul li a {
    color: #BFE4F4;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger_menu_each ul li a {
        font-size: 24px;
        line-height: 36px;
    }
}

.header_v2_menu_hamburger.open span:nth-child(2) {
    width: 0px;
}

.header_v2_menu_hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(2.5px, 2.5px);
    }
}

.header_v2_menu_hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
}

.header_v2_menu_hamburger span {
    width: 25px;
    height: 2px;
    background: #0088CA;
    display: block;
    transition: 0.25s linear;
}

@media (max-width: 768px) {
    .header_v2_menu_hamburger span {
        width: 14px;
        height: 1px;
    }
}

.header_v2_menu_hamburger img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hide {
    display: none !important;
}

.footer_v2 {
    border-radius: 200px 0px 0px 0px;
    background: linear-gradient(40deg, #3884A5 0%, #123D6C 55.69%);
    padding: 112px 160px;
    display: flex;
    height: 100%;
}

@media (max-width: 768px) {
    .footer_v2 {
        border-radius: 50px 0px 0px 0px;
        padding: 50px 20px;
        display: block;
    }
}

.footer_v2_left {
    display: flex;
    flex-direction: column;
    gap: 39px;
}

@media (max-width: 768px) {
    .footer_v2_left {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.footer_v2_left_info {
    display: flex;
    gap: 10px;
    width: 240px;
}

@media (max-width: 768px) {
    .footer_v2_left_info {
        width: auto;
    }
}

.footer_v2_left_info--image {
    width: 23px;
    height: 15px;
    margin-top: 2px;
    font-size: 0;
}

    .footer_v2_left_info--image img {
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.footer_v2_left_info_address {
    color: #40ADDD;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.footer_v2_left_info_address--name {
    color: #F2F5F7;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer_v2_left_info_address--name {
        margin-bottom: 6px;
    }
}

.footer_v2_left--logo {
    width: 153px;
    height: 46px;
    margin-top: 14px;
}

    .footer_v2_left--logo img {
        -o-object-fit: contain;
        object-fit: contain;
    }

.footer_v2_divider {
    width: 1px;
    height: 310px;
    background: #316BAA;
    margin: 0 100px 0 84px;
}

@media (max-width: 768px) {
    .footer_v2_divider {
        display: none;
    }
}

.footer_v2_right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    .footer_v2_right {
        padding-left: 34px;
    }

        .footer_v2_right .desk_hide {
            width: 100%;
        }
}

.footer_v2_right_top {
    display: flex;
    width: 100%;
    gap: 130px;
}

@media (max-width: 768px) {
    .footer_v2_right_top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer_v2_right_top_links {
        margin-top: 30px;
    }
}

.footer_v2_right_top_links li {
    color: #0092D2;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

    .footer_v2_right_top_links li:first-child {
        margin-bottom: 19px;
    }

@media (max-width: 768px) {
    .footer_v2_right_top_links li:first-child {
        margin-bottom: 6px;
    }
}

.footer_v2_right_top_links li a {
    color: #BFE4F4;
    line-height: 22px;
    text-decoration: none;
}

.footer_v2_right_bottom {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .footer_v2_right_bottom {
        flex-direction: column;
        gap: 10px;
        padding-top: 40px;
        align-items: flex-start;
    }
}

.footer_v2_right_bottom a {
    text-decoration: none !important;
    color: inherit !important;
}

.footer_v2_right_bottom_terms {
    color: #BFE4F4;
    display: flex;
    gap: 30px;
}

.footer_v2_right_bottom_rights {
    color: #0092D2;
}

.footer_v2_right_bottom_socials {
    display: flex;
    gap: 7px;
}

    .footer_v2_right_bottom_socials a {
        height: 20px;
        width: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .footer_v2_right_bottom_socials a img {
            -o-object-fit: contain;
            object-fit: contain;
            width: 100%;
        }

.banner {
    background: linear-gradient(0deg, #BFE4F4 0%, #DEDEDE 57.29%);
    position: relative;
    z-index: 1;
}

.banner_wrapper {
    position: relative;
    z-index: 1;
}

.banner_wrapper--img {
    border-radius: 0 0 50% 50%;
    overflow: hidden;
}

    .banner_wrapper--img img {
        max-width: 100%;
        width: 100%;
        display: block;
    }

@media (max-width: 768px) {
    .banner_wrapper--img img {
        height: 50vh;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.banner_wrapper_info {
    position: absolute;
    z-index: 2;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .banner_wrapper_info {
        width: 100%;
    }
}

.banner_wrapper_info--title {
    color: #FFF;
    text-align: center;
    line-height: 74px;
}

@media screen and (max-width: 768px) {
    .banner_wrapper_info--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
        width: 100%;
    }
}

.banner_scroll {
    width: 100%;
    margin: 0 auto;
    padding: 16px;
}

.banner_scroll--img {
    height: 40px;
    width: 40px;
    margin: 5px auto 0;
}

@media screen and (max-width: 768px) {
    .banner_scroll--img {
        height: 28px;
        width: 28px;
    }
}

.banner_scroll--img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner_scroll--msg {
    color: #123D6C;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .banner_scroll--msg {
        font-size: 10;
        font-weight: 600;
        line-height: 14px;
    }
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.choose {
    border-radius: 0px 200px 0px 0px;
    background: #FFF;
    padding: 107px 96px 107px;
}

@media screen and (max-width: 768px) {
    .choose {
        border-radius: 0 40px 0 0;
        margin-right: 20px;
        padding: 50px 16px;
    }
}

.choose_wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 64px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .choose_wrapper {
        flex-direction: column;
        gap: 34px;
    }
}

.choose_wrapper_left {
    height: 100%;
    width: 50%;
    position: sticky;
    top: 107px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_left {
        width: 100%;
        position: relative;
        top: 0;
    }
}

.choose_wrapper_left--title {
    line-height: 74px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_left--title {
        font-size: 28px;
        line-height: 38px;
    }
}

.choose_wrapper_left--desc {
    color: #9B9B9C;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    width: 416px;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_left--desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
        width: 100%;
        margin-top: 10px;
    }
}

.choose_wrapper_right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_right {
        width: 100%;
    }
}

.choose_wrapper_right_box {
    display: flex;
    gap: 34px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_right_box {
        gap: 14px;
    }
}

.choose_wrapper_right_box--img {
    height: 30px;
    width: 30px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_right_box--img {
        height: 24px;
        width: 24px;
    }
}

.choose_wrapper_right_box--img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.choose_wrapper_right_box_data {
    width: 336px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_right_box_data {
        width: 100%;
    }
}

.choose_wrapper_right_box_data--title {
    color: #0092D2;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_right_box_data--title {
        font-size: 18px;
        line-height: 16px;
        margin-bottom: 10px;
    }
}

.choose_wrapper_right_box_data--desc {
    color: #9B9B9C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .choose_wrapper_right_box_data--desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.bg_color_v1 {
    background: linear-gradient(to bottom, #c1e4f3 0%, #c1e4f3 80%, white 97%, white 100%);
    background-size: 100% 100%;
}

.story {
    background: linear-gradient(132deg, #4D4D4F 0%, #123D6C 50.79%);
    border-radius: 0 215px;
}

@media screen and (max-width: 768px) {
    .story {
        border-radius: 0 45px;
        margin: 0 16px;
    }
}

.story_wrapper1 {
    position: relative;
    z-index: 1;
}

.story_wrapper1_img {
    border-radius: 0px 215px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story_wrapper1_img--layer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    transform: scale(1.75);
}

@media screen and (max-width: 768px) {
    .story_wrapper1_img {
        border-radius: 0 40px;
        height: 50 vh;
    }
}

.story_wrapper1_img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.story_wrapper1_title {
    position: absolute;
    z-index: 2;
    top: 130px;
    left: 96px;
    color: #FFF;
    line-height: 74px;
}

@media screen and (max-width: 768px) {
    .story_wrapper1_title {
        font-size: 40px;
        line-height: 54px;
        padding: 0 20px;
        transform: translateY(50%);
        left: 0px;
    }
}

.story_wrapper2 {
    padding: 109px 96px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .story_wrapper2 {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
}

.story_wrapper2--title {
    color: #BFE4F4;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    width: 50%;
    position: sticky;
    top: 109px;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .story_wrapper2--title {
        font-size: 24px;
        line-height: 34px;
        width: 100%;
        position: relative;
        top: 0;
    }
}

.story_wrapper2_box {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 53px;
}

@media screen and (max-width: 768px) {
    .story_wrapper2_box {
        width: 100%;
        gap: 30px;
    }
}

.story_wrapper2_box .story_wrapper2_box_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story_wrapper2_box--desc {
    color: #BFE4F4;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 515px;
}

@media screen and (max-width: 768px) {
    .story_wrapper2_box--desc {
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }
}

.story_wrapper2_box--aboutus {
    outline: none !important;
    margin: 0;
    padding: 0 !important;
    color: #DEDEDE;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid #DEDEDE;
    background: rgba(222, 222, 222, 0.05);
    width: 188px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s linear;
}

    .story_wrapper2_box--aboutus:hover {
        background: #DEDEDE;
        color: #123D6C;
    }

@media screen and (max-width: 768px) {
    .story_wrapper2_box--aboutus {
        width: 150px;
        height: 54px;
        font-size: 14px;
        font-weight: 600;
        margin: 0 auto;
    }
}

.travel {
    background-color: #fff;
    padding: 150px 96px;
}

@media screen and (max-width: 768px) {
    .travel {
        padding: 50px 0px;
    }
}

.travel--title {
    text-align: center;
    line-height: 74px;
    max-width: 831px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .travel--title {
        font-size: 28px;
        line-height: 38px;
        max-width: 100%;
        padding: 0 20px;
    }
}

.travel_cards {
    margin-top: 126px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .travel_cards {
        overflow-x: scroll;
        margin-top: 50px;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        flex-direction: column;
    }

        .travel_cards::-webkit-scrollbar {
            display: none;
        }
}

.travel_cards_card {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .travel_cards_card:hover .travel_cards_card_data_info {
        transform: translateY(0);
    }

.travel_cards_card--img {
    height: 576px;
    width: 446.694px;
    border-radius: 150px;
}

@media screen and (max-width: 768px) {
    .travel_cards_card--img {
        height: 420px;
        width: auto;
    }
}

.travel_cards_card--img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.travel_cards_card_data {
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 70px 76px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .travel_cards_card_data {
        padding: 40px;
    }
}

.travel_cards_card_data_info {
    text-align: center;
    transform: translateY(130px);
    transition: 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 768px) {
    .travel_cards_card_data_info {
        transform: translateY(0px);
    }
}

.travel_cards_card_data--subtitle {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 42px;
}

@media screen and (max-width: 768px) {
    .travel_cards_card_data--subtitle {
        font-size: 24px;
        line-height: 38px;
    }
}

.travel_cards_card_data--desc {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

@media screen and (max-width: 768px) {
    .travel_cards_card_data--desc {
        font-size: 18px;
        line-height: 24px;
    }
}

.travel_cards_card:nth-child(2) {
    margin: 380px -30px 0;
}

@media screen and (max-width: 768px) {
    .travel_cards_card:nth-child(2) {
        margin: 30px -10px 0;
    }
}

.products {
    padding: 0 20px 50px;
}

.products--title {
    text-align: center;
    line-height: 74px;
    max-width: 831px;
    margin: 0 auto;
    height: 96px;
}

@media screen and (max-width: 768px) {
    .products--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
        height: 50px;
    }
}

.products--subtitle {
    color: #9B9B9C;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    max-width: 577px;
    margin: 0 auto;
    height: 95px;
    margin-bottom: 17px;
}

@media screen and (max-width: 768px) {
    .products--subtitle {
        font-size: 16px;
        line-height: 20px;
        height: 50px;
    }
}

.products_container_tabs {
    display: flex;
    position: relative;
    padding: 5px;
    border-radius: 50px;
    background: #FFF;
    box-shadow: 0px 20px 50px 0px rgba(21, 64, 111, 0.1);
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 64px;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .products_container_tabs {
        margin: 0;
        gap: 16px;
    }
}

.products_container_tabs * {
    z-index: 2;
}

.products_container_tabs input[type=radio] {
    display: none;
}

.products_container_tabs_tab {
    box-sizing: border-box;
    padding: 19px 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: -moz-fit-content;
    width: fit-content;
    color: #0092D2;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

@media screen and (max-width: 768px) {
    .products_container_tabs_tab {
        min-width: -moz-fit-content !important;
        min-width: fit-content !important;
        font-size: 14px;
        line-height: 34px;
        height: 34px;
        padding: 8px 12px;
    }
}

.products_container_tabs input[type=radio]:checked + label {
    color: #BFE4F4;
    background: #0092D2;
}

.products_container_content {
    padding: 40px 96px 151px;
}

@media screen and (max-width: 768px) {
    .products_container_content {
        padding: 0;
        margin-top: 30px;
    }
}

.products_container_content .content_tab {
    display: none;
}

.products_container_content .active_tab {
    display: block;
}

.products_container_content_booking {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 98px;
}

.products_container_content_booking_left {
    min-width: 463px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_left {
        display: none;
    }
}

.products_container_content_booking_left::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 552px;
    height: 552px;
    background: inherit;
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(180deg, #BFE4F4 0%, #DEDEDE 100%);
}

.products_container_content_booking_left_box {
    border-radius: 54px;
    background: #123D6C;
    width: 402px;
    height: 562px;
    position: relative;
    z-index: 19 !important;
}

.products_container_content_booking_left_box--cloudUp {
    position: absolute;
    z-index: 2;
    top: 129px;
    left: 25px;
    height: 35px;
    width: 103px;
}

    .products_container_content_booking_left_box--cloudUp img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.products_container_content_booking_left_box--plane {
    position: absolute;
    z-index: 2;
    top: 125px;
    left: 80px;
    width: 383.326px;
    height: 227.069px;
}

    .products_container_content_booking_left_box--plane img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.products_container_content_booking_left_box--cloudDown {
    position: absolute;
    z-index: 2;
    bottom: 177px;
    right: 50px;
    width: 56.975px;
    height: 17.064px;
}

    .products_container_content_booking_left_box--cloudDown img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.products_container_content_booking_right {
    min-width: 462px;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right {
        min-width: 100%;
    }
}

.products_container_content_booking_right--title {
    font-size: 40px;
    line-height: 50px;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right--title {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }
}

.products_container_content_booking_right--desc {
    color: #9B9B9C;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right--desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }
}

.products_container_content_booking_right > p {
    margin-top: 15px;
}

.products_container_content_booking_right_list {
    margin-top: 50px;
    margin-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right_list {
        margin: 50px 0 20 !important;
    }
}

.products_container_content_booking_right_list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    color: #0092D2;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right_list li {
        gap: 12px;
        font-size: 16px;
        line-height: 27px;
    }
}

.products_container_content_booking_right_list li .img_wrapper {
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right_list li .img_wrapper {
        height: 16px;
        min-width: 16px;
        max-width: 16px;
    }

        .products_container_content_booking_right_list li .img_wrapper img {
            height: 100%;
            width: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }
}

.products_container_content_booking_right button {
    margin-top: 50px !important;
}

@media screen and (max-width: 768px) {
    .products_container_content_booking_right button {
        margin-top: 50px !important;
    }
}

@media screen and (max-width: 768px) {
    .tabs_wrapper_home {
        overflow-x: scroll;
        padding: 10px 0;
        width: 100%;
    }
}

.network {
    padding: 128px 96px 116px;
}

@media screen and (max-width: 768px) {
    .network {
        padding: 0px 16px 50px;
    }
}

.network_wrapper {
    margin: 0 auto;
    max-width: 1249px;
    max-height: 1249px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .network_wrapper {
        max-width: 100%;
        max-height: 100%;
    }
}

.network_wrapper--bgImg img {
    height: 100%;
    width: 100%;
}

.network_wrapper_data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 120px;
}

@media screen and (max-width: 768px) {
    .network_wrapper_data {
        gap: 64px;
        flex-direction: row;
        width: 100%;
    }
}

.network_wrapper_data--title {
    color: #FFF;
    text-align: center;
    line-height: 74px;
    max-width: 640px;
}

@media screen and (max-width: 768px) {
    .network_wrapper_data--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
        color: #123D6C;
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
    }
}

.network_wrapper_data_numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 480px;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .network_wrapper_data_numbers {
        max-width: 480px;
    }
}

.network_wrapper_data_numbers .box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.network_wrapper_data_numbers .box_each {
    height: 192px;
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .network_wrapper_data_numbers .box_each {
        height: 92px;
        width: 110px;
    }
}

.network_wrapper_data_numbers .box_each.one {
    border-bottom: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
}

.network_wrapper_data_numbers .box_each.three {
    border-right: 2px solid #FFFFFF;
}

.network_wrapper_data_numbers .box_each.two {
    border-bottom: 2px solid #FFFFFF;
}

.network_wrapper_data_numbers .count {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

@media screen and (max-width: 768px) {
    .network_wrapper_data_numbers .count {
        font-size: 24px;
        font-weight: 500;
        line-height: 16px;
    }
}

.network_wrapper_data_numbers .subtitle {
    color: #BFE4F4;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .network_wrapper_data_numbers .subtitle {
        font-size: 16px;
        font-weight: 400;
        line-height: 17px;
        margin-top: 10px;
    }
}

.insights {
    padding-bottom: 107px;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    .insights {
        padding-bottom: 50px;
    }
}

.insights--title {
    text-align: center;
    line-height: 106px;
}

@media screen and (max-width: 768px) {
    .insights--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
    }
}

.insights_cards {
    margin-top: 148px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    gap: 63px;
    align-items: end;
}

@media screen and (max-width: 768px) {
    .insights_cards {
        overflow: scroll;
        gap: 0px;
        padding: 10px 0;
        margin-top: 50px;
    }

        .insights_cards::-webkit-scrollbar {
            display: none;
        }
}

.insights_cards_card {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 200px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card {
        border-radius: 100px;
        min-width: 288px;
        height: 371px;
    }
}

.insights_cards_card--img {
    min-width: 482px;
    height: 640px;
    border-radius: 200px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card--img {
        min-width: 288px;
        height: 371px;
    }
}

.insights_cards_card--img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.insights_cards_card_data {
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 71px;
    flex-direction: column;
    height: 100%;
    padding: 70px 76px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card_data {
        padding: 40px;
    }
}

.insights_cards_card_data--tag {
    color: #123D6C;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    border-radius: 10px;
    background: #FFF;
    width: 110px;
    height: 43px;
    padding: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insights_cards_card_data--desc {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card_data--desc {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }
}

.insights_cards_card:nth-child(1) {
    margin-left: -60px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card:nth-child(1) {
        margin-left: 0px;
    }
}

.insights_cards_card:nth-child(2) {
    margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card:nth-child(2) {
        margin-left: -20px;
    }
}

.insights_cards_card:nth-child(3) {
    margin-right: -60px;
}

@media screen and (max-width: 768px) {
    .insights_cards_card:nth-child(3) {
        margin-right: 0px;
        margin-left: -20px;
    }
}

.insights--more {
    margin: 0 auto;
}

.fq_flyer {
    padding-bottom: 112px;
}

@media screen and (max-width: 768px) {
    .fq_flyer {
        padding-bottom: 50px;
    }
}

.fq_flyer--title {
    text-align: center;
    line-height: 74px;
    max-width: 762px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .fq_flyer--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
    }
}

.fq_flyer_cards {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    gap: 32px;
    padding: 30px 96px;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .fq_flyer_cards {
        padding: 10px 16px;
        gap: 16px;
    }
}

.fq_flyer_cards::-webkit-scrollbar {
    height: 0px;
    width: 0px;
}

.fq_flyer_cards_card {
    padding: 82px 52px 52px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    min-width: 608px;
    height: 453px;
    border-radius: 50px;
    background: #F8F8F8;
}

@media screen and (max-width: 768px) {
    .fq_flyer_cards_card {
        padding: 20px;
        min-width: 80vw;
        height: 281px;
        border-radius: 20px;
    }
}

.fq_flyer_cards_card--desc {
    color: #0092D2;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    max-width: 348px;
}

@media screen and (max-width: 768px) {
    .fq_flyer_cards_card--desc {
        font-size: 18px;
        line-height: 24px;
    }
}

.fq_flyer_cards_card_data {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.fq_flyer_cards_card_data--profile {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

    .fq_flyer_cards_card_data--profile img {
        height: 100%;
    }

.fq_flyer_cards_card_data_details--name {
    color: #123D6C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.fq_flyer_cards_card_data_details--job {
    color: #9B9B9C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.logos {
    padding: 0 96px 117px;
}

@media (max-width: 768px) {
    .logos {
        padding: 0 20px 50px;
    }
}

.logos--title {
    text-align: center;
    line-height: 74px;
    max-width: 762px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .logos--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
    }
}

.logos_wrapper {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .logos_wrapper {
        margin-top: 30px;
    }
}

.logos_wrapper_container {
    margin: 0 auto;
}

.logos_wrapper_container_carousel {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .logos_wrapper_container_carousel {
        padding: 30px 0;
    }
}

.logos_wrapper_container_carousel_each img {
    max-width: 100%;
    width: auto !important;
    display: block;
    margin: 0 auto;
    max-height: 50px;
}

@media (max-width: 768px) {
    .logos_wrapper_container_carousel_each img {
        max-height: 30px;
    }
}

.logos_wrapper_container_carousel .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout_contact {
    background: linear-gradient(0deg, #BFE4F4 0%, #DEDEDE 57.29%);
    margin-bottom: 16px;
}

.kma {
    position: relative;
}

@media (max-width: 768px) {
    .kma {
        margin-bottom: 50px;
    }
}

.kma.v2 .kma--img {
    border-radius: 0px;
}

    .kma.v2 .kma--img img {
        height: calc(100vh + 200px);
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
    }

@media (max-width: 768px) {
    .kma.v2 .kma--img img {
        height: calc(100vh + 50px);
    }
}

.kma--img {
    border-radius: 0 0 50% 50%;
    overflow: hidden;
}

    .kma--img img {
        max-width: 100%;
        width: 100%;
        display: block;
    }

@media (max-width: 768px) {
    .kma--img img {
        height: 50vh;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.kma_info {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .kma_info {
        padding: 0 20px;
    }
}

.kma_info--title {
    color: #F8F8F8;
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 74px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .kma_info--title {
        font-size: 28px;
        line-height: 38px;
        padding: 0 20px;
    }
}

.kma_info--text {
    color: #F8F8F8;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    max-width: 288px;
    margin: 0 auto;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .kma_info--text {
        font-size: 16px;
        line-height: 24px;
        max-width: 240px;
        margin-top: 6px;
    }
}

.kma_form {
    border-radius: 0px 150px 0px 150px;
    background: linear-gradient(132deg, #4D4D4F 0%, #123D6C 69.79%);
    padding: 96px;
    max-width: 960px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .kma_form {
        padding: 50px 20px;
        border-radius: 0px 40px 0px 40px;
        margin-right: 20px;
    }
}

.kma_form_bg {
    position: relative;
    margin-top: -150px;
}

@media (max-width: 768px) {
    .kma_form_bg {
        margin-top: 0px;
    }
}

.kma_form_bg::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: calc(100% - 150px);
    left: 0;
    bottom: 0;
    border-radius: 0px 200px 0px 0px;
    background: #FFF;
}

.kma_form--img {
    position: absolute;
    right: 0px;
    bottom: 0px;
    transform: translateX(58%);
}

@media (max-width: 768px) {
    .kma_form--img {
        display: none;
    }
}

.kma_form--img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 989px;
    background: linear-gradient(180deg, #4D6E91 0%, #DEDEDE 100%);
    filter: blur(252px);
    top: 0;
    right: 0;
    z-index: -1;
}

.kma_form--img img {
    max-width: 100%;
}

.kma_form_inner {
    max-width: 500px;
}

.kma_form--title {
    color: #BFE4F4;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .kma_form--title {
        font-size: 24px;
        line-height: 36px;
        max-width: 300px;
    }
}

.kma_form .form_group {
    margin-bottom: 16px;
}

    .kma_form .form_group input,
    .kma_form .form_group select {
        height: 48px;
        color: #F8F8F8;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border: none;
        border-bottom: #4D6E91 1px solid;
        outline: none;
        width: 100%;
    }

        .kma_form .form_group input::-moz-placeholder, .kma_form .form_group select::-moz-placeholder {
            color: #F8F8F8;
            font-size: 16px;
        }

        .kma_form .form_group input::placeholder,
        .kma_form .form_group select::placeholder {
            color: #F8F8F8;
            font-size: 16px;
        }

    .kma_form .form_group select {
        background: url("../images/landing/arrow.svg") center right no-repeat;
        cursor: pointer;
    }

    .kma_form .form_group label {
        display: block;
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 12px;
        margin-top: 32px;
    }

    .kma_form .form_group textarea {
        color: #F8F8F8;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border-radius: 10px;
        border: 1px solid #4D6E91;
        background: transparent;
        height: 180px;
        resize: none;
        width: 100%;
    }

@media (max-width: 768px) {
    .kma_form .form_group textarea {
        height: 120px;
    }
}

.secondary_btn {
    border-radius: 50px;
    border: 1px solid #FFF;
    background: rgba(18, 61, 108, 0.05);
    height: 80px;
    padding: 0 45px;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    transition: 0.25s linear;
}

    .secondary_btn:hover {
        background: #fff;
        color: #123D6C;
    }

@media (max-width: 768px) {
    .secondary_btn {
        height: 60px;
    }
}

.address {
    display: flex;
    gap: 80px;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    left: 800px;
    top: 96px;
}

@media (max-width: 768px) {
    .address {
        position: relative;
        left: auto;
        top: auto;
        padding: 50px 20px;
        gap: 20px;
    }
}

.address_each {
    border-radius: 50px;
    background: #F8F8F8;
    padding: 50px;
    min-width: 560px;
}

@media (max-width: 768px) {
    .address_each {
        min-width: 100%;
        border-radius: 20px;
        padding: 20px;
    }
}

.address_each--logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 60px;
    border: 0.5px solid #DEDEDE;
    background: #FFF;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .address_each--logo {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

        .address_each--logo img {
            max-height: 18px;
        }
}

.address_each--name {
    color: #123D6C;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .address_each--name {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}

.address_each--text {
    color: #0092D2;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .address_each--text {
        font-size: 14px;
        line-height: 24px;
    }
}

.address_each_info {
    border-top: 1px solid #DEDEDE;
    padding-top: 32px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .address_each_info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 16px;
        margin-top: 16px;
    }
}

.address_each_info_each {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .address_each_info_each--icon img {
        max-height: 16px;
    }
}

.address_each_info_each--text {
    color: #123D6C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .address_each_info_each--text {
        font-size: 14px;
        line-height: 24px;
    }
}

.faq_content {
    border-radius: 0px 200px 0px 0px;
    background: #FFF;
    padding: 96px 136px;
    position: relative;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .faq_content {
        padding: 50px 20px;
        border-radius: 0px 80px 0px 0px;
    }
}

.faq_content::before {
    content: "";
    position: absolute;
    border-radius: 1144px;
    background: linear-gradient(180deg, #4D6E91 0%, #DEDEDE 100%);
    filter: blur(252px);
    width: 1144px;
    height: 100%;
    top: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .faq_content::before {
        width: 100%;
        left: 0;
    }
}

.faq_content--title {
    color: #9B9B9C;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    max-width: 624px;
    margin: 0 auto;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .faq_content--title {
        font-size: 15px;
        line-height: 24px;
        max-width: 280px;
    }
}

.faq_content_accordion {
    position: relative;
}

    .faq_content_accordion::before {
        content: "";
        position: absolute;
        border-radius: 776px;
        background: linear-gradient(180deg, #4D6E91 0%, #DEDEDE 100%);
        filter: blur(252px);
        width: 696px;
        height: 476px;
        left: 50%;
        top: 80px;
        transform: translateX(-50%);
    }

@media (max-width: 768px) {
    .faq_content_accordion::before {
        width: 100%;
    }
}

ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
}

    ul.accordion-list li {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        padding: 40px 76px;
        margin: 0 auto 15px auto;
        border-radius: 50px;
        border: 1px solid #DEDEDE;
        background: #F8F8F8;
        cursor: pointer;
    }

@media (max-width: 768px) {
    ul.accordion-list li {
        padding: 20px 40px 20px 20px;
        border-radius: 12px;
    }
}

ul.accordion-list li.active h3:after {
    transform: rotate(45deg);
}

ul.accordion-list li h3 {
    color: #0092D2;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    ul.accordion-list li h3 {
        font-size: 14px;
        line-height: 22px;
    }
}

ul.accordion-list li h3:after {
    content: "";
    width: 48px;
    height: 48px;
    background: url("../images/landing/plus.svg") center no-repeat;
    position: absolute;
    right: 76px;
    top: 32px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    background-size: contain;
}

@media (max-width: 768px) {
    ul.accordion-list li h3:after {
        width: 20px;
        height: 20px;
        right: 20px;
        top: 22px;
    }
}

ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
    padding-top: 40px;
}

@media (max-width: 768px) {
    ul.accordion-list li div.answer {
        padding-top: 20px;
    }
}

ul.accordion-list li div.answer p {
    color: #9B9B9C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 14px !important;
}

.faq_wrap {
    padding: 0 96px;
}

@media (max-width: 768px) {
    .faq_wrap {
        padding: 0 20px;
    }
}

.career {
    padding: 140px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    border-radius: 0px 200px 0 0;
    background: #FFF;
    margin-top: -100px;
    position: relative;
}

@media (max-width: 768px) {
    .career {
        border-radius: 0px 50px 0 0;
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 20px;
    }
}

.career--title {
    color: #123D6C;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
}

@media (max-width: 768px) {
    .career--title {
        font-size: 24px;
        line-height: 34px;
    }
}

.career_info--text {
    color: #0092D2;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .career_info--text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 30px;
    }
}

.career_info a {
    color: #0092D2;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    display: inline-flex;
    gap: 28px;
}

@media (max-width: 768px) {
    .career_info a {
        font-size: 14px;
        line-height: 24px;
    }
}

/*Plane loader v4*/

.flighSearchLoader {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    display: none;
}

.hideLoad {
    display: flex;
}

.flighSearchLoader .wrapper {
    margin-bottom: 100px
}

    .flighSearchLoader .wrapper .loaderGif {
        text-align: center;
        width: 300px;
        position: relative;
        overflow: hidden;
        height: 260px;
        margin: 0 auto;
        transform: scale(0.85)
    }

        .flighSearchLoader .wrapper .loaderGif .plane {
            position: absolute;
            margin: 0 auto;
            width: 100%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .flighSearchLoader .wrapper .loaderGif .plane-img {
            -webkit-animation: spin 2.5s linear infinite;
            -moz-animation: spin 2.5s linear infinite;
            animation: spin 2.5s linear infinite;
        }

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

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

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

.flighSearchLoader .wrapper .loaderGif .earth-wrapper {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flighSearchLoader .wrapper .loaderGif .earth {
    width: 160px;
    height: 160px;
    background: url("../../../assets/images/wordGif.gif");
    border-radius: 100%;
    background-size: 340px;
    animation: earthAnim 12s infinite linear;
    margin: 0 auto;
}

@keyframes earthAnim {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -340px;
    }
}

.flighSearchLoader .wrapper .flightDetails {
    background-repeat: no-repeat;
    max-width: 1100px;
    margin: 0 auto;
}

    .flighSearchLoader .wrapper .flightDetails .msg {
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        color: #123D6C;
        text-align: center;
        line-height: 42px;
    }

    .flighSearchLoader .wrapper .flightDetails .flight {
        color: #191919;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 18px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

        .flighSearchLoader .wrapper .flightDetails .flight span {
            color: #0092D2;
            font-size: 16px;
            font-weight: 600;
        }

/*Select2 css starts*/
.SelExample {
    height: 100% !important;
    width: 100% !important;
}

.select2-selection__arrow {
    height: 49px !important;
}

    .select2-selection__arrow b {
        border: solid black !important;
        border-width: 0 2px 2px 0 !important;
        padding: 3px !important;
        height: 0px;
        left: 50%;
        margin-left: -7px !important;
        margin-top: -6px !important;
        position: absolute;
        top: 50%;
        width: 0;
        transform: rotate(45deg) !important;
        -webkit-transform: rotate(45deg) !important;
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 2px 0px 0px 2px !important;
    margin-top: -2px !important;
}

.select2-selection--single {
    height: 49px !important;
    border: none !important;
    display: flex;
    align-items: center;
}

.select2-selection__rendered {
    height: 49px;
    display: flex !important;
    align-items: center;
}

/*search input*/
.select2-search__field {
    border-radius: 4px !important;
    height: 30px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #189eff !important;
}

.select2-container {
    width: 100% !important;
}
/*Select2 css ends */
.add_view_btns {
    text-align: center !important;
}


.que_wrapper_tabs_tab.active {
    border-bottom: 3px solid #189EFF !important;
}

.comm-cat-mixed-carr {
    display: flex !important;
    gap: 10px;
    padding: 30px 0;
}

.sub_res_btn {
    display: flex !important;
    gap: 10px;
    padding: 30px 0;
}

.btns_center {
    display: flex !important;
    justify-content: space-evenly !important;
    align-items: center !important;
}

.btns_centers {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
    justify-content: space-between;
    /*width: 100px;*/
    width: 70px;
    padding: 12px !important;
    margin: 0 auto !important;
}

.top-sec {
    z-index: 10 !important;
}

/* Invoice */
.invoice {
    margin: 0 auto;
    padding: 41px 10px;
    max-width: 1250px;
    min-width: 838px;
}

.name-section {
    margin: 0 auto 37px;
    max-width: 1250px;
    border: 1px solid #E2E7EE;
    border-radius: 10px;
}

.div-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
}

.div-2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 33px;
    letter-spacing: -0.003em;
    color: #2A2D31;
    padding-left: 8px;
}

.div-3 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
    /*to hide the print icon */
    .div-3 a {
        text-decoration: none;
        border: 1px solid #E2E7EE;
        padding: 8px;
        color: #0000FF;
    }

@media print {
    .div-3 {
        display: none;
    }
}

.from-section {
    margin: 0 auto 45px;
    border: 1px solid #E2E7EE;
    border-radius: 10px;
    max-width: 100%;
    /*margin-bottom: 15px;*/
    display: flex;
    background-color: #f0f3f4;
    height: 10%;
}

.table-section {
    margin: 0 auto 37px;
    border: 1px solid #E2E7EE;
    border-radius: 10px;
    padding: 10px;
    max-width: 1250px;
}

.table-container {
    overflow: hidden;
}

.table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.table-container th {
    background-color: #f0f3f4;
    font-weight: bold;
}

.table th,
.table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    /*word-wrap: break-word;*/
}

.tab {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.tab-1 {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    word-wrap: break-word;
}

.total-section {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E2E7EE;
    border-radius: 10px;
    height: 80px;
    background-color: #f0f3f4;
    max-width: 1250px;
}

    .total-section ul {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
    }

    .total-section .list {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #2A2D31;
    }

    .total-section .para {
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.003em;
        color: #2A2D31;
    }

    .total-section .para-1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #2A2D31;
    }

    .total-section .tag-1 {
        width: 70%;
        display: flex;
        justify-content: flex-end;
        align-items: end;
        gap: 30px;
    }

    .total-section .tag-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .total-section .tag-3 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        color: #2A2D31;
    }

    .total-section .tag-4 {
        font-weight: 600;
        font-size: 20px;
        line-height: 27px;
        display: flex;
        align-items: center;
        color: #FFF;
        background: #5A5A5A;
        border-radius: 2px;
        border: 1px solid #E2E7EE;
        width: 204px;
        height: 58px;
        justify-content: center;
        align-items: center;
    }

.section-7 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 44px;
    margin: 0 auto;
    padding: 24px;
    border-bottom: 1px solid #E4E4E4;
}

    .section-7 .sec-7 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        /*gap: 19px;*/
        flex-direction: column;
    }

    .section-7 .pre {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.003em;
        color: #121213;
        width: 100%;
    }

    .section-7 .para {
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
        letter-spacing: -0.003em;
        color: #2A2D31;
    }

.para-4 {
    color: #999;
    margin-top: 30px;
    font-size: 85%;
    margin: 0px;
    padding: 0px;
}

.invoice-footer {
    border-top: 1px solid #ddd;
    padding-top: 5px;
    font-size: 10px;
}
/* Custom styling for checkboxes */
.form-check-input {
    position: absolute;
    cursor: pointer; /* Default cursor */
}

    .form-check-input:hover {
        cursor: pointer; /* Set cursor to pointer on hover */
    }

    .form-check-input + .form-check-label:before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 10px;
        vertical-align: middle;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    /* Style for the checkmark when checked */
    .form-check-input:checked + .form-check-label:before {
        background-color: #007bff;
        border-color: #007bff;
        content: '\2713'; /* Unicode character for checkmark */
        color: #fff;
        text-align: center;
        font-size: 12px;
        line-height: 16px;
    }

    /* Additional styles for focus */
    .form-check-input:focus + .form-check-label:before {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    /* Hover styles */
    .form-check-input:hover + .form-check-label:before {
        border-color: #ccc; /* Ensure the border remains visible on hover */
        cursor: pointer; /* Set cursor to pointer on hover */
    }

.dropdown-button:hover {
    border-color: #80bdff; /* Change border color on hover */
}
/* Style for the dropdown container */
.drpdwn {
    display: flex;
    align-items: center;
    gap: 8px;
    /*background: url("/assets/images/icons/arrow-down.svg") center right 18px no-repeat;*/
    border-radius: 17px;
    height: 34px;
    padding: 0 28px 0 8px;
    cursor: pointer;
}

    /* Style for the text inside the dropdown */
    .drpdwn select {
        font-weight: 500;
        font-size: 13px;
        line-height: 15px;
        color: #2a2d31;
        border: none;
        background: transparent;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: calc(100% - 30px);
    }

        /* Style for specific spans inside the text */
        .drpdwn select option {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

.caret-icon {
    background: url("/assets/images/icons/Caret.png") right 50% no-repeat; /* Setting the background with the caret icon */
    min-width: 20px;
    display: inline-flex;
    background-size: 20px;
}

.checkbox-wrapper {
    list-style-type: none;
}

.cl-checkbox {
    display: flex;
    align-items: center;
}

    .cl-checkbox input[type="checkbox"] {
        margin-right: 10px;
        transform: scale(1.2);
    }

.checkbox-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fare-rule-content {
    height: 80vh !important;
    max-height: 80vh !important;
    overflow: auto !important;
}

    .fare-rule-content::-webkit-scrollbar {
        width: 0;
        display: none;
    }

.status_btn_v2, .view-search {
    width: auto;
}

.edit-ticket {
    width: 15% !important;
}


.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    float: right;
    margin-left: auto;
}

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.form-group .form-control {
    appearance: auto;
}

.add-btns {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #189eff;
    border: 1px solid #189eff;
    padding: 10px 20px;
    align-self: flex-end;
    margin-top: 20px;
    height: 40px;
    border-radius: 8px;
}

.lab_modal {
    font-size: 12px !important;
    font-weight: 800 !important;
}

.forum {
    margin: 20px;
}

.modal-footer {
    border: none !important;
}

.modal-footer {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
}

    .modal-footer .btn {
        width: 100px;
        margin-left: 10px;
    }

.pull-right {
    margin-left: auto;
}


.modal-contents {
    padding: 20px;
}

.close-btn {
    outline: none;
}

.btn-ticket-number {
    float: right;
}


/* Logout dropdown */
.logout-dropdown {
    position: relative;
}

.logout-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform 0.3s;
    transform-origin: top;
    transform: scaleY(0);
    z-index: 1000;
}

    .logout-dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: scaleY(1);
    }

.logout-dropdown-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    outline: none;
}

.logout-dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

    .logout-dropdown-item:hover {
        background-color: #f1f1f1;
        color: #007bff;
    }

/* Style for the Finance button */
.finance-button {
    align-items: center;
    justify-content: space-between;
    display: flex;
    background: none;
    border: none;
    color: #333;
    font-size: 14px;
    padding: 10px 20px;
    text-align: left;
    width: 100%;
    /*display: block;*/
    cursor: pointer;
}

    .finance-button:hover {
        background-color: #f1f1f1;
        color: #007bff;
    }

/* The submenu that will show when Finance is clicked */
.logout-submenu {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdown-finance.active .logout-submenu {
    display: block;
    border: 1px solid #ddd;
}

/*.logout-submenu li {
    padding: 8px;

}*/

.logout-submenu li a {
    color: #333;
    font-size: 14px;
}

    .logout-submenu li a:hover {
        background-color: #f1f1f1;
        color: #007bff;
    }

.extra-baggage-item {
    display: inline-block;
    margin-right: 10px;
    padding: 2px;
    /*background-color: #e7f1ff;*/
    /*border-radius: 3px;*/
    /*border: 1px solid #007bff;*/
    /*color: #007bff;*/
    margin-top: 5px;
}

.excess-bag {
    max-width: 450px !important;
    display: flex;
    flex-direction: column;
}

@media print {
    @page {
        size: A4; /* DIN A4 standard, Europe */
        margin: 0;
        margin-left: 25mm;
        margin-right: 25mm;
    }


    header, footer, background graphcis {
        display: none !important;
    }


    * {
        background: transparent !important;
    }


    #saveButton,
    #editADTFare {
        display: none !important;
    }

    body * {
        visibility: hidden;
    }

    .invoice, .invoice * {
        visibility: visible;
        page-break-inside: avoid;
    }

    .invoice {
        position: absolute;
        left: 0;
        top: 0;
    }

    .invoice-section,
    .image-container {
        page-break-inside: avoid;
    }
    /* .image-container {
            margin-top: 200px;
        } */
}

.passenger-cards {
    margin-top: 20px;
}

.retreived_PNR {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.PNR_gds {
    font-weight: 600;
}

.pnr_head {
    display: flex;
    gap: 20px;
}

.wrap {
    white-space: normal; /* Allows the text to wrap within the cell */
    word-wrap: break-word; /* Breaks long words if needed to fit within the column */
    padding: 5px; /* Adjust padding for better readability */
}

.success-msg {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* General Alert Styles */
.custom-alert {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    display: flex;
    justify-content: space-between;
}

.import-alerts {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    display: flex;
    justify-content: space-between;
}

/* Success Alert */
.custom-success {
    background-color: #bef0b8; /* Light Green Background */
    border: 1px solid #60da66; /* Soft Green Border */
    color: #388E3C; /* Medium Green Text */
}

.custom-primary {
    background-color: #c8b3f5;
    border: 1px solid #5d19f0;
    color: #2b135d;
}

/* Info Alert */
.custom-info {
    background-color: #ffebee; /* Light red background */
    border: 1px solid #f44336; /* Red border */
    color: #d32f2f; /* Dark red text */
}

/* Strong Text Styling */
.custom-alert strong {
    font-weight: bold;
}

/* Alert Message Paragraph */
.custom-alert .alert-message {
    margin: 0;
    flex-grow: 1;
}

/* Adding Icons */
.custom-alert::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.custom-success::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23388e3c" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 0c6.63 0 12 5.37 12 12s-5.37 12-12 12S0 18.63 0 12 5.37 0 12 0zm-1.88 17.31l7.62-7.62-1.41-1.41-6.21 6.21-2.3-2.3-1.42 1.41 3.71 3.71z"/></svg>');
}

.custom-info::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#FCE8DB" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm0 4.5a2.1 2.1 0 012.1 2.1 2.1 2.1 0 01-2.1 2.1A2.1 2.1 0 019.9 6.6 2.1 2.1 0 0112 4.5zm2 14.75h-4v-1.5h1.5v-5H10v-1.5h4V18h-1.5z"/></svg>');
}

.suc_font, .message_font {
    font-size: 14px;
}

/*.search-contents {*/
    /*height: 50vh;*/
    /*padding: 20px;
}*/

.searchHistory, .Techsupport {
    background: #fff;
    margin: 50px auto;
    border-radius: 8px;
    max-width: 1100px;
    width: 100%;
    padding: 20px;
}

.search_contents_count {
    margin: 20px 10px 10px;
}

.btns_search_center {
    width: 100%;
}

    .btns_search_center button {
        margin: 0 auto;
    }

@media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (pointer: coarse), only screen and (device-width: 820px) and (device-height: 1180px), only screen and (device-width: 768px) and (device-height: 1024px) {
    /* Apply custom scrollbar styles */
    ::-webkit-scrollbar {
        width: 10px; /* Vertical scrollbar width */
        height: 10px; /* Horizontal scrollbar height */
    }

    ::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3); /* Thumb color */
        border-radius: 5px; /* Rounded corners for the thumb */
        border: 2px solid #fff; /* Border around the thumb */
    }

    ::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Track color */
        border-radius: 10px; /* Rounded track corners */
    }
    /* Optional: Hide the scrollbar buttons */
    ::-webkit-scrollbar-button {
        background-color: #f1f1f1;
        display: none; /* Hide the arrows (buttons) of the scrollbar */
    }
}

.pnr_view {
    display: flex;
    gap: 25px;
    margin: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.gds_pnr {
    color: #000;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
    background-color: #d4e7fb;
    color: #047af9;
    border: 1px solid #047af9;
}

.pnr_num, .supplier_code {
    font-weight: 400;
    font-size: 14px;
}

.fare_highlight td {
    background-color: #cce5ff;
    font-weight: bold !important;
}

.suplliers_name {
    font-size: 14px;
    font-weight: bold;
}
/* OTP input BOX */
.otp_head {
    font-size: 22px;
}

.otp_box {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    /*border: 1px solid #ccc;*/
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    /*background-color: #f9f9f9;*/
}

.otp-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.otp-box {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .otp-box:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.error-message {
    margin-bottom: 15px;
    font-size: 14px;
    color: red;
    text-align: center;
    background-color: #ffe6e6;
    padding: 10px;
    border: 1px solid red;
    border-radius: 5px;
}

.disable-message {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #555;
}

    .login-link a {
        color: #007bff;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }


.alert-notification {
    background-color: #aaee87;
    color: #097969;
    border: 1px solid #097969;
    max-width: 450px !important;
    padding: 5px !important;
    font-size: 13px;
}

    .alert-notification a {
        font-size: 15px;
        width: 20px;
        height: 20px;
    }
/*# sourceMappingURL=style.css.map */
.edit_Timeline {
    padding: 10px;
    border-bottom: 1px solid #ccd0d4;
    margin: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.now_edit_PNR {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
    /*font-weight: 600;*/
    font-size: 16px;
    line-height: 18px;
    color: #121213;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
    border: 1px solid #189eff;
    border-radius: 7px;
    color: #189eff;
    margin: 0 5px;
}

    .now_edit_PNR:hover {
        color: #007BFF; /* Change color on hover for better interactivity */
    }

    .now_edit_PNR::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%; /* Position above the element */
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        background: linear-gradient(135deg, #007BFF, #0056b3); /* Gradient background */
        color: #fff;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 10;
    }

    .now_edit_PNR::before {
        content: '';
        position: absolute;
        bottom: 70%; /* Position below the element */
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #007BFF transparent transparent transparent; /* Arrow points down */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }


    .now_edit_PNR:hover::after,
    .now_edit_PNR:hover::before {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-5px); /* Slight lift effect */
    }


.edit_terminal, .airline_edit {
    min-width: 160px;
    max-width: 200px;
}

.edit_status {
    min-width: 80px;
    max-width: 130px;
}


.edit_label {
    color: #000;
    font-weight: 600;
    /*line-height: 18px;*/
    font-size: 12px;
}

.edit_airline_name {
    font-size: 14px;
    margin-top: 10px;
}

.view_table-wrap {
    padding-left: 10px !important;
    width: 100px !important;
}

.validate-message {
    margin-top: 5px;
    font-size: 12px;
    color: red;
}


/*FlightPAXdetails summary*/
.mid_btns {
    width: 800px;
}

.pd_text {
    width: auto;
}

.pax_time {
    color: #fff !important;
    font-size: 16px;
}

.pax_day {
    color: #fff !important;
    font-size: 12px;
}

.pax_box-1 {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

.pax_box-2 {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

.pax_box-3 {
    text-align: left;
    width: 18%;
}
/*.pax_box-1{
    width: 50%;
}*/

.pax_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
}

.pax_itn {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    /*flex-direction: column;*/
    width: 100%;
}

.pax_heading_12 {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    text-align: center;
    margin-left: 25px;
    color: #fff;
}

.pax_price {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.003em;
    color: #fff;
    width: 15%;
    margin-top: 20px;
    text-align: center;
}

.pax_prices {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.003em;
    color: #fff;
}

.pax_with_price {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.pax_box-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    width: 138px;
    /*margin-top: 20px;*/
}

    .pax_box-4 .price, .price {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
    }

    .pax_box-4 .view-details {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.003em;
        text-decoration-line: underline;
        color: #189eff;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

        .pax_box-4 .view-details img {
            margin-left: 3px;
        }

.pax_brand-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 37px;
    width: 37px;
    border-radius: 50%;
    background-color: #ffffff;
    /*border: 1px solid #e2e7ee;*/
}

    .pax_brand-wrapper img {
        width: 30px;
        height: 30px;
    }

.pax_mc_box_1 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    width: 138px;
    width: 18%;
    margin-top: 5px;
    /*padding-left: 10px;*/
}

/*.pax_box-5 {
    width: 18%;
}*/

.air_name {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

    .air_name:hover {
        cursor: pointer;
    }

/* Tooltip styling */
[data-toggle="tooltip"] {
    position: relative;
}

    [data-toggle="tooltip"]:hover::after {
        content: attr(title);
        position: absolute;
        top: -15px;
        left: 0;
        background: #fff !important;
        color: #000;
        padding: 5px;
        font-size: 12px;
        border-radius: 3px;
        white-space: normal;
        word-wrap: break-word;
        z-index: 100;
    }

.tooltip-inner {
    background-color: #ffffff !important;
    color: #000 !important;
    font-size: 12px !important;
    border-radius: 5px;
    white-space: normal;
    border: 1px solid #ccc;
    padding: 5px !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align:left !important;
}

.fareBaggage_btns {
    display: flex;
    gap: 35.33px;
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #189eff;
    margin-top: 5px;
    text-decoration: none !important;
}

.pcc-label {
    font-size: 12px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 2px;
}

.journey_lines {
    font-family: "Manrope";
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 2px;
    width: 86px;
    margin: 12px auto;
    background-color: #d2dce9;
    border-radius: 10px;
    position: relative; /* Necessary for positioning the dots */
}

    .journey_lines::before,
    .journey_lines::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: #fff;
        border-radius: 50%;
    }

    .journey_lines::before {
        left: 0;
    }

    .journey_lines::after {
        right: 0;
    }

.head_close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.btn-closes {
    opacity: 1;
    background: transparent;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.search_input_query {
    display: flex;
    gap: 20px;
}

.tb_searches {
    width: 100%;
    display: flex;
}

.tb_searches {
    width: 368px;
    color: #2A2D31;
    background-color: #F1F5F9;
    border-radius: 7px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.image_ser {
    padding-right: 10px;
}

.additional_itinerary_count {
    font-size: 16px;
    font-weight: bolder;
    color: #fff;
    line-height: 27px;
    transition: all 0.3s ease;
    background-color: transparent !important;
    /*width: 10%;*/
}

    .additional_itinerary_count:hover {
        cursor: pointer;
    }

.markup_input {
    padding-left: 5px !important;
}

    .markup_input input {
        background-color: #fff !important;
    }

/*Accounts Table and Confirmation message for Activate and Deactivate */
.total_tab {
    text-align: center !important;
    padding-right: 10px !important;
    font-size: 14px !important;
    font-weight: 500;
    color: #2a2d31;
}

.none_ROE, .none_td {
    display: none !important;
}

.short_names {
    width: auto !important;
    cursor: pointer !important;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 10px 5px;
    height: 10% !important;
    border-bottom: 1px solid #000;
}

    .popup-header .close {
        padding: 10px !important;
        opacity: 1;
        background: transparent;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        margin: 26px 0 0 20px !important;
    }

#modalMessage {
    font-size: 14px !important;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.5px;
}

.active_deactive {
    width: 20px;
    height: 20px;
}

.text_center {
    text-align: center !important;
}

.spacing_width_1 {
    width: 120px;
    /*height: 20px !important;*/
    /*padding: 12px !important;*/
}

.spacing_width_2 {
    width: auto;
    /*padding: 12px !important;*/
}

.baggage_Data .row_value {
    display: flex;
    align-items: center;
    gap: 10px; /* space between icon and text */
}

.baggage_icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cabin_baggage_icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.checkin_info, .cabin_info {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
}

.bag_text {
    width: 50px;
    text-align: left;
    padding-left: 5px;
}

.baggage_list {
    max-height: 90px;
    overflow-y: auto;
    transition: max-height 0.3s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

    .baggage_list::-webkit-scrollbar {
        width: 3px;
    }

    .baggage_list::-webkit-scrollbar-thumb {
        background-color: #ddd;
        border-radius: 6px;
    }

        .baggage_list::-webkit-scrollbar-thumb:hover {
            background-color: transparent;
        }

    .baggage_list::-webkit-scrollbar-track {
        background: transparent;
    }

    .baggage_list.expanded {
        max-height: none;
    }

.toggle_button {
    margin-top: 10px;
    /*background-color: #f0f0f0;*/
    /*border: 1px solid #ccc;*/
    /*padding: 5px 10px;*/
    cursor: pointer;
    font-size: 12px;
    color: #189eff;
    text-align: right;
    padding-right: 10px;
}

/*datepicker* icons*/
input[type="date"].dp_dob::-webkit-calendar-picker-indicator {
    width: 18px;
    height: 18px;
}

/* Firefox specific */
input[type="date"].dp_dob::-moz-calendar-picker-indicator {
    width: 18px;
    height: 18px;
}

.cf_block {
    display: flex;
    gap: 10px;
}

.clear-input {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 5px;
    background-color: #d2dce9;
}

    .clear-input img {
        width: 11px;
        height: 11px;
        opacity: 0.7;
    }

        .clear-input img:hover {
            opacity: 1;
        }

#alert-messages {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    /* z-index: 20; */
    /* background-color: #f8d7da; */
    /*background-color: #fff;*/
    background-color: #f1f5f9;
    /* border: 1px solid #f5c2c7; */
    color: #2A2D31;
    font-weight: 600;
    padding: 15px 10px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    width: 600px !important;
    height: 200px !important;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    max-height: 50vh;
    letter-spacing: 0.03em;
}

.new-message span {
    display: block;
    margin-bottom: 12px;
    padding-left: 15px;
    font-weight: 400;
    font-size: 16px;
}
/* Styling for the error alert of FlightPAXDetails */

.grayed-out {
    position: relative;
}

    .grayed-out::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 10;
    }
/* Disabled button (grayed-out) */
.proceed_disabled {
    background-color: #d3d3d3;
    color: #a9a9a9;
    cursor: not-allowed;
    border: 1px solid #c0c0c0;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .proceed_disabled:hover {
        background-color: #bdbdbd;
    }

.go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
}

    .go-top:hover {
        background-color: #0056b3;
    }

.up-arrow {
    font-size: 24px;
    font-weight: bold;
}
/*Session Timeout*/
.custom-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.time_exceed .modal-content {
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
    max-width: 40%;
    height: 30%;
}
/* Header Styling */
.time_exceed .modal-header {
    /*background-color: #ffebee;*/
    color: #2A2D31;
    font-weight: bold;
    padding: 5px 20px;
    /*border: 1px solid #f44336;*/
    /*color: #d32f2f;*/
}

.time_exceed .modal-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Body Styling */
.time_exceed .modal-body {
    font-size: 16px;
    padding: 20px;
    text-align: center;
    height: 10vh;
    overflow: hidden !important;
    margin: 20px auto;
}
/*.time_exceed .modal-body p{
    padding: 20px;
}*/
.time_exceed {
    z-index: 1051 !important;
}

.title_text {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block !important;
    vertical-align: middle;
    cursor: pointer;
}



.eticket_img_wrapper {
    padding: 80px 10px 10px;
}

    .eticket_img_wrapper img {
        width: 15%;
        height: 15%;
        margin: 0 auto;
        /*background: inherit;*/
        /*border-radius: 50px;*/
        /*padding: 5px;*/
    }

.confirm-text-1 {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.003em;
    color: #2a2d31;
    padding: 25px;
    /*max-width: 595px;*/
}

.booking_select {
    border-radius: 5px;
}

.edit-ticket {
    display: flex;
    gap: 50px;
}

.edit_option_tkt {
    font-size: 12px;
    color: #189eff;
    cursor: pointer;
}


/* EDIT PNR*/
.edit_tktpnr {
    font-size: 12px;
    color: #333;
    background-color: #fff;
    border: 0.75px solid rgba(160, 160, 160, .5);
    border-radius: 2px;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s;
    width: 100%;
    padding: 0 5px;
    height: 20px;
}
/*.edit_tkt_head{
    font-size: 22px;
    padding: 20px 5px;
    font-weight: 700; 
}*/

.edit_tkt_pass {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 35px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px 0;
}

/*.passenger_Edit{
    display:flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}*/

/*.pass_tkt{
    display:flex;*/
/*justify-content:space-between;*/
/*gap: 10%;
    width: 100%; 
    align-items: center;
    margin-bottom: 10px;*/
/*height: 80px;*/
/*}*/

/*.tkt_Edit_footer{
    margin-top: 25px;
    padding: 0 0 0 40px  !important;
}*/

.btn-closed {
    /*width: 100%;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

    .btn-closed img {
        height: 20px;
        width: 20px;
        margin-right: 16px;
    }

.width_tkt {
    width: 25% !important;
}

/*.pasname{*/
/*font-size: 20px;*/
/*font-weight:800;
}*/
/*.edit_paxtype{
    font-weight: 500;
}*/

.ticket_section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 30%;
}

.edits_passenger .add_new_col .ticket_section input {
    cursor: text !important;
    caret-color: black !important;
}
/* Container for label and input */


.add_new_col {
    display: flex;
    gap: 20px;
}

.ticket_label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 800;
    color: #2A2D31;
}

/* Input Field */
.ticket_input {
    padding: 8px;
    border: 0.75px solid rgba(160, 160, 160, .5);
    border-radius: 4px;
    width: 100%;
}


.edit_tabs {
    background-color: #fff !important;
    padding: 20px !important;
    border-radius: 8px !important;
}
/* new add ticket number*/
.pax-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.edit_profile-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    cursor: pointer;
    transition: border-radius 0.3s ease, border-bottom 0.3s ease;
}

.edit_profile-containers {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
}

.pax-container.open .edit_profile-container {
    border-bottom: 1px solid transparent;
    border-radius: 8px 8px 0 0;
}

.edit_passenger_form {
    display: none;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #ddd;
}

.pax_tkt_inline {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pax-name {
    font-size: 14px;
}

.cabinselect {
    width: 100%;
    border-radius: 4px;
}

.error-border {
    border-color: red !important;
}

.validates {
    color: red;
    font-size: 10px;
}

.btn-loader {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

#baggageOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Gray out effect */
    z-index: 998;
}

#baggageDetailsPopup {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translate(-50%,50%);
    width: 100%;
    max-width: 90%;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999;
}

    #baggageDetailsPopup .policy-cottom {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-weight: 400;
        font-size: 14px;
        line-height: 155.6%;
        display: flex;
        align-items: center;
        color: #2a2d31;
        padding: 15px 45px;
    }

#showBaggageDetails {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #189eff;
    margin: 0 !important;
    cursor: pointer;
}

#baggageDetailsPopup .tab-item-3 .fr-top-bar .fare-breakdown {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    letter-spacing: -0.003em;
    color: #2a2d31;
}

#baggageDetailsPopup .tab-item-3 .table-wrapper .table-1 {
    width: 100%;
}


/*.custom-dropdown-wrappers {
    position: relative;
    width: 100%;
    display: inline-block;
}

.dropdown-btns {
    max-width: 100%;
    max-width: 280px;
    padding: 8px;
    padding-right: 30px;*/ /* Ensure space for the icon */
/*border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block; 
    height: auto
}

    .dropdown-btns::after {
        content: "";
        position: absolute;
        right: 8px;*/ /* Adjust to align */
/*top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: url('/assets/images/icons/downArrow.png') no-repeat center center;
        background-size: contain;
        pointer-events: none;*/ /* Prevents interference */
/*}


.dropdown-menus {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 250px;
    border-radius: 7px;
}

.dropdown-search {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #ccc;
}*/

.custom-dropdown-wrappers {
    position: relative;
    width: 100%;
}



.dropdown-btns {
    width: 100%;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align text on the left and arrow on the right */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Show ellipsis (...) for long text */
}


    .dropdown-btns::after {
        content: "";
        background: url('/assets/images/icons/downArrow.png') no-repeat center;
        background-size: contain;
        width: 10px; /* Adjust size as needed */
        height: 10px;
        display: inline-block;
    }

.dropdown-menus {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
    display: none;
    max-height: 200px;
    /*overflow-y: auto;*/
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-search {
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

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

    .dropdown-options li {
        padding: 8px;
        cursor: pointer;
    }

        .dropdown-options li:hover {
            background: #f1f1f1;
        }


.alert-container {
    width: 40% !important;
    height: 30% !important;
}

.alert_new_text {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #2A2D31 !important;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    font-size: 18px !important;
}

.alert_small_text {
    font-size: 14px !important;
    padding: 20px;
    margin-bottom: 10px !important;
    font-weight: 400 !important;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/*.dropdown-options {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 7px;
}*/

.dropdown-options {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    /*border-radius: 7px;*/
    background: #fff;
}

    .dropdown-options::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-options::-webkit-scrollbar-track {
        background: #f9f9f9;
        border-radius: 10px;
    }

    .dropdown-options::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

        .dropdown-options::-webkit-scrollbar-thumb:hover {
            background: #b3b3b3;
        }

.dropdown-options {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f9f9f9;
}


    .dropdown-options li {
        padding: 8px;
        cursor: pointer;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .dropdown-options li:hover, .dropdown-options li.selected {
            background: #189eff !important;
            color: #fff;
        }

.flights_validates {
    display: flex;
    gap: 20px;
    font-size: 20px;
    margin-bottom: 25px;
    padding: 0 0 10px 10px;
    border-bottom: 1px solid #ddd;
    align-items: center;
    font-weight: bold;
}

/* Invoice Download*/
.invoice_Download_content {
    max-width: 1119px;
    width: 100%;
    margin: 2% auto 5%;
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 32.25px 0;
    min-height: 50vh;
    background-color: #fff;
    border-radius: 7px;
}


.invoicedate {
    display: flex;
    justify-content: space-between;
    /*align-items:center;*/
}

/*.CFR_input .input-l{
    width:40% ;
}*/

.date_flex {
    display: flex;
    width: 100%;
    justify-content: center;
}

.invoicedownload_head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invoice_search {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 26px;
    height: 36px;
    background: #189eff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border: none;
    margin: 0 auto;
}

.exportExcelLink:hover {
    color: #fff;
    background: none;
}

.paxflight {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 7px;
    padding: 20px 20px 20px 20px;
    gap: 10px;
}


/*Reset Password*/
.alert-notification {
    background-color: #aaee87;
    color: #097969;
    border: 1px solid #097969;
    max-width: 450px !important;
    padding: 5px !important;
    font-size: 13px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
}

    .alert-notification a {
        font-size: 15px;
        width: 20px;
        height: 20px;
    }


#password-requirements {
    position: absolute;
    top: 100%;
    right: 0; /* Align to the right side */
    margin-top: 5px;
    background-color: #f9fafb; /* Darker background color */
    border: 2px solid #189EFF; /* Darker and bolder border */
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow for a bolder look */
    width: 300px;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    color: #323232; /* Light text color for contrast */
}

    #password-requirements.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #password-requirements:before {
        content: '';
        position: absolute;
        top: -10px;
        right: 10px; /* Position the arrow on the right side */
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #189EFF; /* Darker triangle to match the box */
    }

    #password-requirements ul {
        list-style: none;
    }

        #password-requirements ul li,
        #password-requirements ul strong {
            font-size: 14px;
            margin-bottom: 8px;
        }

#password-requirements_manage {
    position: absolute;
    left: auto;
    margin-top: 5px;
    background-color: #f9fafb;
    border: 2px solid #189EFF;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: auto;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    color: #323232;
}

    #password-requirements_manage.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #password-requirements_manage:before {
        content: '';
        position: absolute;
        top: -10px;
        left: 10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #189EFF;
    }

#password-requirements ul {
    list-style: none;
}

#password-strength {
    margin-top: 15px;
    font-weight: bold;
    text-align: left;
    font-size: 14px;
}

.strength-indicator {
    color: #d9534f;
}

    .strength-indicator.medium {
        color: rgb(249, 162, 0);
    }

    .strength-indicator.strong {
        color: rgb(1, 137, 1);
    }

.requirement {
    font-size: 14px;
    margin-bottom: 8px;
    color: #d9534f;
    position: relative;
    padding-left: 25px;
}

    .requirement::before {
        content: "\2716"; /* Red "X" symbol */
        position: absolute;
        left: 0;
        color: #d9534f;
        font-size: 16px;
    }

    .requirement.valid {
        color: rgb(1, 137, 1);
    }

        .requirement.valid::before {
            content: "\2714"; /* Green checkmark */
            color: rgb(1, 137, 1);
        }

.alert-reset {
    background-color: #f0ad4e;
    color: #fff;
    border: 1px solid #f0ad4e;
    margin-bottom: 20px;
    max-width: 450px !important;
}

.alert-dangers {
    margin-bottom: 15px;
}

    .alert-dangers li {
        background-color: #f0a8af;
        color: #4b0208;
        border: 1px solid #a00413;
        margin-bottom: 5px;
        max-width: 550px !important;
        padding: 10px;
        border-radius: 11px;
        font-size: 13px;
        list-style: none;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: space
    }

/* Styling the message content */
.alert ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.alert li {
    font-weight: 400;
}

.res-close-btn {
    background: transparent;
    color: currentColor;
    border: none;
    font-size: 20px;
    font-weight: bolder;
    /*margin-left: 20px;*/
}

.CFR_input .invoicedate .date_flex .input-group {
    width: 40% !important;
}


/*Roe Loader*/
.Roe-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks through during fade-out */
}

.roe_loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

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

.directflights {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}


.passenger_details .pdb_bottombar .table-datas {
    /*max-width: 200px;*/
    width: 150px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #67707b;
    padding-right: 14px;
}

.table-datas {
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
    /*border: 1px solid #ddd;*/
    font-size: 12px;
}

/*.table-datas p {
        margin: 0;
        font-weight: 600;
        color: #333;
    }*/

/*.table-datas .table-sub {
        font-weight: normal;
        color: #666;
        font-size: 13px;
        margin-top: 3px;
    }*/

.extra-baggage-item {
    font-weight: normal;
    color: #666;
    font-size: 13px;
    margin-top: 3px
}

.edit-time {
    border: 1px solid #189eff;
    background-color: none;
    color: #189eff;
    padding: 5px;
    margin: 0 auto;
    border-radius: 7px;
}
/*#dateInput {
    color: #323131;
}*/


#dateInput {
    color: #323131;
}

    /* Ensures the text color applies to all parts */
    #dateInput::-webkit-datetime-edit {
        color: #323131;
    }

    /* Targeting year separately */
    #dateInput::-webkit-datetime-edit-year-field {
        color: #323131;
    }

    /* Targeting month and day */
    #dateInput::-webkit-datetime-edit-month-field,
    #dateInput::-webkit-datetime-edit-day-field {
        color: #323131;
    }

#editDateModal .pub_page1 .pub_page .baggage-policy-wrapper {
    width: 50%;
    padding: 30px;
}

#editDateModal .bookinginline {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    #editDateModal .bookinginline .timelimit_text {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.003em;
        color: #121213;
        margin-bottom: 20px;
    }

    #editDateModal .bookinginline .btn-close {
        width: auto;
    }

#editDateModal .pub_page1 .pub_page .baggage-policy-wrapper .container .tabs #editDateForm .sub_res_btns {
    display: flex !important;
    justify-content: flex-end;
    gap: 10px;
    padding: 30px 0;
}

#editDateModal .pub_page1 .pub_page .baggage-policy-wrapper .container .tabs #editDateForm .form-group #errorText {
    color: red;
    font-size: 14px;
    position: absolute;
    bottom: -20px;
    left: 0;
}

/* Default Styles */
.flatpickr-calendar {
    width: min(90vw, 350px) !important;
    height: auto !important;
    min-width: 250px !important;
    min-height: 250px !important;
    max-height: 400px !important;
}

.flatpickr-day {
    font-size: 16px !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
}

/* For Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    .flatpickr-calendar {
        width: min(85vw, 320px) !important;
        min-height: 240px !important;
    }

    .flatpickr-day {
        font-size: 14px !important;
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
    }
}

/* For Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .flatpickr-calendar {
        width: min(95vw, 280px) !important;
        min-height: 220px !important;
    }

    .flatpickr-day {
        font-size: 12px !important;
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
    }
}

/* For Small Screens (max-width: 360px) */
@media screen and (max-width: 360px) {
    .flatpickr-calendar {
        width: min(98vw, 260px) !important;
        min-height: 200px !important;
    }

    .flatpickr-day {
        font-size: 10px !important;
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
    }
}


.calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Adjust size as needed */
    height: 20px;
    cursor: pointer;
}

#dateDisplay {
    border: 1px solid #DD1F03;
    border-radius: 7px;
    padding: 3px 5px;
}

/*add destination new style*/
.bottom-checks {
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    width: 100%;
}

    .bottom-checks .add-destination {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.003em;
        color: #67707b;
        cursor: pointer;
    }

        .bottom-checks .add-destination .addCircle-wrapper {
            height: -moz-fit-content;
            height: fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

            .bottom-checks .add-destination .addCircle-wrapper img {
                height: 24px;
                width: 24px;
            }

        .bottom-checks .add-destination input {
            height: 18px;
            width: 18px !important;
            cursor: pointer;
        }

        .bottom-checks .add-destination .destination-text {
            font-family: "Manrope";
            font-style: normal;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: -0.003em;
            color: #189eff;
            cursor: pointer;
        }

        .bottom-checks .add-destination label {
            margin-left: 6px;
            cursor: pointer;
        }

.multicity-show {
    display: block;
}


/*optimized design code*/
.infinity-loading-container {
    display: none;
    text-align: center;
    margin: 20px;
    font-size: 18px;
    color: #444;
    font-weight: bold;
    /*animation: bounce 1s infinite;*/
}

.dots {
    display: inline-block;
    margin-left: 5px;
}

.dot {
    display: inline-block;
    animation: bounceZigZag 0.6s infinite;
    margin: 0 2px;
}

    .dot:nth-child(1) {
        animation-delay: 0s;
    }

    .dot:nth-child(2) {
        animation-delay: 0.15s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.3s;
    }

@keyframes bounceZigZag {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.end-message {
    display: none;
    text-align: center;
    margin: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.no-data-wrapper {
    position: relative;
    height: 100vh; /* Full page height or parent height */
}

.no-data-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 100%;
    opacity: 0.8;
}

.search_btns_queues {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date_filter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btns_search_center .search_input_all {
    display: block;
    margin: 0 0 0 auto !important;
}


.date_filter, .travel_date_filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.queue_submit {
    display: flex;
    gap: 5px;
}
/*Detailed Fare rules*/
.detail-fare .detail-fare-wrapper .detailed-farerules .card {
    display: flex;
    width: 836px;
    max-width: 100%;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    background: #ffffff;
    border-radius: 7px;
    /* width: 100%; */
    padding: 14px;
    border: 1px solid white;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.pointer-cursor {
    cursor: pointer;
    padding: 10px;
    /*background-color: #007bff;*/
    color: #000;
    font-weight: bold;
    margin-bottom: 5px;
}

.rulesdetails {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    border-radius: 10px;
    width: 800px;
    margin: 0 auto;
}

.search_btns_queue {
    display: flex;
    gap: 20px;
}

.loading-fare-text {
    display: flex;
    align-items: center;
    user-select: none;
    outline: none;
    pointer-events: none;
}

.fare-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #189eff; /* blue color */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    display: inline-block;
}

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





/*Error Handling Designs*/
/*.internal_error_hand {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;*/
/*height: 80vh;*/
/*text-align: center;
    color: #444;
    width: 800px;
    margin: 5vh auto;
    padding: 25px;
}*/
.internal_error_hand {
    margin: 5vh auto;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    color: #000;
    width: 90%;
    max-width: 1120px;
    padding: 25px;
    border-radius: 16px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.error_handling {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.oops {
    font-size: 100px;
    font-weight: 700;
    background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=800&q=60');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.1;
    word-break: break-word;
    margin-bottom: 10px;
}


.error-handle-text {
    font-size: 16px;
    color: #aaa;
    line-height: 1.5;
}

.buttons_tab {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.Return_home,
.Go_back {
    padding: 15px;
    font-size: 14px;
    border-radius: 7px;
    width: 20%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}
.Return_home {
    background-color: #189eff;
    border: 1px solid #189eff;
    color: #fff;
    text-decoration: none;
}

.error-codes {
    margin-top: 10px;
}

.Return_home:hover {
    background-color: transparent;
    color: #189eff;
}

.Go_back {
    background-color: #fff;
    border: 1px solid #b6b6b6;
    color: #000;
    text-decoration: none;
}

    .Go_back:hover {
        border: 2px solid #189eff;
        color: #189eff;
    }

.stacktrace-content {
    display: none;
    background-color: #222;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.iconserror {
    margin-right: 5px;
}

.toggle-stacktrace {
    cursor: pointer;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 10px;
}

    .toggle-stacktrace i {
        transition: transform 0.3s ease;
    }

.toggle-icon.rotate {
    transform: rotate(180deg);
}
.supllier_log_tab{
    margin: 10px auto;
}

/*.custom-dropdown-triggers {
    cursor: pointer;
    padding: 15px 8px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/

.oops {
    font-size: 150px;
    font-weight: 700;
    background: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=800&q=60');
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.custom-dropdown-triggers {
    cursor: pointer;
    padding: 15px 8px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.log-menu {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
    position: absolute;
    z-index: 999;
    width: 100%;
    top: 100%;
    left: 0;
}


.error-code {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .oops {
        font-size: 80px;
    }

    .Return_home,
    .Go_back {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .internal_error_hand {
        padding: 15px;
        height: auto;
    }

    .oops {
        font-size: 60px;
    }

    .error-code {
        font-size: 20px;
    }

    .error-handle-text {
        font-size: 14px;
    }

    .stacktrace-content {
        font-size: 13px;
    }
}
/*
.text {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}*/
.no-records-queue {
    text-align: center !important;
    color: #FF0000 !important;
    font-size: 14px !important;
    padding: 15px !important;
}


.custom-dropdown-groups.open .log-menu {
    display: block;
    padding: 15px !important;
}
.custom-dropdown-groups.open .log-menu {
    display: block;
}

/*.cf_travels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cf_travel--titles {
    font-weight: bold;
}

.cf_travel--counts button {
    width: 30px;
    height: 30px;
}.custom-dropdown-groups.open .log-menu {

.cf_travel--counts input {
    width: 40px;
    text-align: center;
}*/

.download-json {
    background-color: #189eff;
    padding: 5px;
    font-size: 8px;
    color: #fff;
    border-radius: 8px;
}

#averageResponseContainerWrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-right: 25px;
}

    #averageResponseContainerWrapper > div {
        white-space: nowrap;
    }
/*.table-cell-limit {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/
/*.table-cell-limit:hover {
        white-space: normal;*/ /* optional if you want text to wrap on hover */
/*}*/
/*.log_pagination {
    margin-top: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagination-btn {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
    
}*/

#paginationControls {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 10px;
    justify-content: flex-end;
    margin-bottom: 50px;
}

    #paginationControls .pagination-btn,
    #paginationControls .pagination-nav {
        padding: 4px 10px;
        border: none;
        background-color: #f0f0f0;
        color: #333;
        cursor: pointer;
        border-radius: 4px;
    }

        #paginationControls .pagination-btn.active {
            background-color: #189eff;
            color: white;
            border: none;
        }

    #paginationControls .pagination-btn {
        margin: 0 2px;
        padding: 5px 10px;
        border: 1px solid #ccc;
        background: white;
        cursor: pointer;
    }

    #paginationControls .dots {
        margin: 0 5px;
        font-weight: bold;
    }

.logs-table-wrapper {
    width: 90%;
    margin: 20px auto;
    overflow-x: auto;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
}

    .logs-table-wrapper .table-ids {
        border: 1px solid #000;
    }
/* fare family design*/
.itenary {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: #595858;
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
    margin-left: 20px;
    height: 45px;
}

.hidden {
    display: none;
}

.more-toggle {
    display: none;
    color: #007bff;
    cursor: pointer;
    font-size: 12px;
}

.itenary .logo {
    background-color: #fff;
    padding: 3px;
    border-radius: 50px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}

    .itenary .logo img {
        width: 20px;
    }

.fare-options {
    padding: 5px 20px;
    margin: 0 auto;
    position: relative;
    height: auto;
}

.fare-wrapper {
    width: 100%;
    padding: 20px;
    height: auto;
}

.fare-types-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.fare-types {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    justify-content: center !important;
    margin: 0 auto;
}

.fare-option {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    margin-right: 1%;
    max-width: 100%;
    width: 330px;
}

.heading_of_fare {
    font-size: 24px;
    font-weight: 600;
    color: #189EFF;
}

.fare-header h6 {
    font-size: 20px;
    font-weight: bold;
}

    .fare-header h6 span {
        font-size: 14px;
        font-weight: bold;
    }

.per_pax {
    font-size: 14px;
    font-weight: 500;
    color: #696868;
}

.fare-header p {
    font-size: 16px;
    margin-bottom: 10px;
}

.fare-body {
    flex-grow: 1;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #888888 #f1f1f1;
}

    .fare-body::-webkit-scrollbar {
        width: 4px;
    }

    .fare-body::-webkit-scrollbar-thumb {
        background-color: #888888;
        border-radius: 4px;
    }

        .fare-body::-webkit-scrollbar-thumb:hover {
            background-color: #555555;
        }

    .fare-body::-webkit-scrollbar-track {
        background-color: #f1f1f1;
        border-radius: 4px;
    }

    .fare-body ul {
        padding-left: 0;
    }

    .fare-body li {
        margin-bottom: 15px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

        .fare-body li img {
            width: 20px;
        }

.fare-footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
    justify-content: space-between;
}

    .fare-footer .fare-btn:hover {
        border: 1px solid #189EFF;
        color: #189EFF;
        background-color: transparent !important;
    }

    .fare-footer .fare-btn:focus,
    .fare-footer .fare-btn:active {
        border-color: #189EFF;
        outline: none;
        background-color: transparent !important;
    }

.brand-feature-item {
    margin-left: 15%;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.brand-feature-group {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.brand-feature-header {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.brand-feature-detail {
    margin-left: 25px;
    font-size: 13px;
}

.fare-wrapper {
    position: relative;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    width: 103%;
    z-index: 10;
}

img[id^="prevArrow-"],
img[id^="nextArrow-"] {
    cursor: pointer;
    width: 30px;
    height: auto;
}

.single_fare_option {
    border: 2px solid #189eff;
    height: 60%;
}

.flightpax_selected_fares {
    font-weight: 500;
    font-size: 12px !important;
    line-height: 16px;
    letter-spacing: -0.003em;
    color: #189eff;
    cursor: pointer;
}

.carousel-controls img.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.fare-header h6 {
    margin-bottom: 0.5rem;
}

.head_strong {
    color: #121213 !important;
    font-weight: 600;
    font-size: 16px;
}

.header_log {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.basic {
    color: #1E90FF;
    font-weight: 800;
}

.flex {
    color: #0f52ba;
    font-weight: 800;
}

.flex_plus {
    color: #0000ff;
    font-weight: 800;
}

.premium_flex {
    color: #00004d;
    font-weight: 800;
}

.basic_border {
    border: 2px solid #1E90FF;
}

.flex_border {
    border: 2px solid #0f52ba;
}

.flex_plus_border {
    border: 2px solid #0000ff;
}

.premium_plus_border {
    border: 2px solid #00004d;
}

.border_blue_1 {
    border: 2px solid #d0e8ff;
}

.border_blue_2 {
    border: 2px solid #a8d4ff;
}

.border_blue_3 {
    border: 2px solid #80c0ff;
}

.border_blue_4 {
    border: 2px solid #58acff;
}

.border_blue_5 {
    border: 2px solid #3098ff;
}

.border_blue_6 {
    border: 2px solid #1E90FF;
}

.border_blue_7 {
    border: 2px solid #1a7ddc;
}

.border_blue_8 {
    border: 2px solid #166abb;
}

.border_blue_9 {
    border: 2px solid #125899;
}

.border_blue_10 {
    border: 2px solid #0e4577;
}

.border_blue_11 {
    border: 2px solid #0a3355;
}

.border_blue_12 {
    border: 2px solid #072233;
}

.border_blue_13 {
    border: 2px solid #041122;
}

.border_blue_14 {
    border: 2px solid #020a11;
}

.border_blue_15 {
    border: 2px solid #000000;
}

.fare_air_name {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.airlinefare_logo {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 12%;
    align-items: center;
}

.origin_block {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
    width: 12%;
}

.destination_block {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    width: 12%;
}

.fare_plane {
    position: relative;
    width: 2%;
    text-align: center;
    margin: 20px 0;
}

    .fare_plane span::after {
        content: '➔';
        color: #555555;
        font-size: 14px;
    }

    .fare_plane img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: none;
        z-index: 1;
    }

.farefam_td {
    padding: 5px;
}

@media (max-width: 1200px) {
    .fare-option {
        width: 280px;
    }

    .carousel-controls img {
        font-size: 20px;
        padding: 6px;
    }
}

@media (max-width: 992px) {
    .fare-option {
        width: 230px;
    }

    .itenary {
        align-items: flex-start;
    }

    .fare-footer .fare-btn {
        width: 100%;
    }

    .header_log {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .fare-types-wrapper {
        display: flex;
        justify-content: center;
        width: 100% !important;
    }

    .fare-option {
        width: 100%;
        margin-bottom: 20px;
    }

    .fare-types {
        flex-direction: column;
    }

    .carousel-controls {
        display: none;
    }

    .itenary .logo img {
        width: 25px;
    }
}

@media (max-width: 576px) {
    .fare-option {
        padding: 10px;
    }

    .fare-wrapper {
        width: 100%;
        padding: 10px;
    }

    .fare-types-wrapper {
        display: flex;
        justify-content: center;
    }

    .itenary {
        font-size: 12px;
    }

        .itenary .logo img {
            width: 20px;
        }

    .heading_of_fare {
        font-size: 20px;
    }

    .fare-header h6 {
        font-size: 18px;
    }

    .fare-header p,
    .per_pax,
    .fare-body li {
        font-size: 12px;
    }

    .fare-footer .fare-btn {
        font-size: 16px;
    }

    .carousel-controls img {
        display: none;
    }
}
/*# sour}*/
.form-row .row .col-8 .form-group .form-check .form-check-input {
        border: none !important;
        margin: auto !important;
    }

.cf_clear {
    padding: 3px;
    text-align: right;
    margin-left: auto;
    border-bottom: 1px solid #eee;
/*    margin-bottom: 10px;*/
}

.clear-btn {
    background: transparent;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    font-weight: 500;
    margin-left:auto;
    font-size: 10px;
}
.clear-btn:hover {
        text-decoration: underline;
    }

.logSelect-clear-btn {
    position: absolute;
    right: 30px; /* Adjust based on your select2 arrow position */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: 600;
    color: #999;
    z-index: 3; /* Make sure it's above the select2 */
    padding: 0 5px;
   
}

    .custom-clear-btn:hover {
        color: #333;
    }


.client-branch-input {
    border-radius: 17px !important;
    width: 220px !important;
    background-color: #f0f0f0 !important;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #2a2d31;
    text-transform: capitalize;
    height: 34px;
    padding: 0 30px 0 10px;
    cursor: pointer;
    border: none;
}

/*    .client-branch-input::placeholder {
        font-weight: 500;
        font-size: 13px;
        line-height: 15px;
        color: #2a2d31;
    }*/

.client-branch-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
}

.dropdown-items {
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    color: #333;
    transition: background 0.3s ease-in-out;
    line-height: 15px;
}

    .dropdown-items:hover {
        background-color: #f5f5f5;
        color: #000;
    }


.no-data {
    padding: 12px;
    font-size: 14px;
    color: #888;
    text-align: center;
    font-weight: 500;
    background: #f8f8f8;
    cursor: default;
}

.new-return:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.dupe-dropdown-link {
    display: inline-flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #007bff;
}

    .dupe-dropdown-link a {
        text-decoration: none;
        color: #0056b3;
    }

        .dupe-dropdown-link a:hover {
            text-decoration: underline;
        }

.separator {
    color: #444;
}
/*
#currencyLabel{
    font-size: 12px;
    font-weight: 400;
}*/

/*.cf_dropdown_v1--show {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0 url(/assets/images/icons/arrow-down.svg) center right 18px no-repeat;
    border-radius: 17px;
    height: 34px;
    padding: 0 8px;
    cursor: pointer;
    position: relative;*/ /* important for absolute positioning */
/*}*/

/* Count inside the icon */
.selected-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #189eff;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    margin-left: 4px;
    margin-top: -8px;
    position: absolute;
    top: 0;
    right: -5px;
}

/* Badge below the dropdown */
.filters-badge {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #189eff;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    /*z-index: 99;*/
}

#insufficientBalanceAlert {
    display: none;
    color: red;
    font-weight: bold;
/*    margin-top: 10px;*/
    text-align: center;
    margin-top: 6%;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.fare-change-alert {
    padding: 15px;
    margin-bottom: 20px;
    background-color: #faeeca;
    width: 60%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border-radius: 7px;
    /*    border-left: 4px solid #ffc107;*/
}

    .fare-change-alert p {
        margin: 0;
        color: #856404;
    }
.indicator_currency {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
.cab_check{
    display:flex;
/*    justify-content:space-between;*/
    flex-direction:column;
    align-items:flex-start !important;
}
.luggage_check, .cabin_check{
    display:flex;
    flex-direction:row;
/*    justify-content: space-between;*/
    gap: 10px;
}

.passenger-baggage {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    margin-left:3%;
}

.baggage-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.baggage-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .baggage-item img {
        width: 18px;
        height: 18px;
        opacity: 0.8;
    }
.checking_bag_fare{
    width:20px !important;
    height:20px;
}
.cabin_bag_fare{
    width:18px !important;
    height: 18px;
/*    margin-right:5px;*/
}
.bagg_adt{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:8px;
}

.refund-tooltip .tooltip-inner {
    background-color: #003366 !important;
    color: #ffffff !important;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
}


.refund-tooltip.bs-tooltip-top .tooltip-arrow::before,
.refund-tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.refund-tooltip.bs-tooltip-start .tooltip-arrow::before,
.refund-tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-color: #003366 !important;
}


/*# sour}*/