/* Inline Css */
.display-none {
    display: none;
}

.list_ul {
    margin-left: 5px;
}

#main_travelers #trave_class1 {
    font-size: 25px;
    font-weight: bold;
}

#travel_class_label {
    font-size: 16px;
}

.second-t {
    margin-bottom: 50px;
}

.w-35 {
    width: 35%;
}

.w-20 {
    width: 20%;
}



.select2-container .select2-selection--multiple {
    min-height: 40px !important;
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: 14px !important;
}

.left-240 {
    left: 250px !important;
}


/* Trip type */

.trip-inputs div {
    margin-left: 20px;

}

.trip-inputs div:first-child {
    margin-left: 0px;
    width: 105px;
    height: 28px;
}


.trip-inputs div {
    /* font-family: Mukta; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: white;
    font-size: 12px;
}

.trip-inputs div:nth-child(2) {
    width: 110px;
    height: 28px;
}

.trip-inputs div:nth-child(3) {
    width: 110px;
    height: 28px;
}

.active-search-in {
    border: none;
    background: var(--color-btn-primary-bg, linear-gradient(93deg, #9fc8e8, #a9c6fa45));
    color: white;
}

.active-search-in p {
    color: black;
}

.active-trip-input {
    background-color: white;
    border: 1px solid skyblue;
    box-shadow: 0px 0px 8px -4px;
    color: orangered;
}

.trip-inputs div lable {
    font-weight: 800;
}

.black5 {
    color: #555;
}

.trip-inputs [type="radio"]:checked,
.trip-inputs [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.trip-inputs [type="radio"]:checked+label,
.trip-inputs [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #2a2929;
}

.trip-inputs [type="radio"]:checked+label:before,
.trip-inputs [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 1px;
    top: 2px;
    width: 14px;
    height: 14px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.trip-inputs [type="radio"]:checked+label:after,
.trip-inputs [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.trip-inputs [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.trip-inputs [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Checkbox design */
.form-group input[type="checkbox"] {
    display: none;
}

.form-group input[type="checkbox"]+.btn-group>label span {
    width: 20px;
}

.form-group input[type="checkbox"]+.btn-group>label span:first-child {
    display: none;
}

.form-group input[type="checkbox"]+.btn-group>label span:last-child {
    display: inline-block;
}

.form-group input[type="checkbox"]:checked+.btn-group>label span:first-child {
    display: inline-block;
}

.form-group input[type="checkbox"]:checked+.btn-group>label span:last-child {
    display: none;
}

/* Fare type radio */

.vertical-align {
    display: table-cell;
    vertical-align: middle;
}

.button-link {
    text-decoration: none;
}

.btns {
    background: var(--color-btn-primary-bg, linear-gradient(93deg, #9fc8e857, #a9c6fa45));
    color: black;
    z-index: 0;
    height: 36px;
    float: none;
    margin: 0 auto;
    max-width: 100%;
    display: block;
    box-shadow: 0 2px 4px -1px rgba(25, 25, 25, 0.2);
    border-radius: 50px 0px 0px 50px !important;
}

.btns input {
    display: none;
}

.btns label {
    display: table;
    float: left;
    padding: 0;
    height: 100%;
    margin: 0;
    text-align: center;
}

.btns label:first-child {
    border-left: none;
}


.btns .btn {
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    color: rgb(11, 11, 11);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 30px 20px -20px rgba(255, 255, 255, 0.15);
    transition: color 250ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    border: 1px solid #80808040;
    border-radius: 0px;
    padding: .375rem .75rem;
}

.btns .btn:hover {
    box-shadow: inset 0 30px 30px -20px rgba(50, 50, 50, 0.02);
    transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btns .btn:after {
    content: "âœ“";
    font-weight: 600;
    margin-left: -10px;
    display: inline-block;
    transform: scale(0);
    transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}



.btns input:checked+.btn {
    color: rgba(0, 0, 0, 0.72);
    text-shadow: none;
    background-image: linear-gradient(to top, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
    box-shadow: inset 0 10px 50px rgba(25, 25, 25, 0.08);
    transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 150ms;
}

.btns input:checked+.btn:after {
    margin-left: 5px;
    transform: scale(1.25);
    transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms;
}

.non-stop-btn .btn {
    border-radius: 50rem;
}

/* Travel Request */
.img-rowf1 img {
    width: 40px;
    height: 40px;
}

.travel-request-data .for-btn:hover {
    background: #0c61f4;
    color: white;
}

.travel-request-data .for-btn.activeTab {
    background: #0c61f4;
    color: white;
}





/* ---------- */

.offer-updates {
    padding: 0;
}

.bg-offer-update {
    background-color: white;
    padding: 30px 20px;
    box-shadow: 0px 0px 7px -5px;
    border-radius: 7px;
}

.top-offer-data {
    display: flex;
}

.top-offer-data h1 {
    font-size: 35px;
}

.top-offer-data ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.top-offer-data ul li {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
}

.top-offer-data ul li a {
    color: #000000;
    padding-bottom: 5px;
    font-weight: 700;
}

.top-offer-data ul li a:hover {
    color: orangered !important;
    border-bottom: 3px solid orangered;
    cursor: pointer;
}

.offer-active {
    color: orangered !important;
    border-bottom: 3px solid orangered !important;
}

.offer-card {
    box-shadow: 0px 0px 10px -5px;
    padding: 10px;
    border-radius: 7px;
    cursor: pointer;
}

.offer-card .row .col-4 img {
    border-radius: 7px;
}

.offer-card .row .col-8 p:first-child {
    color: #9b9b9b;
    font-weight: 700;
}

.offer-card .row .col-8 h4 {
    font-size: 16px;
    font-weight: 700;
}

.border1 {
    border-bottom: .5px solid orangered;
    width: 40px;
    margin: 10px 0;
}

.offer-card .row .col-8 p:nth-child(2) {
    font-weight: 800;
    color: #9b9b9b;
}

.btn-book-new {
    color: orangered;
    font-size: 14px;
    font-weight: 700;
}

.btn-book-new:hover {
    color: orangered;
    cursor: pointer;
}

.next-r p {
    margin-bottom: 1px;
}

.offer-cara .slide-box-card img {
    width: 80px;
    height: 80px;
}

.fa-angle-right,
.fa-angle-left {}

.offer-cara i {
    font-size: 16px;
    cursor: pointer;
    color: orangered;
    background-color: white;
    box-shadow: 0px 0px 10px -5px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 20px;
}

.slide-box-card {
    box-shadow: 0px 0px 7px -5px;
    margin-right: 1rem;
    padding: 15px;
}

.fa-angle-left {
    position: absolute;
    top: 35px;
    left: -25px;
    cursor: pointer;
}

.fa-angle-right {
    position: absolute;
    bottom: 35px;
    right: -25px;
    float: right;
    cursor: pointer;
}

.slide-box-card a {
    font-size: 14px !important;
}

.flight-summary-data h6 {
    font-size: 30px;
}

/*End Inline Css */



:root {
    --theme-hover-color1: #ffa50014;
    --theme-color: #fd7b01;
}


.b2b-home-page .first-t2 {
    top: -15px;
    box-shadow: none;
    border-radius: 0;
    /* border-top-left-radius: 10px; */
    /* border-top-right-radius: 10px; */
}

.b2b-home-page .first-t2 table tr td {
    border-radius: 4px;
    width: 110px;
}


.b2b-home-page .first-t2 table tr td:last-child {
    border-top-right-radius: 10px;
}

.b2b-home-page .first-t2 table tr .active {
    background-color: var(--theme-color);
}

.b2b-home-page .first-t2 table tr .active i {
    color: white !important;
}

.b2b-home-page .first-t2 table tr .active p {
    color: white !important;
    font-weight: 600;
}


.b2b-home-page .first-t2 table tr td:hover i {
    color: white;
}

.b2b-home-page .first-t2 table tr td:hover p {
    color: white;
}

.b2b-home-page .first-t2 table tr td:hover,
.first-t2 table tr td:active {
    background-color: var(--theme-color);
}

.b2b-home-page .first-t2 table tr td:hover,
.first-t2 table tr td:active {
    background-color: var(--theme-color);
}

.b2b-home-page .first-t2 table tr td {
    /* padding: 0 21px; */
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

.b2b-home-page .my-form-t2 {
    margin-top: 5rem;
}

.b2b-home-page .second-t2 {
    box-shadow: 0px 0px 10px 1px white;
    /* background-color: #ffffffeb !important; */
    padding: 20px;
}

.b2b-home-page .second-t2 .col-lg-6 p {
    font-weight: 600;
}

.b2b-home-page .trip-inputs div {
    border-radius: 0 !important;
}

.b2b-home-page .trip-inputs div {
    height: 36px !important;
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.b2b-home-page .active-search-in {
    background: rgb(253, 123, 1);
    background: linear-gradient(90deg, rgba(253, 123, 1, 1) 0%, rgba(255, 198, 144, 1) 100%);
}

.b2b-home-page .trip-inputs div {
    margin-left: 5px !important;
}

.b2b-home-page .my-search-btn {
    background: rgb(253, 123, 1);
    background: radial-gradient(circle, rgba(253, 123, 1, 1) 0%, rgba(255, 198, 144, 1) 100%);
}

.b2b-home-page .my-search-btn:hover {
    background: radial-gradient(circle, rgb(239, 116, 1) 0%, rgb(248, 183, 123) 100%);
}

.b2b-home-page .second-t label {
    font-size: 10px !important;
}

.b2b-home-page .trip-form label input[type=text] {
    font-size: 18px;
}

.b2b-home-page .trip-form label {
    padding: 7px 10px;
}

.b2b-home-page .mybuttn {
    position: relative;
}

.b2b-home-page .my-search-btn {
    position: absolute;
    right: -25px;
    bottom: -25px;
    padding: 15px;
    width: 50px !important;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b2b-home-page .my-fd:hover {
    background-color: transparent;
}

.b2b-home-page .b2b-input {
    background: #fd7b010f;
    padding: 0px 10px;
    border-radius: 4px;
    margin-top: 5px;
    height: 60px;
    overflow: hidden;
}

.b2b-home-page .b2b-input p {
    font-size: 12px;
    margin: 0 !important;
}

.b2b-home-page .b2b-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0 !important;
}

.b2b-home-page .first-t table i {
    font-size: 16px;
}

.b2b-home-page .trip-form {
    border: 1px solid rgb(216, 216, 216);
    border-top-left-radius: 0;
}

.b2b-home-page .my-fd span {
    font-weight: bold;
}

.b2b-home-page .my-icon-t {
    position: relative;
}

.b2b-home-page .my-icon-t i {
    top: 6px;
    left: -18px !important;
    color: var(--theme-color);
}

.b2b-home-page .first-t {
    background-color: transparent;
    width: 850px;
    display: flex;
    justify-content: center;
    margin: auto;
    left: 0;
    right: 0;
    /* border-bottom: 1px solid rgb(229, 229, 229); */
}

.b2b-home-page .first-t tr {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.b2b-home-page .first-t td {
    background-color: white;
}

.b2b-home-page .first-t2 table tr p {
    font-size: 14px;
}

.b2b-home-page .trip-inputs [type="radio"]:checked+label:after,
.b2b-home-page .trip-inputs [type="radio"]:not(:checked)+label:after {
    background: var(--theme-color);
}

.shw-more-btn-area span {
    background-color: rgb(232 232 232 / 39%);
    padding: 3px 20px;
    color: black !important;
    font-weight: 600;
    white-space: nowrap;
}

.b2b-home-page .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 3px;
}

/* .b2b-home-page .btn-group label
{
    border-radius: 4px !important;
} */
.b2b-home-page .btns {
    background: transparent !important;
}

.b2b-home-page .left-company-details {
    /* background: #020a195c;
    padding: 0 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.b2b-home-page .my-dashboard-t table tr td:hover {
    background-color: #44434373;
}

.b2b-home-page .box-bg-1 {
    background-color: transparent;
}

.b2b-home-page .icon-name {
    /* position: absolute;
    left: -22px;
    top: 6px; */
}

.b2b-home-page .left-company-details p:first-child {
    white-space: nowrap;
}

/* .b2b-home-page .drop-profile .dropdown-item:hover
{
    background-color: #ebebeb !important;
} */
.b2b-home-page .dropdown-menu {
    padding: 0 !important;
}

.b2b-home-page .dropdown-menu .dropdown-item {
    /* padding: 0 !important; */
}

.b2b-home-page .dropdown-item:focus,
.dropdown-item:hover {
    background-color: transparent !important;
}

.b2b-home-page .drop-profile .row:hover {
    background-color: var(--theme-hover-color1);
}

.b2b-home-page .offer-card img {
    height: 200px;
    object-fit: cover;
}

.b2b-home-page .offer-card .row:first-child p {
    font-weight: bold;
    color: grey;
    margin-bottom: 10px;
    margin-top: 10px;
}

.b2b-home-page .b2b-details-sec .row .col-lg-4 {
    position: relative;
}

.b2b-home-page .b2b-details-sec .row .b2b-details-sec-img {
    width: 150px;
    top: 3px;
    left: -10px;
    height: 95%;
    position: absolute;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 5px 5px 18px -9px;
}

.b2b-home-page .b2b-details-sec .row .bx-content-b2b-details-sec {
    padding: 14px;
    border-radius: 10px;
    padding-left: 105px;
    min-height: 137px;
}

.b2b-home-page .b2b-details-sec .row .col-lg-4 .orange-light {
    background-color: #fd7b014a;
}

.b2b-home-page .b2b-details-sec .row .col-lg-4 .green-light {
    background-color: #cdedcd;
}

.b2b-home-page .b2b-details-sec .row .col-lg-4 .pink-light {
    background-color: #f9c6c687;
}

.b2b-details-sec .bx-content-b2b-details-sec img {
    height: 45px;
}

.b2b-home-page .why-book-with-us .row .col-lg-6 {
    padding: 0 20px;
}

.b2b-home-page .why-book-with-us .row .row {
    border: 1px solid #d6d6d6;
    padding: 15px 20px;
    min-height: 170px;
}

.b2b-home-page .why-book-with-us .row .row p {
    line-height: 22px;
    font-size: 12px;
    font-weight: 500;
}

.b2b-footer h4 {
    color: black;
}

.b2b-footer a {
    color: black;
}

.b2b-home-page .b2b-footer ul li i {
    font-size: 20px;
    color: #2f8cff;
    padding-right: 7px;
}

.b2b-home-page .btns input:checked+.btn:after {
    color: var(--theme-color);
}

.b2b-home-page .select2-container .select2-selection--multiple {
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-color: #d2d2d2 !important;
    margin-top: 4px;
}

.b2b-home-page #show_more_data span i {
    color: var(--theme-color);
}

.b2b-home-page #preferredLabel {
    font-weight: bold;
}

.b2b-home-page .btn-group,
.btn-group-vertical {
    border-radius: 50px !important;
    background: linear-gradient(90deg, rgba(253, 123, 1, 1) 0%, rgba(255, 198, 144, 1) 100%) !important;
}

.b2b-home-page .b2b-home-page .btn-group label {
    border-radius: 50px !important;
    color: white !important;
}

.b2b-home-page .btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:nth-child(n+3),
.btn-group>:not(.btn-check)+.btn {
    color: white !important;
}

.b2b-home-page .bg-b2b-details-sec .row {
    transform: translateX(31px);
}