@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');
/* Variables CSS Start */
:root {
    --asap: "Asap", sans-serif;
    --white: #FFFFFF;
    --white-v1: #F3F3F3;
    --white-v2: #F1F3F4;
    --white-v3: #FAFAFA;
    --black: #000000;
    --grey: #444444;
    --grey-v1: #D9D9D9;
    --grey-v2: #CCCCCC;
    --grey-v3: #EFEFEF;
    --blue: #00649E;
    --blue-light: #E0F4FF;
    --blue-light-v1: #D6F0FF;
    --blue-dark: #080D82;
    --red: #E92115;
    --red-v1: #B60A0A;
    --transparent: transparent;
    --bs-border-width: 2px;
    --primary-transition: all 0.3s ease;
}
/* Variables CSS End */

/* Default CSS Start */
*, *::before,*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: inherit;
    font-family: inherit;
}
body {
    font-family: var(--asap) !important;
    margin: 0;
    padding: 0;
    height: 100%;
    line-height: 1;
    background-color: var(--white);
    text-rendering: optimizeSpeed;
    overflow: hidden auto;
}
img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
}
button, [role="button"] {
    cursor: pointer;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
}
button:focus, [role="button"]:focus, .navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}
h1, h2, h3, h4, h5, h6, p, span, i, em, u, ul, ol, li, a, button, div, label, input, select, textarea, table, th, td {
    font-family: var(--asap) !important;
}
a {
    cursor: pointer;
    color: inherit;
    text-decoration: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: var(--primary-transition);
}
ol, ul {
    list-style: none;
}
svg {
    flex-shrink: 0;
}
[type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75em center;
    background-size: 16px 12px;
}
::-moz-placeholder {
    opacity: 1;
    color: var(--grey-v1);
}
textarea {
    vertical-align: top;
    overflow: auto;
}
.checkbox-buttons [type='checkbox'], .radio-buttons [type='radio'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.checkbox-buttons [type='checkbox']:focus, .radio-buttons [type='radio']:focus {
    outline: 0
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 12px;
}
h1 {
    font-size: 30px;
    line-height: 38px;
}
h1.large {
    font-size: 32px;
}
h2 {
    font-size: 28px;
    line-height: 42px;
}
h3 {
    font-size: 28px;
    line-height: 40px;
}
h4 {
    font-size: 24px;
    line-height: 32px;
}
h5 {
    font-size: 18px;
    line-height: 20px;
}
h6 {
    font-size: 16px;
    line-height: 1.2;
}
p, .normal {
    font-size: 15px;
    line-height: 1.2;
}
p.xxxlarge, a.xxxlarge, .xxxlarge {
    font-size: 32px;
}
p.xxlarge, a.xxlarge, .xxlarge {
    font-size: 20px;
}
p.xlarge, a.xlarge, .xlarge {
    font-size: 18px;
}
p.large, a.large, .large {
    font-size: 15px;
}
p.medium , a.medium, .medium {
    font-size: 14px;
}
p.small, a.small, .small {
    font-size: 12px !important;
}
p.xsmall, a.xsmall, .xsmall {
    font-size: 10px;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, form {
    padding: 0px;
    margin: 0px;
    letter-spacing: 0px;
}
span {
    letter-spacing: 0px;
}
.text-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.text-ellipsis-1 {
    -webkit-line-clamp: 1;
}
.text-ellipsis-2 {
    -webkit-line-clamp: 2;
}
.text-ellipsis-3 {
    -webkit-line-clamp: 3;
}
.text-ellipsis-4 {
    -webkit-line-clamp: 4;
}
input::-ms-clear {
    display: none;
}
input::-ms-reveal {
    display: none;
}
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
@-moz-document url-prefix() {
    .custom-scroll-content {
        -webkit-overflow-scrolling: touch;
        scrollbar-color: var(--grey-v2) var(--transparent);
        scrollbar-width: thin;
    }
}
.custom-scroll-content::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}
.custom-scroll-content::-webkit-scrollbar-track {
    background: var(--transparent);
    border-radius: 20px;
    -webkit-border-radius: 20px;
}
.custom-scroll-content::-webkit-scrollbar-thumb {
    background-color: var(--grey-v2);
    border-radius: 20px;
    -webkit-border-radius: 20px;
}
.custom-scroll-content::-webkit-scrollbar-button {
    background: transparent;
    opacity: 0;
}
.font-asap {
    font-family: var(--asap) !important;
}
.text-grey {
    color: var(--grey) !important;
}
.text-grey-v1 {
    color: var(--grey-v1) !important;
}
.text-blue {
    color: var(--blue) !important;
}
.text-blue-dark {
    color: var(--blue-dark) !important;
}
.text-red {
    color: var(--red) !important;
}
.bg-red {
    background-color: var(--red-v1) !important;
}
.border-grey-v1 {
    border-color: var(--grey-v1) !important;
}
.rounded-12 {
    border-radius: 12px !important;
}
.rounded-100 {
    border-radius: 100px !important;
}
.btn {
    font-family: var(--asap);
    font-size: 20px !important;
    line-height: 20px;
    font-weight: 600 !important;
    padding: 14px;
    border-radius: 6px !important;
    cursor: pointer !important;
    letter-spacing: 0px;
    border: 1px solid var(--transparent) !important;
    transition: var(--primary-transition);
    box-shadow: none !important;
    background-image: none !important;
}
.btn-normal {
    font-size: 16px !important;
    line-height: 16px;
}
.btn-primary {
    color: var(--blue);
    background-color: var(--blue-light);
}
.btn-primary:hover, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: var(--blue-light);
    background-color: var(--blue);
    transition: var(--primary-transition);
}
.btn-primary-main, .btn-primary-main:not(.button-disabled):focus {
    color: var(--white) !important;
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    background-image: none !important;
}
.btn-primary-main:not(.button-disabled):hover {
    color: var(--black) !important;
    background-color: var(--white) !important;
    transition: var(--primary-transition);
    background-image: none !important;
}
.btn-primary-main.button-disabled:hover {
    color: var(--white);
    background-color: var(--black);
    transition: var(--primary-transition);
}
.btn-primary-main[disabled], .btn-primary-main.disabled {
    opacity: 0.4;
    /* pointer-events: none; */
}
.btn-outline {
    color: var(--black) !important;
    background-color: var(--white) !important;
    border-color: var(--black) !important;
    background-image: none;
}
.btn-outline:hover {
    color: var(--black) !important;
    background-color: var(--white) !important;
    background-image: none;
}
.btn-outline svg path, .btn-primary-main svg path, .btn-outline svg path {
    transition: var(--primary-transition);
}
.btn-outline:hover svg path {
    fill: var(--black);
}
.btn-primary-main.button-disabled:hover svg path, .btn-light:hover svg path {
    fill: var(--white);
}
.btn-primary-main:hover svg path {
    fill: var(--black);
}
.btn-light {
    color: var(--blue);
    background-color: var(--blue-light);
    border-color: var(--transparent) !important;
}
.btn-light:hover {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--transparent) !important;
}
.btn-light.active-item svg {
    transform: rotate(180deg);
}
.btn-secondary:hover {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--transparent) !important;
}
.checkbox-wrapper .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.checkbox-wrapper .checkbox-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -4px;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    transition: var(--primary-transition);
}
.checkbox-wrapper .checkbox-tile {
    width: 100%;
    background-color: var(--white);
    transition: var(--primary-transition);
    cursor: pointer;
}
.city-select-radio-bg .checkbox-wrapper .checkbox-tile {
    min-height: 64px;
}
.checkbox-wrapper .checkbox-tile:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--grey-v2);
    background-color: var(--transparent);
    border-radius: 50%;
    top: 50%;
    left: 16px;
    margin-top: -10px;
    transition: var(--primary-transition);
    z-index: 1;
}
.checkbox-wrapper .checkbox-label {
    font-family: var(--asap);
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    padding-left: 40px;
    z-index: 1;
    width: 100%;
}
.checkbox-wrapper .checkbox-label:has(svg) {
    padding-right: 24px;
}
.checkbox-wrapper .checkbox-input:checked + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--green);
    border-color: var(--white-v1);
}
.city-select-radio-bg  .checkbox-wrapper .checkbox-input:checked + .checkbox-tile:before {
    border-color: var(--grey-v2);
}
.checkbox-wrapper .checkbox-input:checked + .checkbox-tile .checkbox-icon {
    transform: scale(1);
    opacity: 1;
    transition: 0.15s ease;
}
.custom-checkbox-square {
    cursor: pointer;
    user-select: none;
}
.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.custom-checkbox-label {
    cursor: pointer;
    padding-left: 30px;
    transition: all 0.2s ease;
}
.custom-checkbox-label:before {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 2px solid var(--blue);
    transition: all 0.3s ease;
    z-index: 1;
}
.custom-checkbox-label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 3;
}
.custom-checkbox-input:checked + .custom-checkbox-label:before {
    background: var(--blue);
    border-color: var(--blue);
    overflow: hidden;
}
.custom-checkbox-input:checked + .custom-checkbox-label:after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}
.custom-checkbox-text {
    z-index: 4;
}
.city-select-radio-bg .checkbox-wrapper .checkbox-tile:before,
.city-select-radio-bg .checkbox-wrapper .checkbox-input:checked + .checkbox-tile:before {
    border: 2px solid var(--white);
}
.radio-button input[type="radio"] {
    display: none;
}
.radio-circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--grey-v1);
}
.radio-circle::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--grey-v1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.2s ease-in-out;
}
.radio-button input[type="radio"]:checked + .radio-circle {
    border-color: var(--blue);
}
.radio-button input[type="radio"]:checked + .radio-circle::before {
    background-color: var(--blue);
    transform: translate(-50%, -50%) scale(1);
}
.toggle-button .switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
}
.toggle-button .switch input[type="checkbox"] {
    opacity: 0;
    width: 0px;
    height: 0px;
}
.toggle-button .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--grey-v5);
    border-radius: 100px;
    transition: background 0.2s ease;
}
.toggle-button .switch .slider:before {
    content: "";
    position: absolute;
    height: 28px;
    width: 28px;
    left: 2px;
    bottom: 2px;
    background: var(--grey-v4);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.toggle-button .switch input[type="checkbox"]:checked + .slider {
    background-color: var(--blue-light-v1);
}
.toggle-button .switch input[type="checkbox"]:checked + .slider:before {
    transform: translateX(38px);
    background: var(--blue);
}
.toggle-button .switch .active, .toggle-button .switch .inactive {
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
}
.toggle-button .switch .active {
    color: var(--blue);
    left: 10px;
    visibility: hidden;
}
.toggle-button .switch .inactive {
    color: var(--grey);
    right: 10px;
    visibility: visible;
}
.toggle-button .switch input[type="checkbox"]:checked ~ .active {
    visibility: visible;
}
.toggle-button .switch input[type="checkbox"]:checked ~ .inactive {
    visibility: hidden;
}
.toggle-button:hover .form-check-label {
    cursor: pointer;
}
.form-group {
    position: relative;
}
.form-label {
    font-family: var(--asap);
    font-size: 14px !important;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}
.form-control, .form-select {
    font-family: var(--asap) !important;
    font-size: 14px !important;
    color: var(--black);
    padding: 8px 14px !important;
    background-color: var(--white) !important;
    border-radius: 8px !important;
    border: 1px solid var(--grey-v2) !important;
    height: auto !important;
    min-height: 40px;
}
.form-control.form-control-bg, .form-select.form-select-bg {
    background-color: var(--grey-v3) !important;
}
.form-control.form-control-bg1, .form-select.form-select-bg1 {
    background-color: var(--white-v3) !important;
}
.normal_form.form-control {
    padding: 8px 14px !important;
}
.form-control.w-100, .form-select.w-100 {
    width: 100% !important;
}
.form-select {
    background-size: 14px 14px;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300649E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.form-select.form-select-black {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.form-control:focus, .form-select:focus {
    border-color: var(--black) !important;
    box-shadow: none !important;
}
.form-control::-webkit-input-placeholder {
    color: var(--grey) !important;
}
.form-control::-moz-placeholder {
    color: var(--grey) !important;
}
.form-control:-ms-input-placeholder {
    color: var(--grey) !important;
}
.form-control:-moz-placeholder {
    color: var(--grey) !important;
}
.form-control:placeholder {
    color: var(--grey) !important;
}
.inner-form-label {
    font-size: 16px !important;
}
.inner-form-control, .inner-form-select {
    padding: 8px 14px !important;
    font-size: 14px !important;
}
input[type="search"] {
    padding-right: 36px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.1336 24L13.7336 15.6C13.0669 16.1333 12.3002 16.5556 11.4336 16.8667C10.5669 17.1778 9.64469 17.3333 8.66691 17.3333C6.24469 17.3333 4.19469 16.4944 2.51691 14.8167C0.839133 13.1389 0.000244141 11.0889 0.000244141 8.66667C0.000244141 6.24444 0.839133 4.19444 2.51691 2.51667C4.19469 0.838889 6.24469 0 8.66691 0C11.0891 0 13.1391 0.838889 14.8169 2.51667C16.4947 4.19444 17.3336 6.24444 17.3336 8.66667C17.3336 9.64444 17.178 10.5667 16.8669 11.4333C16.5558 12.3 16.1336 13.0667 15.6002 13.7333L24.0002 22.1333L22.1336 24ZM8.66691 14.6667C10.3336 14.6667 11.7502 14.0833 12.9169 12.9167C14.0836 11.75 14.6669 10.3333 14.6669 8.66667C14.6669 7 14.0836 5.58333 12.9169 4.41667C11.7502 3.25 10.3336 2.66667 8.66691 2.66667C7.00024 2.66667 5.58358 3.25 4.41691 4.41667C3.25024 5.58333 2.66691 7 2.66691 8.66667C2.66691 10.3333 3.25024 11.75 4.41691 12.9167C5.58358 14.0833 7.00024 14.6667 8.66691 14.6667Z' fill='%23444444'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: right 14px center;
}
.required-field {
    color: var(--red);
}
.cursor-pointer {
    cursor: pointer;
}
/* Default CSS End */

/* Custom CSS Start */
.header-section {
    background-color: var(--black) !important;
}
.navbar-brand img {
    max-width: 280px;
    width: 225px;
}
.travel-planner {
    margin: 0 0 2px 1rem !important;
}
.navigation-links, .login-wrapper {
    background: var(--white-v1);
}
.navigation-link.active {
    color: var(--blue) !important;
}
.footer-link-items:not(:last-child) a {
    padding-right: 6px;
    margin-right: 6px;
}
.footer-link-items a:hover {
    color: var(--grey-v1) !important;
}
.footer-social-link-lists .footer-link-items a {
    padding-right: 0px;
    margin-right: 0px;
    width: 24px;
    height: 24px;
}
.footer-social-link-lists .footer-link-items:not(:last-child) a {
    margin-right: 8px;
}
.footer-link-items:not(:last-child) a:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: var(--white);
}
.footer-social-link-lists .footer-link-items a:after {
    display: none;
}
.login-wrapper, .brochure-redirect, .wizard-tab-item-main {
    max-width: 640px;
}
.btn-group-footer .btn {
    min-width: 180px;
}
.business-quote, .brochure-redirect {
    background-color: var(--white-v1);
}
.medium-table th, .medium-table td {
    font-family: var(--asap);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 6px;
    background-color: var(--white);
}
.medium-table td {
    font-size: 13px;
    font-weight: 400;
}
.borderless-table th, .borderless-table td {
    border: 0px;
}
.nowrap-table th {
    white-space: nowrap;
}
.booking-cards-wrapper-main .booking-cards-wrapper:not(:last-child), .login-wrapper .main-form-group:not(:last-child),
.wizard-card-wrapper-main .wizard-card-wrapper {
    margin-bottom: 16px !important;
}
.booking-cards-wrapper-main .booking-cards-wrapper:nth-child(even), .wizard-card-wrapper-main .wizard-card-wrapper:nth-child(odd),
.trip-cost-header, .available-timings {
    background-color: var(--white-v2);
}
.booking-cards-wrapper-main .booking-cards-wrapper:nth-child(even) table th,
.booking-cards-wrapper-main .booking-cards-wrapper:nth-child(even) table td, .colored-table th, .colored-table td {
    background-color: var(--white-v2);
}
.login-wrapper .main-form-group:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--grey-v1);
}
.wizard-tab-lists:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    height: 2px;
    width: 100%;
    margin-top: -5px;
    background: var(--grey-v1);
}
.wizard-tab-item {
    background-color: var(--white);
    z-index: 1;
    padding: 0px 16px;
}
.wizard-tab-item .tab-count {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.wizard-tab-item.active p {
    font-weight: 500 !important;
}
.image-tooltip:before {
    content: "";
    position: absolute;
    bottom: -25px;
    right: 0px;
    width: 50px;
    height: 50px;
}
.image-tooltip-content {
    display: none;
    top: 100%;
    right: 0px;
    padding: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.image-tooltip:hover .image-tooltip-content {
    display: block;
}
.itinerary-table th:last-child, .itinerary-table td:last-child {
    min-width: 150px;
}
.error-maintenance-main {
    min-height: 100vh;
}
#flight_options .flight-cell .form-select, #flight_options .flight-cell .form-control {
    min-width: 180px;
}
#flight_options .flight-cell {
    vertical-align: middle;
}
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
#flight_options .flight-cell {
    vertical-align: middle;
}
.custom-dialog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    display: none;
}
.custom-modal-dialog {
    max-width: 800px;
    position: relative;
    width: auto;
    margin: 1.75rem;
    margin-right: auto;
    margin-left: auto;
    pointer-events: none;
}
.custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #000000;
    pointer-events: auto;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    outline: 0;
    overflow: hidden;
    max-height: 100%;
}
.custom-modal-header {
    display: flex;
    padding: 16px;
    align-items: flex-start;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: var(--grey-v3);
}
.dialog-scrollable {
    height: calc(100% - 1.75rem * 2);
}
.laoding-pop .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.passInfoTable .form-select, .passInfoTable .form-control {
    padding: 8px 12px !important;
    min-height: 32px;
}
.passInfoTable .form-select {
    padding-right: 26px !important;
}
.grp-block input {
    min-width: 30px;
}
.backdrop-overlay, .flight-backdrop-overlay {
    position: relative;
    overflow: hidden;
    padding-right:15px
}
.backdrop-overlay:before, .flight-backdrop-overlay:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}
.flight-modal-wrapper .flightoption {
    margin-bottom: 12px;
}
.flight-modal-wrapper {
    position: relative;
}
li.navigation-link-item.inactive {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}
#logout::before {
    display: none;
}
#logout {
    margin: 0px !important;
}
.anchor-underline{
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

/* Custom CSS End */

/* Responsive CSS End */
@media (max-width: 1199px) {
    .navigation-link-item {
        width: 100%;
        transition: var(--primary-transition);
    }
    .navigation-links-list {
        display: none !important;
        transition: var(--primary-transition);
    }
    .navigation-links-list.active {
        display: block !important;
    }
    .passInfoTable .form-select, .passInfoTable .form-control {
        min-width: 140px;
    }
    .passInfoTable .grp-block input {
        min-width: 42px;
    }
}
@media (max-width: 991px) {
    #navbarNav {
        position: fixed;
        right: 0;
        top: 0;
        width: 20rem;
        background: var(--white);
        height: 100vh;
        z-index: 1000;
        box-shadow: 0px 1px 15px #84848470;
        transform: translateX(300%);
        transition: var(--primary-transition);
    }
    #navbarNav .navbar-nav li {
        margin-bottom: 12px;
    }
    .header-close-icon {
        position: absolute;
        top: 10px;
        left: -32px;
        background: var(--white);
        padding: 4px;
        z-index: 1000;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 32px;
        height: 32px;
    }
    .menu-open {
        position: relative;
        transition: var(--primary-transition);
    }
    .menu-open::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: #00000070;
        z-index: 999;
        transition: var(--primary-transition);
    }
    .menu-open #navbarNav {
        display: block;
        transform: translateX(0px);
        transition: var(--primary-transition);
    }
    .border-col {
        border-left: 0px !important;
    }
    .navbar-nav li a {
        color: var(--black) !important;
    }
    #navbarNav .navbar-nav li {
        margin-left: 0px;
    }
    .navbar-nav li a svg path {
        fill: var(--black);
    }
}
@media (max-width: 767px) {
    .custom-modal-dialog {
        margin-left: 24px;
        margin-right: 24px;
    }
}
@media (max-width: 575px) {
    .btn-group-footer .btn {
        width: 100%;
    }
    #navbarNav {
        width: calc(100% - 48px);
      }
}
@media (min-width: 576px) {
    .flight-modal-wrapper .fare {
        position: absolute;
        right: 0;
    }
}
@media (min-width: 992px) {
    .navbar-nav li a {
        position: relative;
    }
    .navbar-nav li:not(:last-child) a:before {
        content: "";
        position: absolute;
        top: 8px;
        right: 0px;
        width: 1px;
        height: 50%;
        background: var(--white);
    }
}
@media (min-width: 1200px) {
    .navigation-links-list .navigation-link-item:not(:last-child) {
        border-right: 1px solid var(--grey-v1);
    }
    .trip-cost-table {
        max-width: 60%;
    }
}
@media print {
    .print-none {
        display: none;
    }
}