@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

html,
body {
    font-family: "Poppins", sans-serif;
    color: #444444;
    font-size: 16px;
}
html {
/*    height: 100%;*/
}

body {
/*    width: 100%;
    overflow-x: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #F5F6FA;*/
}
.swal-button {
      color: #fff !important;
      background-color: #c30b12 !important;
    /* background-color: #F9A81A !important; */
}
.swal-modal.multiButtonModal .swal-button--cancel {
    background-color: #efefef !important;
    color: grey !important;
     padding: 8px 20px !important;
}
.return-date-bgGrey {
    /* background-color: #e9e5e5; */
    opacity: 0.65;
}
.skyhop-footer a:hover {
    color: #fff;
}
.input-item {
    cursor: pointer;
}

    .input-item.return-date-bgGrey {
        pointer-events: none;
        cursor: not-allowed;
    }
.city-region-dropdown .dropdown-menu {
    min-width: 60rem;
}

.header .login-signup-wrapper {
    display: flex;
    /* display: none !important; */
}
/*here*/
@media (max-width: 768px) {
    .header .login-signup-wrapper {
        display: none !important;
    }
    .main-menu{
        display:none;
    }
}
@media (max-width: 576px) {
    .careers-intro .container {
        max-width: 630px !important;
    }
}


.region-list .region-link {
    position: relative;
    display: block;
    padding: 8px 12px;
    color: #212529;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: left;
}

.region-link.active {
    background-color: #f8f9fa;
}

    /* ::before bar for active item only */
    .region-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background-color: #fbbc05; /* Yellow */
        border-radius: 0 4px 4px 0;
    }

.city-item:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.region-link.active {
    color: #d9534f;
}

.scrollable-city-list li.city-item:hover {
    background-color: #FEF4E9;
}

.scrollable-city-list::-webkit-scrollbar {
    width: 4px;
}

.scrollable-city-list::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-city-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
.primary-text {
    color: #c91820;
}

.form-group .form-label {
    font-size: 1rem;
}

.form-group .form-control {
    padding: .6rem .6rem .6rem .6rem;
}

.trip-type-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.trip-type-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .trip-type-btn.active {
        background-color: #FF8B00 ;
        color: white;
        border-color: #FF8B00 ;
    }

    .trip-type-btn:hover:not(.active) {
        background-color: #FF8B00;
    }
.date-picker-container .input-item .input-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.calendar-wrapper {
    display: none;
    position: absolute;
    top: 4rem;
    left: 4.5rem;
    transform: translateX(-15%);
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 4px;
    z-index: 1000;
    user-select: none;
}

.triangle-pointer {
    position: absolute;
    top: 85.5%;
    left: 50%;
    z-index: 1001;
    display: none;
}

    .triangle-pointer img {
        width: 25px;
        height: auto;
    }
@media (max-width:576px) {

    .calendar-wrapper {
        top: 3.4rem;
        left: 2.7rem;
        flex-direction: column;
        /*        transform: translateX(-50%) !important;*/
    }

    .triangle-pointer {
        position: absolute;
        top: 27.5%;
        left: 50%;
        z-index: 1001;
        display: none;
    }
}    
.calendar {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

    .calendar-header span {
        font-weight: bold;
        font-size: 16px;
        color: #444444;
    }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
@media screen and (max-width:375px) {
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
    }
}

    .calendar-grid div {
        width: 36px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        border-radius: 50%;
    }

    .calendar-grid .day-name {
        font-weight: bold;
        color: #888;
        cursor: default;
    }

   

    .calendar-grid .date.disabled {
        color: #ccc;
        cursor: not-allowed;
        text-decoration: line-through;
    }

    .calendar-grid .date.selected {
        background-color: #FF8B00;
        color: #fff;
    }

    .calendar-grid .date.in-range {
        /*        background-color: #FF8B00;*/
        /*        color: #fff;*/
        background-color: #ffeed9;
        color: #000;
        border-radius: 0;
    }
    .calendar-grid .date:not(.disabled):hover {
        background-color: #FF8B00;
        color:#fff;
    }

    .calendar-grid .date.hover-in-range {
        /*        background-color: #FF8B00;*/
        border-radius: 0;
        /*        color: #fff;*/
        background-color: #ffeed9;
        color: #000;
    }

    .calendar-grid .date.start-date {
        background-color: #FF8B00;
        color: #fff;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
    }

    .calendar-grid .date.end-date {
        background-color: #FF8B00;
        color: #fff;
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
    }
    .range-finalized .calendar-grid .date.start-date {
        border-top-right-radius: 0 ;
        border-bottom-right-radius: 0 ;
    }

    .range-finalized .calendar-grid .date.end-date {
        border-top-left-radius: 0 ;
        border-bottom-left-radius: 0;
    }
    .rounded-left {
        border-top-right-radius: 0 !important;
        /* Adjust the radius value as needed */
        border-bottom-right-radius: 0 !important;
        /* Adjust the radius value as needed */
        border-top-left-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-right {
        border-top-right-radius: 0.375rem !important;
        /* Adjust the radius value as needed */
        border-bottom-right-radius: 0.375rem !important;
        /* Adjust the radius value as needed */
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

.calendar-header button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #000000;
    font-size: 18px;
    transition: background-color 0.3s ease;
    position: relative;
    top: 0;
    transform: translateY(0);
}

    .calendar-header button:hover {
        background-color: #f0f0f0;
    }


.flightCardHeading {
    background: #E71720;
    padding: 0.5rem 0.8rem;
    color: #fff;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

    .flightCardHeading img {
        height: 1.4rem;
        padding-right: 0.2rem
    }

.box-panle-main {
    box-shadow: 0px 8px 28px 9px #00000012;
    background: #fff;
    border-radius: 0;
}

    .box-panle-main .nav-link img {
        width: 1rem;
    }
    .box-panle-main .nav-link img.icon-flights {
        width:1.4rem;
    }

    .box-panle-main .nav-link.active img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    }
.nav-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .nav-scroll-wrapper ul {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .nav-scroll-wrapper .nav-item {
        flex: 0 0 auto;
    }



.confirm-txt-msg .headingFont {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff0000;
}

.confirm-txt-msg .text {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    .confirm-txt-msg .text p {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

.thankyoubuttonContainer a {
    padding: 0.6rem 1.5rem;
    margin: 0 0.8rem;
    border-radius: 5px;
    color: #fff !important;
}

.passanger-info-box.card {
    border-radius: 8px !important;
    box-shadow: 0 0 4px #00000026 !important;
}

.passanger-info-box {
    padding-top: 0 !important;
}


.logo {
    padding-top: 10px;
    padding: .48rem 0;
    height: 5rem;
    width: 8rem;
}
/*start Loader*/
.loaderDiv {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    /* background: url(../images/87-200.png) center center no-repeat;
    background-size: 6%;*/
    background-color: #fbf8f8a6;
    margin:auto;
}

.loaderImgDiv {
    width: 85px !important;
    height: 10px;
    position: relative;
    margin-top: 18%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
    animation: mymove infinite;
    animation-duration: 1s;
}

@keyframes mymove {
    0% {
        top: 0px;
    }

    50% {
        top: 7%;
    }

    100% {
        top: 0%;
    }
}
/*end loader*/

/*.flightDuration {
    width: 14.75rem;
    position: relative;
    padding-top: 1rem;

    .flightDurationContent{
    background-color: rgb(190, 190, 190);
    display: flex;
    justify-content: space-between;
    height: 1px;
    .flightDurationIcon

{
    width: 2rem;
    position: relative;
    top: -0.75rem;
    left: -1rem;
}*/
.flightDuration .flightDurationTime {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -1.2rem);
    font-size: 1rem;
    background: #fff;
    padding: 4px;
}


.flightDuration {
    width: 14.75rem;
    position: relative;
    padding-top: 1rem;
}

    .flightDuration .flightDurationContent {
        background-color: rgb(190, 190, 190);
        display: flex;
        justify-content: space-between;
        height: 1px;
    }

    .flightDuration .flightDurationIcon {
        width: 2rem;
        position: relative;
        top: -0.75rem;
        left: -1rem;
    }

    .flightDuration .flightDurationEndPoint {
        width: 8px;
        height: 8px;
        background: rgb(190, 190, 190);
        border-radius: 50%;
        margin-top: -4px;
    }




@media (min-width: 1850px) {
    html,
    body {
        font-size: 17px;
    }
}

@media (max-width: 1480px) {
    html,
    body {
        font-size: 15px;
    }
}

@media (max-width: 1300px) {
    html,
    body {
        font-size: 12px;
    }
}

@media (max-width: 1100px) {
    html,
    body {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    html,
    body {
        font-size: 11px;
    }
}

@media (max-width: 667px) {
    html,
    body {
        font-size: 12px;
    }
}

.relative {
    position: relative;
}

.round {
    border-radius: 50%;
    overflow: hidden;
}

.custom-checkbox:focus {
    border: 0.5px solid #F9A81A !important;
    outline: 0.5px solid #F9A81A !important;
    box-shadow: none;
}

.custom-focus:focus {
    border: 1px solid #F9A81A !important;
    outline: 1px solid #F9A81A !important;
    box-shadow: none;
}

.input-group {
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

    .input-group:focus-within {
        border: 1px solid #F9A81A;
        outline: 1px solid #F9A81A ;
    }

    .input-group .form-select,
    .input-group .form-control {
        border: none;
        box-shadow: none;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 3.4rem;
    height: 1.75rem;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .switch .slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.4s;
    }

        .switch .slider::before {
            content: "";
            position: absolute;
            height: 1.375rem;
            width: 1.375rem;
            left: 0.25rem;
            bottom: 0.25rem;
            background-color: white;
            transition: 0.4s;
        }

    .switch input:checked + .slider {
        background-color: #39C172;
    }

        .switch input:checked + .slider::before {
            transform: translateX(1.625rem);
        }

    .switch input:focus + .slider {
        box-shadow: 0 0 0.0625rem #F9A81A;
    }

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.btn,
a.btn {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.4rem 1rem;
}

a,
button {
    cursor: pointer;
}

.image {
    width: 100%;
}

img {
    max-width: 100%;
}

.image img {
    width: 100%;
}

.primary {
    background: #E71720 !important;
}

.success-button {
    background: #39C172;
}

.primary-light {
    background: #F6C1B1 !important;
}

.primary-extralight {
    background: #fff4e5;
}

.secondary {
    background: #F9A81A !important;
}

.extra-light-color {
    background-color: #ECECEC;
}

.secondary-light {
    background: #FEF4E9 !important;
}

.tertiary {
    background: #e9b220 !important;
}

.tertiary-light {
    background: #e9b3204f !important;
}

.dark {
    background: #000 !important;
}

.mid-dark {
    background: #444444 !important;
}

.grey {
    background: #666666 !important;
}

.bg-color {
    background: #F5F6FA !important;
}

.light-grey {
    background: #B2B2B2 !important;
}

.white {
    background: #fff !important;
}

.primary-gradient {
    background: linear-gradient(270deg, #D2292E 0%, #EC1C24 98.44%) !important;
}

.primary-text {
    color: #E71720 !important;
}

.primary-light-text {
    color: #F6C1B1;
}

.secondary-text {
    color: #F9A81A;
}

.tertiary-text {
    color: #e9b220;
}

.dark-text {
    color: #000 !important;
}

.mid-dark-text {
    color: #444444;
}

.grey-text {
    color: #666666;
}

.light-grey-text {
    color: #B2B2B2;
}

.white-text {
    color: #fff !important;
}

.link-dark {
    color: #000;
    text-decoration: none;
}

    .link-dark:hover {
        color: #E71720;
    }

.font-4xl {
    font-size: 1.875rem;
}

.font-3xl {
    font-size: 1.6875rem;
}

.font-xxxl {
    font-size: 1.5rem;
}

.font-xxl {
    font-size: 1.375rem;
}

.font-xl {
    font-size: 1.25rem;
}

.font-lg {
    font-size: 1.125rem;
}

.font-md {
    font-size: 1rem;
}

.font-sm {
    font-size: 0.8rem;
}

.font-xsm {
    font-size: 0.774rem;
}

.font-xs {
    font-size: 0.687rem;
}

.font-xxs {
    font-size: 0.5625rem;
}

.font-14 {
    font-size: 0.934rem !important;
}
.font-20 {
    font-size: 1.340rem !important;
}
.font-11 {
    font-size: 0.734rem !important;
}
.caps {
    text-transform: uppercase;
}

.thin {
    font-weight: 100;
}

.extraLight {
    font-weight: 200;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.semibold {
    font-weight: 500 !important;
}

.bold {
    font-weight: 600 !important;
}

.extraBold {
    font-weight: 700;
}

.block {
    font-weight: 800;
}

.btn:focus,
a.btn:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-orange {
    border: 1px solid #E31837 !important;
    border-radius: 24px !important;
    /* background-color: #e67e00; */
    color: #E31837;
    border: none;
}

    .btn-orange:hover {
        background-color: #E31837;
        color: #fff;
        border: none;
    }

.btn-primary,
a.btn-primary {
    background: #E71720;
    border: 1px solid #E71720;
    color: #fff !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.hover, .btn-primary:not(:disabled):not(.disabled):active:focus,
    a.btn-primary:hover,
    a.btn-primary:focus,
    a.btn-primary:active,
    a.btn-primary.active,
    a.btn-primary.hover,
    a.btn-primary:not(:disabled):not(.disabled):active:focus {
        background: #E71720;
        color: #fff !important;
        border: 1px solid #E71720;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-primary:disabled, .btn-primary.disabled,
    a.btn-primary:disabled,
    a.btn-primary.disabled {
        color: #fff;
        background: #E71720;
        opacity: .65;
    }

.btn-primary-dark,
a.btn-primary-dark {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

    .btn-primary-dark:hover, .btn-primary-dark:focus, .btn-primary-dark:active, .btn-primary-dark.active, .btn-primary-dark.hover, .btn-primary-dark:not(:disabled):not(.disabled):active:focus,
    a.btn-primary-dark:hover,
    a.btn-primary-dark:focus,
    a.btn-primary-dark:active,
    a.btn-primary-dark.active,
    a.btn-primary-dark.hover,
    a.btn-primary-dark:not(:disabled):not(.disabled):active:focus {
        background: rgba(0, 0, 0, 0.3);
        color: #fff !important;
        border: 1px solid rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.btn-secondary,
a.btn-secondary {
    background-image: linear-gradient(rgb(252, 182, 62), rgb(247, 148, 29));
    opacity: 0.87;
    border: 1px solid #F9A81A;
    color: #fff !important;
}

.bg-light-grey {
    background: #f6f6f6 !important;
}

    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active, .btn-secondary.hover, .btn-secondary:not(:disabled):not(.disabled):active:focus,
    a.btn-secondary:hover,
    a.btn-secondary:focus,
    a.btn-secondary:active,
    a.btn-secondary.active,
    a.btn-secondary.hover,
    a.btn-secondary:not(:disabled):not(.disabled):active:focus {
        background-image: linear-gradient(rgb(247, 148, 29),rgb(252, 182, 62))!important;
        opacity: 0.87;
        color: #fff !important;
        border: 1px solid #F9A81A;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.btn-tertiary,
a.btn-tertiary {
    background: #e9b220;
    border: 1px solid #e9b220;
    color: #fff !important;
}

    .btn-tertiary:hover, .btn-tertiary:focus, .btn-tertiary:active, .btn-tertiary.active, .btn-tertiary.hover, .btn-tertiary:not(:disabled):not(.disabled):active:focus,
    a.btn-tertiary:hover,
    a.btn-tertiary:focus,
    a.btn-tertiary:active,
    a.btn-tertiary.active,
    a.btn-tertiary.hover,
    a.btn-tertiary:not(:disabled):not(.disabled):active:focus {
        background: #e9b220;
        color: #fff !important;
        border: 1px solid #e9b220;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.btn-white,
a.btn-white {
    background: #fff;
    border: 1px solid #B2B2B2;
    color: #000 !important;
}

    .btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .btn-white.hover, .btn-white:not(:disabled):not(.disabled):active:focus,
    a.btn-white:hover,
    a.btn-white:focus,
    a.btn-white:active,
    a.btn-white.active,
    a.btn-white.hover,
    a.btn-white:not(:disabled):not(.disabled):active:focus {
        background: #fff;
        color: #E71720 !important;
        border: 1px solid #B2B2B2;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.btn-outline-primary {
    border: 1.5px solid #E71720;
    color: #E71720;
    background: transparent;
    font-weight: 600 !important;
}

    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.hover, .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
        border-color: #E71720;
        background: #E71720;
        color: #fff;
    }

    .btn-outline-primary:disabled, .btn-outline-primary.disabled {
        color: #E71720;
        opacity: .65;
    }

.btn-outline-secondary {
    border: 1px solid #F9A81A;
    color: #000;
    background: transparent;
    outline: none !important;
}

    .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.hover, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
        border-color: #F9A81A;
        background: #F9A81A;
        color: #fff;
        outline: none !important;
    }

.btn-outline-tertiary {
    border: 1px solid #e9b220;
    color: #e9b220;
    background: transparent;
}

    .btn-outline-tertiary:hover, .btn-outline-tertiary:focus, .btn-outline-tertiary:active, .btn-outline-tertiary.active, .btn-outline-tertiary.hover, .btn-outline-tertiary:not(:disabled):not(.disabled):active:focus {
        border-color: #e9b220;
        background: #e9b220;
        color: #fff;
    }

.btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

    .btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active, .btn-outline-white.active, .btn-outline-white.hover, .btn-outline-white:not(:disabled):not(.disabled):active:focus {
        border-color: #fff;
        background: #fff;
        color: #E71720;
    }

.btn-link {
    color: #E71720;
    text-decoration: none;
    padding: 0 5px !important;
}

    .btn-link.underline {
        text-decoration: underline;
    }

    .btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .btn-link.hover, .btn-link:not(:disabled):not(.disabled):active:focus {
        color: rgba(231, 23, 32, 0.8);
    }

.btn-link-secondary {
    color: #F9A81A;
    text-decoration: none;
    padding-right: 5px !important;
}

    .btn-link-secondary.underline {
        text-decoration: underline;
    }

    .btn-link-secondary:hover, .btn-link-secondary:focus, .btn-link-secondary:active, .btn-link-secondary.active, .btn-link-secondary.hover, .btn-link-secondary:not(:disabled):not(.disabled):active:focus {
        color: rgba(231, 23, 32, 0.8);
    }

.btn-link-dark {
    color: #000;
    text-decoration: none;
    padding: 0 5px !important;
}

    .btn-link-dark.underline {
        text-decoration: underline;
    }

    .btn-link-dark:hover, .btn-link-dark:focus, .btn-link-dark:active, .btn-link-dark.active, .btn-link-dark.hover, .btn-link-dark:not(:disabled):not(.disabled):active:focus {
        color: #E71720;
    }

.border-secondary {
    border: 1px solid #F9A81A !important;
}

.btn-animation {
    position: relative;
    box-shadow: inset 0 0 0px 0px #0000001f !important;
}

    .btn-animation:hover, .btn-animation:focus, .btn-animation:active, .btn-animation.active, .btn-animation.hover, .btn-animation:not(:disabled):not(.disabled):active:focus {
        box-shadow: inset 0 8rem 0px 0px #0000001f !important;
    }

.btn-xxl {
    padding: 0.8rem 1rem;
}

    .btn-xxl i {
        font-size: 2.9rem;
    }

.btn-xl {
    padding: 0.5rem 0.6rem;
}

    .btn-xl i {
        font-size: 1.9rem;
    }

.btn-lg {
    padding: 0.4rem 0.5rem;
}

    .btn-lg i {
        font-size: 1.5rem;
    }

.btn-md {
    padding: 0.3rem 0.4rem;
}

    .btn-md i {
        font-size: 1.4rem;
    }

.btn-sm {
    padding: 0.28rem 0.32rem;
}

    .btn-sm i {
        font-size: 1.3rem;
    }

.btn-xs {
    padding: 0.2rem 0.3rem;
}

    .btn-xs i {
        font-size: 1rem;
    }

.text-shadow {
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.border-bottom {
    border-bottom: 1px solid #ECECEC;
}

.border-left {
    border-left: 1px solid #ECECEC;
    align-self: stretch;
    /* Stretches the column to match parent height */
}

.icon-28 {
    width: 1.75rem;
    height: 1.75rem;
}

.icon-12 {
    width: 0.75rem;
}

.icon-16 {
    width: 1rem;
}

.icon-20 {
    width: 1.25rem;
}

.icon-footer {
    width: 3rem;
}
.icon-22 {
    width: 1.375rem;
}

.icon-24 {
    width: 1.5rem;
}

.border-radius-5 {
    border-radius: 5px;
}
.icon-23 {
    height: 2.3rem !important;
    width: 2.3rem !important;
}


.border-radius-8 {
    border-radius: 8px;
}

.mb-5 {
    margin-bottom: 2rem;
}

.px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.px-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}

.py-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.px-7 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.py-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.border-t-1 {
    border-top: 1px solid #ECECEC;
}

.border-dashed-1 {
    border-bottom: 1px dashed #ECECEC;
}

.error-text {
    color: #E01F26;
}

.withbtn {
    position: relative;
}

    .withbtn .form-control {
        padding-right: 6rem;
    }

    .withbtn .btn {
        position: absolute;
        right: 0.25rem;
        top: 50%;
        transform: translateY(-50%);
    }

.form-control::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #B2B2B2;
}

.form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #B2B2B2;
}

.form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #B2B2B2;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #B2B2B2;
}

.form-control.inputGrey,
.form-select.inputGrey {
    box-shadow: none;
    outline: none;
    background-color: #ECECEC;
    border: none;
}

.form-floating .form-control,
.form-floating .form-select {
    border-color: #B2B2B2;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 1rem;
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    border-top: none;
    padding-left: 0.2rem !important;
    padding-right: 0.2rem !important;
    padding-bottom: 0.25rem !important;
    height: 3.3rem;
    background: transparent;
}

.form-floating textarea.form-control {
    height: auto !important;
}

.form-floating label {
    padding-left: 0 !important;
    padding-bottom: 0 !important;
}

.form-floating .icon {
    position: absolute;
    top: 1rem;
    right: 0.3rem;
}

.btn-searchBooking .btn
{
    width: 100% !important;

}
 @media (max-width: 991px) {
.btn-searchBooking .btn
{
   background-image: linear-gradient(rgb(252, 182, 62), rgb(247, 148, 29)) !important;
    opacity: 0.87;
    border: 1px solid #F9A81A;

}
}
 
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.7rem) translateX(0.15rem);
}

.form-group.error .form-control {
    border-color: #E71720;
}

.eyeButton {
    color: #444444 !important;
}

    .eyeButton.active {
        color: #E71720 !important;
    }

/*  */
#Travellersmobile .btn-check:checked + .btn,
#Travellersmobile .btn.active,
#Travellersmobile .btn.show,
#Travellersmobile .btn:first-child:active,
#Travellersmobile :not(.btn-check) + .btn:active {
    color: #fff;
    background-color: #F9A81A;
    border: none !important;
}

#Travellersmobile .btn.disabled,
#Travellersmobile .btn:disabled,
#Travellersmobile fieldset:disabled .btn {
    color: rgba(0, 0, 0, 0.38);
    border: none !important;
    outline: none !important;
}

#Travellersmobile .btn,
#Travellersmobile .btn:focus,
#Travellersmobile .btn:active,
#Travellersmobile .btn:hover,
#Travellersmobile .btn-check:checked + .btn {
    box-shadow: none !important;
    outline: none !important;
    transition: none !important;
    border: none !important;
}

/*  */
.floating-field textarea::placeholder {
    opacity: 10;
    
}

.floating-field input::placeholder,
textarea::placeholder {
    opacity: 1;   /* 1 = fully visible (use 0–1 only!) */
}

.floating-field textarea:focus {
    outline: none !important;
    /* border: 1px solid #ccc !important; */
   border-bottom: 1px solid #ccc !important; 
    box-shadow: none !important;
}
/* .floating-field textarea:placeholder-shown + label {
    cursor: text;
    white-space: nowrap;
    overflow: hidden;
    transform-origin: left bottom;
    font-size: 1.17rem;
    transform: translate(0, 1.5rem) scale(1);
} */

.floating-field textarea{
    font-size: 1.375rem;
    border: 0;
    border-bottom: 1px solid #ccc;
    -webkit-appearance: none;
    border-radius: 0;
    /* padding: 0;
    cursor: text;
    background: none;
    resize: vertical;
    min-height: 80px; */
}

.floating-field {
    display: flex;
    flex-flow: column-reverse;
    position: relative
}

    .floating-field label,
    .floating-field input {
        transition: all 0.2s;
        touch-action: manipulation;
    }

    .floating-field input {
        font-size: 1.375rem;
        border: 0;
        border-bottom: 1px solid #ccc;
        font-family: inherit;
        -webkit-appearance: none;
        border-radius: 0;
        padding: 0;
        cursor: text;
        background: none;
    }

        .floating-field input:focus {
            outline: 0;
        }

    .floating-field label {
        font-size: 1.125rem;
    }

    .floating-field input:placeholder-shown + label {
        cursor: text;
        white-space: nowrap;
        overflow: hidden;
        transform-origin: left bottom;
        transform: translate(0, 1.5rem) scale(1);
    }

    .floating-field ::-webkit-input-placeholder {
        opacity: 0;
        transition: inherit;
    }

    .floating-field input:focus::-webkit-input-placeholder {
        opacity: 0;
    }

    .floating-field input.coupon-code::-webkit-input-placeholder,
    .floating-field input.coupon-code:focus::-webkit-input-placeholder {
        opacity: 1;
    }

    .floating-field input:not(:placeholder-shown) + label,
    .floating-field input:focus + label {
        transform: translate(0, 0) scale(1);
        cursor: pointer;
    }

    .floating-field label.error {
        position: absolute;
        top: 100%;
        font-size: 1rem;
        transform: none !important;
        color: #E01F26 !important;
    }

    .floating-field.border-light input {
        border-bottom: 1px solid #B2B2B2;
    }

        .floating-field.border-light input:focus {
            border-bottom: 1px solid rgba(224, 31, 38, 0.5);
        }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
input[type="button"],
textarea,
select {
    appearance: none;
    /* for mobile safari */
    -webkit-appearance: none;
}
.form-check-input {
    border: 2px solid #666666a6;
}

.form-check-input:checked {
    background-color: #F9A81A;
    border-color: #F9A81A;
}
.form-check-input:focus,
.form-check-input:active,
.form-check-input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.table > thead > tr > th {
    border-color: #B2B2B2 !important;
}

.table > :not(:first-child) {
    border-top: none !important;
}

.table.table-hover-shadow > :not(caption) > * > * {
    border-color: rgba(246, 193, 177, 0.5);
}

.table.table-hover-shadow tbody tr:hover {
    box-shadow: 0px 2px 4px 1px #F6C1B1;
    border-radius: 5px;
}

.only-line-4 {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.form-control.error {
    border-color: #E01F26;
}

label.error {
    color: #E01F26;
}

.choices__heading {
    padding: 3px 10px;
    border-bottom: 1px solid #f7f7f7;
    color: #E71720;
    background: #f9f9f9;
}

.choices .form-control {
    border: 1px solid #B2B2B2;
    border-radius: 0.25rem;
}

    .choices .form-control .choices__list--single {
        padding: 0 16px 0 0;
    }

.choices.is-open .form-control {
    border-color: #666666;
}
/*herexx*/
/* ---  Tooltip CSS --- */
.info-tooltip-wrapper {
    position: relative;
    display: inline-block;
}
    .info-tooltip-wrapper .tooltip-box {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        z-index: 10;
        top: 140%; 
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        background-color: #000000;
        color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        text-align: left;
        font-size: 12px;
        line-height: 1.6;
        transition: opacity 0.3s ease-in-out;
    }

@media (max-width: 370px) {
    .info-tooltip-wrapper .tooltip-box {
        left: -57px;
        width: 90vw;
        padding: 12px;
        font-size: 11px;
    }
}
@media (min-width: 768px) {
    .info-tooltip-wrapper .tooltip-box {
        width: 350px;
    }
}
    .info-tooltip-wrapper:hover .tooltip-box {
        visibility: visible;
        opacity: 1;
    }

    .info-tooltip-wrapper .tooltip-box::after {
        content: "";
        position: absolute;
        bottom: 100%; 
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent #2c3e50 transparent;
    }
.tooltip-box .tooltip-close {
    display: none;
}


.light-grey-2{
    background-color:#d9d9d9;
}
.font-xs2{
    font-size:.85rem;
}
.popover {
    background-color: rgb(51, 51, 51);
    color: #fff;
    border: none;
    border-radius: 8px;
    max-width: 22rem;
}

.popover-header {
    background-color: rgb(51, 51, 51);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.popover-body {
    background-color: rgb(51, 51, 51);
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.popover-arrow::before,
.popover-arrow::after {
    border-top-color: #000 !important;
}

.bs-popover-bottom > .popover-arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #000000 !important;
}
.card {
    background: #fff;
    border: none;
}

    .card.dark {
        background: #000;
        border-color: #000;
    }

.card-heading {
    border-bottom: 1px solid #ECECEC;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

    .card-heading .nav-link {
        padding: 2rem 1.6rem;
        background: none !important;
        border: none !important;
        color: #000;
        position: relative;
    }

        .card-heading .nav-link::before {
            content: '';
            position: absolute;
            bottom: -0.25rem;
            left: 0;
            right: 0;
            height: 0.5rem;
            background: transparent;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .card-heading .nav-link.active {
            color: #E71720;
        }

            .card-heading .nav-link.active::before {
                background: #E71720;
            }

.nav-tabs-underline {
    border-bottom: 1px solid #ECECEC;
}

    .nav-tabs-underline li .nav-link {
        background: none !important;
        color: #000;
        border: none;
    }

        .nav-tabs-underline li .nav-link.show, .nav-tabs-underline li .nav-link.active {
            color: #000;
            font-weight: 500;
            border-bottom: 0.2rem solid #F9A81A;
        }

.roundtrip-start-adjust {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.roundtrip-end-adjust {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
/* Between 768px and 991px */
@media (min-width:591px) and (max-width:991px) {
    .mobileCalendarWrapper {
        display: flex;
        justify-content: center;
        flex-direction: row; /* ensure row layout */
        align-items: center; /* optional if vertical centering is needed */
    }
}

/* 567px and below */
@media (max-width:591px) {
    .mobileCalendarWrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* optional */
    }
}

.datepicker,
.dropdown-menu {
    font-size: 1rem;
}

    .datepicker table tr td.active,
    .dropdown-menu table tr td.active {
        background: #E71720;
    }

        .datepicker table tr td.active:hover,
        .dropdown-menu table tr td.active:hover {
            background: #E71720;
        }

        .datepicker table tr td.active.active,
        .dropdown-menu table tr td.active.active {
            background: #E71720;
        }

            .datepicker table tr td.active.active:hover,
            .dropdown-menu table tr td.active.active:hover {
                background: #E71720;
            }

    .datepicker table tr td span.active,
    .dropdown-menu table tr td span.active {
        background: #E71720;
    }

        .datepicker table tr td span.active.active,
        .dropdown-menu table tr td span.active.active {
            background: #E71720;
        }

            .datepicker table tr td span.active.active:hover,
            .dropdown-menu table tr td span.active.active:hover {
                background: #E71720;
            }

ul {
    list-style-type: none;
    padding-left: 0
}

li {
    list-style-type: none
}

.scrollable-content-sm {
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-menu-modifysearch {
    width: 32rem !important;
}
@media(max-width:540px) {
.dropdown-menu-modifysearch {
           width: 85vw !important;
                   /* width: 90vw !important; */
        /* max-width: 100% !important; */
} 
}

    .dropdown-menu-modifysearch .scrollable-content {
        max-height: 300px;
        overflow-y: auto;
    }

    .dropdown-menu-modifysearch .badge {
        border-radius: 4px;
        background-color: #ffe6cc;
        color: #e67e00;
        width: 4rem !important;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .dropdown-menu-modifysearch li {
        cursor: pointer;
    }

        .dropdown-menu-modifysearch li:hover {
            background-color: #FEF4E9;
        }

            .dropdown-menu-modifysearch li:hover .badge {
                background-color: #e67e00;
                color: #fff;
            }

.choices-picker .choices__item {
    font-size: 1.6rem !important;
}

.choices-picker .choices {
    min-width: 13rem;
}

    .choices-picker .choices .choices__inner {
        padding: 0.3rem 1rem !important;
        min-height: 3rem;
    }

.choices-picker .choices__list.choices__list--dropdown {
    min-width: 100%;
    width: auto;
    word-break: normal;
}

.choices-picker.no-search-box .choices__list.choices__list--dropdown .choices__input {
    display: none;
}

.choices-picker.hide-help .choices__list.choices__list--dropdown .choices__item--selectable {
    padding-right: 10px !important;
}

.line2-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card2 {
    padding: 2rem;
    background: rgba(236, 236, 236, 0.3);
    border: 0.5px solid #ECECEC;
    border-radius: 6px;
}

.xs-select {
    border-right: none;
    max-width: 5rem;
}

.xs-select-right {
    border-left: none;
}

.search-box-content {
    position: relative;
}

    .search-box-content .btn-icon {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        padding: 0 1rem;
        width: 5rem;
    }

    .search-box-content input.form-control {
        padding-left: 4rem;
        border: 1px solid #B2B2B2;
        border-radius: 6px;
        font-size: 0.875rem;
    }

.tag-item {
    background: #FFFDF7;
    border: 0.7px solid #ECECEC;
    box-sizing: border-box;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
    display: inline-block;
    margin: 0 0.7rem 1rem 0;
    color: #000;
}

ul.slick-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

    ul.slick-dots button {
        width: 0.8rem;
        height: 0.8rem;
        border-radius: 50%;
        background: #ECECEC;
        border: none;
        font-size: 0;
        padding: 0;
        margin: 0.3rem;
        opacity: 0.5;
    }

    ul.slick-dots .slick-active button {
        background: #D2292E;
        box-shadow: 0 0 0 2px #fff;
        opacity: 1;
    }

.slide-item {
    position: relative;
}

.highlight-heading {
    padding-left: 1.125rem;
    position: relative;
    line-height: 1;
}

    .highlight-heading::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0.3rem;
        background: #E71720;
    }

.customScroll::-webkit-scrollbar,
.pList::-webkit-scrollbar {
    width: 0.35rem;
}

.customScroll::-webkit-scrollbar-track,
.pList::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

.customScroll::-webkit-scrollbar-thumb,
.pList::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 2px solid rgba(0, 0, 0, 0.18);
    border-left: 0;
    border-right: 0;
    background-color: #E71720;
}

.card-highlight {
    background: #FFFEF5;
    border: 1px solid #F6C1B1;
}

.seats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.cabin {
    padding: 2rem;
    margin: 0;
    height: 100%;
    overflow: auto;
}

    .cabin .row:not(.marks) {
        counter-increment: rowNumber;
        position: relative;
    }

        .cabin .row:not(.marks) .seats .seat:first-child::before {
            content: counter(rowNumber);
            margin-right: 0;
            position: absolute;
            left: -1rem;
            font-size: 0.9rem;
            top: 0.7rem;
            color: #000;
            font-weight: 600;
        }

.seat {
    display: flex;
    flex: 0 0 14.28571428571429%;
    padding: 5px;
    position: relative;
    justify-content: center;
}

    .seat:nth-child(3) {
        margin-right: 14.28571428571429%;
    }

    .seat p {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
        top: 0.7rem;
        color: #000;
    }

    .seat input[type=checkbox] {
        position: absolute;
        opacity: 0;
    }

    .seat label {
        display: block;
        position: relative;
        width: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5rem;
        color: transparent;
        text-indent: -9999px;
        padding: 4px 0;
        height: 2.2rem;
        background-image: url(./../images/seat-normal.svg);
        background-size: 2.2rem auto;
        background-repeat: no-repeat;
        background-position: center;
        animation-duration: 300ms;
        animation-fill-mode: both;
    }

        .seat label:hover {
            cursor: pointer;
            transform: scale(1.03) translate(0);
        }

    .seat input[type=checkbox]:checked + label {
        background-image: url(./../images/seat-icons/SelectedSeat-1.svg);
        -webkit-animation-name: rubberBand;
        animation-name: rubberBand;
        animation-duration: 300ms;
        animation-fill-mode: both;
    }

    .seat input[type=checkbox]:disabled + label {
        background-image: url(./../images/seat-inoperable.svg);
        text-indent: -9999px;
        overflow: hidden;
    }

        .seat input[type=checkbox]:disabled + label:hover {
            box-shadow: none;
            cursor: not-allowed;
        }

    .seat input.booked[type=checkbox] + label {
        background-image: url(./../images/seat-icons/NormalCheckedIn.svg);
    }

    .seat input[type=checkbox] + label {
        background-image: url(./../images/seat-icons/OpenSeat-3.svg);
    }

        .seat input[type=checkbox] + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].blocked + label {
        background-image: url(./../images/seat-icons/NormalBlockedSeat.svg);
    }

        .seat input[type=checkbox].blocked + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].checkin + label {
        background-image: url(./../images/seat-icons/NormalCheckedIn.svg);
    }

        .seat input[type=checkbox].checkin + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].female + label {
        background-image: url(./../images/seat-icons/NormalFemale.svg);
    }

        .seat input[type=checkbox].female + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].femaleChild + label {
        background-image: url(./../images/seat-icons/NormalFemaleChild.svg);
    }

        .seat input[type=checkbox].femaleChild + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].femaleChildWheelChair + label {
        background-image: url(./../images/seat-icons/NormalFemaleChildWheelChair.svg);
    }

        .seat input[type=checkbox].femaleChildWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].femaleWheelChair + label {
        background-image: url(./../images/seat-icons/NormalFemaleWheelChair.svg);
    }

        .seat input[type=checkbox].femaleWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].femaleWheelChairWithInfant + label {
        background-image: url(./../images/seat-icons/NormalFemaleWheelChairWithInfant.svg);
    }

        .seat input[type=checkbox].femaleWheelChairWithInfant + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].femaleWithInfant + label {
        background-image: url(./../images/seat-icons/NormalFemaleWithInfant.svg);
    }

        .seat input[type=checkbox].femaleWithInfant + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].heldForAnotherSession + label {
        background-image: url(./../images/seat-icons/NormalHeldForAnotherSession.svg);
    }

        .seat input[type=checkbox].heldForAnotherSession + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].borkenSeat + label {
        background-image: url(./../images/seat-icons/NormalBrokenSeat.svg);
    }

        .seat input[type=checkbox].borkenSeat + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].reservedSeat + label {
        background-image: url(./../images/seat-icons/NormalReservedSeat.svg);
    }

        .seat input[type=checkbox].reservedSeat + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].checkedIn + label {
        background-image: url(./../images/seat-icons/NormalCheckedIn.svg);
    }

        .seat input[type=checkbox].checkedIn + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].male + label {
        background-image: url(./../images/seat-icons/NormalMale.svg);
    }

        .seat input[type=checkbox].male + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].maleChild + label {
        background-image: url(./../images/seat-icons/NormalMaleChild.svg);
    }

        .seat input[type=checkbox].maleChild + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].maleChildWheelChair + label {
        background-image: url(./../images/seat-icons/NormalMaleChildWheelChair.svg);
    }

        .seat input[type=checkbox].maleChildWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].maleWheelChair + label {
        background-image: url(./../images/seat-icons/NormalMaleWheelChair.svg);
    }

        .seat input[type=checkbox].maleWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].maleWheelChairWithInfant + label {
        background-image: url(./../images/seat-icons/NormalMaleWheelChairWithInfant.svg);
    }

        .seat input[type=checkbox].maleWheelChairWithInfant + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].maleWithChild + label {
        background-image: url(./../images/seat-icons/NormalMaleChild.svg);
    }

        .seat input[type=checkbox].maleWithChild + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].blockedSeat + label {
        background-image: url(./../images/seat-icons/NormalBlockedSeat.svg);
    }

        .seat input[type=checkbox].blockedSeat + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].reservedSeat + label {
        background-image: url(./../images/seat-icons/NormalReservedSeat.svg);
    }

        .seat input[type=checkbox].reservedSeat + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].openSeatHand1 + label {
        background-image: url(./../images/seat-icons/OpenSeat-Hand-1.svg);
    }

        .seat input[type=checkbox].openSeatHand1 + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].openSeatHand + label {
        background-image: url(./../images/seat-icons/OpenSeat-Hand.svg);
    }

        .seat input[type=checkbox].openSeatHand + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].openSeatHand + label {
        background-image: url(./../images/seat-icons/OpenSeat-Hand.svg);
    }

        .seat input[type=checkbox].openSeatHand + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].reserveSeatHand1 + label {
        background-image: url(./../images/seat-icons/ReserveSeat-Hand-1.svg);
    }

        .seat input[type=checkbox].reserveSeatHand1 + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox].reserveSeatHand + label {
        background-image: url(./../images/seat-icons/ReserveSeat-Hand.svg);
    }

        .seat input[type=checkbox].reserveSeatHand + label:hover {
            box-shadow: none;
        }

    .seat input[type=checkbox]:checked + label {
        background-image: url(./../images/seat-icons/SelectedSeat-1.svg);
    }

    .seat input.maxseat[type=checkbox] + label {
        background-image: url(./../images/seat-icons/MaxOpenSeat.svg);
    }

        .seat input.maxseat[type=checkbox] + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].blocked + label {
        background-image: url(./../images/seat-icons/MaxBlockedSeat.svg);
    }

        .seat input.maxseat[type=checkbox].blocked + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].checkin + label {
        background-image: url(./../images/seat-icons/MaxCheckedIn.svg);
    }

        .seat input.maxseat[type=checkbox].checkin + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].female + label {
        background-image: url(./../images/seat-icons/MaxFemale.svg);
    }

        .seat input.maxseat[type=checkbox].female + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].femaleChild + label {
        background-image: url(./../images/seat-icons/MaxFemaleChild.svg);
    }

        .seat input.maxseat[type=checkbox].femaleChild + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].femaleChildWheelChair + label {
        background-image: url(./../images/seat-icons/MaxFemaleChildWheelChair.svg);
    }

        .seat input.maxseat[type=checkbox].femaleChildWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].femaleWheelChair + label {
        background-image: url(./../images/seat-icons/MaxFemaleWheelChair.svg);
    }

        .seat input.maxseat[type=checkbox].femaleWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].femaleWheelChairWithInfant + label {
        background-image: url(./../images/seat-icons/MaxFemaleWheelChairWithInfant.svg);
    }

        .seat input.maxseat[type=checkbox].femaleWheelChairWithInfant + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].femaleWithInfant + label {
        background-image: url(./../images/seat-icons/MaxFemaleWithInfant.svg);
    }

        .seat input.maxseat[type=checkbox].femaleWithInfant + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].heldForAnotherSession + label {
        background-image: url(./../images/seat-icons/MaxHeldForAnotherSession.svg);
    }

        .seat input.maxseat[type=checkbox].heldForAnotherSession + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].borkenSeat + label {
        background-image: url(./../images/seat-icons/MaxBorkenSeat.svg);
    }

        .seat input.maxseat[type=checkbox].borkenSeat + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].reservedSeat + label {
        background-image: url(./../images/seat-icons/MaxReservedSeat.svg);
    }

        .seat input.maxseat[type=checkbox].reservedSeat + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].checkedIn + label {
        background-image: url(./../images/seat-icons/MaxCheckedIn.svg);
    }

        .seat input.maxseat[type=checkbox].checkedIn + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].male + label {
        background-image: url(./../images/seat-icons/MaxMale.svg);
    }

        .seat input.maxseat[type=checkbox].male + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].maleChild + label {
        background-image: url(./../images/seat-icons/MaxMaleChild.svg);
    }

        .seat input.maxseat[type=checkbox].maleChild + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].maleChildWheelChair + label {
        background-image: url(./../images/seat-icons/MaxMaleChildWheelChair.svg);
    }

        .seat input.maxseat[type=checkbox].maleChildWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].maleWheelChair + label {
        background-image: url(./../images/seat-icons/MaxMaleWheelChair.svg);
    }

        .seat input.maxseat[type=checkbox].maleWheelChair + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].maleWheelChairWithInfant + label {
        background-image: url(./../images/seat-icons/MaxMaleWheelChairWithInfant.svg);
    }

        .seat input.maxseat[type=checkbox].maleWheelChairWithInfant + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].maleWithChild + label {
        background-image: url(./../images/seat-icons/MaxMaleWithChild.svg);
    }

        .seat input.maxseat[type=checkbox].maleWithChild + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].blockedSeat + label {
        background-image: url(./../images/seat-icons/MaxBlockedSeat.svg);
    }

        .seat input.maxseat[type=checkbox].blockedSeat + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox].reservedSeat + label {
        background-image: url(./../images/seat-icons/MaxReservedSeat.svg);
    }

        .seat input.maxseat[type=checkbox].reservedSeat + label:hover {
            box-shadow: none;
        }

    .seat input.maxseat[type=checkbox]:checked + label {
        background-image: url(./../images/seat-icons/SelectedSeat.svg);
    }

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

.fit-content {
    max-width: fit-content;
}

.tooltip {
    z-index: 9999;
}

    .tooltip .tooltip-inner {
        width: 20rem;
        max-width: 20rem;
        font-size: 0.875rem;
        font-weight: 600;
        text-align: left;
    }

    .tooltip.bs-tooltip-top .tooltip-arrow::before {
        border-top-color: #E71720;
    }

    .tooltip.bottom .tooltip-arrow {
        top: 0;
        left: 50%;
        margin-left: -5px;
        border-bottom-color: #000000;
        border-width: 0 5px 5px;
    }

.rotate180 {
    transform: rotate(180deg);
}

.pTableAccordion .accordion-item {
    border: none;
    margin-bottom: 0.3rem;
}

    .pTableAccordion .accordion-item .accordion-header {
        position: relative;
    }

    .pTableAccordion .accordion-item .accordion-button {
        background: #EFEFEF;
        outline: none !important;
        box-shadow: none !important;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        color: #000;
        position: relative;
        padding-left: 3rem;
    }

        .pTableAccordion .accordion-item .accordion-button::after {
            position: absolute;
            left: 1rem;
            content: '+';
            background: none !important;
            transform: none !important;
            font-size: 1.2rem;
        }

        .pTableAccordion .accordion-item .accordion-button:not(.collapsed) {
            background: #F6C1B1;
        }

            .pTableAccordion .accordion-item .accordion-button:not(.collapsed)::after {
                content: '-';
            }

    .pTableAccordion .accordion-item .accordion-body {
        padding: 0;
    }

.icon8 {
    width: 8rem;
}

.otpinput {
    display: flex;
    justify-content: center;
}

    .otpinput input {
        margin: 0.5rem;
        height: 3rem;
        width: 3rem;
        text-align: center;
        font-size: 1.2rem;
        background: rgba(242, 242, 242, 0.3);
        border: 1px solid #DADADA;
        border-radius: 5px;
        font-weight: 500;
    }

        .otpinput input:active, .otpinput input:focus, .otpinput input:focus-visible {
            outline: 1px solid #E71720;
        }

.container-fluid{
    max-width:85.5%;
}
@media (max-width:768px) {
    .container-fluid {
        max-width: 95%;
    }
}
.main-container {
    overflow-y: auto;
    flex: 1;
    padding-bottom: 34rem;
}

.booking-container {
    margin-bottom: 5rem;
    background-color: #f6f6f6;
}

@media (max-width: 667px) {
    .booking-container {
        margin-bottom: 5rem;
    }
}

.header-link-wrapper-main {
    align-items: center;
    background: #E71720;
    /*  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);*/
}

@media (max-width: 667px) {
    .header-link-wrapper-main {
        position: relative;
    }
}

.header-link-wrapper-main .header-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .header-link-wrapper-main .header-link-wrapper .header-links {
        display: flex;
    }

        .header-link-wrapper-main .header-link-wrapper .header-links .header-nav {
            display: flex;
            align-items: center;
        }

@media (max-width: 667px) {
    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav {
        width: 100%;
        border-top: 1px solid #E71720;
    }
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@media (max-width: 667px) {
    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul {
        width: 100%;
        justify-content: space-between;
    }
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li:not(:last-child) {
    margin-right: 0;
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a {
    color: #E71720;
    position: relative;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    padding: 1.5rem;
    height: 4.375rem;
    display: flex;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a {
        flex-direction: column;
        padding: 1rem !important;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 667px) {
    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.687rem;
    }

        .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a span {
            margin-top: 0.2rem;
        }
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a img {
    min-height: 1.25rem;
    max-width: 1.7rem;
    width: auto;
    margin-right: 0.625rem;
}

@media (max-width: 992px) {
    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a img {
        margin-right: 0;
    }
}

@media (max-width: 667px) {
    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a img {
        min-height: 1.85rem;
    }
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a .dark-icon {
    display: inline-block;
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a .white-icon {
    display: none;
}

.header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a.active {
    background: #E71720;
    color: #fff;
}

    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a.active .dark-icon {
        display: none;
    }

    .header-link-wrapper-main .header-link-wrapper .header-links .header-nav ul li a.active .white-icon {
        display: inline-block;
    }

@media (max-width: 667px) {
    .header-link-wrapper-main .header-link-wrapper .header-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 5rem;
    }
}

.subHeading {
    align-items: center;
    background: #E71720;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.05)
}

    .subHeading .progressBarTab {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        font-weight: bold;
        flex-wrap: nowrap;
        border: none
    }

        .subHeading .progressBarTab .nav-item {
            text-align: center;
            position: relative;
            width: 100%;
            display: flex;
            justify-content: end;
            z-index: 1;
        }

            .subHeading .progressBarTab .nav-item .nav-link {
                border: none;
                background: #E71720;
                margin-bottom: 0 !important;
                padding: 0.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 1rem;
                font-weight: 600;
            }

                .subHeading .progressBarTab .nav-item .nav-link span {
                    opacity: 0.5;
                }

                    .subHeading .progressBarTab .nav-item .nav-link span.count {
                        background: #fff;
                        color: #E71720;
                        border-radius: 50%;
                        width: 1.8rem;
                        height: 1.8rem;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-right: 0.5rem;
                        font-size: 0.95rem;
                        border: 3px solid #E71720;
                    }

            .subHeading .progressBarTab .nav-item::after {
                content: "";
                position: absolute;
                top: 50%;
                right: 0;
                height: 1px;
                width: 100%;
                background-color: #fff;
                transform: translateY(-50%);
                opacity: 0.5;
                z-index: -1;
            }

            .subHeading .progressBarTab .nav-item:first-child {
                width: auto;
            }

                .subHeading .progressBarTab .nav-item:first-child::after {
                    display: none;
                }

            .subHeading .progressBarTab .nav-item.active {
                color: #fff;
            }

                .subHeading .progressBarTab .nav-item.active span {
                    opacity: 1;
                }

                    .subHeading .progressBarTab .nav-item.active span.count {
                        background: #fff;
                        color: #E71720;
                        border-color: rgba(231, 23, 32, 0.25);
                    }

                .subHeading .progressBarTab .nav-item.active::after {
                    opacity: 1;
                }

            .subHeading .progressBarTab .nav-item.completed {
                color: #fff;
            }

                .subHeading .progressBarTab .nav-item.completed span {
                    opacity: 1;
                }

                    .subHeading .progressBarTab .nav-item.completed span.count {
                        background-color: #fff;
                        background-image: url(../images/checkMark.svg);
                        border-width: 1px;
                        background-repeat: no-repeat;
                        background-position: center;
                        color: transparent;
                    }

                .subHeading .progressBarTab .nav-item.completed::after {
                    opacity: 1;
                }

.full-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 667px) {
    .full-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 667px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.menu-btn {
    margin-left: 1rem;
}

    .menu-btn .round-btn {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        padding: 0;
        position: relative;
        margin-right: 1.5rem;
    }

        .menu-btn .round-btn::after {
            position: absolute;
            left: 100%;
            top: 50%;
            border: none;
            width: 1.4rem;
            height: 1rem;
            background-repeat: no-repeat;
            margin-top: -0.2rem;
            margin-left: 0.5rem;
        }

    .menu-btn .dropdown-menu {
        width: 20rem;
        background: #fff;
        border: 1px solid #E71720;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 6px;
        padding: 1.5rem;
    }

.menu-list {
    list-style: none;
}

    .menu-list .menu-item img {
        margin-right: 1rem;
    }

.fixed-bottom-bar {
    position: fixed;
    padding-top: 0.5rem !important;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    margin-top: auto;
}

@media (max-width: 992px) {
    .fixed-bottom-bar {
        flex-direction: column;
        padding: 1rem 1rem;
    }

        .fixed-bottom-bar .flex-column,
        .fixed-bottom-bar .d-flex {
            width: 100%;
            text-align: center;
            margin-bottom: 1rem;
        }

            .fixed-bottom-bar .flex-column p,
            .fixed-bottom-bar .d-flex div,
            .fixed-bottom-bar .d-flex button {
                margin-bottom: 0.5rem;
            }

        .fixed-bottom-bar .d-flex {
            flex-direction: column;
            align-items: center;
            gap: 0;
        }

        .fixed-bottom-bar button {
            width: 100%;
            padding: 0.75rem 1rem;
        }
}

.date-container {
    padding-left: 9rem;
    padding-right: 7rem;
    position: relative;
}

@media (max-width: 992px) {
    .date-container {
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -ms-overflow-style: none;
        /* Internet Explorer and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

        .date-container::-webkit-scrollbar {
            display: none;
            /* Safari and Chrome */
        }

        .date-container .date-item {
            padding: 0 0.5rem;
        }
}

.date-container .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}

    .date-container .slick-arrow img {
        width: 0.5rem;
    }

    .date-container .slick-arrow.slider-prev {
        left: 0;
    }

    .date-container .slick-arrow.slider-next {
        right: 0;
    }

.date-container .slick-slide {
    height: auto !important;
}

@media (max-width: 992px) {
    .date-container .date-content {
        display: flex;
        flex-direction: row;
    }
}

.date-container .date-content .date-card {
    text-align: center;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    cursor: pointer;
}

    .date-container .date-content .date-card .border-right {
        border-right: 1px solid #ECECEC;
    }

    .date-container .date-content .date-card.today, .date-container .date-content .date-card.active {
        background: rgba(249, 168, 26, 0.2);
        border-bottom: 2px solid #F9A81A;
    }

@media (max-width: 992px) {
    .date-container .date-content .date-card {
        color: white;
        font-size: 0.75rem;
        width: 6rem;
        flex: 0 0 auto;
        font-size: 0.875rem;
    }

   .date-container .date-content .date-card .font-xs {
    font-size: 0.8rem;
    }

        .date-container .date-content .date-card .border-right {
            border-right: none;
        }

        .date-container .date-content .date-card.today, .date-container .date-content .date-card.active {
            background-color: #E71720 !important;
            border-bottom: 5px solid #F9A81A;
        }
}

.accordion .accordion-item {
    overflow: hidden;
}
.accordion-item {
    border:none!important;
}


    .accordion .accordion-item .accordion-button {
        display: flex;
        align-items: center;
        color: #000;
        border-radius: 0;
        box-shadow: none;
        padding: 1rem 0rem !important;
    }

        .accordion .accordion-item .accordion-button::after {
            display: none;
        }

        .accordion .accordion-item .accordion-button .button-text {
            margin-right: 0.5rem;
        }

        .accordion .accordion-item .accordion-button .dropdown-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .accordion .accordion-item .accordion-button:focus {
            box-shadow: none;
        }

        .accordion .accordion-item .accordion-button.collapsed {
            background-color: transparent;
        }

        .accordion .accordion-item .accordion-button:not(.collapsed) {
            background-color: white;
            color: #F9A81A;
            box-shadow: none;
        }

        .accordion .accordion-item .accordion-button.collapsed .dropdown-icon {
            transform: rotate(180deg);
        }

.accordion-xs .accordion-item {
    border: none;
    overflow: hidden;
    width: fit-content;
}

    .accordion-xs .accordion-item .accordion-button {
        display: flex;
        align-items: center;
        color: #000;
        border-radius: 0;
        box-shadow: none;
        background-color: #F5F6FA;
        padding: 0.5rem 0rem !important;
    }

        .accordion-xs .accordion-item .accordion-button::after {
            display: none;
        }

        .accordion-xs .accordion-item .accordion-button .button-text {
            margin-right: 0.5rem;
        }

        .accordion-xs .accordion-item .accordion-button .dropdown-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .accordion-xs .accordion-item .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-xs .accordion-item .accordion-button.collapsed {
            background-color: #F5F6FA;
        }

        .accordion-xs .accordion-item .accordion-button:not(.collapsed) {
            color: red;
            box-shadow: none;
        }

        .accordion-xs .accordion-item .accordion-button.collapsed .dropdown-icon {
            transform: rotate(180deg);
        }

.accordion-scroll {
    padding-right: 1rem;
    max-height: 135px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

    .accordion-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .accordion-scroll::-webkit-scrollbar-track {
        background: #f0f0f0;
    }

    .accordion-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

        .accordion-scroll::-webkit-scrollbar-thumb:hover {
            background: #b3b3b3;
        }

.accordion1 .accordion-item {
    border: 1px solid #ECECEC;
    border-radius: 5px;
    overflow: hidden;
}

    .accordion1 .accordion-item .accordion-button {
        color: #000;
        border-radius: 0;
        box-shadow: none;
        background: #F5F6FA;
        color: #444444;
    }

        .accordion1 .accordion-item .accordion-button:focus {
            box-shadow: none;
        }

.baggage .w-8 {
    width: 8rem;
}

.baggage .w-9 {
    width: 9rem;
}

@media (max-width: 992px) {
    .baggage {
/*        flex-direction: column;*/
margin-bottom:1rem;
        gap: 1rem;
    }

        .baggage .w-8, .baggage .w-9 {
            width: 7rem;
        }

    .btn {
/*        width: 100%;*/
    }

    .ml-2 {
        margin-left: 0;
    }
}

.swap-icon {
    z-index: 10;
}

    .swap-icon img {
        width: 1.6rem;
        height: 1.6rem;
    }
     @media (max-width: 991px) {
    .swap-icon img {
        width: 2.5rem;
        height: 2.5rem;
    }
}


.modifySearchModal {
    max-width: 40rem;
}

@media (max-width: 667px) {
    .modifySearchModal {
        max-width: 100%;
    }
}

.modifySearchModal .modal-heading {
    background: #E71720;
}

.modifySearchModal .modal-content {
    border-radius: 0.5rem;
}

.bottom-position {
    position: fixed;
    bottom: 0;
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
}

.top-position {
    position: fixed;
    top: 0;
    margin: 0;
    width: 100%;
}

/* Hide the default radio button */
.visually-hidden {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Style the custom radio button label */
.form-selected-label {
    position: relative;
    padding-left: 3rem;
    /* Adjust based on the size of the circle/icon */
    cursor: pointer;
    display: flex;
    align-items: center;
}

    /* Create the empty circle */
    .form-selected-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1.5rem;
        /* Match this to your SVG icon's width */
        height: 1.5rem;
        /* Match this to your SVG icon's height */
        border: 0.5px solid #000;
        /* Adjust color as needed */
        border-radius: 50%;
        background-color: #fff;
    }

/* Show the SVG icon when checked */
.form-selected-input:checked + .form-selected-label::before {
    content: "";
    background: url("../images/selected-radio.svg") no-repeat center center;
    background-size: contain;
    border: none;
    width: 1.5rem;
    height: 1.5rem;
}

.dropdown-img {
    width: 40px;
    height: auto;
}

.accordion-item1 .toggle-content .price-container {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

.accordion-item1 .toggle-content .dropdown-image {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

.accordion-item1 .accordion-button.collapsed .price-container {
    display: block;
    opacity: 1;
    visibility: visible;
}

.accordion-item1 .accordion-button.collapsed .dropdown-image {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.accordion-item1 .accordion-button:not(.collapsed) .price-container {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.accordion-item1 .accordion-button:not(.collapsed) .dropdown-image {
    display: block;
    opacity: 1;
    visibility: visible;
}

/*.dateRangePicker {
    position: relative;
}*/
.daterangepicker {
    /*    border: 1px solid #ddd;
    border-radius: 4px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.daterangepicker {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .daterangepicker .drp-calendar {
        max-width: 100%;
        /*            max-width: 300px;*/
    }

        .daterangepicker .drp-calendar.right {
            display: block !important;
        }

    .dateRangePicker input[name="startDate"],
    .dateRangePicker input[name="endDate"] {
        border: none;
        color: #000;
        margin-right: 4%;
        width: 100%;
        padding-right: 35px;
        font-size: 16px;
        cursor: pointer;
    }

        .dateRangePicker input[name="startDate"]:focus, .dateRangePicker input[name="startDate"]:active,
        .dateRangePicker input[name="endDate"]:focus,
        .dateRangePicker input[name="endDate"]:active {
            outline: none;
        }

    .dateRangePicker .input-item {
        cursor: pointer;
        position: relative;
    }

        .dateRangePicker .input-item .input-icon {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            pointer-events: none;
        }



.daterangepicker .drp-calendar .calendar-table {
    width: 100%;
    border-collapse: collapse;
}

            .daterangepicker .drp-calendar .calendar-table th.prev,
            .daterangepicker .drp-calendar .calendar-table th.next {
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #fff;
                cursor: pointer;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                border: 1px solid #ddd;
            }

                .daterangepicker .drp-calendar .calendar-table th.prev:hover,
                .daterangepicker .drp-calendar .calendar-table th.next:hover {
                    background-color: #ECECEC;
                }

            .daterangepicker .drp-calendar .calendar-table th.next {
                left: calc(100% - 20px);
            }

@media (max-width: 1100px) {
    .daterangepicker .drp-calendar .calendar-table th.next {
        display: none;
    }
}

.daterangepicker .drp-calendar .calendar-table th.prev {
    right: calc(100% - 20px);
}

@media (max-width: 1100px) {
    .daterangepicker .drp-calendar .calendar-table th.prev {
        display: none;
    }
}

.daterangepicker .drp-calendar .calendar-table th,
.daterangepicker .drp-calendar .calendar-table td {
    width: 40px;
    height: 40px;
    min-width: 40px;
    vertical-align: middle;
}

    .daterangepicker .drp-calendar .calendar-table th.month,
    .daterangepicker .drp-calendar .calendar-table td.month {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }

.daterangepicker .drp-calendar .calendar-table th {
    font-weight: bold;
}

.daterangepicker .drp-calendar .calendar-table td {
    cursor: pointer;
    font-size:1.2rem;
    font-weight:600;
    border-radius: 20px;
}

    .daterangepicker .drp-calendar .calendar-table td.available {
        background-color: #fff;
        color: #000, !important;
    }

        .daterangepicker .drp-calendar .calendar-table td.available:hover {
            background-color: #ECECEC;
        }

    .daterangepicker .drp-calendar .calendar-table td.active {
        color: #fff;
        background-color: #e67e00;
    }

    .daterangepicker .drp-calendar .calendar-table td.off, .daterangepicker .drp-calendar .calendar-table td.disabled {
/*        background-color: #f9f9f9;*/
        color: #ccc;
        cursor: not-allowed;
    }

.daterangepicker .drp-buttons {
    display: none;
}

.daterangepicker .drp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

    .daterangepicker .drp-close:hover {
        color: #ff6600;
    }

@media (max-width: 1100px) {
    .daterangepicker {
        max-width: 100%;
        width: 100%;
/*        border: 1px solid #ddd;*/
        box-shadow: none;
        left: 0 !important;
        top: 36px !important;
        overflow-y: auto;
    }
}

.fixed-label {
    position: absolute;
    top: 10%;
    left: 1rem;
    pointer-events: none;
    font-weight: 400;
}
  @media (max-width: 991px) {
    .fixed-label {
     left: 0rem;
     font-size:.87rem;;
}
  }

.quantity-btn {
    background-color: #e67e00;
    color: #fff;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .quantity-btn:disabled {
        background-color: #B2B2B2;
        cursor: auto;
    }

.flight-header {
    background-color: #E71720;
    color: white !important;
}

    .flight-header .button-sm {
        color: white;
        /* border: 0.2px solid white;
        background-color: red; */
        background-image: linear-gradient(rgb(252, 182, 62), rgb(247, 148, 29));
    /* opacity: 0.87; */
    /* border:none; */
        border-radius: 9.5px;
    }

.input-underlined {
    border: none;
    outline: none;
    padding-top: 5px;
    padding-bottom: 2px;
    font-size: 16px;
    font-weight: 500;
    color: #444444;
}

.border-bottom-underlined {
    border-bottom: 1px solid #ccc;
}


    .input-underlined:focus {
        outline: none;
    }

.dropdown-sm {
    background: none;
    margin-right: 10px;
    cursor: pointer;
    padding: 0 5px;
    font-size: 16px;
    color: #444444;
}

.input-small {
    flex: 1;
    font-size: 16px;
    padding: 0 5px;
    color: #444444;
}

.fixed-bottom-bar-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    z-index: 1051;
}
@media (max-width: 991px) {
.box-panle-main {
    width: 100%;
    /* height: 420px; */
    max-width: 100%;
}}
#headingMenu {

  display: none;
  justify-content: end;
 
}
 #headingMenu .icon-flights{
     width: 25px;
    height: 20px;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); */
  }
  #headingMenu svg{
       width: 25px;
    height: 20px;
    fill: rgb(160, 160, 160);
    color: rgb(0, 0, 0);
  }
  
@media (max-width: 991px) {
  #headingMenu {
    position: fixed;
    bottom: -1px;
    left: 0;
    right: 0;
   background-color: white;
    z-index: 999;
    justify-content: space-between;
    padding: 1rem 0 0.5rem;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.15);
  }
}

#headingMenu ul {
  margin: 0;
  padding: 0;
  align-self: center;
}

@media (max-width: 991px) {
  #headingMenu ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
}

#headingMenu ul li {
  display: inline-block;
  list-style: none;
  margin-right: 1.5rem;
}

@media (max-width: 991px) {
  #headingMenu ul li.promiseLink {
    display: none;
  }
}

@media (max-width: 576px) {
  #headingMenu ul li {
    margin-right: 0;
  }
}

#headingMenu ul li:last-child {
  margin-right: 0;
}

#headingMenu ul li a {
  font-size: 1.8rem;
  color: #000;
  font-weight: 500;
  position: relative;
  padding: 0 0 0.25rem;
  z-index: 2;
  text-decoration: none;
}


@media (max-width: 991px) {
    #headingMenu ul li a {
        color: rgb(131, 131, 131);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 1.3;
        font-size: 1.4rem;
    }
}

#headingMenu ul li a svg {
  display: none;
}

@media (max-width: 991px) {
  #headingMenu ul li a svg {
    display: block;
     width: 25px;
    height: 20px;
    /* width: 3rem;
    height: 3rem; */
    position: relative;
    z-index: 1;
  }
  #headingMenu .icon-flights {
    display: block;
     width: 25px;
    height: 20px;
    /* width: 3rem;
    height: 3rem; */
    position: relative;
    z-index: 1;
  }
}

#headingMenu ul li a div {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  #headingMenu ul li a div {
    margin-top: 3px;
        font-weight: 400;
    font-size: 1.2rem;
    /* color: white; */
  }
}
#headingMenu .nav-link.active {
  /* Target the image */
  .icon-flights {
    filter: invert(27%) sepia(100%) saturate(7493%) hue-rotate(0deg) brightness(101%) contrast(104%);
  }
svg{
        /* width: 25px;
    height: 20px; */
    /* fill: rgb(195, 11, 18); */
     fill:red;
    color: rgb(0, 0, 0);
}

  /* Target the text */
  .d-flex > div:nth-child(2) {
    color: red;
  }
}



#headingMenu ul li a::after {
  /* transition: all 0.3s ease; */
  content: "";
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 0;
  margin: 0;
  border-bottom: 2px transparent solid;
}

@media (max-width: 991px) {
  #headingMenu ul li a::after {
    position: absolute;
    /* width: 6rem !important;
    height: 6rem !important; */
    /* background-color: red; */
    color: red;
    left: 50%;
    /* transform: translateX(-50%) scale(1);
    border-radius: 50%; */
    top: 0;
    border: none !important;
  }
}

#headingMenu ul li a:hover {
  color: red !important;
}

@media (max-width: 991px) {
  #headingMenu ul li a:hover {
    color: red;
  }
}

#headingMenu ul li a.active {
  color: red !important;
}

@media (max-width: 991px) {
  #headingMenu ul li a.active {
    color: red;
  }

  /* #headingMenu ul li a.active svg {
    transform: scale(1.2) translateY(-0.3rem);
  } */
}

#headingMenu ul li a.active::after {
  width: 100%;
  border-bottom-color: red;
}

@media (max-width: 991px) {
  /* #headingMenu ul li a.active::after {
    transform: translateX(-50%) scale(1.3);
    top: -1.4rem;
  } */
}


    .fixed-bottom-bar-mobile .btn-grey {
        background-color: #292828;
        color: #fff;
        border: none;
    }

    .fixed-bottom-bar-mobile .btn-block {
        width: 100%;
    }

.passenger-btn:hover, .children-btn:hover, .infant-btn:hover {
    background-color: #F9A81A;
    color: #fff;
    border: none;
    outline: none;
}

.passenger-btn:active, .children-btn:active, .infant-btn:active {
    background-color: #F9A81A;
    color: #fff;
    border: none;
    outline: none;
}

    .modifySearchModalmobile {
        max-width: 100% !important;
        width: 100% !important;
    }

    .modifySearchModalmobile .modal-content {
        background: #E71720;
        color: #fff;
    }

        .modifySearchModalmobile .modal-content .modal-heading {
            font-size: 18px;
            font-weight: 600;
        }

        .modifySearchModalmobile .modal-content .btn-close-icon img {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .modifySearchModalmobile .modal-content .btn-trip-type.active,
        .modifySearchModalmobile .modal-content input[type="radio"]:checked + .btn-trip-type, 
        .mobileBookingForm .btn-trip-type.active, 
        .mobileBookingForm input[type="radio"]:checked + .btn-trip-type {
            background-color: rgba(0, 0, 0,0.7);
            color: #fff !important;
            font-weight: 600;
            width: 100% !important;
        }

        .modifySearchModalmobile .modal-content .btn-trip-type, .mobileBookingForm .btn-trip-type {
            background: rgba(0, 0, 0, 0.15);
            color: #fff;
            border-radius:  3px !important;
            font-size: 14px;
            padding: 10px;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
            width: 100% !important;
        }

            .modifySearchModalmobile .modal-content .btn-trip-type:hover, .mobileBookingForm .btn-trip-type:hover {
                background-color: rgba(0, 0, 0, 0.5);
            }

            .modifySearchModalmobile .modal-content .btn-trip-type:focus, .mobileBookingForm .btn-trip-type:focus {
                background-color: rgba(0, 0, 0, 0.5) !important;
                color: #fff !important;
                font-weight: 600;
                outline: none !important;
                box-shadow: none !important;
            }

        .modifySearchModalmobile .modal-content .location-code, .mobileBookingForm .location-code {
            font-size: 40px;
            font-weight: 500;
            line-height: 1.15;
        }

        .modifySearchModalmobile .modal-content .location-name, .mobileBookingForm .location-name {
            font-size: 13px;
            font-weight: 400;
        }

        .modifySearchModalmobile .modal-content .swap-icon, .mobileBookingForm .swap-icon {
            width: 42px;
            height: 42px;
            cursor: pointer;
        }

        .modifySearchModalmobile .modal-content .date-label, .mobileBookingForm .date-label {
            font-size: 13px;
            opacity: 0.95;
        }

        .modifySearchModalmobile .modal-content .data-value, .mobileBookingForm .data-value {
            font-size: 18px;
            font-weight: 500;
        }

        .modifySearchModalmobile .modal-content .dropdown-label, .mobileBookingForm .dropdown-label {
            font-size: 12px;
            margin-bottom: 4px;
            display: block;
        }

        .modifySearchModalmobile .modal-content .form-select, .mobileBookingForm .form-select {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: 1px solid #fff;
            border-radius: 8px;
        }

            .modifySearchModalmobile .modal-content .form-select:focus, .mobileBookingForm .form-select:focus {
                border-color: #ffcc00;
                box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.5);
            }

        .dropdown-item:focus {
            outline: none !important;
            box-shadow: none !important;
        }

        .mobileBookingForm .col.return-date-container .border-bottom{
            height: 100%;
        }
.search {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 1rem;
    background-color: #fff;
}

    .search input {
        width: 100%;
        border: none;
        background: none;
        box-shadow: none;
    }

        .search input:focus {
            outline: none !important;
            box-shadow: none;
        }

    .search .btn-clear {
        display: none;
    }

.input-sm {
    width: 70%;
}

    .input-sm .input-wrapper .form-control:focus {
        outline: none;
        box-shadow: none;
    }

.flightCardHeading {
    background: #E71720;
    padding: 0.5rem 0.8rem;
    color: #fff;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

    .flightCardHeading img {
        height: 1.4rem;
        padding-right: 0.2rem
    }

.flightSubHeading {
    padding: 0 1.5rem;
}

    .flightSubHeading h1 {
        font-size: 2rem;
        font-weight:600;
        margin-bottom: 0.2rem;
        color: #000;
    }

    .flightSubHeading p {
        font-size: .8rem;
        margin-bottom: 0.8rem;
        color: #777;
    }

        .flightSubHeading p.font-sm {
            font-size: 0.85rem
        }


.tagline {
    font-weight: 500;
    font-size: 0.735rem;
}
 @media (max-width: 991px) {
     .flightSubHeading h1 {
        color:white !important;
     }
      .flightSubHeading p {
        color: white !important;
      }
    .flightSubHeading .dropdown-menu p {
        color: #000 !important;
    }
 }
 
.login-modal {
    width: 26.67rem !important;
    /*        width: 400px !important;*/
    /*    width: 30.83vw !important;*/
    /*    font-size: 0.87rem !important;*/
}


    .login-modal input {
        padding: 0.8375rem 1rem;
/*        15px converted to rem*/
    }

.login-button {
    padding: 0.8375rem 0;
}

.login-modal .modal-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.icon-login {
    width: 2.75rem;
    height: 2.75rem;
}
/*.login-modal .checkmark {
    width: 1.24rem !important;
    height: 1.24rem !important;
}


.login-modal .customradio .checkmark:after {
    width: 0.65rem !important;
    height: 0.65rem !important;
}
*/

.modifybtn-outline-secondary {
    border: 1px solid #F9A81A;
    color: #F9A81A;
    border-radius: 9.5px;
    background: transparent;
    outline: none !important
}

    .modifybtn-outline-secondary:hover, .modifybtn-outline-secondary:focus, .modifybtn-outline-secondary:active, .modifybtn-outline-secondary.active, .modifybtn-outline-secondary.hover, .modifybtn-outline-secondary:not(:disabled):not(.disabled):active:focus {
        border-color: #F9A81A;
        background: #F9A81A;
        color: #fff;
        outline: none !important
    }
    @media (max-width: 992px) {
.font-xsm{
font-size: 1rem !important;
}
.custom-focus{
font-size: 1.25rem !important;
}
.xs-select {
    border-right: none;
    max-width: 5.7rem;
    font-size: 1.25rem !important;
}

.xs-select-right {
    border-left: none;
    font-size: 1.25rem !important;
}
}
.icon-back-btn{
        background: none;
    border: none;
    padding: 0;
}
.contact-header-image{
height: 13rem;
    overflow: hidden;
    border-radius: 5px;

}
span.d-list-item {
    display: list-item;
    list-style-position: inside;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}
    span.d-list-item::marker {
        font-size: 7px;
        width: 0.3rem;
        padding-right: 0 !important;
    }
.contact-social-links a {
    opacity:0.85;
}
.contact-social-links a:hover {
    opacity: 1;
}
/* priceDetailsModal */
#priceDetailsModal .modal-content{
    max-height: calc(100vh - 155px);
    overflow: auto;
}
#priceDetailsModal .modal-body{
    max-height: calc(100vh - 155px);
    overflow: auto;
}
.active-tab{
    color: red !important;
}
.noflight-text-section{
    line-height: 1.6rem;
    font-size: 1rem;
}
.footer-link{
    color: white !important;
}
.text-white{
    color: white !important;
}

.agentDetails h5 {
    font-size: 1.5rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}
p.balance span {
    font-weight: 600;
    font-size: 1.1rem;
    color:red;
}
ul.agentMenu {
    margin-top: 1rem;
   
}
    ul.agentMenu li a {
        color: #000;
        font-size: 1.15rem;
        margin-bottom: 1rem;
        display: block;
        text-decoration: none;
    }
.agentDetails {
    background: #f1f1f1;
    padding: 1rem;
}
.active-border {
    border: 3px solid #ff9800 !important;
}
.btn-del {
    padding: 0.5rem 0.6rem;
}
 @media (max-width: 992px) {
 .btn-del{

        padding: 0.6rem!important;
    }
   }


.mobileBookingForm{
    padding: 0 1.5rem;
}
/* @media (max-width: 991px) { */
.swal-icon--warning__dot {
    width: 4px !important;
    height: 4px !important;
    margin-left: -2px !important;
    bottom: -7px !important;
}
    .swal-icon--warning__body {
    width: 3px !important;
    height: 11px !important;
    top: 4px !important;
    border-radius: 2px !important;
    margin-left: -1px !important;
}
.swal-icon {
    width: 36px !important;
    height: 26px !important;
    border-width: 2px !important;
    padding: 0;
    margin: 0px 5px !important;
}
.swal-title{
    font-size: 16px !important;
    white-space: nowrap !important;
    color: #fff;
    font-weight: 400 !important;
    padding: 0.8rem 0.4rem !important;
}
.swal-title:not(:last-child) {
    margin-bottom: 0px !important;
}
    .swal-modal {
        display: flex;
        position: fixed;
        bottom: 20px;
        width: fit-content;
        left: 0;
        right: 0;
        /* background-color: rgb(194, 56, 36);
        border-color: rgb(170, 38, 19); */
        background: #c30b12;
        border: 1px solid #690005;
 box-shadow: 0 0 14px rgba(105, 0, 5, 0.4);
        /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); */
        /* align-items: flex-end; */
         align-items: center;
    }
    .swal-modal  .swal-text {
        color: #fff;
        font-weight: 400;
        /* white-space: nowrap; */
        padding-top: 0;
       max-width: 80rem;
        width: 100%;
    }
    .swal-modal .multiButtonModal .swal-text {
     padding-bottom: 0.8rem;
    }
    .swal-modal.multiButtonModal{
        bottom: 180px;
    }
       .swal-modal.multiButtonModal{
  padding: 0.5rem 0.5rem 1.5rem;
       }
    .swal-modal  .swal-text:first-child {
        margin-top: 0px;
    }
     .swal-modal .swal-footer {
        margin-top: 0;
        padding: 0;
      
    }
    .swal-modal .swal-footer .swal-button{
        /* padding:8px 20px */
            padding: 8px 8px 8px 0px;
    font-weight: 700;
    }
    .swal-modal .swal-footer .swal-button:active {
  opacity: 0.7;
}
   .swal-modal .swal-footer .swal-button-container {
    /* margin: 0 5px; */
   }
    .swal-modal.multiButtonModal{
        display: block;
        background: #fff;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        min-width: 25rem;
    }
 .swal-modal.multiButtonModal .swal-button--confirm {
    background-color: #F9A81A !important;
        padding: 8px 20px !important;
}
 .swal-modal.multiButtonModal .swal-modal .swal-footer .swal-button{
        padding:8px 20px
            /* padding: 8px 8px 8px 0px; */
    /* font-weight: 700; */
    }
    .swal-modal.multiButtonModal .swal-icon {
        margin:10px auto  !important;
        width: 90px !important;
        height: 70px !important;
    }
    .swal-modal.multiButtonModal .swal-title {
    /* font-size: 13px !important; */
    white-space: normal !important;
    color: #444444 !important;
    text-align: center;
    padding-top: 0 !important;
    font-weight:500 !important;
}
 .swal-modal.multiButtonModal .swal-text {
     color: #444444;
      white-space: normal !important;
      text-align: center;
    font-weight:400 !important;
 }

    /* .swal-modal.multiButtonModal .swal-modal.multiButtonModal  .swal-text {
        color: #444444;
        text-align: center;
    } */

    .swal-modal.multiButtonModal .swal-footer{
        text-align: center;
        display: flex;
        justify-content: center;
        padding-top: 0.8rem;
    }

/* } */
@media (max-width: 991px) {
    .swal-modal.multiButtonModal{
        width:100%}
      .swal-modal {
 background: #333;
 bottom: 50px;
 padding: 0.5rem;
        border: none;
 box-shadow: none;
      }
      .swal-button {
    background-color: #F9A81A !important;
}
 .swal-modal .swal-footer .swal-button{
        padding:8px 20px
            /* padding: 8px 8px 8px 0px; */
    /* font-weight: 700; */
    }
    .swal-title, .swal-text {
    /* font-size: 13px !important; */
    white-space: normal !important;
}
}
.card1{
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: solid 1px #e4e4e4;
}
.img-container{
    img{
         width: 5rem;
  height: 5rem;
    }
}
input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: black !important;
}
.pointer-disabled {
    pointer-events: none;
    opacity: 0.5;
}
.additional-baggage-btn{
    line-height: 1.5rem;
    margin-bottom: -0.9rem;
  }
  .add-baggage-btn{
    line-height: 1.5rem;
      margin-bottom: 0.1rem;
}

 @media (max-width: 991px) {
 .additional-baggage-btn{
    line-height: 1.5rem;
    position: absolute;
    right: -6px;
    margin-bottom: 0.1rem;
  }
  .add-baggage-btn{
    line-height: 1.5rem;
}}
  @media (max-width: 360px) {
.w-8{
width: 5rem !important;
}
.additional-baggage-btn {
    line-height: 1.5rem;
    position: absolute;
    right: -12px;
    margin-bottom: 0.1rem;
}

}
 @media (max-width: 991px) {
    .return-date-container {
    display: grid;
    align-items: flex-end;   /* aligns all items on baseline */
}
.no-return-date .date-label {
    font-size: 1.45rem !important;
    font-weight: 600; 
}}
@media (max-width: 360px) {
  
.no-return-date .date-label {
    font-size: 1.3rem !important;
    font-weight: 600; 
}}
.mb-country-code{
    min-width: 7rem;
    max-width: 7rem;
}
.mb-mobile-number{
    width: calc(100% - 7rem);
}
#spnDeparture ,#spnArrival{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: text;
}

/* Remove focus styles */
#spnDeparture:focus,
#spnDeparture:active,
#spnArrival:focus,
#spnArrival:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove Bootstrap button focus if inherited */
button:focus,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.error-msg {
    width: 13.8rem !important;
    display: block !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
}
 .modal-input::placeholder {
            color: #6c757d;
            opacity: 1;
        }
        .modal-input{
            height: 2.8rem;
        }
/* .logo-img{
   margin-right: 5.3rem;
} */