* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ebe5df;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: #000000;
}

.btn_primary_white {
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}

.btn_primary_black {
    display: inline-block;
    background-color: #000000;
    border: 2px solid #000000;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}

.btn_secondary_black {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #000000;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}

.disabled {
    opacity: .5;
    cursor: not-allowed;
}

.login-page {
    display: flex;
    min-height: 100vh;
}

.login_left_side {
    flex-grow: 1;
}

.login_box {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: 0 auto;
}

.login_left_side_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    margin-top: 10vh;
}

.login_fh_logo {
    max-width: 65%;
    width: 800px;
    margin: 2rem 0;
}

.login_header {
    text-align: center;
    width: 100%;
}

.login_heading_text {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

.img_device {
    display: none;
}

.form_wrapper {
    width: 100%;
    margin-top: 2rem;
}

.form-label {
    font-size: .9rem;
    font-weight: 400;
}

.form-control, .form-select {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    padding: .6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    outline: none;
    resize: none;
}

    .form-control:focus, .form-select:focus {
        background-color: #F3ECE6;
        border: 1px solid #000000;
        box-shadow: none;
    }

    .form-control:disabled, .form-select:disabled {
        background-color: #ebe5df;
    }

input.invalid {
    border-color: #E95858;
}

input.valid {
    border-color: rgb(3, 187, 3);
}

.input-group-text {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
}

#txtPassword, #txtPassword, #txtConfirmPassword {
    border-right: 0;
}

    #txtPassword:focus + #passIcon, #txtPassword:focus + #passIconPassword, #txtConfirmPassword:focus + #passIconConfirmPassword {
        border-color: #000000;
    }

#passIcon {
    border-left: 0;
    cursor: pointer;
}

.login_right_side {
    background: url(../images/login_img.jpg);
    width: 60%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.error_msg {
    color: #E95858;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.success_msg {
    color: green;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.login_btn_wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .login_btn_wrapper > div {
        width: 40%;
    }

.link_wrapper {
    text-align: center;
}

.forgot_pass_link {
    display: inline-block;
    color: #000000;
    font-size: 1rem;
    font-weight: 300;
    text-underline-offset: 3px;
    margin: 0 auto;
}

.bg_gradient {
    position: fixed;
    bottom: 0;
    background: linear-gradient(#EBE5DF, #FFF6C6);
    height: 248px;
    width: 100%;
    z-index: -1;
}

.legal {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.legal_device {
    margin-top: 1rem;
    display: none;
}

    .legal p, .legal_device p {
        font-size: 13px;
        font-weight: 400;
    }



/* NAVBAR */
#navIcon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
    margin-left: 0px;
    top: 10px;
    z-index: 999;
    position: fixed;
    left: 10px;
    display: none;
}

    #navIcon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 24px;
        background: #000000;
        border-radius: 5px;
        opacity: 1;
        left: 0;
        margin: 0 auto;
        right: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        #navIcon span:nth-child(1) {
            top: 11px;
        }

        #navIcon span:nth-child(2) {
            top: 18px;
        }

        #navIcon span:nth-child(3) {
            top: 25px;
        }

.navActive #navIcon span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navActive #navIcon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navActive #navIcon span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

nav.activatedMenus {
    left: 0;
    transition: 0.4s ease;
}

.nav-container {
    border-bottom: none;
}

.nav-container {
    position: fixed;
    background: #f3ece6;
    border-right: 1px solid #D1C6BB;
    width: 220px;
    height: 100dvh;
    left: 0;
    z-index: 99;
    top: 0;
    overflow-y: auto;
    transition: 0.4s ease;
    padding: 1rem;
    display: flex;
}

    .nav-container.nav-main.toggle-nav {
        left: 0;
        z-index: 10;
    }

.navActive .nav-container {
    left: 0;
}

.nav-container .nav-ul {
    width: 100%;
    margin: auto;
    padding: 0;
}

.nav-container .nav-li {
    margin: 0;
    display: block;
}

.nav-container a {
    padding: .5rem .5rem .5rem 1rem;
    transition: padding 0.5s ease;
    text-decoration: none !important;
    outline: none !important;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
}

    .nav-container a:hover img {
        opacity: 1;
    }

.nav-li a.active-nav, .nav-li a.active {
    color: #000 !important;
    background: #ffffff;
}

    .nav-li a.active-nav img, .nav-li a.active img {
        opacity: 1;
    }

.nav-li-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
}

    .nav-li-icon img {
        display: block;
        opacity: .3;
        transition: all .3s ease-in-out;
    }

.nav_fh_logo {
    max-width: 140px;
    margin: .2rem 0 1.5rem;
}

.nav-container .bg_gradient {
    background: linear-gradient(#f3ece6, #FFF6C6);
    position: absolute;
    left: 0;
}

.nav-container-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    overflow-y: auto;
}

    .nav-container-content button {
        display: block;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1;
        padding-bottom: 10px;
        padding-top: 8px;
    }

.nav_user_porfile {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.user {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.user_icon {
    width: 20px;
    margin-right: 5px;
}

.nav_user_name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.user_options {
    cursor: pointer;
}

.flight_container.user_options {
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    transition: all .3s ease-in-out;
}

/* DASHBOARD */
.body_wrapper {
    display: flex;
}

.page_main_content {
    flex-grow: 1;
    margin-left: 220px;
}

.details_box {
    background-color: #F3EFEB;
    border: 1px solid #D1C6BB;
    border-radius: 8px;
    padding: 1.3rem 1.2rem;
    text-align: center;
    height: 100%;
    line-height: 1;
}

.details_value {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: .875rem;
}

.overall_details .row {
    margin: 0 -.3rem;
}

.overall_details .col-md-4 {
    padding: 0 .3rem;
    margin: 0 0 2rem;
}

.details_name {
    color: #87786B;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.flight_details_heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.search_box {
    display: flex;
    border: 1px solid #D1C6BB;
    border-radius: 8px;
    min-width: 345px;
    max-width: 25%;
}

    .search_box label {
        padding: .4rem 0 .4rem 1rem;
        cursor: pointer;
    }

        .search_box label img {
            display: inline-block;
            margin-bottom: 3px;
        }

    .search_box input {
        outline: none;
        border: 0;
        background: transparent;
        padding-right: 1rem;
        flex-grow: 1;
        margin-left: 5px;
    }

.currunt_month_year .month_year_dropdown {
    background: transparent;
    border: 0;
    outline: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}

    .currunt_month_year .month_year_dropdown:active {
        background-color: #000000;
        color: #ffffff;
    }

.section_btn {
    background-color: #DCD4CC;
    font-size: .9rem;
    font-weight: 400;
    border-radius: 25px;
    padding: .5rem 1.1rem;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #dcd4cc;
    color: #000000;
    text-decoration: none;
}

.details_arrow {
    padding: .5rem;
    height: 40px;
    width: 40px;
    text-align: center;
}

.table_wrapper {
    border-radius: 10px;
    border: 1px solid #D1C6BB;
    overflow-y: auto;
}

    .table_wrapper table {
        width: 100%;
    }

        .table_wrapper table tr {
            border-bottom: 1px solid #D1C6BB;
        }

        .table_wrapper table tbody tr:last-child {
            border-bottom: 0;
        }

        .table_wrapper table th {
            background-color: #DCD4CC;
            font-weight: 700;
        }

        .table_wrapper table th,
        .table_wrapper table td {
            padding: .6rem;
        }

    .table_wrapper th img {
        margin-left: 5px;
    }

    .table_wrapper #charterDetailsTable td {
        width: 25%;
    }

.status_purchased {
    display: inline flex;
    align-items: center;
    border-radius: 100px;
    padding: .5rem .5rem .5rem .2rem;
    font-weight: 500;
    color: #3B7C47;
    line-height: 1;
    font-size: 13px;
}

    .status_purchased img {
        margin-right: 5px;
    }

.status_viewed {
    display: inline flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100px;
    padding: .5rem .5rem .5rem .2rem;
    font-weight: 500;
    color: #6A5E53;
    text-transform: uppercase;
    line-height: 1;
}

    .status_viewed img {
        margin-right: 5px;
    }

.status_notviewed {
    display: inline flex;
    align-items: center;
    background: #F3EFEB;
    border-radius: 100px;
    padding: .5rem;
    font-weight: 500;
    color: #6A5E53;
    text-transform: uppercase;
    line-height: 1;
}

    .status_notviewed img {
        margin-right: 5px;
    }

/* Table pager */

.pager_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.pager_wrapper {
    display: flex;
    gap: .3rem;
}

.pager_btn.active {
    background-color: #f3efeb;
}


.input-group .btn, .input-group .btn:focus {
    z-index: 0;
}

    .input-group .btn.dropdown-toggle {
        background-color: #F3ECE6;
        border: 1px solid #D1C6BB;
        padding: .6rem 1rem;
        font-size: 1rem;
        font-weight: 400;
        border-radius: 8px;
        outline: none;
    }

.dropdown-menu {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
}

.side_label {
    color: #87786B;
    font-size: .9rem;
    font-weight: 300;
}

/* Create Flight */

.create_request_wrapper .page_main_content {
    padding: 0;
}

.content_body {
    display: flex;
}

.conten_body_wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.content_heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    padding: 1rem;
    width: 100%;
}

    .content_heading label {
        font-size: 1rem;
        font-weight: 400;
    }

.create_flight_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem .5rem;
    border-bottom: 1px solid #c9bdb0;
}

.flight_bottom_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #c9bdb0;
    background-color: #EBE5DF;
    z-index: 10;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 220px;
}

.bottom_nav_left {
    display: flex;
    gap: 5px
}

.tab_btn {
    color: #6A5E53;
    background: #F9F7F5;
    padding: .5rem .7rem;
    border: 1px solid #F9F7F5;
    border-radius: 100px;
    min-width: 144px;
    margin: .2rem;
    text-align: center;
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: default;
}

    .tab_btn.active {
        color: #000000;
        border: 1px solid #000000;
    }

.create_flight_content {
    flex-grow: 1;
    margin-bottom: 5rem;
}

.bottom_nav_left .section_btn {
    display: inline;
}

.bottom_nav_left .btn_secondary_black {
    padding: .5rem 1.1rem;
    display: inline;
    font-size: .9rem;
}

.bottom_nav_right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .bottom_nav_right .btn_wrapper {
        width: 200px;
        margin: .1rem;
    }

    .bottom_nav_right .btn_primary_black {
        padding: .5rem 1.1rem;
        font-size: .9rem;
        margin: 0;
        display: block;
    }

/* Customer info */

.customer_info_form {
    width: 360px;
    margin: 0 auto;
    max-height: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
}

.customer_info_form_wrapper {
    max-height: 100%;
    width: 100%;
}

.customer_info_form form {
    width: 100%;
}

.flag_dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 110px;
    color: #000000 !important;
}

.flag_dropdown_menu, .time_dropdown + .dropdown-menu {
    width: 160px;
    min-width: auto;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.country_flag_img {
    max-width: 20px;
}

/* hiding the tab sections */

#tripRequestSection, #bidsSection, #reviewSection {
    display: none;
}

    /* Trip Requet tabs */
    #tripRequestSection .nav.nav-tabs {
        justify-content: space-between;
    }

    #tripRequestSection .nav-item {
        width: 32%;
    }

#tripRequest {
    margin-bottom: .5rem;
}

#tripRequestSection .nav-link {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    border-radius: .5rem;
    width: 100%;
    font-size: .9rem;
    font-weight: 400;
    padding: .5rem 1.1rem;
    color: #000000;
}

    #tripRequestSection .nav-link.active {
        background-color: #D9CFC4;
        border: 1px solid #C9BDB0;
    }

.trip_request_form {
    width: 500px;
    margin: 0 auto;
    max-height: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
}

.trip_request_form_wrapper {
    max-height: 100%;
    width: 100%;
}

.trip_request_form form {
    width: 100%;
}

.dheight {
    height: calc(100vh - 80px) !important;
}

.form_group {
    display: flex;
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    border-radius: .5rem;
    padding: 1.1rem .75rem;
}

.form_group_icon {
    padding: 0 .3rem;
    display: flex;
}

.form_group input, .custom_dropdown_menu_top input {
    border: 0;
    padding: 0;
    background-color: transparent;
    outline: 0;
    flex-grow: 1;
}

.time_dropdown {
    width: 100%;
    border-radius: 0;
    border-top: 0 !important;
    border-left: 0 !important;
    text-align: left;
    color: #000;
    padding: 1.1rem 0 !important;
}

    .time_dropdown.dropdown-toggle::after {
        display: none;
    }

.input_right_side:focus {
    border: 1px solid #D1C6BB;
    border-left: 0;
}

.input_right_side {
    border-left: 0;
    padding-left: 0;
}

.input_left_icon {
    border-right: 0;
    cursor: pointer;
}

.tab-pane .form-control {
    padding: 1.1rem 0;
}

.flight_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

    .flight_heading span {
        color: #E95858;
        font-weight: 400;
    }

.add_new_flight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}

    .add_new_flight span {
        color: #009933;
        font-weight: 450;
    }

.leg_btn {
    flex-grow: 1;
    text-align: center;
    border: 1px solid #D1C6BB;
    background: #f3ece6;
    border-radius: 8px;
    margin: 1rem 0;
    padding: .5rem;
    cursor: pointer;
}

.add_flight_btn {
    color: #009933;
}

.remove_flight_btn {
    color: #E95858;
}

.custom_dropdown {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    border-radius: .5rem;
    position: relative;
    cursor: pointer;
}

.custom_dropdown_value {
    font-size: 1rem;
    font-weight: 400;
    padding: 1.1rem .75rem;
}

.custom_dropdown_menu {
    position: absolute;
    height: 215px;
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    z-index: 1;
    display: none;
}

.custom_dropdown_menu_top {
    display: flex;
    align-items: center;
    background-color: #F3ECE6;
    border: 1px solid #000000;
    padding: 1.1rem .75rem;
    border-radius: .5rem .5rem 0 0;
    font-size: 1rem;
    font-weight: 400;
}

.custom_dropdown_list {
    background-color: #F3EFEB;
    border: 1px solid #D4CCC4;
    border-top: 0;
    padding: .7rem;
    height: 215px;
    overflow-y: auto;
}

    .custom_dropdown_list > ul, .custom_dropdown_list .recent_list > ul {
        padding: 0;
    }

    .custom_dropdown_list li {
        list-style: none;
    }

.list_item {
    display: flex;
    justify-content: space-between;
}

.list_item_info {
    display: flex;
    cursor: pointer;
    flex-grow: 1;
}

.favorite_icon_wrapper {
    padding: 3px;
    width: 30px;
}

.favorite_btn {
    display: flex;
    justify-content: flex-end;
    color: #A89B8C;
    cursor: pointer;
}

.favorite_inactive {
    display: block;
}

.favorite_active {
    display: none;
}

.recent_list p {
    margin-bottom: 0;
    font-size: .9rem;
    font-weight: 300;
    color: #7a7673;
}

.list_icon {
    padding: 0 .2rem;
}

.list_main_text {
    font-size: 1.1rem;
    font-weight: 500;
}

    .list_main_text span {
        color: rgba(0, 0, 0, .5);
    }

.list_sub_text {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(0, 0, 0, .5);
}

/* Bid section */

.bids_section {
    width: 100%;
    margin: 0 auto;
    max-height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.bids_section_wrapper {
    max-height: 100%;
    width: 100%;
}

.bids_section_content {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
}

.bids_left_side {
    width: 25%;
}

.bids_right_side {
    width: 75%;
    margin-bottom: 4rem;
    position: relative;
}

.flight_container {
    background-color: #F3EFEB;
    border: 1px solid #D4CCC4;
    border-radius: 6px;
    padding: .3rem 0;
    margin: 0 0 10px 0;
    overflow: hidden;
}

.flight_date_and_timing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight_date span {
    opacity: .5;
}

.flight_divBtn {
    border: 1px solid #D4CCC4;
    border-radius: 6px;
    margin: .5rem;
    padding-bottom: .5rem;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

    .flight_divBtn:hover, .flight_divBtn.active {
        border: 1px solid #b4a799;
        box-shadow: 0 0 5px 1px #D4CCC4;
    }

.flight_info {
    display: flex;
    align-items: center;
    padding: .3rem 1rem;
}

    .flight_info p {
        margin-bottom: 0;
    }

.fight_info_circle {
    border: 2px solid #A09387;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}

.flight_info_line {
    position: relative;
    height: 1;
    border-top: 2px dashed #D9D0C6;
    flex-grow: 1;
}

.flight_info_plane {
    max-width: 24px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.h_flight_info_plane {
    max-width: 24px;
    height: auto;
}

.airport_info {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

    .airport_info .departure_code, .airport_info .arrival_code {
        font-size: 1.75rem;
        font-weight: 500;
    }

.arrival_airport_info {
    text-align: right;
}

.current_req_sub_details {
    padding: 0 1rem;
}

    .current_req_sub_details p {
        margin-bottom: 0;
    }

.sub_details {
    display: flex;
    justify-content: space-between;
}

.sub_details_left {
    font-size: 1rem;
    font-weight: 300;
}

.sub_details_right {
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
}

.divider_line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #D1C6BB;
    margin: .3rem 0;
}

.divider_line_dashed {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #D1C6BB;
    margin: .5rem 0;
}

.aircarft_selected {
    padding: 0 1rem 0;
}

.aircarft_selected_heading {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: #6A5E53;
    font-weight: 500;
}

    .aircarft_selected_heading p {
        margin-bottom: .3rem;
    }

.aircarft_list_item {
    background-color: #EBE5DF;
    border-radius: 8px;
    position: relative;
    margin: .5rem 0;
    list-style: none;
}

.aircarft_list_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aircarft_list_img {
    width: 2.4rem;
}

.aircarft_list_name {
    font-size: .9rem;
    font-weight: 500;
    float: right;
    padding: .5rem;
    color: #000000;
}

.aircarft_list_arrow_wrapper {
    padding: .5rem;
}

.aircarft_list_item .checkbox_wrapper {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.min_width_auto {
    min-width: auto;
}

.search_bid_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

    .search_bid_box .form-control {
        font-size: .75rem;
        padding: .5rem 1rem;
    }

.bids_option_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    margin: 0 0 0 1rem;
}

.plane_jet_details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    overflow: auto;
    flex-wrap: wrap;
    margin-bottom: .5rem;
}

    .plane_jet_details .btn_primary_white {
        font-size: .875rem;
        padding: .5rem 1rem;
        margin: 0;
    }

.plane_jet_detils_item {
    border: 3px solid #803511;
    border-radius: 14px;
    padding: .5rem;
    color: #803511;
    text-align: center;
    font-weight: 700;
    align-content: center;
    height: 80px;
    line-height: 1.2;
    cursor: pointer;
    min-width: 135px;
    max-width: 185px;
}

    .plane_jet_detils_item.active {
        background-color: #dceaf7;
    }

.bid_leg_heading_wrapper {
    grid-template-columns: 1fr;
}

.bids_option, .bids_option_with_banner {
    background-color: #F3EFEB;
    border: 1px solid #D4CCC4;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

    .bids_option.active, .bids_option_with_banner.active {
        border: 1px solid #A09387;
        box-shadow: 5px 5px 15px #85776880;
    }

.bids_expired_overlay {
    position: absolute;
    background: rgba(235, 229, 223, .5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: right;
    color: #e95858;
    font-size: .875rem;
    font-weight: 800;
    padding: 1rem;
    z-index: 9;
}

.listview_bid_expired {
    /*background: #d3c6bd;*/
    opacity: .5;
}

.status_list {
    /* padding: .5rem 0; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.status_item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.status_color {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin: 0 auto;
}

.status_item.expired .status_color {
    background: #f85f5f
}

.listview_bid_expired .checkbox_wrapper, .listview_bid_expired a {
    pointer-events: none;
    opacity: .5;
}

.bids_option_actions, .bids_option_actions_wrapper {
    display: flex;
    align-items: center;
    padding: .5rem 1rem .3rem;
    min-height: 52px;
}

    .bids_option_actions .checkbox_wrapper, .bids_option_actions_wrapper .checkbox_wrapper {
        margin-bottom: 0;
        margin-right: 1rem;
    }

.bids_option_actions_with_img {
    position: relative;
}

.bids_option_actions {
    padding-top: 2.2rem;
}

.flight_banner {
    width: 100%;
    height: auto;
}

.bids_option_actions_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

    .bids_option_actions_wrapper .fh_fleet {
        background-color: #f9f7f5;
    }

.yearsOfManufactureRefurbish {
    display: flex;
    justify-content: space-between;
    padding: .5rem 1rem;
    min-height: 40px;
}

.best_price {
    background-color: #000000;
    border-radius: 4px;
    padding: .5rem;
    color: #FFF6C6;
    font-size: .9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: .5rem;
}

.tbl_best_price {
    background-color: #000000;
    border-radius: 4px;
    padding: .2rem;
    color: #FFF6C6;
    font-size: .75rem;
    font-weight: 400;
    display: inline flex;
    align-items: center;
    text-decoration: none;
}

.best_price img, .fh_fleet img {
    margin-right: 0.2rem;
}

.fh_fleet {
    background-color: #DCD4CC;
    padding: .5rem;
    border-radius: 4px;
    text-decoration: none;
    color: #000000;
    font-size: .9rem;
}

.tbl_fh_fleet {
    background-color: #DCD4CC;
    padding: .2rem;
    border-radius: 4px;
    text-decoration: none;
    color: #000000;
    display: inline flex;
}

.bids_option_ratings {
    padding: .3rem 1rem;
    display: flex;
    justify-content: space-between;
    /* flex-grow: 1; */
    min-height: 85px;
}

.safety_rating_logos span {
    color: #6A5E53;
    font-size: .8rem;
    font-weight: 500;
}

.rating_img {
    width: 2.4rem;
}

.safety_logos_wrapper a {
    text-decoration: none;
}

.safety_rating_text {
    text-align: right;
    font-size: 1rem;
    font-weight: 500;
}

.bids_option_details_top_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bids_option_details {
    padding: .3rem 1rem;
    gap: 4px;
}

.plane_icon_wrapper {
    margin-right: .5rem;
}

    .plane_icon_wrapper img {
        display: block;
    }

.plane_name {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

.bids_option_model {
    font-size: .875rem;
}

.bids_option_btn_wrapper {
    padding: .3rem 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

    .bids_option_btn_wrapper .btn_secondary_black, .bids_section_content_in_tbl .btn_primary_black {
        margin: 0;
        font-size: 14px;
        padding: 5px 10px;
    }

.price_wrapper {
    background-color: #EBE5DF;
    border-top: 1px solid #EBE5DF;
    display: flex;
    justify-content: space-between;
    padding: .3rem 1rem;
}

.price_box {
    display: flex;
    justify-content: space-between;
}

.price_input {
    background-color: transparent;
    border: 1px solid #D1C6BB;
    max-width: 100%;
    padding: .3rem .5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: right;
    background-color: #ebe5df;
}

.bids_option_with_banner .price_wrapper {
    background-color: #F9F7F5;
    border-top: 1px solid #D1C6BB;
}

.price_text {
    font-size: 1rem;
    font-weight: 300;
}

.price_value {
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 50%;
    text-align: right;
}

.price_edit_box button {
    margin: 5px .1rem;
    max-width: 75%;
    padding: .2rem;
    width: 10vh;
}

/* Customize the label (the container) */
.checkbox_wrapper {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 20px;
    width: 20px;
}

    /* Hide the browser's default checkbox */
    .checkbox_wrapper input {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #F9F7F5;
    border: 1px solid #A5917D;
    border-radius: 4px;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.checkbox_wrapper:hover input ~ .checkmark {
    background-color: #F9F7F5;
}

/* When the checkbox is checked, add a blue background */
.checkbox_wrapper input:checked ~ .checkmark {
    background-color: #55A063;
    border: 1px solid #55A063;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_wrapper input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_wrapper .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Aircraft details */
.aircarft_details_overlay {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    overflow-y: auto;
    background-color: #EBE5DF;
    box-shadow: 0 0 15px #85776880;
    transition: all .3s ease-in-out;
    z-index: 2;
}

    .aircarft_details_overlay.open {
        right: 0;
    }

.aircarft_details_overlay_wrapper {
    position: relative;
}

.top_header {
    position: sticky;
    top: 0;
    text-align: right;
    padding: .6rem;
    width: 100%;
    background-color: #EBE5DF;
}

.aircarft_close_overlay_btn {
    text-decoration: none;
    color: #000;
}

.aircarft_details_overlay h4 {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem .6rem;
    margin-bottom: 0;
}

.aircarft_details_overlay p {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 0;
}

.aircarft_details_overlay .aircarft_disc p {
    font-weight: 300;
}

.aircarft_inner_img img {
    max-width: 100%;
}

/* Success page */
.success_section_wrapper {
    width: 500px;
    margin: 0 auto;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../images/icons/flyhouse_logo_white_icon.svg) no-repeat center center;
    background-size: 60%;
}

    .success_section_wrapper h3 {
        font-size: 1.4rem;
        font-weight: 400;
    }

.success_btns {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    margin: .8rem 0;
    flex-wrap: wrap;
}

.success_section_wrapper .btn_primary_black {
    padding: .5rem 1.1rem;
    font-size: .9rem;
    margin: 0;
}

.passenger_detail {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D4CCC4;
}

.pasenger_icon img {
    width: 44px;
}

.passenger_name {
    padding: .5rem;
}

/* Existing Chaterer */
.existing_chaterer_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(235, 229, 223, .9);
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
}

.existing_chaterer_overlay_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.existing_chaterer_overlay .table_wrapper {
    height: auto;
}

.exiting_chaterer_box {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: 0 0 1rem #D1C6BB;
    width: 90vw;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#existingChatererCloseBtn, #CancelChartererRequestCloseBtn, #CancelForConfirmGetMoreQuotesCloseBtn, #CancelErrorModalCloseBtn {
    position: absolute;
    right: 2rem;
    top: 2rem;
    cursor: pointer;
}

.btn.dropdown-toggle.form-control {
    text-align: left;
}

    .btn.dropdown-toggle.form-control::after {
        display: none;
    }

    .btn.dropdown-toggle.form-control:hover {
        background-color: #F3ECE6;
        border: 1px solid #000000;
    }


input.form-check-input[type="radio"] {
    /* Hide the default radio button */
    appearance: none;
    -webkit-appearance: none; /* For older browser compatibility */
    /* Define custom styles for the unchecked state (outer circle) */
    width: 19px;
    height: 19px;
    border: 1px solid #A09387;
    border-radius: 50%;
    outline: none; /* Optional: remove default focus outline */
    cursor: pointer;
    display: grid;
    place-content: center; /* Centers the inner dot */
    background: #F9F7F5;
    position: relative;
}

    input.form-check-input[type="radio"]::before {
        /* Create the inner dot using a pseudo-element */
        content: "";
        /* font-family: 'Font Awesome 7 free'; */
        width: 20px; /* Size of the inner dot */
        height: 20px;
        text-align: center;
        align-content: center;
        border-radius: 50%;
        transform: scale(0) translate(-50%, -50%); /* Hide the dot when unchecked */
        transition: 120ms transform ease-in-out; /* Add a smooth transition */
        background-color: #55A063; /* Color of the inner dot */
        color: #ffffff;
        font-size: .875rem;
        position: absolute;
        top: 50%;
        left: 50%;
    }

    input.form-check-input[type="radio"]:checked::before {
        /* Show the dot when checked */
        transform: scale(1) translate(-50%, -50%);
    }

    input.form-check-input[type="radio"]::after {
        content: '';
        left: 7px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid #ffffff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transition: 120ms transform ease-in-out; /* Add a smooth transition */
        transform: rotate(45deg) scale(0) translate(-50%, -50%);
        position: absolute;
        top: 47%;
        left: 26%;
    }

    input.form-check-input[type="radio"]:checked::after {
        /* Show the dot when checked */
        transform: rotate(45deg) scale(1) translate(-50%, -50%);
    }

    input.form-check-input[type="radio"]:focus {
        /* Add a focus state for accessibility */
        box-shadow: none;
    }

/* Filters overlay */

.search_filter_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(235, 229, 223, .9);
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
}

.search_filter_overlay_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search_filter_box {
    margin-bottom: 1rem;
}

    .search_filter_box .custom_dropdown_value, .search_filter_box .custom_dropdown_menu_top {
        padding: .6rem 1rem;
    }

#searchFilterCloseBtn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

/* Date Picker CSS */

.datepicker.dropdown-menu {
    background-color: #F3ECE6;
}

.datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
    background-color: #D9CFC4;
}

.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active.disabled:hover[disabled] {
    background: #ffffff;
    color: #000;
}

.datepicker-dropdown.datepicker-orient-top:after {
    border-top: 6px solid #F3ECE6;
}

/* Country dropdown */
/*the container must be positioned relative:*/
.autocomplete {
    position: relative;
    display: inline-block;
    width: 100%;
    border: 1px solid #D1C6BB;
    border-radius: 10px 0 0 10px;
    color: #000000;
    font-size: 1.12rem;
    outline: none !important;
    -webkit-appearance: none;
    background: #F3ECE6;
}

.autocomplete-items {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #f3ece6;
        display: flex;
        align-items: center;
        width: 100%;
    }

        /*when hovering an item:*/
        .autocomplete-items div:hover {
            background-color: #D9CFC4;
            color: #000000;
        }

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: #f6e100 !important;
    color: #000;
}

.autocomplete {
    position: relative;
}

#selectedCountry {
    cursor: pointer;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: .6rem 1rem;
    font-size: 1rem;
}

    #selectedCountry img, .autocomplete-items img {
        margin-right: 5px;
    }

#countryDropdownInput {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 6px 12px;
    width: 100%;
    border: 1px solid #D1C6BB;
    border-radius: 10px 0 0 10px;
    color: #000000;
    font-size: 1rem;
    outline: none !important;
    -webkit-appearance: none;
    background: #F3ECE6;
}

    #countryDropdownInput.show {
        display: block;
    }

#ddl_country {
    padding: 3px 5px;
    display: none;
}

.fh_countryInputbox > div:first-child {
    width: 40%;
}

.fh_countryInputbox > div:last-child {
    width: 60%;
}

/*Setting page */

.setting_container {
    padding: 1rem;
}

.setting_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.setting_form {
    max-width: 350px;
}

.disabled_submit_button {
    opacity: 0.5;
    cursor: none;
}

.clsvalidation {
    color: red;
}

.terms_and_conditions {
    line-height: 1;
}

.bids-loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(235, 229, 223, 1);
}

#divCountDownTimeSection {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Company edit pricing page */

.company_pricing_container .row {
    margin: 0;
}

.company_pricing_form {
    padding: 1rem;
    margin: 1rem 1rem 7rem;
}

    .company_pricing_form .row {
        margin: 0;
    }

.pricing_page_safety_rating_container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: .5rem 0;
    width: 100%;
    margin: 0 auto;
}

#SagetyRatingText {
    text-align: left;
    padding-left: 1rem;
}

.pricing_safety_rating_img {
    width: 2.4rem;
}

.pricing-flex {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    height: 292px;
}

.pricing_img_wrapper {
    height: 100%;
    width: auto;
    flex-shrink: 0;
}

    .pricing_img_wrapper img {
        height: 100%;
        max-height: 400px;
        width: auto;
        object-fit: contain;
        display: block;
    }

.pricing_info_btns .btn_secondary_black, .pricing_info_btns .btn_primary_black {
    font-size: .875rem;
    padding: 5px 10px
}

.pricing_page_flight_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 1rem;
}

.pricing_page_flight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing_flight_more_info {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 1rem;
    width: 100%;
    text-align: center;
}

.more_info_value {
    font-weight: 600;
}

.pricing_flight_more_info p {
    margin-bottom: 0;
}

.pricing_page_plane_name {
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 500;
}

/* Loader Video overlay */

.loader_video_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(235, 229, 223, 1);
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
}

.loader_video_overlay_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad_video_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader_video_wrapper {
    width: 85%;
}

.loader_video_quotes_time {
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem;
}

#txtregistrationNo {
    width: 140px;
    text-align: right;
    float: right;
}

#txtDivRegistrationNumber {
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.additional_quote_font_colour {
    color: #3B7C47;
    font-weight: 600;
}

.refres_bids {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
}

.manual_quote_display_color {
    color: #000080;
}

#tblPartnerBrokerChartererRequests, .bids_section_content_in_tbl table {
    font-size: .875rem;
}

    #tblPartnerBrokerChartererRequests td, #tblPartnerBrokerChartererRequests th, .bids_section_content_in_tbl td, .bids_section_content_in_tbl th {
        padding: .5rem .3rem;
    }

    #tblPartnerBrokerChartererRequests .status_purchased {
        display: flex;
        padding: 0;
        font-size: inherit;
    }

.hfleet_details {
    margin: 0 auto 20px;
}

.hfleet_details_trip {
}

    .hfleet_details_trip .flight_container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hfleet_details_trip .divider_line {
        display: none;
    }

    .hfleet_details_trip .flight_container > div:last-child {
        flex-grow: 1;
    }

.hfleet_actions > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hfleet_details_trip_info {
    display: grid;
    grid-template-columns: auto auto auto;
}

.bids_notes {
    padding: .3rem 1rem;
}

#TableViewSelectedAircraftsCount {
    min-width: 50px;
}

.is_manual_quote {
    border: 4px solid;
    border-color: #3B7C47 !important;
}

.list_view_manual_quote {
    background-color: #a9d6b0;
    border-color: #3B7C47 !important;
}

.cursor-pointer {
    cursor: pointer;
}

#txtSearchBidByOwnerNameOrTailNumber {
    font-size: 1rem;
}

#btnGetMoreQuotes {
    font-size: 1.25rem;
    font-weight: 800;
    border: 2px solid #000000;
}

#txtregistrationNo {
    padding: .3rem;
    font-size: .875rem;
    width: 110px;
}

#txtDivRegistrationNumber .btn_primary_black, #txtDivRegistrationNumber .btn_secondary_black {
    font-size: .75rem;
    padding: .3rem .5rem;
}

.gridinfo-four {
    line-height: 1.7;
}

    .gridinfo-four .dropup {
        line-height: 1;
    }

.list-view-yom-yor-dropdown {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.list_view_quote_details {
    width: 23%
}

.list_view_charter_request_details {
    width: 30%
}

#divListViewQuotes .table_wrapper {
    max-width: 100vw;
}

.fbo_details {
    flex-grow: 1;
    text-align: left;
    margin-left: 1rem;
    /*max-width: 70%;*/
}

.fbo_info {
    min-width: 120px;
}

/* Select 2 dropdown css */

.select2.select2-container {
    background-color: #f3ece6;
    border: 1px solid #D1C6BB;
    border-radius: 6px;
    padding: .5rem 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #000;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 50%;
        transform: translateY(-50%);
    }

.select2-search--dropdown {
    background: #f3ece6;
    border: 1px solid #D1C6BB;
    padding: .5rem 1rem;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    outline: none;
}

.select2-results {
    background: #f3ece6;
    border: 1px solid #D1C6BB;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable, .select2-container--default .select2-results__option--selected {
    background-color: #dcd4cc;
    color: #000;
}

.select2-results__option.select2-results__message {
    padding: .5rem 1rem;
}

.select2-container--default .select2-selection--multiple {
    background-color: transparent;
    border-color: transparent;
}

.select2-selection__choice {
    background-color: #dcd4cc !important;
}




.tab-pane .select2.select2-container {
    /* border: 0; */
    padding: 0;
    width: 100% !important;
}

.remember_me_wrapper {
    display: inline-flex;
    text-align: center;
    justify-content: center;
}

.remember_me_wrapper_center {
    text-align: center;
}

.remember_me_checkbox_wrapper {
    margin-top: 4px;
}

.remember_me_text_wrapper {
    margin-top: 2px;
}

.align_center {
    text-align: center;
}

.record_count_dropdown {
    width: 50px;
}

.justify_items_end {
    justify-items:end;
}

.mw_50_percent {
    max-width: 50%;
}

@media screen and (max-width:1600px) {

    .login_box {
        width: 60%;
    }

    .bids_left_side {
        width: 25%;
    }

    .bids_right_side {
        width: 75%;
    }

    .cr_status_value {
        max-width: 60%;
    }

    .table_wrapper table {
        font-size: 14px;
    }

    #tblPartnerBrokerChartererRequests, .bids_section_content_in_tbl table {
        font-size: .75rem;
    }

    .pricing-flex {
        height: 305px;
        flex-wrap: wrap;
    }

    .pricing-flex {
        height: auto;
    }

    .pricing_img_wrapper img {
        max-height: 292px;
    }

    .pricing_img_wrapper {
        max-width: 100%;
        width: 100%;
    }

        .pricing_img_wrapper.img_device {
            display: block;
        }

        .pricing_img_wrapper.img_desktop {
            display: none;
        }

        .pricing_img_wrapper img {
            width: 100%;
            margin: 0 auto;
        }

    .list_view_quote_details {
        width: 48%;
    }
}

@media screen and (max-width:1465px) {
    .bids_left_side {
        width: 40%;
    }

    .bids_option_wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .bids_right_side {
        width: 60%;
    }

    .cr_status_value {
        max-width: 76%;
    }
}

@media screen and (max-width: 1366px) {
    .table_wrapper table, #tblPartnerBrokerChartererRequests .status_purchased {
        font-size: 12px;
    }

        #tblPartnerBrokerChartererRequests .status_purchased img {
            max-height: 12px;
        }

    .price_value {
        font-size: 1.125rem;
    }

    #tblPartnerBrokerChartererRequests, .bids_section_content_in_tbl table {
        font-size: 10px;
    }
}

@media screen and (max-width:1280px) {

    .login_box {
        width: 70%;
    }

    .bids_left_side {
        width: 30%;
    }

    .dashboard_tbl_wrapper table {
        width: 130%;
    }

    .bids_right_side {
        width: 70%;
    }

    #tblPartnerBrokerChartererRequests {
        width: 100%;
    }

    .airport_info .departure_code, .airport_info .arrival_code {
        font-size: 1.5rem;
    }

    .pricing_img_wrapper {
    }

    .hfleet_details_trip_info {
        grid-template-columns: auto auto;
    }

    .list_view_quote_details {
        width: 48%;
    }
}

@media screen and (max-width:1152px) {
    .dashboard_tbl_wrapper table {
        width: 150%;
    }

    #tblPartnerBrokerChartererRequests, .bids_section_content_in_tbl table {
        width: 133%;
    }
}

@media screen and (max-width:1127px) {
    .bids_left_side {
        width: 50%;
    }

    .bids_option_wrapper {
        grid-template-columns: 1fr;
    }

    .bids_right_side {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .table_wrapper table {
        font-size: 12px;
    }

    .dashboard_tbl_wrapper table {
        width: 200%;
    }

    .loader_video_quotes_time {
        font-size: 1rem;
    }

    .gridinfo-four {
        grid-template-columns: auto auto;
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .flight_container.user_options:hover {
        background-color: #ebe5df;
    }

    .plane_jet_detils_item:hover {
        background-color: #dceaf7;
    }

    .btn:hover {
        color: inherit;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
        background-color: #ffffff !important
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .login-page {
        flex-direction: column-reverse;
    }

    .login_right_side {
        height: 300px;
        width: 100%;
        background-position: center;
    }

    .legal {
        display: none;
    }

    .login_left_side_wrapper {
        margin-top: 0;
    }

    .legal_device {
        display: block;
    }

    .hfleet_details_trip .flight_container {
        height: auto;
    }

        .hfleet_details_trip .flight_container > div {
            width: 100%;
        }

        .hfleet_details_trip .flight_container .divider_line {
            display: block;
        }
}

@media screen and (max-width: 1021px) and (orientation: landscape) {
    .login-page {
        flex-direction: column-reverse;
    }

    .login_right_side {
        height: 300px;
        width: 100%;
        background-position: center;
    }

    .legal {
        display: none;
    }

    .login_left_side_wrapper {
        margin-top: 0;
    }

    .legal_device {
        display: block;
    }

    .hfleet_details_trip .flight_container {
        height: auto;
    }

        .hfleet_details_trip .flight_container > div {
            width: 100%;
        }

        .hfleet_details_trip .flight_container .divider_line {
            display: block;
        }
}

@media screen and (max-width: 992px) {
    .login_box {
        width: 100%;
        padding: 1rem;
    }

    .login_fh_logo {
        margin: 0 0 1rem;
    }

    .page_main_content {
        padding-top: 3rem;
        width: 100%;
        margin-left: 0;
    }

    .nav-container {
        position: fixed;
        left: -220px;
        padding-top: 3rem;
    }

    .customer_info_form, .trip_request_form {
        width: 100%;
    }

    #navIcon {
        display: block;
    }

    .table_wrapper {
        overflow-x: auto;
        max-width: 100vw;
    }

        .table_wrapper table {
            width: 300%;
        }

    #stopsListTable, #eventsListTable, #payerDetailsListTable, #pilotsAndCabinListTable, #TripDetailsListTable {
        width: 100%;
    }

    #charterDetailsTable {
        width: 100%;
    }

    .flight_details_heading {
        align-items: center;
    }

        .flight_details_heading > div:last-child {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
        }

    .search_box {
        min-width: auto;
        width: 50%;
        max-width: 100%;
    }

    .dheight {
        height: calc(100vh - 120px) !important;
    }

    .search_box label img {
        max-width: none;
    }

    .form_wrapper {
        margin-top: 0;
    }

    .flight_bottom_nav {
        position: fixed;
        bottom: 0;
        flex-direction: column-reverse;
        padding: .5rem;
        left: 0;
    }

    .bottom_nav_left {
        margin: 1rem 0;
        display: flex;
        gap: 5px
    }

    .bids_left_side, .bids_right_side {
        width: 100%;
    }

    .bids_option_wrapper, .details_box.ms-3, .search_bid_wrapper, .plane_jet_details {
        margin-left: 0 !important;
    }

    .content_body {
        height: 100%;
    }

    .create_flight_content {
        padding-bottom: 10rem;
    }

    .bids_left_side_wrapper, .bids_option_wrapper {
        max-height: 100%;
    }

    .currunt_month_year {
        margin: .5rem 0;
    }

    .bottom_nav_left .section_btn {
        cursor: pointer;
        width: 200px;
        text-align: center;
        padding: .5rem 1.1rem;
    }

    .bottom_nav_left .btn_secondary_black {
        margin: 0;
    }

    #Roomkey, #Mobile {
        padding-top: .6625rem;
        padding-bottom: .5375rem;
    }

    #tblPartnerBrokerChartererRequests td {
    }

    .loader_video_wrapper {
        width: 80%;
    }

    .pricing-flex .flex-grow-1 {
        height: auto !important;
    }

    .pricing_flight_more_info {
        grid-template-columns: auto auto;
    }

    .pricing_page_flight_info > div {
        width: 100%;
    }

    .list_view_quote_details {
        width: 100%;
    }

    .fbo_info {
        min-width: 100%;
    }

    .flex-wrap-mobile {
        flex-wrap: wrap;
    }
}

@media screen and (min-width:850px) {
    .pricing_img_wrapper img {
    }
}

@media screen and (max-width: 800px) {

    #tblPartnerBrokerChartererRequests {
        width: 220%;
    }

    .list_view_charter_request_details {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .inflightServicesAndTrans, .FboInfo {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 740px) {
    .pricing_img_wrapper {
        width: 100%;
    }

    .pricing_page_plane_name {
        font-size: 1.125rem;
    }

    .hfleet_details_trip_info {
        grid-template-columns: auto;
    }
}

@media screen and (max-width:500px) {
    .success_section_wrapper {
        width: 100%;
        padding: 0 1rem;
    }

        .success_section_wrapper h3 {
            font-size: 1.1rem;
        }

    .list_view_charter_request_details {
        width: 100%;
    }

    .success_btns, .btn_wrapper {
        margin: .5rem 0;
    }

    .search_box {
        width: auto;
    }

    #charterDetailsTable {
        width: 120%;
    }

    .pricing_safety_rating_img {
        width: 2.4rem;
    }

    .company_pricing_form {
        margin-bottom: 7rem;
    }

    .login_btn_wrapper {
        gap: 0;
    }

        .login_btn_wrapper > div {
            width: 100%;
        }

    .table_wrapper table {
        width: 400%;
    }

    #stopsListTable, #eventsListTable, #payerDetailsListTable, #pilotsAndCabinListTable, #TripDetailsListTable {
        width: 200%;
    }
}

@media screen and (max-width:400px) {
    .aircarft_details_overlay {
        width: 100%;
    }

    #tripRequestSection .nav-link {
        padding: .5rem;
    }

    #charterDetailsTable {
        width: 200%;
    }

    .pricing_info_disc {
        flex-direction: column;
    }

    #tblPartnerBrokerChartererRequests {
        width: 500%;
    }
}

.DisplayBlock {
    display: block;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(235, 229, 223, .8);
}

.loader-box {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#b49d86 94%,#0000) top/8px 8px no-repeat, conic-gradient(#0000 30%,#b49d86);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}

.select_all_checkbox {
    margin-top: 2px;
}

.safety_rating_box {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: 0 0 1rem #D1C6BB;
    position: relative;
}

#tblExistingCharterers tr:hover {
    background-color: #ebe5df;
}

#tblPartnerBrokerChartererRequests tr:hover {
    background-color: #F3ECE6;
}

.price_update_owner_tail_number_left_width {
    width: 150px;
}

.price_update_owner_tail_number_right_width {
    width: 200px;
}
