<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
*:root {
    --color-white: white;
    --color-black: #002248;
    --color-blue: #3685fb;
    --color-org: #ef6425;
    --color-blackOff: #939393;
    --color-bg: #EBECF0;
    --color-orgdark: #FA5302;
    --color-green: #52d8b7;
    --lightgreen: #e9ffec;
}

ul {
    padding: 0;
    margin: 0;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline: none
}

input,
button {
    font-family: "Roboto", sans-serif
}

focus {
    outline: none
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: var(--color-black);
}


/* Header Start*/
.home-header {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d6eafd;
    padding:5px 0;
}
.nav-sec li {
    margin: 0 15px;
}
.nav-sec li a {
    color: var(--color-black);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.call-opt {
    margin: 0px;
    color: #ffffff;
    line-height: 1;
}
    .call-opt .call-icons {

    }

        .call-opt .call-icons svg {
            animation: hithere 1s ease infinite;
        }

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }

    40%, 60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
.free-deals {
    display: inline-flex;
    flex-direction: column;
    color: var(--color-black);
    margin-left: 10px;
    font-size: 12px;
    gap: 5px;
}

.free-deals span {
    color: #585c63
}

.call-opt .call-tfn {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

#bannerCntr {
    position: relative;
    min-height: 570px;
    background: url(/images/banner.jpg) center no-repeat;
    background-size: cover;
}

.eft-add:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(1,10,24,0.8);
} 




    #bannerCntr .tagline {
        font-size: 57px;
        color: #fff;
        font-weight: 700;
        padding: 15px 0;
        text-shadow: 1px 1px 3px #333;
        text-align: center;
        line-height: 1;
    }
.serach-sec {
    padding: 0px;
    text-align: center;
    color: var(--color-white);
    padding-top:180px;
    position:relative;
    z-index:1;
}

.eng-tit {
    color: var(--color-org);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
}

.serach-sec p {
    font-weight: 500;
    font-size: 18px;
    color:var(--color-white);
}

/* Search Engine*/

.tab-view{
    display:flex;
    position:relative;
    z-index:1;
    list-style:none;
    top:-4px;
}

    .tab-view .list-tab {
        background: var(--color-white);
        font-size: 16px;
        font-weight: 500;
        padding: 7px 28px;
        cursor: pointer;
        text-decoration:none;
        color:var(--color-black);
    }
        .tab-view .list-tab.active {
            background: var(--color-org);
            color:var(--color-white);
        }
        .tab-view li:first-child a.list-tab {
            border-top-left-radius: 5px;
        }

        .searchBox {
            position: relative;
            z-index: 1
        }


    .searchBox .tabBox {
        list-style: none;
        padding: 0px
    }


        .searchBox .tabBox li {
            float: left;
            padding: 5px 17px;
            background: #fff;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            font-size: 16px;
            color: #333;
            cursor: pointer
        }


            .searchBox .tabBox li img {
                margin-right: 5px
            }


    .searchBox .searchBlock {
        background: #fff;
        width: 100%;
        border-radius: 5px;
        border-top-left-radius:0px;
        padding: 10px;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
    }


    .searchBox .flightSearch {
        display: flex;
        grid-gap:10px;
        justify-content:space-between;
    }

        .searchBox .flightSearch .column_1 {
        display:flex;
        grid-gap:10px;
            width: 40%
        }


        .searchBox .flightSearch .column_2 {
            display: flex;
            grid-gap: 10px;
            width: 25%;
        }


        .searchBox .flightSearch .column_3 {
            display: flex;
            grid-gap: 10px;
            width: 34%;
        }

        .searchBox .flightSearch .label {
            padding: 2px;
            width: 50%;
            background: #fff;
            border-radius: 5px;
            position: relative;
            border: 1px solid #ccc
        }

            .searchBox .flightSearch .label.inputReturn {
                margin-right: 0px;
                width: 50%;
            }

            .searchBox .flightSearch .label.roundtrip {
                display: none
            }

            .searchBox .flightSearch .label.error {
                border: 1px solid red
            }

                .searchBox .flightSearch .label.error .icons {
                    color: red
                }

            .searchBox .flightSearch .label.oneway {
                width: 97%
            }


            .searchBox .flightSearch .label .label_name {
                font-size: 17px;
                color: #303030;
                transition: all .2s ease;
                width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                position: absolute;
                top: 23px;
                left: 40px;
                pointer-events: none;
                font-weight: 300;
                display: none
            }

@media(max-width: 1199px) {
    .searchBox .flightSearch .label .label_name {
        font-size: 16px
    }
}

.searchBox .flightSearch .label .inputField {
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #002248;
    border: none;
    outline: none;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

@media(max-width: 1199px) {
    .searchBox .flightSearch .label .inputField {
        font-size: 14px;
        padding-left: 30px
    }
}


.searchBox .flightSearch .label.traveller {
    width: 60%;
}

.searchBox .flightSearch .label .icons {
    position: absolute;
    left: 5px;
    top: 12px;
    color: #969ba1;
}

@media(max-width: 1199px) {
    .searchBox .flightSearch .label .icons {
        left: 5px
    }
}

.searchBox .flightSearch .label .icons.person-icon {
    font-size: 25px
}

.searchBox .flightSearch .label input[type=text]:focus ~ .icons {
    color: #525254
}

.searchBox .flightSearch .cursor {
    cursor: pointer
}

.searchBox .flightSearch .searchButton {
    width: 165px;
    display: inline-block;
    background: var(--color-blue);
    border: none;
    font-size: 16px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    padding: 12px 12px 8px 12px;
    outline: none;
    border-bottom: 4px solid var(--color-blue);
    float: left;
}


/* Offer service*/

.ofr-srvc {
    background: url(/images/srv-bg.png) top right no-repeat;
    background-size: auto;
}

.srvc-sec{
    display:flex;
    grid-gap:90px;
    margin:45px 0;
}

.left-cont{
    width:34%;
    display:flex;
    flex-direction:column;
}

.hed-tit{
        font-size:20px;
        font-weight:600;
        color:var(--color-org);
        font-style:italic;
    }

   .sub-tit{
        font-size:30px;
        font-weight:700;
        line-height:1.3;
        margin:10px 0px 15px 0;
    }
.srvc-sec .cho-opt {
    display: flex;
    grid-gap: 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}
    .srvc-sec .cho-opt:first-child{
        margin-top:30px;
    }
        .srvc-sec .cho-opt:last-child{
            border-bottom:none;
        }
.fill-pik {
    background-color: #5dd9b847;
    fill: #5dd9b8;
    color: #5dd9b8;
}
.fill-ylow {
    background-color: #f6eece;
    fill: #d3aa18;
    color: #d3aa18;
}
.fill-blu {
background-color: #def0fb;
    fill: #d3aa18;
    color: var(--color-blue);
}
.icon-sec {
    font-size: 36px;
    padding: 22px;
    border-radius:5px;
    line-height:1;
}
.srvc-sec h6{
    font-weight:600;
    font-size:18px;
}

.rgt-sec{
    width:69%;
    display:flex;
    flex-direction:column;
    position:relative;
}

.frt-pic{
    display:flex;
    justify-content:flex-end;
}

.sec-pic{
    position:absolute;
    top:215px;
    left:15px;
}

.sec-pic img{
border-radius:5px;
}


/* Review Sec*/


.revi-sec {
    background: url(/images/rev-bg.png) no-repeat bottom center;
    background-size: cover;
    background-color: #f2f6ff;
    padding:100px 0;
}

.tittle-sec{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}

.reviews-slider .slick-slide {
    padding: 10px;
}
.testi-card {
    background-color: var(--color-white);
    padding: 20px;
    box-shadow: 0px 3px 15px rgba(22, 25, 33, 0.04);
    border-radius: 6px;
    position: relative;
    z-index: 2;
    height: 190px;
}
.testi-card-rating {
    margin-bottom: 15px;
    color: var(--color-org);
    font-size: 14px;
    letter-spacing: 5px;
}
.testi-card-profile {
    display: flex;
    gap: 15px;
    align-items: center;
    position: absolute;
    bottom: 15px;
}
.testi-card-text {
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.media-body {
    margin-top: 15px;
}
.testi-card-name {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 700;
}
.testi-card-desig {
    display: block;
    font-size: 13px;
    color: #969ba1;
}
.all-slide .slick-next, .all-slide .slick-prev {
    width: 40px;
    height: 40px;
    border: 1px solid #eaeaea;
    background: #707070;
    border-radius: 5px;
    position: absolute;
    top: -40px;
    background: var(--color-white);
    border-radius: 50%;
}

    .all-slide .slick-next:hover, .all-slide .slick-prev:hover{
        background:var(--color-blue);
        color:var(--color-white);

    }
    .all-slide .slick-next {
        right: 10px;
    }
.all-slide .slick-prev {
    left: 91%;
}
    .all-slide .slick-prev:before, .all-slide .slick-next:before {
        font-family: bootstrap-icons;
        color: #002248;
        font-size: 16px;
        font-weight: 800;
    }
    .all-slide .slick-next:before {
        content: "\F285";
       
    }
.all-slide .slick-prev:before {
    content: "\F284";
   
}
.all-slide .slick-prev:hover:before, .all-slide .slick-next:hover:before {
    color: var(--color-white);
}


/* All Best Offer*/
.best-off{
    padding:50px 0;
}
.cont-sec-top {
    position: absolute;
    top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    font-weight: 500;
    text-align:center;
}
.cont-sec-bot {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    font-weight: 500;
    text-align:center;
}

.cont-sec-top p, .cont-sec-bot p {
    color: var(--color-white);
}
    .cont-sec-top p span, .cont-sec-bot p span{
        font-weight: 600;
        font-size: 18px;
    }


/* Our Experince*/

.make-eas {
    margin: 50px 0;
    background: url(/images/our-exp.png) no-repeat top right;
    padding:50px 0;
}

.txt-sec{
    width:47%;
    margin-top:60px;
}

    .txt-sec .left{
        width:400px;
    }
    .pic-sec {
        width: 53%;
        display:flex;
        grid-gap:20px;
    }

.pic-sec img {
    transition: all .3s;
}

        .move {
            width: 100%;
            transition: all .3s;
        }
        .move:hover {
            transform: translateY(-8px);
        }
.sub-hed{
    font-size:20px;
    font-weight:600;
    margin:10px 0;
}

.happy-cust{
   width:100px;
   flex-direction:column;
   display:flex;
   text-align:center;
}
.opt-sec{
    margin-top:20px;
}
.opt-sec h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.opt-sec p {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-org);
    margin: 0;
    line-height: 1;
}

.dest-coll{
    width:130px;
    text-align:center;
}

.pic-lft {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
}
.pic-rgt {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
    margin-top: 30px;
}

/* Special Offer sec*/

.special-offr {
    background-color: #ef642514;
    background-image: url(/images/offer-bg.png);
    background-position: top right;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.offer-txt{
    width:425px;
}

.action-btn {
    background: var(--color-blue);
    border-radius: 4px;
    padding: 15px;
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.call-btn {
    padding: 14px 30px;
    font-size: 20px;
    margin-top:30px;

}
.call-btn i{
    font-size:22px;
}

    .call-btn:hover{
        color:#ffffff;
    }
    .fir-pic {
        border: 5px solid var(--color-white);
        display: inline-block;
        border-radius: 4px;
        transform: rotate(-27.19deg);
    }
.secn-pic {
    border: 5px solid var(--color-white);
    display: inline-block;
    border-radius: 4px;
    transform: rotate(11.49deg);
}

.sale-off {
    background-color: #de4343;
    text-align: center;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    top: -25px;
    width: 182px;
    line-height: 50px;
    left: 45px;
}

/* Loading page animation not start css*/

.preloader {
    /* size */
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translateX(-50%) translateY(-50%);
    animation: rotatePreloader 2s infinite ease-in;
}

@keyframes rotatePreloader {
    0% {
        transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
    }
}

.preloader div {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

    .preloader div:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0%;
        width: 10%;
        height: 10%;
        background-color: var(--color-blue);
        transform: translateX(-50%);
        border-radius: 50%;
    }

    .preloader div:nth-child(1) {
        transform: rotateZ(0deg);
        animation: rotateCircle1 2s infinite linear;
        z-index: 9;
    }

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

    0% {
        opacity: 1;
        transform: rotateZ(36deg);
    }

    7% {
        transform: rotateZ(0deg);
    }

    57% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(2) {
    transform: rotateZ(36deg);
    animation: rotateCircle2 2s infinite linear;
    z-index: 8;
}

@keyframes rotateCircle2 {
    5% {
        opacity: 0;
    }

    5.0001% {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    12% {
        transform: rotateZ(-36deg);
    }

    62% {
        transform: rotateZ(-36deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(3) {
    transform: rotateZ(72deg);
    animation: rotateCircle3 2s infinite linear;
    z-index: 7;
}

@keyframes rotateCircle3 {
    10% {
        opacity: 0;
    }

    10.0002% {
        opacity: 1;
        transform: rotateZ(-36deg);
    }

    17% {
        transform: rotateZ(-72deg);
    }

    67% {
        transform: rotateZ(-72deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(4) {
    transform: rotateZ(108deg);
    animation: rotateCircle4 2s infinite linear;
    z-index: 6;
}

@keyframes rotateCircle4 {
    15% {
        opacity: 0;
    }

    15.0003% {
        opacity: 1;
        transform: rotateZ(-72deg);
    }

    22% {
        transform: rotateZ(-108deg);
    }

    72% {
        transform: rotateZ(-108deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(5) {
    transform: rotateZ(144deg);
    animation: rotateCircle5 2s infinite linear;
    z-index: 5;
}

@keyframes rotateCircle5 {
    20% {
        opacity: 0;
    }

    20.0004% {
        opacity: 1;
        transform: rotateZ(-108deg);
    }

    27% {
        transform: rotateZ(-144deg);
    }

    77% {
        transform: rotateZ(-144deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(6) {
    transform: rotateZ(180deg);
    animation: rotateCircle6 2s infinite linear;
    z-index: 4;
}

@keyframes rotateCircle6 {
    25% {
        opacity: 0;
    }

    25.0005% {
        opacity: 1;
        transform: rotateZ(-144deg);
    }

    32% {
        transform: rotateZ(-180deg);
    }

    82% {
        transform: rotateZ(-180deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(7) {
    transform: rotateZ(216deg);
    animation: rotateCircle7 2s infinite linear;
    z-index: 3;
}

@keyframes rotateCircle7 {
    30% {
        opacity: 0;
    }

    30.0006% {
        opacity: 1;
        transform: rotateZ(-180deg);
    }

    37% {
        transform: rotateZ(-216deg);
    }

    87% {
        transform: rotateZ(-216deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(8) {
    transform: rotateZ(252deg);
    animation: rotateCircle8 2s infinite linear;
    z-index: 2;
}

@keyframes rotateCircle8 {
    35% {
        opacity: 0;
    }

    35.0007% {
        opacity: 1;
        transform: rotateZ(-216deg);
    }

    42% {
        transform: rotateZ(-252deg);
    }

    92% {
        transform: rotateZ(-252deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(9) {
    transform: rotateZ(288deg);
    animation: rotateCircle9 2s infinite linear;
    z-index: 1;
}

@keyframes rotateCircle9 {
    40% {
        opacity: 0;
    }

    40.0008% {
        opacity: 1;
        transform: rotateZ(-252deg);
    }

    47% {
        transform: rotateZ(-288deg);
    }

    97% {
        transform: rotateZ(-288deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(10) {
    transform: rotateZ(324deg);
    animation: rotateCircle10 2s infinite linear;
    z-index: 0;
}

@keyframes rotateCircle10 {
    45% {
        opacity: 0;
    }

    45.0009% {
        opacity: 1;
        transform: rotateZ(-288deg);
    }

    52% {
        transform: rotateZ(-324deg);
    }

    102% {
        transform: rotateZ(-324deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.loading-sec{
    height:120px;
}


























.small_banner {
    position: relative;
    display: none
}


    .small_banner img {
        width: 100%;
        display: none
    }

    .small_banner .tagline {
        position: absolute;
        left: 20px;
        bottom: 10px;
        color: #fff;
        font-weight: 700
    }

.arc_logo_banner {
    background: #fff;
    padding: 10px;
    float: left;
    margin-left: 10px;
    margin-top: 6px
}


    .arc_logo_banner img {
        max-width: 185px
    }


.tp-widget-businessinfo__trustscore,
.tp-widget-businessinfo__total {
    text-transform: none;
    display: inline-block
}

.display_logo_banner {
    position: absolute;
    right: 20px;
    bottom: 20px
}


.tp_logo-banner {
    white-space: nowrap;
    background: #fff;
    width: 148px;
    float: left;
    padding: 5px;
    text-align: center;
    height: 80px
}



.mobile_dsearchButton {
    width: 100%;
    display: none;
    background: var(--color-blue);
    border: none;
    font-size: 16px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    padding: 10px;
    margin-top: 13px;
    outline: none
}


    .mobile_dsearchButton:hover {
        background: #46a60a
    }


.travllerBox {
    border-top: 1px solid #f4f4f4;
    width: 600px;
    background: #fff;
    padding: 15px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}


    .travllerBox .head {
        padding: 0px 0 10px 0;
        font-size: 18px;
        width: 100%;
        font-weight: 500;
        color: #032346;
    }

    .travllerBox .guestBox {
        padding-right: 30px;
        border-right: 1px solid #ccc
    }


        .travllerBox .guestBox .add-traveler {
            font-size: 16px;
            color: #5e5e5e;
            padding: 0px 0 10px 0;
            clear: both;
            font-weight: 500
        }

            .travllerBox .guestBox .add-traveler a {
                width: 25px;
                height: 25px;
                text-align: center;
                line-height: 23px;
                font-size: 14px;
                border: 2px solid #989aa2;
                color: #989aa2;
                background: #fff;
                border-radius: 100%;
                text-decoration: none;
                display: inline-block;
                cursor: pointer;
                font-weight: 600
            }

                .travllerBox .guestBox .add-traveler a i {
                    line-height: 23px
                }

                .travllerBox .guestBox .add-traveler a:hover {
                    color: var(--color-blue);
                    border-color: var(--color-blue);
                }

                .travllerBox .guestBox .add-traveler a.disable {
                    color: #c0cad5;
                    border-color: #c0cad5;
                    cursor: default
                }

            .travllerBox .guestBox .add-traveler .travelers__options {
                float: right;
                width: 100px;
                display: flex;
                justify-content: center;
                align-items: flex-start;
            }

            .travllerBox .guestBox .add-traveler .number {
                width: 50px;
                display: inline-block;
                text-align: center
            }

                .travllerBox .guestBox .add-traveler .number input {
                    width: 100%;
                    text-align: center;
                    font-weight: 700
                }


    .travllerBox .unaccompined {
        padding-top: 10px;
        margin-top: 10px;
        position: relative
    }

        .travllerBox .unaccompined:hover .tooltipBox {
            display: block;
        }

        .travllerBox .unaccompined a {
            color: #333;
            text-decoration: none
        }

            .travllerBox .unaccompined a i {
                position: relative;
                margin-right: 5px;
                top: -2px
            }

        .travllerBox .unaccompined:hover a {
            color: var(--color-blue)
        }

    .travllerBox .classType {
        list-style: none;
        padding: 0px
    }

        .travllerBox .classType li {
            padding-bottom: 10px;
            text-align:left;
        }

    .travllerBox .done_Btn {
        float: right;
        margin: 10px 20px 0 0;
        background: var(--color-org);
        color: #fff;
        padding: 10px 30px;
        text-align: center;
        border-radius: 3px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        display: block;
        width: 120px;
        cursor: pointer
    }

.switch {
    position: absolute;
    display: inline-block;
    padding-left: 42px;
    margin: 0px;
    right: 15px;
    top: 15px;
    cursor: pointer
}


    .switch input {
        opacity: 0;
        width: 0;
        height: 0
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e3e3e3;
    -webkit-transition: .4s;
    transition: .4s;
    color: #303030
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 2px;
        background-color: #fff;
        -webkit-transition: .4s;
        transition: .4s
    }

input:checked + .slider {
    background-color: var(--color-blue)
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-blue)
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px)
}

.slider.round {
    border-radius: 20px;
    width: 36px;
    height: 20px
}

    .slider.round:before {
        border-radius: 50%
    }

.recent__SearchBox {
    background: rgba(0, 0, 0, .2);
    padding: 8px 12px 12px;
    border-radius: 5px;
    margin: 10px 0
}

    .recent__SearchBox .head {
        color: #fff;
        margin-bottom: 5px
    }

    .recent__SearchBox .holder {
        overflow: hidden
    }

    .recent__SearchBox .block {
        background: #fff;
        border-radius: 5px;
        padding: 5px 8px;
        overflow: hidden
    }

        .recent__SearchBox .block .left {
            width: 150px;
            float: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-right: 10px;
            border-right: 1px solid #ccc
        }

            .recent__SearchBox .block .left .city__code {
                font-size: 14px;
                color: #484848;
                font-weight: 600
            }

                .recent__SearchBox .block .left .city__code small {
                    display: block;
                    font-size: 10px;
                    color: #989898
                }

        .recent__SearchBox .block .right {
            width: 110px;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 12px;
            color: #8a8a8a;
            float: left;
            position: relative
        }

            .recent__SearchBox .block .right .arrow {
                color: var(--color-blue);
                position: absolute;
                right: -6px;
                top: -8px;
                font-size: 22px;
                padding: 5px
            }

.input_clear {
    background: url(../../images/clear_field.png) no-repeat right -18px center;
    padding-right: 5px
}

    .input_clear.x {
        background-position: right 13px
    }

    .input_clear.onX {
        cursor: pointer
    }

    .input_clear::-ms-clear {
        display: none;
        width: 0;
        height: 0
    }

.traveler_action_button a.disable {
    color: #c0cad5;
    border-color: #c0cad5;
    cursor: default
}

.done_button {
    width: 100%;
    background: var(--color-blue);
    border: none;
    font-size: 16px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    padding: 10px;
    margin-top: 13px;
    outline: none;
    display: inline-block;
    clear: both
}

.mobile_overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, .2);
    z-index: 2
}

.top_row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin: 0px -12px;
    white-space: nowrap
}


    .top_row:before {
        bottom: -20px;
        content: " ";
        display: block;
        height: 20px;
        left: 0;
        position: absolute;
        width: 100%
    }

    .top_row:after {
        border-left: solid transparent 12px;
        border-right: solid transparent 12px;
        border-bottom: solid #fff 12px;
        top: -12px;
        content: " ";
        height: 0;
        left: 50%;
        position: absolute;
        width: 0;
        transform: translateX(-50%)
    }


    .top_row .arrow-icon {
        position: relative;
        top: 0px;
        margin-left: 7px
    }

.traveler_action {
    padding: 0 30px;
    position: relative
}

.Mobiletrip_type {
    width: 190px;
    border-radius: 5px;
    background: #fff;
    z-index: 3;
    position: absolute;
    box-shadow: 0 3px 12px #a4a4a5;
    left: 0px;
    top: 33px
}

    .Mobiletrip_type.class-type {
        right: 0px;
        left: inherit;
        width: 196px
    }

    .Mobiletrip_type ul {
        list-style: none;
        padding: 0px;
        margin: 0px
    }

        .Mobiletrip_type ul li {
            padding: 13px 0 13px 36px;
            border-bottom: 1px solid #ccc;
            color: #333;
            position: relative;
            cursor: pointer;
            font-weight: 500
        }

            .Mobiletrip_type ul li:last-child {
                border-bottom: none
            }

            .Mobiletrip_type ul li i {
                position: absolute;
                left: 14px;
                top: 11px;
                visibility: hidden
            }

            .Mobiletrip_type ul li:hover,
            .Mobiletrip_type ul li.active {
                color: var(--color-blue)
            }

                .Mobiletrip_type ul li.active i {
                    visibility: visible
                }

.mobile_travelerBox {
    width: 260px;
    border-radius: 5px;
    background: #fff;
    z-index: 3;
    position: absolute;
    right: 0px;
    top: 33px;
    box-shadow: 0 3px 12px #a4a4a5
}

    .mobile_travelerBox .add-traveler {
        font-size: 15px;
        color: #5e5e5e;
        padding: 13px 20px;
        clear: both;
        font-weight: 500;
        border-bottom: 1px solid #ccc
    }

        .mobile_travelerBox .add-traveler a {
            width: 25px;
            height: 25px;
            text-align: center;
            line-height: 23px;
            font-size: 14px;
            border: 2px solid #989aa2;
            color: #989aa2;
            background: #fff;
            border-radius: 100%;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            font-weight: 600
        }

            .mobile_travelerBox .add-traveler a i {
                line-height: 23px
            }

            .mobile_travelerBox .add-traveler a:hover {
                color: var(--color-blue);
                border-color: var(--color-blue)
            }

            .mobile_travelerBox .add-traveler a.disable {
                color: #c0cad5;
                border-color: #c0cad5;
                cursor: default
            }

        .mobile_travelerBox .add-traveler .travelers__options {
            float: right;
            width: 100px;
            display: flex;
            justify-content: center;
            align-items: center
        }

        .mobile_travelerBox .add-traveler .number {
            width: 45px;
            display: inline-block;
            text-align: center
        }

            .mobile_travelerBox .add-traveler .number input {
                width: 100%;
                text-align: center;
                font-weight: 700
            }

.traveler_main {
    position: relative
}

.error .errortext {
    display: block
}

.errortext {
    display: none;
    position: absolute;
    left: 0px;
    bottom: -18px;
    color: red;
    font-size: 11px;
    font-weight: 400;
    line-height: 1rem
}

@media(max-width: 1199px) {
    .errortext {
        font-size: 10px
    }
}

@media(max-width: 1023px) {
    .errortext {
        bottom: -20px
    }
}

.errorsameSearch {
    color: red;
    font-size: 11px
}

.modifySearchBox .errortext {
    position: static;
    margin-top: 5px
}

.tripType {
    list-style: none;
    padding: 0px;
    margin-top:5px;
    margin-bottom: 15px;
    text-align:left;
}

    .tripType li {
        display: inline-block;
        padding-right: 15px;
        font-size: 14px
    }

.inputSet label {
    cursor: pointer;
    font-weight: 400;
    line-height: 22px;
    padding-left: 26px;
    position: relative;
    color: #5e5e5e
}

    .inputSet label input {
        opacity: 0;
        position: absolute
    }

        .inputSet label input[type=checkbox] ~ span::after {
            border: 1px solid #5e5e5e;
            content: "";
            height: 18px;
            left: 0;
            position: absolute;
            top: 1px;
            width: 18px;
            background: #fff
        }

        .inputSet label input[type=checkbox]:checked ~ span::after {
            border: 1px solid var(--color-blue)
        }

        .inputSet label input[type=checkbox]:checked ~ span {
            color: var(--color-blue)
        }

            .inputSet label input[type=checkbox]:checked ~ span::before {
                z-index: 1;
                font-family: "FontAwesome";
                content: "";
                display: block;
                color: var(--color-blue);
                position: absolute;
                left: 2px;
                top: 0px
            }

.inputSet.theme2 label input[type=checkbox]:checked ~ span {
    color: inherit
}

    .inputSet.theme2 label input[type=checkbox]:checked ~ span::before {
        color: var(--color-blue)
    }

    .inputSet.theme2 label input[type=checkbox]:checked ~ span::after {
        border: 1px solid var(--color-blue)
    }

.inputSet label input[type=radio] ~ span::after {
    border-radius: 100%;
    border: 1px solid #585c63;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    position: absolute;
    top: 0
}


.inputSet label input[type=radio]:checked ~ span::after {
    border: 2px solid var(--color-blue);
}

.inputSet label input[type=radio]:checked ~ span::before {
    border-radius: 100%;
    background: var(--color-blue);
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    left: 6px;
    position: absolute;
    top: 6px
}

.page__title {
    font-size: 35px;
    margin-bottom: 26px;
    position: relative;
    font-weight: 700;
}

    .page__title small {
        display: block;
        font-size: 14px
    }

@media(max-width: 1023px) {
    .page__title {
        font-size: 25px
    }
}


.page__title strong {
    font-weight: 600;
    position: relative
}

.serviceBox {
    width: 100%;
    position: relative;
    padding-top: 100px;
}

    .serviceBox h5 {
        font-size: 21px;
        color: #fff;
        margin-bottom: 5px;
        font-weight: 600
    }

@media(max-width: 1023px) {
    .serviceBox h5 {
        font-size: 17px;
        margin-bottom: 2px
    }
}


.serviceBox p {
    font-size: 15px;
    margin-bottom: 0px
}




.serviceBox .icons {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0px auto
}


@media(max-width: 1023px) {
    .serviceBox .icon {
        width: 35px
    }
}


.serviceBox .detail {
    padding-top: 8px;
    text-align: center
}

.service_block a {
    text-decoration: none;
    color: #303030;
}

.service_block .detail.trust h3 {
    color: #303030;
}

.service_block .detail.trust img {
    width: 40%;
    padding-bottom: 5px;
}

.service_block .icons.happy img {
    width: 30%;
    padding-bottom: 10px;
}

.service_block .detail.travel h3 {
    color: #303030;
    font-weight: 700;
    font-size: 30px;
}

.service_block .detail.travel p {
    font-size: 18px;
    font-weight: 700;
}



.serviceBox .service_block {
    width: 33.3%;
    float: left;
    padding: 20px 50px;
}

    .serviceBox .service_block h3 {
        color: var(--color-blue);
        font-size: 18px;
        font-weight: 600;
    }

.aboutBox {
    width: 100%;
    padding: 50px 0;
    font-weight: 300;
    line-height: 27px
}

@media(max-width: 1023px) {
    .aboutBox {
        padding: 20px 0
    }
}


.aboutBox .content {
    padding: 0 30px
}

@media(max-width: 1199px) {
    .aboutBox .content {
        padding: 5px
    }
}

.aboutBox .content a {
    color: var(--color-blue) !important
}

.aboutBox h2 {
    font-size: 20px
}

.aboutBox p {
    font-size: 14px;
    font-weight: 300;
    line-height: 27px
}

@media(max-width: 1023px) {
    .aboutBox p {
        font-size: 15px
    }
}


.aboutBox .text {
    font-size: 16px;
    color: #202020
}

.aboutBox .list {
    list-style: none;
    font-weight: 300
}

    .aboutBox .list li {
        margin-bottom: 5px;
        padding-left: 20px;
        position: relative
    }

        .aboutBox .list li:before {
            position: absolute;
            left: 0px;
            top: 2px;
            content: "";
            color: var(--color-blue);
            font-family: bootstrap-icons !important
        }

.aboutBox a.read_more {
    cursor: pointer;
    margin-top: 5px;
    padding: 10px 15px;
    display: inline-block;
    font-size: 16px;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 45px
}

@media(max-width: 1023px) {
    .aboutBox a.read_more {
        margin-top: 10px
    }
}

.aboutBox a.read_more .bi-arrow-right {
    float: right
}

.aboutBox a.read_more:hover {
    text-decoration: none
}


a.des-morelink {
    color: #ff744a !important;
    text-decoration: none;
    margin: 0px 6px;
    font-weight: 600
}

.countryList {
    padding-top: 70px
}

    .countryList .cnslider {
        padding: 20px 0 50px 0;
        overflow: hidden;
        margin-right: -20px
    }


.countryList .items {
    width: calc(50% - 20px);
    margin-right: 20px;
    float: left
}


.countryList .items img {
    width: 100%
}

.countryList .items figure {
    position: relative;
    margin-bottom: 30px
}

    .countryList .items figure:before {
        content: "";
        width: 100%;
        height: 70%;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        border-radius: 14px
    }

    .countryList .items figure p {
        margin: 0px;
        display: inline-block;
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        position: absolute;
        left: 20px;
        bottom: 20px;
        color: #fff
    }

        .countryList .items figure p small {
            display: block;
            font-size: 13px
        }

.hotels_destination .fa-star {
    color: #ffc107;
    margin: 0 1px
}

.trustreviewBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 45px;
    position: absolute;
    right: 0px;
    bottom: 0px
}


.trustreviewBlock .stars {
    height: 35px;
    margin: 0px 10px
}

.trustreviewBlock .review-text {
    margin-top: -10px;
    line-height: 15px
}

.destinationBox {
    padding: 40px 0;
    width: 100%
}

@media(max-width: 1023px) {
    .destinationBox {
        padding: 20px 0
    }
}

.destinationBox .items {
    padding: 0 10px;
    cursor: pointer
}

    .destinationBox .items figure {
        margin-bottom: 10px;
        position: relative;
        overflow: hidden
    }

        .destinationBox .items figure img {
            width: 100%;
            transition: all .5s;
            border-radius: 5px
        }

        .destinationBox .items figure .deal {
            position: absolute;
            right: 12px;
            top: 12px;
            font-size: 11px;
            color: #303030;
            text-align: center;
            padding: 5px 11px;
            background: #fcf74b;
            border-radius: 100%;
            height: 50px;
            display: flex;
            align-items: center;
            font-weight: 600;
            width: 50px;
            line-height: 14px
        }

    .destinationBox .items .title {
        padding-right: 20px;
        margin: 0px;
        display: inline-block;
        font-size: 18px;
        color: #303030;
        line-height: 24px;
        font-weight: 500
    }

        .destinationBox .items .title span {
            display: inline-block;
            background: url(../../images//icons/long-arrow.svg) right 9px no-repeat;
            font-size: 13px;
            color: var(--color-blue);
            font-weight: 400;
            padding-right: 21px
        }

    .destinationBox .items:hover .title {
        color: var(--color-blue)
    }

    .destinationBox .items:hover img {
        transform: scale(1.2)
    }

.destinationBox .slick-prev,
.destinationBox .slick-next {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    border: 1px solid #484848
}

    .destinationBox .slick-prev:before,
    .destinationBox .slick-next:before {
        font-family: "FontAwesome";
        font-size: 28px;
        content: "";
        color: #303030
    }

    .destinationBox .slick-prev:before {
        content: ""
    }

.destinationBox .slick-prev {
    left: -50px
}

@media(max-width: 1199px) {
    .destinationBox .slick-prev {
        left: 0px;
        z-index: 1;
        background: #fff
    }
}

.destinationBox .slick-next {
    right: -50px
}

@media(max-width: 1199px) {
    .destinationBox .slick-next {
        right: 0px;
        z-index: 1;
        background: #fff
    }
}

.destinationBox .slick-prev:hover,
.destinationBox .slick-next:hover {
    background: var(--color-blue);
    border-color: var(--color-blue)
}

    .destinationBox .slick-prev:hover:before,
    .destinationBox .slick-next:hover:before {
        color: #fff
    }

.destinationBox .slick-prev.slick-disabled:hover,
.destinationBox .slick-next.slick-disabled:hover {
    background: #fff;
    border: 1px solid #484848
}

    .destinationBox .slick-prev.slick-disabled:hover:before,
    .destinationBox .slick-next.slick-disabled:hover:before {
        color: #303030
    }

.destinationBox.border-b {
    border-bottom: 1px dashed #e8e9f1
}

.destinationBox .slick-list {
    margin: 0 -8px
}



.slick-dots {
    bottom: 6px
}

    .slick-dots li button {
        border: 2px solid #ccc;
        width: 8px;
        height: 8px;
        border-radius: 100%
    }

    .slick-dots li.slick-active button {
        border: 2px solid var(--color-blue);
        background: var(--color-blue)
    }

.dealCntr {
    padding: 20px 0 50px 0;
    width: 100%;
    background: url(/images/deal-bg.png) no-repeat center top;
    background-color: #f2f6ff;
}

    .dealCntr h3 {
        font-size: 26px;
        font-weight: 300
    }

    .dealCntr .holder {
        margin-right: -30px
    }

@media(max-width: 1023px) {
    .dealCntr .holder {
        margin-right: -15px
    }
}



.dealCntr .deal__block {
    width: calc(50% - 30px);
    float: left;
    margin-right: 30px
}

@media(max-width: 1023px) {
    .dealCntr .deal__block {
        width: calc(50% - 15px);
        margin-right: 15px
    }
}


.dealCntr ul.deals {
    list-style: none;
    padding: 0px
}

    .dealCntr ul.deals li {
        margin-bottom: 15px;
        padding: 13px;
        border-radius: 10px;
        background: #fff;
        border-left: 3px solid var(--color-blue);
        border-right: 3px solid var(--color-blue);
        font-size: 14px;
        color: #898d92;
        transition: all .2s;
        position: relative
    }

@media(max-width: 479px) {
    .dealCntr ul.deals li {
        padding: 10px;
        font-size: 12px
    }
}

.dealCntr ul.deals li a {
    color: #303030;
    text-decoration: none;
    display: block
}

    .dealCntr ul.deals li a:hover {
        text-decoration: none
    }

.dealCntr ul.deals li .column {
    padding-left: 15px;
    width: 33.3%;
    float: left;
    border-left: 1px solid #ccc
}

    .dealCntr ul.deals li .column.first-child,
    .dealCntr ul.deals li .column:first-child {
        padding-left: 0px;
        border-left: none
    }

@media(max-width: 1023px) {
    .dealCntr ul.deals li .column.first-child,
    .dealCntr ul.deals li .column:first-child {
        width: 45%
    }
}

@media(max-width: 1023px) {
    .dealCntr ul.deals li .column.column-2 {
        width: 55%
    }
}

@media(max-width: 1023px) {
    .dealCntr ul.deals li .column.column-3 {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ccc;
        padding-left: 0px;
        margin-top: 11px;
        padding-top: 7px;
        position: relative;
        display: flex;
        align-items: center
    }
}

.dealCntr ul.deals li .airline__logo {
    margin-top: 7px;
    float: left;
    width: 42px;
    outline: 3px solid #fff;
    outline-offset: -2px
}

.dealCntr ul.deals li .airline__name {
    padding: 9px 0px 0px 10px;
    line-height: 20px;
    vertical-align: middle;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 140px;
}

.dealCntr ul.deals li .city__code {
    color: #333333;
    font-size: 22px;
    font-weight: 700;
    line-height: 29px
}

@media(max-width: 1199px) {
    .dealCntr ul.deals li .city__code {
        font-size: 19px
    }
}


.dealCntr ul.deals li .flight__icon {
    margin: 0px 7px
}

.dealCntr ul.deals li .small__text {
    font-size: 12px
}

@media(max-width: 1023px) {
    .dealCntr ul.deals li .small__text {
        width: 62px;
        display: block
    }
}


.dealCntr ul.deals li .deal__price {
    margin: 0px;
    font-size: 23px;
    color: var(--color-blue);
    font-weight: 700;
    line-height: 29px
}

@media(max-width: 1199px) {
    .dealCntr ul.deals li .deal__price {
        font-size: 22px
    }
}


.dealCntr ul.deals li .right__arrow {
    position: absolute;
    right: 20px;
    top: 50%
}

@media(max-width: 1023px) {
    .dealCntr ul.deals li .right__arrow {
        margin-left: 10px;
        right: 10px
    }
}

.dealCntr ul.deals li .deal_book {
    cursor: pointer;
    border: none;
    padding: 7px 17px;
    border-radius: 3px;
    margin: 7px auto;
    display: inline-block
}

.dealCntr .deal__tnc {
    font-size: 13px;
    margin: 0px;
    padding-top: 5px;
    line-height: 22px;
    color: #333333;
}


    .dealCntr .deal__tnc span {
        color: var(--color-blue);
        font-weight: 500
    }

    .dealCntr .deal__tnc a {
        color: var(--color-blue);
        text-decoration: underline
    }

        .dealCntr .deal__tnc a:hover {
            text-decoration: none
        }

.dealCntr .mobile__deal_tab {
    display: none;
    list-style: none;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    margin-bottom: 26px
}


.dealCntr .mobile__deal_tab li {
    font-size: 16px;
    padding: 8px 0px;
    margin-right: 35px;
    cursor: pointer;
    float: left
}

    .dealCntr .mobile__deal_tab li a {
        color: #474747;
        text-decoration: none
    }

    .dealCntr .mobile__deal_tab li.active {
        border-bottom: 1px solid var(--color-blue)
    }

.reviewsCntr {
    padding: 40px 0
}

.trustpilotBox {
    width: calc(100% - 550px);
    float: left;
    position: relative
}

@media(max-width: 1023px) {
    .trustpilotBox {
        width: 100%
    }
}

.trustpilotBox .head {
    padding: 25px 0;
    display: flex
}

    .trustpilotBox .head img {
        width: 100px;
        margin-right: 10px
    }

.trustpilotBox .reviews {
    margin-right: -20px
}

.trustpilotBox .block {
    width: 50%;
    padding-right: 20px;
    float: left
}


.trustpilotBox .block .items {
    padding: 20px 20px 0 20px;
    box-shadow: 0 3px 6px #0000000A
}

.trustpilotBox .small_tp {
    height: 18px
}

.trustpilotBox .small_logo {
    height: 24px
}

.trustpilotBox p {
    padding: 17px 0 10px 0;
    min-height: 100px;
    font-size: 14px;
    line-height: 23px
}

.trustpilotBox .name {
    padding-bottom: 20px;
    font-size: 11px;
    color: #4040408C
}

.trustpilotBox .reviewBottom {
    padding: 10px 0;
    border-top: 1px solid #f4f4f4;
    font-size: 11px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.trustpilotBox .slick-list.draggable {
    padding: 0 70px 30px 0 !important
}

.trustpilotBox .slick-prev {
    width: auto;
    height: auto;
    left: inherit;
    top: 36px;
    right: 45px
}

    .trustpilotBox .slick-prev:before {
        font-size: 35px;
        content: "";
        color: #304478;
        font-family: bootstrap-icons
    }

.trustpilotBox .slick-next {
    width: auto;
    height: auto;
    top: 36px;
    right: 0px
}

    .trustpilotBox .slick-next:before {
        font-size: 35px;
        content: "";
        color: #304478;
        font-family: bootstrap-icons
    }

@media(max-width: 1023px) {
    .greviewBox {
        width: 100%;
        clear: both;
        padding-top: 15px
    }
}

.hoteldealCntr {
    padding: 20px 0 70px 0
}

    .hoteldealCntr .deal_image {
        width: 100%
    }

    .hoteldealCntr .deal-block {
        border: 1px solid #ccc;
        padding: 0 20px
    }

        .hoteldealCntr .deal-block ul {
            padding: 0px
        }

            .hoteldealCntr .deal-block ul li {
                padding: 11px 0px;
                overflow: hidden;
                border-bottom: 1px solid #e4e4e4
            }

                .hoteldealCntr .deal-block ul li:last-child {
                    border: none
                }

        .hoteldealCntr .deal-block h4 {
            font-size: 16px;
            margin: 0;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden
        }

        .hoteldealCntr .deal-block .address {
            padding: 5px 0;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden
        }

        .hoteldealCntr .deal-block .tripadvisor_div {
            white-space: nowrap
        }

            .hoteldealCntr .deal-block .tripadvisor_div .advisor-image {
                background: url(../../images/trust/ratingReview.png) 0 0 no-repeat;
                padding-left: 38px;
                height: 21px
            }

            .hoteldealCntr .deal-block .tripadvisor_div .advisorCircle {
                background: url(../../images/trust/trip_rating.png) 0 -15px repeat-x;
                height: 16px;
                width: 80px;
                display: inline-block;
                cursor: pointer;
                position: relative;
                top: 3px;
                overflow: hidden
            }

                .hoteldealCntr .deal-block .tripadvisor_div .advisorCircle span {
                    position: absolute;
                    left: 0;
                    top: 0;
                    background: url(../../images/trust/trip_rating.png) 0 0 repeat-x;
                    display: block;
                    height: 16px
                }

            .hoteldealCntr .deal-block .tripadvisor_div .trip-rating {
                border: 1px solid #eaeaea;
                padding: 2px 5px;
                color: #00a680
            }

        .hoteldealCntr .deal-block .starting {
            font-size: 12px
        }

        .hoteldealCntr .deal-block .hotel-price {
            font-size: 20px;
            color: var(--color-blue);
            font-weight: 600
        }

        .hoteldealCntr .deal-block .discount {
            padding: 2px;
            display: inline-block;
            font-size: 14px;
            color: #005dba
        }

.hotel_bottom_info {
    display: flex;
    align-items: self-start;
    justify-content: space-between
}

    .hotel_bottom_info .price {
        font-size: 18px;
        color: #404040;
        font-weight: 600;
        text-align: right
    }

        .hotel_bottom_info .price small {
            font-size: 12px;
            display: block;
            font-weight: 300
        }

    .hotel_bottom_info .rating {
        margin-bottom: 5px;
        width: 93px;
        height: 15px;
        position: relative;
        background: url(../../images/gray-star.svg) left top no-repeat
    }

        .hotel_bottom_info .rating span {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0px;
            top: 0px;
            background: url(../../images/yellow-star.png) left top no-repeat
        }

.subscribeBox {
    background: #ffffff;
    padding: 0;
    color: #333333;
}


    .subscribeBox .subscribe {
        display: flex
    }


    .subscribeBox p {
        font-size: 18px;
        font-weight: 500;
        margin: 0px
    }

@media(max-width: 1023px) {
    .subscribeBox p {
        font-size: 15px
    }
}


.subscribeBox .button {
    width: 225px;
    border: none;
    padding: 14px;
    font-size: 18px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media(max-width: 1023px) {
    .subscribeBox .button {
        width: 130px
    }
}


.subscribeBox .input {
    width: calc(100% - 240px);
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


.modifySearchBox {
    padding: 25px 0;
    background: #dfdfdf;
    position: relative;
}

@media(max-width: 1023px) {
    .modifySearchBox {
        display: none
    }
}

.modifySearchBox .input__block {
    position: relative
}

.modifySearchBox .searchBox {
    padding: 0px
}

.modifySearchBox .inputField {
    padding: 14px 20px 13px 36px;
    font-size: 14px;
    font-weight: 400;
    color: #787878;
    border: 1px solid #ccc;
    outline: none;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fff
}

    .modifySearchBox .inputField.location {
        padding-left: 35px
    }

@media(max-width: 1199px) {
    .modifySearchBox .inputField {
        padding: 12px 0 10px 40px;
        font-size: 14px;
        font-weight: 600
    }
}

.modifySearchBox .error .inputField {
    border-color: red
}

.modifySearchBox .error .icons {
    color: red
}


.modifySearchBox .icons {
    position: absolute;
    left: 10px;
    top: 15px;
    display: block;
    pointer-events: none;
    font-size: 20px;
    color: var(--color-blue);
    line-height:0.6;
}

    .modifySearchBox .icons.person-icon {
        font-size: 25px;
        top: 5px
    }

.modifySearchBox .dates {
    background: #fff;
    border-radius: 5px;
    width: 100%;
    float: left;
    padding-right: 10px;
    border: 1px solid #ccc
}

    .modifySearchBox .dates .inputField {
        border: none;
        white-space: normal;
        text-overflow: initial;
        padding-right: 0px
    }

    .modifySearchBox .dates .inputReturn {
        border-left:1px solid #cccccc;
    }

        .modifySearchBox .no-padding {
            padding: 0
        }

.modifySearchBox .pad3px {
    padding: 0 4px
}

.modifySearchBox .pl-8 {
    padding-left: 8px
}

.modifySearchBox .row_margin {
    margin: 0px -4px
}

.modifySearchBox .row_margin2 {
    margin: 0 -6px
}

.modifySearchBox .col-50 {
    width: 50%;
    float: left
}

    .modifySearchBox .col-50.return_date {
        margin-left: -7px
    }

    .modifySearchBox .col-50.roundtrip {
        visibility: hidden
    }

.modifySearchBox .searchButton {
    width: 100%;
    background: var(--color-blue);
    border: none;
    font-size: 15px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 14px;
    outline: none;
    font-weight: 600
}

.modifySearchBox .tripType {
    border-bottom: none
}

.modifySearchBox .traveler_main {
    position: relative
}

    .modifySearchBox .traveler_main .travllerBox {
        display: none;
        position: absolute;
        right: 0px;
        left: inherit;
        z-index: 3;
        width: 575px;
        top: 0;
    }

.modifySearchBox .switch {
    top: 0px
}

.search__infoBox {
    display: none;
    padding: 5px 10px;
    background: #ecf0ff;
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    color: #333
}

@media(max-width: 1023px) {
    .search__infoBox {
        display: block
    }
}

.search__infoBox .column {
    width: 50px;
    float: left;
    font-weight: 700;
    font-size: 16px
}

.search__infoBox .itenery-date {
    font-size: 13px
}

.search__infoBox i {
    position: relative;
    top: 7px
}

.modify_search_mobile {
    background: var(--color-blue);
    color: #fff;
    width: 70px;
    text-align: center;
    cursor: pointer;
    height: 56px;
    line-height: 55px;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: -6px;
    padding-top: 5px;
    line-height: 44px
}

.relative {
    position: relative
}

.modifySearchBox .angucomplete-holder span.label_name {
    display: none !important
}

.modifySearchBox .angucomplete-dropdown {
    left: 0px;
    width: 650px;
    margin-top: 15px
}

.modifySearchBox .inputField.input_clear.x {
    background-position: right 14px
}

td.highlight &gt; a {
    background: #0000ff29 !important
}

.mobile-itenery {
    transition: all .5s ease 0s;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 4px 5px #0000000f;
    background: #fff
}

    .mobile-itenery.fixed {
        position: fixed;
        top: 0
    }

.filterBox {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0px 4px 5px #0000000A;
    border: 1px solid #e8e8e8;
    background: #fff
}

@media(max-width: 1023px) {
    .filterBox {
        border: none;
        box-shadow: none
    }
}

.filterBox .inner {
    padding: 10px 15px
}

@media(max-width: 1199px) {
    .filterBox .inner {
        padding: 10px
    }
}

.filterBox .head {
    padding-bottom: 10px;
    font-size: 15px;
    color: var(--color-black);
    font-weight: 700;
    border-bottom: 1px solid #ccc
}

.filterBox .subheading {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight:500;
}

.filterBox .filter__list {
    list-style: none;
    margin-bottom: 0px;
    padding: 0px
}

    .filterBox .filter__list li {
        display: flex;
        justify-content: space-between;
        color: #5e5e5e;
        padding-bottom: 7px
    }

        .filterBox .filter__list li .multiairline {
            height: 15px;
            top: -5px;
            position: relative;
            margin-left: 5px
        }

    .filterBox .filter__list .filter__list label {
        font-weight: normal
    }

.filterBox .range_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.filterBox .return_time {
    width: 100%;
    float: left;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ccc
}

.filterBox .text-overflow {
    display: inline-block;
    max-width: 150px
}

.filterBox .inputSet label {
    padding-left: 23px
}

.mobile__filter {
    display: none;
    margin-bottom: 14px;
    padding: 10px 7px 0px 48px;
    position: relative
}

@media(max-width: 1023px) {
    .mobile__filter {
        display: block;
        background: #fff
    }
}

.mobile__filter ul {
    list-style: none;
    white-space: nowrap;
    display: flex;
    margin: 0px;
    overflow-y: hidden;
    overflow-x: scroll
}

    .mobile__filter ul li {
        float: left;
        padding: 6px 14px;
        margin-right: 10px;
        border-radius: 30px;
        border: 1px solid #d5dcf3;
        box-shadow: 0 3px 6px #0000000A;
        color: var(--color-blue);
        font-weight: 500;
        background: #f8f9ff
    }

        .mobile__filter ul li .mobile__filter-clear {
            display: none
        }

        .mobile__filter ul li.active {
            background: var(--color-blue);
            color: #fff;
            border-color: var(--color-blue)
        }

            .mobile__filter ul li.active a {
                margin: 0px 0px 0 4px;
                color: #fff;
                display: inline-block;
                position: relative;
                top: -2px
            }

.mobile__filter .filter_link {
    font-size: 33px;
    position: absolute;
    left: 7px;
    top: -4px;
    color: var(--color-blue)
}


.mobile_filter_tab {
    background: var(--color-blue);
    overflow: hidden;
    color: #fff;
    position: relative;
    display: none
}

@media(max-width: 1023px) {
    .mobile_filter_tab {
        display: block
    }
}

.mobile_filter_tab ul {
    list-style: none;
    padding: 0px;
    display: flex;
    background: #f2f5ff;
    justify-content: space-between;
    margin: 0px
}

    .mobile_filter_tab ul li a {
        padding: 10px 20px;
        font-weight: 600;
        border-bottom: 2px solid #f2f5ff;
        display: block;
        color: #333
    }

        .mobile_filter_tab ul li a.active,
        .mobile_filter_tab ul li a:focus {
            background: #fff;
            color: var(--color-blue);
            border-bottom: 2px solid var(--color-blue);
            text-decoration: none
        }

.mobile_filter_tab h4 {
    font-size: 16px;
    padding: 10px;
    margin: 0px
}

.mobile_filter_tab .close_filter {
    position: absolute;
    right: 0px;
    top: -4px;
    padding: 4px 10px;
    font-size: 20px;
    color: #fff
}

.filterBox.tab-pane {
    display: block;
    opacity: 1
}

@media(max-width: 1023px) {
    .filterBox.tab-pane {
        opacity: 0;
        height: 0px;
        padding: 0px;
        margin: 0px
    }
}

@media(max-width: 1023px) {
    .filterBox.tab-pane.active {
        opacity: 1;
        height: auto;
        margin: inherit
    }
}

.filter_action_button {
    width: 100%;
    padding: 15px;
    position: fixed;
    left: -200%;
    bottom: 0px;
    border-top: 1px solid #ccc;
    background: #fff;
    transition: all .5s
}

    .filter_action_button a {
        padding: 10px;
        border: 1px solid #adb4d4;
        width: 45%;
        display: block;
        text-align: center;
        font-size: 18px;
        color: var(--color-blue);
        float: left;
        margin: 0 8px;
        border-radius: 5px
    }

@media(max-width: 479px) {
    .filter_action_button a {
        width: 43%;
        padding: 8px 10px
    }
}

.filter_action_button a.active {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff
}

.ui-slider-horizontal {
    height: 3px;
    background: #bdbdbd;
    border: none;
    z-index: 0;
    margin: 17px 16px 10px 10px;
    border: none !important;
    padding: 0px
}

    .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%;
        background: var(--color-blue)
    }

    .ui-slider-horizontal .ui-slider-handle {
        top: -0.6em;
        margin-left: -0.6em;
        background: #fff;
        border: 3px solid var(--color-blue);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        cursor: pointer;
    }

.filterBox ul.time_filter {
    list-style: none;
    overflow: hidden;
    padding: 0px;
}

    .filterBox ul.time_filter li {
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        font-size: 12px;
        border: 1px solid #ced0d4;
        border-radius: 10px;
        padding: 5px 9px;
        cursor: pointer;
        align-items: center;
    }

        .filterBox ul.time_filter li .icons {
            width: 34px;
            height: 34px;
            display: block;
            margin: 0;
            margin-right: 10px;
        }

            .filterBox ul.time_filter li .icons.icon_earlymorning {
                background: url(../../images//icons/early_morning.svg) center center no-repeat
            }

            .filterBox ul.time_filter li .icons.icon_morning {
                background: url(../../images//icons/morning.svg) center center no-repeat
            }

            .filterBox ul.time_filter li .icons.icon_afternoon {
                background: url(../../images//icons/afternoon.svg) center center no-repeat
            }

            .filterBox ul.time_filter li .icons.icon_evening {
                background: url(../../images//icons/evening.svg) center center no-repeat
            }

        .filterBox ul.time_filter li.selected,
        .filterBox ul.time_filter li:hover {
            background: var(--color-blue);
            border-color: var(--color-blue);
            color: #fff
        }

            .filterBox ul.time_filter li.selected .icon_earlymorning,
            .filterBox ul.time_filter li:hover .icon_earlymorning {
                background: url(../../images//icons/early_morning-hover.svg) center center no-repeat
            }

            .filterBox ul.time_filter li.selected .icon_morning,
            .filterBox ul.time_filter li:hover .icon_morning {
                background: url(../../images//icons/morning-hover.svg) center center no-repeat
            }

            .filterBox ul.time_filter li.selected .icon_afternoon,
            .filterBox ul.time_filter li:hover .icon_afternoon {
                background: url(../../images//icons/afternoon-hover.svg) center center no-repeat
            }

            .filterBox ul.time_filter li.selected .icon_evening,
            .filterBox ul.time_filter li:hover .icon_evening {
                background: url(../../images//icons/evening-hover.svg) center center no-repeat
            }

        .filterBox ul.time_filter li strong {
            display: block
        }

        .filterBox ul.time_filter li .time {
            font-weight: 500;
            padding-left: 10px;
        }

.resultsBox {
    margin-bottom: 20px;
    padding: 5px 20px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 4px 5px #0000000A;
    border: 1px solid #e8e8e8;
    background: #fff
}

@media(max-width: 1199px) {
    .resultsBox {
        padding: 5px 12px
    }
}


.resultsBox .flight__row {
    padding: 11px 0px 18px 0;
    color: #6b6b6b
}


.resultsBox .flight__row .head {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: 600
}


.resultsBox .flight__row .head .date {
    font-weight: 400;
    font-size: 14px
}


.resultsBox .flight__row .airline_logo {
    float: left;
    width: 42px;
    outline: 3px solid #fff;
    outline-offset: -2px
}


.resultsBox .flight__row .flights_info {
    padding-left: 10px;
    width: 204px;
    float: left
}

@media(max-width: 1199px) {
    .resultsBox .flight__row .flights_info {
        padding-left: 7px;
        width: 142px
    }
}

.resultsBox .flight__row .flights_info .airline_name {
    color: #484848;
    font-weight: 500
}

.resultsBox .flight__row .flights_info .flights_number {
    color: #6b6b6b
}

@media(max-width: 1199px) {
    .resultsBox .flight__row .flights_info .flights_number {
        font-size: 13px;
        white-space: nowrap
    }
}

.resultsBox .flight__row .leg-details .city {
    width: 70px;
    float: left
}

.resultsBox .flight__row .leg-details .time {
    font-weight: 700;
    color: #484848
}

.resultsBox .flight__row .leg-details .connnecting-block {
    padding: 13px 10px 0 24px;
    float: left;
    width: calc(100% - 150px);
    position: relative;
    margin-left: -1px;
    margin-right: 7px
}

.connnecting-block:hover .tooltipBox {
    display: block;
}

.connnecting-block .tooltipBox {
    width: max-content;
    left: 50%;
    top: 32px;
    text-align: left;
    transform: translateX(-50%);
}

.resultsBox .flight__row .leg-details .leg-points {
    height: 2px;
    position: relative;
    text-align: center;
    border-top: 2px solid gray;
}

    .resultsBox .flight__row .leg-details .leg-points:before {
        content: "";
        width: 17px;
        height: 22px;
        display: block;
        position: absolute;
        left: -20px;
        top: -12px;
        background: #fff url(../../images/icons/location.svg) center center no-repeat;
    }

    .resultsBox .flight__row .leg-details .leg-points:after {
        content: "";
        position: absolute;
        right: -5px;
        top: -10px;
        height: 18px;
        background: #fff url(../../images/icons/location.svg) right center no-repeat;
        width: 17px;
    }

    .resultsBox .flight__row .leg-details .leg-points .stops {
        font-size: 12px;
        text-align: center;
        width: 80px;
        display: inline-block;
        margin-top: -6px;
        line-height: 1.3;
        color: #5c5c5c;
        position: relative;
    }

.noneStop {
    font-size: 12px;
    text-align: center;
    width: 80px;
    display: inline-block;
    margin-top: -6px;
    line-height: 1.3;
    color: #5c5c5c;
    position: relative;
}



.resultsBox .flight__row .leg-details .leg-points .stops:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid gray;
    border-radius: 100%;
    background: #fff;
    position: relative;
    top: -2px
}

.resultsBox .flight__row .leg-details .leg-points .stops b {
    position: relative;
    top: -5px
}

.resultsBox .flight__row .leg-details .leg-points .layovertime {
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0px
}

.noneStop .layovertime {
    top: -25px !important;
}

.resultsBox .flight__row.return_flights {
    border-top: 1px solid #ccc;
    margin-top: 5px
}

.resultsBox .top_row_mobile {
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px
}

    .resultsBox .top_row_mobile .mobile_alternate {
        float: left;
        margin-left: 0px
    }

.resultsBox .price_list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    border-left: 1px solid #ccc;
}

    .resultsBox .price_list .price {
        font-size: 25px;
        color: var(--color-black);
        font-weight: bold;
        position: relative;
        min-height: 35px;
        display: block;
        cursor: pointer
    }


        .resultsBox .price_list .price sup {
            font-size: .75rem
        }

    .resultsBox .price_list .per_person {
        font-size: 14px
    }

    .resultsBox .price_list .select__btn {
        background: var(--color-blue);
        padding: 7px 35px 10px 35px;
        color: #fff;
        font-size: 16px;
        border-radius: 5px;
        margin-top: 13px;
        text-decoration: none
    }

        .resultsBox .price_list .select__btn i {
            position: relative;
            top: 0px
        }

        .resultsBox .price_list .select__btn:hover {
            background: var(--color-blue);
            text-decoration: none;
        }

    .resultsBox .price_list .seat_left {
        font-weight: 400;
    }


.resultsBox .results_bottom {
    padding: 6px 0;
    border-top: 1px solid #ccc;
}

.bagguage_fees {
    color: #6b6b6b;
    position: relative;
    display: inline-block;
}

    .bagguage_fees ul {
        display: flex;
        list-style: none;
    }

        .bagguage_fees ul li {
            margin-right: 15px;
            position: relative;
        }

            .bagguage_fees ul li.check {
                justify-content: flex-end;
                font-family: "bootstrap-icons";
                color: #3ab54a;
            }

                .bagguage_fees ul li.check:before {
                    content: "";
                    position: absolute;
                    top: -1px;
                    left: 10px;
                    background: url(/Images/baggage-included.svg) no-repeat;
                    height: 15px;
                    width: 15px;
                    background-size: cover;
                }

            .bagguage_fees ul li.noCheck:before {
                content: "";
                position: absolute;
                top: -1px;
                left: 10px;
                background: url(/Images/close-icon.svg) no-repeat;
                height: 15px;
                width: 15px;
                background-size: cover;
            }

    .bagguage_fees:hover .tooltipBox {
        display: block;
    }

    .bagguage_fees .tooltipBox {
        width: 330px;
        font-weight: 600;
        left: -85%;
    }

        .bagguage_fees .tooltipBox .baggesInfo {
            flex-direction: column;
            padding-left: 28px;
        }

            .bagguage_fees .tooltipBox .baggesInfo li {
                width: 100%;
                margin: 0;
                padding: 3px 0;
                text-transform: lowercase;
            }

}

.bagguage_fees .tooltipBox:after, .bagguage_fees .tooltipBox:before {
    left: 18%;
}

.bagguage_fees .tooltipBox .row {
    padding-bottom: 10px;
}

    .bagguage_fees .tooltipBox .row:last-child {
        padding-bottom: 5px;
    }

.bagguage_fees .tooltipBox .leftSec {
    color: #303030;
    font-size: 13px;
    padding-left: 40px;
    position: relative;
}

.bagguage_fees .tooltipBox .bag {
    width: 20px;
    position: absolute;
    left: 10px;
    top: 0;
}

    .bagguage_fees .tooltipBox .bag.last {
        height: 22px;
    }

.bagguage_fees .tooltipBox p {
    margin: 0;
    font-weight: normal;
    color: #919192;
    font-size: 12px;
    line-height: 1.3;
}

.bagguage_fees .tooltipBox .included {
    color: var(--color-blue);
}

.resultsBox .results_bottom .flight_detail_btn {
    color: #333333;
    text-decoration: none;
    float: right;
    font-weight: 600;
}

    .resultsBox .results_bottom .flight_detail_btn i {
        position: relative;
        top: -2px
    }

    .resultsBox .results_bottom .flight_detail_btn:hover {
        color: var(--color-blue)
    }

.save_price_msg {
    background: #00c29b;
    padding: 6px 20px;
    color: #fff;
    display: inline-block;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    font-weight: 700;
}


.mobile_class_type {
    font-size: 12px;
    font-weight: 400;
    float: right;
    margin: 2px;
    color: #939393;
}

.repeat_results {
    position: relative
}

.mobile_Resultsclick {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    width: 110%;
    height: 100%;
    margin: 0px -20px
}

#scrollBottomtop {
    background: var(--color-blue);
    position: fixed;
    right: 20px;
    bottom: 70px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 30px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: none;
    text-align: center;
    z-index: 1
}

    #scrollBottomtop:focus {
        border: none
    }

#airlines.filterBox .text-overflow {
    width: 145px
}

.cursor {
    cursor: pointer
}

.text-red {
    color: #f14f56
}

.text-link-red {
    color: var(--color-blue);
    text-decoration: underline !important
}

.overflow {
    overflow: hidden
}


.page-head {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 500;
    padding: 10px 15px;
    background: var(--color-black);
    margin: 0 -15px 10px -15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.sub-head {
    font-size: 18px;
}


.flightDetailWrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, .35);
    overflow-x: hidden;
    overflow-y: hidden;
    width: 0px
}

    .flightDetailWrapper .flightDetail_popup {
        width: 580px;
        float: right;
        background: #fff;
        position: relative;
        height: 100vh
    }


        .flightDetailWrapper .flightDetail_popup .head {
            padding: 15px;
            position: relative;
            background: #f1f6ff;
        }


            .flightDetailWrapper .flightDetail_popup .head .page__title {
                margin: 0px;
                font-size: 16px;
            }

                .flightDetailWrapper .flightDetail_popup .head .page__title:after {
                    bottom: -9px;
                    display: none
                }

        .flightDetailWrapper .flightDetail_popup .close_detail {
            font-size: 20px;
            color: var(--color-black);
            padding-left: 25px;
            position: absolute;
            right: 30px;
            top: 10px
        }


            .flightDetailWrapper .flightDetail_popup .close_detail:hover {
                text-decoration: none;
                color: var(--color-blue)
            }

        .flightDetailWrapper .flightDetail_popup .page__title {
            font-size: 18px
        }

            .flightDetailWrapper .flightDetail_popup .page__title strong {
                display: inline-block
            }

            .flightDetailWrapper .flightDetail_popup .page__title:after {
                bottom: -9px
            }

        /*.flightDetailWrapper .flightDetail_popup .bagguage_fees {
    float: left;
    margin-top: 10px;
    font-size: 13px;
    padding-left: 22px;
    display: inline-block;
    color: #6b6b6b;
    text-decoration: none;
    background: #fff url(../../images/icons/baggage.svg) left center no-repeat
}

    .flightDetailWrapper .flightDetail_popup .bagguage_fees:hover {
        color: var(--color-blue)
    }*/

        .flightDetailWrapper .flightDetail_popup .detail_footer {
            position: fixed;
            right: 200%;
            width: 580px;
            background: #fff;
            bottom: 0px;
            box-shadow: 0 0 6px #00000029
        }


        .flightDetailWrapper .flightDetail_popup .bottom {
            padding: 15px 30px 15px 30px;
            background: var(--color-black);
            color: var(--color-white);
            width:100%;
            position:absolute;
            bottom:0;
        }


        .flightDetailWrapper .flightDetail_popup .price_list {
            display: flex;
            justify-content: flex-end;
            align-items: center
        }

            .flightDetailWrapper .flightDetail_popup .price_list .price {
                font-size: 22px;
                font-weight: bold;
                position: relative;
                line-height: 21px;
                display: block;
                margin-right: 50px;
                text-align: center
            }



                .flightDetailWrapper .flightDetail_popup .price_list .price sup {
                    font-size: .75rem
                }

            .flightDetailWrapper .flightDetail_popup .price_list .per_person {
                font-size: 11px;
                display: block;
                color: #9b9b9b;
                line-height: 13px
            }

            .flightDetailWrapper .flightDetail_popup .price_list .select__btn {
                background: var(--color-blue);
                padding: 7px 25px 10px 35px;
                color: #fff;
                font-size: 16px;
                border-radius: 5px;
                text-decoration: none
            }



                .flightDetailWrapper .flightDetail_popup .price_list .select__btn i {
                    position: relative;
                    top: 0px
                }


        .flightDetailWrapper .flightDetail_popup .flight_left {
            float: left;
            display: flex;
            align-items: center;
            justify-content: flex-start
        }

            .flightDetailWrapper .flightDetail_popup .flight_left .citycode {
                padding: 0 12px;
                font-size: 11px;
            }

                .flightDetailWrapper .flightDetail_popup .flight_left .citycode strong {
                    display: block;
                    font-size: 18px;
                }

        .flightDetailWrapper .flightDetail_popup .flightDetail {
            padding: 15px;
            height: calc(100vh - 162px);
            overflow-y: auto;
            overflow-x: hidden
        }


        .flightDetailWrapper .flightDetail_popup .flighttab {
            list-style: none;
            width: 100%;
            float: left;
            margin-bottom: 30px;
            padding: 0px;
            border-bottom: 1px solid #dfdfdf
        }


            .flightDetailWrapper .flightDetail_popup .flighttab li {
                float: left;
                margin-right: 30px
            }



                .flightDetailWrapper .flightDetail_popup .flighttab li a {
                    font-size: 16px;
                    color: #484848;
                    text-decoration: none;
                    padding: 0 0px 7px 0;
                    display: block;
                    position: relative;
                    cursor: pointer
                }


                    .flightDetailWrapper .flightDetail_popup .flighttab li a:before {
                        content: "";
                        height: 2px;
                        position: absolute;
                        left: 0px;
                        bottom: -1px;
                        transition: all .5s;
                        width: 0px;
                        display: block;
                        background: var(--color-blue)
                    }


                    .flightDetailWrapper .flightDetail_popup .flighttab li a.active,
                    .flightDetailWrapper .flightDetail_popup .flighttab li a.active:before {
                        width: 100%;
                        color: var(--color-blue)
                    }

        .flightDetailWrapper .flightDetail_popup .airlines__details {
            font-size: 13px;
            line-height: 1.5em;
            color: #949494
        }


            .flightDetailWrapper .flightDetail_popup .airlines__details .air-name {
                font-size: 14px;
                color: #484848
            }

            .flightDetailWrapper .flightDetail_popup .airlines__details img {
                width: 32px;
                float: left;
                margin-right: 10px
            }

            .flightDetailWrapper .flightDetail_popup .airlines__details .detail {
                width: calc(100% - 45px);
                float: left
            }

        .flightDetailWrapper .flightDetail_popup .route__info {
            padding: 25px 0;
            font-size: 13px;
            position: relative
        }


            .flightDetailWrapper .flightDetail_popup .route__info .time {
                font-size: 14px;
                color: #484848;
                font-weight: 600;
                margin-top: 28px
            }


            .flightDetailWrapper .flightDetail_popup .route__info .date {
                position: relative
            }


            .flightDetailWrapper .flightDetail_popup .route__info .destination_fullname {
                position: relative;
                padding-top:5px;
            }

                .flightDetailWrapper .flightDetail_popup .route__info .destination_fullname .message_display {
                    top: inherit;
                    bottom: -25px;
                    position: static
                }

            .flightDetailWrapper .flightDetail_popup .route__info .connecting__bar {
                width: 60%;
                height: 2px;
                border-top: 2px dashed #dfdfdf;
                position: absolute;
                left: 0px;
                top: 72px
            }

                .flightDetailWrapper .flightDetail_popup .route__info .connecting__bar:after,
                .flightDetailWrapper .flightDetail_popup .route__info .connecting__bar:before {
                    content: "";
                    width: 10px;
                    height: 10px;
                    display: block;
                    border: 2px solid var(--color-blue);
                    position: absolute;
                    right: 0px;
                    top: -6px;
                    border-radius: 100%;
                    background: #fff
                }

                .flightDetailWrapper .flightDetail_popup .route__info .connecting__bar:before {
                    right: inherit;
                    left: 0px
                }

                .flightDetailWrapper .flightDetail_popup .route__info .connecting__bar .duretion_time {
                    position: absolute;
                    left: 50%;
                    margin-top: -30px;
                    text-align: center
                }

                    .flightDetailWrapper .flightDetail_popup .route__info .connecting__bar .duretion_time img {
                        background: #fff;
                        padding: 0 6px;
                        display: block
                    }

            .flightDetailWrapper .flightDetail_popup .route__info .TripTime {
                margin: 15px
            }

            .flightDetailWrapper .flightDetail_popup .route__info .message_display {
                position: absolute;
                left: 0px;
                top: -25px;
                margin: 0px
            }

        .flightDetailWrapper .flightDetail_popup .layover {
            padding: 8px 20px;
            font-size: 12px;
            color: #787878;
            background: #f3f3f3;
            text-align: center;
            margin-bottom: 20px;
            border-radius: 20px
        }

            .flightDetailWrapper .flightDetail_popup .layover .bi-stopwatch {
                position: relative;
                top: -2px;
                margin-right: 4px
            }

.flightDetail .layoverSec {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    margin-left:35px;
}



.information_msg {
    font-size: 11px;
    color: #9b9b9b;
    font-weight: 400
}

.highlight {
    color: var(--color-org);
    font-weight: 500
}

.message_display {
    border: 1px solid #00c29b;
    background: #00c29b;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 22px;
    font-size: 11px;
    margin: 0px 5px
}

.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.open-model {
    overflow: hidden
}

.matrixBox {
    margin-bottom: 20px
}


    .matrixBox .matrix__wrap {
        position: relative;
        display: inline-block;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 5px;
        box-shadow: 0px 4px 5px #0000000A;
        border: 1px solid #e8e8e8;
        background: #fff
    }

    .matrixBox .matrix__aside {
        position: relative;
        float: left;
        width: 14%;
        z-index: 1
    }


        .matrixBox .matrix__aside .matrix__box {
            padding-left: 10px;
            color: var(--color-blue);
            white-space: nowrap
        }

            .matrixBox .matrix__aside .matrix__box i {
                margin-left: 2px
            }

    .matrixBox .matrix__slider {
        position: relative;
        float: left;
        width: 86%
    }


        .matrixBox .matrix__slider .items {
            width: 200px;
            float: left
        }

        .matrixBox .matrix__slider .matrix__logo {
            width: 38px;
            margin-bottom: 5px;
            outline: 3px solid #fff;
            outline-offset: -2px
        }

        .matrixBox .matrix__slider .matrix__airline-name {
            line-height: 16px;
            margin-left: 10px;
            text-align: center;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

    .matrixBox .matrix__box-lg {
        border-right: 1px solid #ddd;
        font-size: 13px;
        height: 60px;
        position: relative;
        text-align: center;
        cursor: pointer;
        display: block;
        align-items: center;
        justify-content: center;
        padding: 8px
    }

        .matrixBox .matrix__box-lg .multiairline {
            position: absolute;
            right: 10px;
            top: 10px;
            height: 15px
        }

    .matrixBox .matrix__box {
        border-right: 1px solid #ddd;
        border-top: 1px solid #ddd;
        display: block;
        font-size: 13px;
        height: 45px;
        text-align: center;
        width: 100%;
        cursor: pointer;
        line-height: 26px;
        padding: 8px;
        font-weight: 500
    }

        .matrixBox .matrix__box-lg:hover,
        .matrixBox .matrix__box:hover {
            background: #ecf0ff
        }

        .matrixBox .matrix__box-lg.matrixdisabled:hover,
        .matrixBox .matrix__box.matrixdisabled:hover {
            background: transparent;
            cursor: default;
            font-weight: 400
        }

    .matrixBox .disclaimer {
        font-size: 12px
    }

    .matrixBox .slick-next,
    .matrixBox .slick-prev {
        right: 0px;
        top: -25px;
        background: #fff;
        width: 23px;
        height: 23px;
        border-radius: 100%;
        border: 1px solid var(--color-blue)
    }

    .matrixBox .slick-prev {
        left: inherit;
        right: 30px
    }

        .matrixBox .slick-prev:before,
        .matrixBox .slick-next:before {
            color: var(--color-blue);
            font-family: "FontAwesome";
            content: ""
        }

        .matrixBox .slick-prev:before {
            font-family: "FontAwesome";
            content: ""
        }

    .matrixBox .collapse.show {
        display: inline !important
    }

    .matrixBox .learn-more {
        color: var(--color-blue)
    }


.tooltip_block {
    position: relative;
    display: inline-block
}

    .tooltip_block:hover .custom_tooltip {
        display: block
    }

.tooltip-icon {
    position: relative;
    top: -2px
}

.custom_tooltip {
    width: 320px;
    display: none;
    position: absolute;
    top: 31px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 11px 13px;
    font-size: 12px;
    color: #444;
    border: 1px solid #e0e0e0;
    z-index: 1;
    box-shadow: 4px 4px 9px #00000029
}

    .custom_tooltip:before,
    .custom_tooltip:after {
        content: "";
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        top: -10px;
        left: 47%;
        border-bottom: 10px solid #ccc
    }

    .custom_tooltip:after {
        border-bottom: 11px solid #fff;
        z-index: 1
    }

    .custom_tooltip .tooltip_close {
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        font-size: 26px;
        line-height: 26px
    }

.popup_Box {
    background-color: rgba(0, 0, 0, .75);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto
}

    .popup_Box .center-block {
        width: 100%;
        height: 100%;
        z-index: 1001;
        display: table;
        table-layout: fixed
    }

    .popup_Box .outer {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
        height: 100%;
        padding: 40px 0
    }

        .popup_Box .outer.call_fullwindow {
            padding: 0px
        }

            .popup_Box .outer.call_fullwindow .close__popup {
                top: 4px;
                z-index: 1;
                right: 12px
            }

    .popup_Box .close__popup {
        width: 38px;
        text-align: center;
        background: #fff;
        display: inline-block;
        height: 33px;
        position: absolute;
        right: 0px;
        top: -31px;
        font-size: 18px;
        padding-top: 5px;
        color: var(--color-blue)
    }

.button {
    background: var(--color-blue);
    color: #fff
}

    .button:hover {
        background: #46a60a;
        color: #fff
    }

.session__expire {
    width: 420px;
    margin: 0px auto;
    background: #fff;
    padding: 36px;
    position: relative;
    border-radius: 5px
}

@media(max-width: 479px) {
    .session__expire {
        width: 95%;
        padding: 15px
    }
}

.session__expire .clock_tym {
    width: 60px;
    margin: 0px auto
}

    .session__expire .clock_tym img {
        width: 100%
    }

.session__expire h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 12px 0
}

.session__expire .call_us {
    overflow: hidden;
    border-top: 1px dotted #ccc;
    padding-top: 11px
}

    .session__expire .call_us .call_icon {
        width: 50px;
        margin-top: 11px
    }

.session__expire .left {
    width: calc(100% - 80px);
    float: left;
    padding-left: 15px;
    text-align: left;
    border-left: 1px solid #ccc;
    margin-left: 18px;
    color: #3b3b3b
}

    .session__expire .left a {
        font-size: 22px;
        color: var(--color-blue);
        font-weight: 700;
        display: inline-block
    }

.session__expire .timeStart {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 12px
}

    .session__expire .timeStart .seconds {
        font-size: 30px;
        color: var(--color-blue);
        font-weight: 700;
        line-height: 40px
    }

.session__expire .time_text {
    font-size: 14px;
    margin: 0px
}

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

    .popup-btn .searchbtn {
        background: #ced0d4;
        color: #fff;
        font-size: 15px;
        width: 167px;
        text-align: center;
        padding: 12px 5px;
        border: 0;
        border-radius: 3px;
        font-weight: 600;
        display: inline-block
    }

        .popup-btn .searchbtn.active {
            background: var(--color-blue);
            margin-right: 10px
        }

.no__resultsBox {
    margin-bottom: 20px;
    padding: 50px 20px;
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 4px 5px #0000000F;
    background: #fff;
    text-align: center
}

    .no__resultsBox .head {
        font-size: 21px;
        color: #484848;
        font-weight: 600;
        padding: 20px 0 10px 0
    }

    .no__resultsBox .resetFilter_button {
        background: var(--color-blue);
        padding: 7px 20px;
        border-radius: 3px;
        text-decoration: none;
        color: #fff
    }

        .no__resultsBox .resetFilter_button i {
            margin-right: 7px
        }

        .no__resultsBox .resetFilter_button:hover {
            background: #46a60a;
            text-decoration: none
        }

.baggage__fees {
    width: 820px;
    margin: 0px auto;
    background: #fff;
    padding: 20px;
    position: relative;
}



    .baggage__fees h3 {
        font-size: 19px;
        font-weight: 600;
        margin: 14px 0 20px 0;
        padding-bottom: 5px;
    }


    .baggage__fees .baggage_block {
        padding: 8px 15px;
        background: #edeef3;
        margin: 10px 0;
    }


        .baggage__fees .baggage_block img {
            width: 40px;
            margin-right: 10px;
        }

        .baggage__fees .baggage_block a {
            background: var(--color-blue);
            color: #fff;
            text-decoration: none;
            margin-top: 5px;
            display: inline-block;
            padding: 5px 10px;
            border-radius: 2px;
            white-space: nowrap;
            font-size: 13px;
        }

    .baggage__fees .small_text {
        font-size: 12px;
        position: relative;
        padding-left: 17px;
    }

        .baggage__fees .small_text i {
            position: absolute;
            left: 0px;
            top: 0px;
        }

    .baggage__fees .text-link {
        color: var(--color-blue);
    }

    .baggage__fees .baggage_banner {
        width: 100%;
    }

.mid_page__loading {
    width: 340px;
    margin: 0px auto;
    background: #fff;
    position: relative;
    padding: 18px;
    overflow: hidden;
}


    .mid_page__loading img {
        float: left;
        width: 131px;
    }

    .mid_page__loading p {
        font-size: 16px;
        line-height: 24px;
        float: left;
        margin: 0px;
        border-left: 1px solid #ccc;
        padding: 0 0 0 20px;
        margin-left: 20px;
    }

    .mid_page__loading .dot span {
        font-size: 28px;
        line-height: 15px;
        animation-name: blink;
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        animation-fill-mode: both;
    }

        .mid_page__loading .dot span:nth-child(2) {
            animation-delay: .2s
        }

        .mid_page__loading .dot span:nth-child(3) {
            animation-delay: .4s
        }

@keyframes blink {
    0% {
        opacity: .2
    }

    20% {
        opacity: 1
    }

    100% {
        opacity: .2
    }
}

.mobilecall_fullwindow {
    padding: 0px;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

    .mobilecall_fullwindow .title {
        font-weight: 300;
        text-transform: capitalize;
        font-size: 33px;
        padding-bottom: 13px;
        padding-top: 10px;
    }

    .mobilecall_fullwindow .callBannerBox {
        background: #2139ac;
        color: #fff;
        text-align: center;
    }

    .mobilecall_fullwindow .image-responsive {
        width: 100%;
    }

    .mobilecall_fullwindow .content_popup {
        padding: 20px 0;
    }

    .mobilecall_fullwindow .call_button {
        width: 100%;
        background: #fb3d4e;
        border: none;
        font-weight: 700;
        font-size: 18px;
        color: #fff;
        text-align: center;
        cursor: pointer;
        border-radius: 3px;
        padding: 14px;
        outline: none;
        display: block;
    }

    .mobilecall_fullwindow h2 {
        font-size: 21px;
        font-weight: 400;
        padding: 22px;
        margin: 0px;
        line-height: 32px;
    }

.increasefare {
    width: 520px;
    margin: 0px auto;
    background: #fff;
    padding: 25px;
    position: relative;
    border-radius: 5px;
}

    .increasefare h4 {
        font-size: 21px;
    }



    .increasefare small {
        display: block;
        padding-top: 20px;
    }

    .increasefare .icons {
        background: var(--color-blue);
        width: 40px;
        height: 40px;
        display: inline-block;
        border-radius: 100%;
        color: #fff;
        align-items: center;
        justify-content: center;
        line-height: 40px;
        margin-bottom: 15px;
        font-size: 27px;
    }

.promoBox {
    width: 520px;
    margin: 0px auto;
    background: #fff;
    padding: 25px;
    position: relative;
    border-radius: 5px
}

    .promoBox h4 {
        font-size: 18px
    }


    .promoBox .couponList {
        list-style: none;
        padding: 10px 0;
    }

        .promoBox .couponList li {
            font-size: 11px;
            border-bottom: 1px solid #ececec;
            padding: 11px 0;
        }

            .promoBox .couponList li p {
                margin: 0px;
            }

    .promoBox .promo-key {
        display: inline-block;
        border: 1px dashed #02cb66;
        padding: 3px 10px;
        color: #02cb66;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 5px;
        min-width: 85px;
        text-align: center;
    }

    .promoBox .save {
        color: #db9a00;
        margin-left: 5px;
        font-size: 14px;
    }

.loaderBox img {
    width: 100%;
}

.loading-icon {
    background: url(/images/icons/flights-blue.svg) no-repeat center center;
    width: 94px;
    height: 94px;
    line-height: 90px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.loading-circle {
    border: 3px solid #ddd;
    border-radius: 50%;
    border-top: 5px solid var(--color-blue);
    width: 90px;
    height: 90px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-width: 5px;
}

.mid__loading {
    padding: 15px 0;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    min-width: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .mid__loading .head {
        padding: 10px 0;
        font-size: 22px;
    }


    .mid__loading .block {
        padding: 5px 0px 20px;
        overflow: hidden;
        max-width: 420px;
        margin: 0px auto;
    }


        .mid__loading .block .left {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 10px;
            grid-gap:15px;
        }


            .mid__loading .block .left .city__code {
                width: 50%;
                font-size: 18px;
                color: #484848;
                font-weight: 600;
            }


                .mid__loading .block .left .city__code small {
                    display: block;
                }


            .mid__loading .block .left .flight__icon {
                padding: 0 20px;
            }

        .mid__loading .block .right {
            padding: 3px 10px 0 10px;
            position: relative;
            color: #414141;
            font-size: 16px;
        }


            .mid__loading .block .right .arrow {
                color: var(--color-blue);
                position: absolute;
                right: 0px;
                top: 0px;
                font-size: 27px;
                padding: 5px;
                line-height: 27px;
            }

.no_resultsBox {
    padding: 50px 0;
    text-align: center;
}

    .no_resultsBox .buttons .backbutton {
        padding: 10px 20px;
        border: none;
        margin: 10px;
        border-radius: 5px;
    }

    .no_resultsBox .block {
        max-width: 500px;
        margin: 0px auto;
        background: #fff;
        padding: 15px;
        box-shadow: 0 0 6px rgba(0,0,0,.2)
    }

    .no_resultsBox .head {
        font-size: 26px;
        font-weight: 600;
        color: var(--color-blue);
        margin-bottom: 10px;
    }


    .no_resultsBox p {
        font-size: 18px;
        color: #333333;
        font-weight: 600;
    }

    .no_resultsBox .callUs {
        color: #4f8ffc;
        display: block;
        margin: 15px 0;
        font-weight: 600;
        font-size: 16px;
    }

    .no_resultsBox .call {
        padding-top: 30px;
        width: 310px;
        margin: 0px auto
    }

    .no_resultsBox .noResultTfn {
        background: #3ab54a;
        color: #fff;
        font-size: 24px;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 700;
        display: inline-block;
        text-decoration: none;
    }

    .no_resultsBox .call .call_icon {
        width: 50px;
        margin-top: 10px
    }

    .no_resultsBox .call span {
        display: block;
        font-size: 18px;
        color: #000;
        font-weight: 500;
    }


    .no_resultsBox .call a {
        font-size: 30px;
        color: var(--color-blue);
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap
    }


        .no_resultsBox .call a:hover {
            text-decoration: none;
            color: var(--color-blue)
        }

.results-skeleton-content:after {
    content: "";
    display: block;
    width: 100%;
    height: 120px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0)), radial-gradient(circle 15px at center, #e9ebec 99%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(#e9ebec 100%, transparent 0), linear-gradient(90deg, #fff, #fff);
    background-size: 960px 110px, 30px 30px, 108px 16px, 90px 6px, 60px 6px, 384px 6px, 410px 6px, 200px 6px, 314px 6px, 120px 30px, 100% 100%;
    background-position: -960px 0, 20px 20px, 60px 20px, 60px 46px, 20px 84px, 188px 20px, 188px 36px, 188px 52px, 188px 68px, 710px 40px, 0 0;
    background-repeat: no-repeat;
    animation: oneway-loading 1.2s infinite
}

@keyframes oneway-loading {
    to {
        background-position: 960px 0, 20px 20px, 60px 20px, 60px 46px, 20px 84px, 188px 20px, 188px 36px, 188px 52px, 188px 68px, 710px 40px, 0 0
    }
}

.filter-skeleton-content:after {
    content: "";
    display: block;
    width: 100%;
    height: 160px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(245, 245, 245, 0.8) 50%, rgba(255, 255, 255, 0)), linear-gradient(90deg, #e9ebec, #e9ebec), linear-gradient(90deg, #e9ebec, #e9ebec), linear-gradient(90deg, #e9ebec, #e9ebec), linear-gradient(90deg, #e9ebec, #e9ebec);
    background-size: 260px 160px, 264px 14px, 195px 14px, 212px 14px, 115px 14px;
    background-position: -260px 0, 0 34px, 0 64px, 0 90px, 0 120px;
    background-repeat: no-repeat;
    animation: leftside-loading 1.2s infinite
}

@keyframes leftside-loading {
    to {
        background-position: 260px 0, 0 34px, 0 64px, 0 90px, 0 120px
    }
}

.m-skeleton-content:after {
    content: "";
    display: block;
    width: 60px;
    height: 14px;
    margin-left: 30px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0)), linear-gradient(90deg, #e9ebec, #e9ebec);
    background-size: 60px 14px, 100% 100%;
    background-position: -300px 0, 0 0;
    background-repeat: no-repeat;
    animation: carousel-loading 1.2s infinite
}

@keyframes carousel-loading {
    to {
        background-position: 60px 0, 0 0
    }
}

slider.ui-widget.ui-widget-content {
    padding: 0px !important;
    height: 3px;
    border: none
}

slider {
    display: inline-block;
    position: relative;
    height: 2px;
    width: 100%;
    margin: 10px 0 15px 0;
    vertical-align: middle
}

    slider span {
        white-space: nowrap;
        position: absolute;
        display: inline-block
    }

        slider span.base {
            width: 100%;
            height: 100%;
            padding: 0
        }

        slider span.bar {
            width: 100%;
            height: 100%;
            z-index: 0;
            background: #ccc
        }

            slider span.bar.selection {
                width: 0%;
                z-index: 1;
                background: var(--color-blue)
            }

        slider span.pointer {
            cursor: pointer;
            width: 19px;
            height: 19px;
            top: -8px;
            z-index: 1;
            border: 2px solid var(--color-blue);
            background: #fff;
            border-radius: 100%;
            outline: none
        }

.results_body {
    background: #fff
}

#resultsCntr {
    width: 100%;
    padding: 22px 0;
    background: #f1f1f1;
    font-size: 14px
}


@media(max-width: 1199px) {
    #resultsCntr {
        font-size: 13px
    }
}


#resultsCntr .leftCntr {
    padding-right: 20px;
    width: 330px;
    float: left;
}

#resultsCntr .rightCntr {
    width: calc(100% - 330px);
    float: left;
    color: var(--color-black);
}

@media(max-width: 1199px) {
    #resultsCntr .leftCntr {
        width: 260px
    }
}

@media(max-width: 1023px) {
    #resultsCntr .leftCntr {
        position: fixed;
        left: -200%;
        top: 0px;
        transition: all .5s
    }
}

#resultsCntr .leftCntr.open-filter {
    left: 0px;
    width: 100%;
    padding-right: 0px;
    background: #fff;
    z-index: 2;
    display: block
}

    #resultsCntr .leftCntr.open-filter .holder {
        height: calc(100vh - 80px);
        overflow-x: hidden;
        overflow-y: scroll;
        padding-bottom: 76px
    }

#resultsCntr .rightCntr {
}

@media(max-width: 1199px) {
    #resultsCntr .rightCntr {
        width: calc(100% - 260px)
    }
}

@media(max-width: 1023px) {
    #resultsCntr .rightCntr {
        width: 100%
    }
}

#resultsCntr .fare__breakup {
    position: relative
}

@media(max-width: 479px) {
    #resultsCntr .fare__breakup {
        display: none
    }
}

#resultsCntr .fare__detail {
    color: var(--color-blue);
    text-decoration: none;
    text-align: center
}


#resultsCntr .fare__detail span {
    color: #686868;
    display: block;
    font-size: 12px;
    width: 73px
}

#resultsCntr .fare__detail:hover {
    text-decoration: none;
    color: var(--color-blue)
}

#resultsCntr .fare_breakup_detail {
    box-shadow: 0 0 9px #b8c7ff;
    display: none;
    width: 300px;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px;
    border: 1px solid #d9d9db
}

    #resultsCntr .fare_breakup_detail:before,
    #resultsCntr .fare_breakup_detail:after {
        content: "";
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        top: 100%;
        left: 50%;
        border-top: 10px solid #ccc
    }

    #resultsCntr .fare_breakup_detail:after {
        border-top: 10px solid #fff;
        margin-top: -1px;
        z-index: 1
    }

    #resultsCntr .fare_breakup_detail ul {
        list-style: none;
        margin: 0px
    }

        #resultsCntr .fare_breakup_detail ul li {
            width: 100%;
            border-bottom: 1px dashed #a6a6a6;
            padding-bottom: 10px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between
        }

            #resultsCntr .fare_breakup_detail ul li:last-child {
                border-bottom: none;
                margin-bottom: 0px;
                padding-bottom: 0px
            }

            #resultsCntr .fare_breakup_detail ul li .traveler span {
                display: block;
                font-size: 12px
            }

    #resultsCntr .fare_breakup_detail .close_price_breakup {
        width: 38px;
        text-align: center;
        background: #fff;
        display: inline-block;
        height: 22px;
        position: absolute;
        right: 0px;
        top: -22px;
        color: var(--color-blue);
        border: 1px solid #d9d9db;
        border-bottom: 0px
    }

.total_results {
    font-size: 15px
}

.sortingTabBox {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 5px #0000000A;
    border: 1px solid #e8e8e8;
    background: #fff
}


.sortingTabBox ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    display:flex;
    flex-flow:wrap;
}


    .sortingTabBox ul li {
        padding: 7px 18px;
        display: flex;
        width: 25%;
        font-weight: 700;
        border-left: 1px solid #ccc;
        position: relative;
        min-height: 56px;
        align-items:center;
    }
        .sortingTabBox ul li.active{
            background:var(--color-blue);
            color:var(--color-white);
        }
            .sortingTabBox ul li.active:hover {
                background: var(--color-blue);
                color: var(--color-white);
            }

            .sortingTabBox ul li a {
                text-decoration: none;
                cursor: pointer;
            }

        .sortingTabBox ul li .price {
            color: #6b6b6b;
            font-weight: normal;
            display: block;
        }

        .sortingTabBox ul li.active a,
        .sortingTabBox ul li.active .price {
            color: var(--color-white);
        }

        .sortingTabBox ul li.active:after {
            width: 100%;
        }

        .sortingTabBox ul li:hover {
            background: #ecf0ff;
        }

        .sortingTabBox ul li:first-child {
            border: none;
        }


.text-link-red {
    color: var(--color-blue) !important;
    text-decoration: underline !important
}

.apply_filter {
    margin-bottom: 15px;
}


    .apply_filter ul {
        list-style: none;
        padding: 0px;
    }

        .apply_filter ul li {
            float: left;
            padding: 8px 15px;
            margin-right: 10px;
            margin-bottom: 5px;
            border-radius: 40px;
            border: 1px solid #d9dade;
            color: var(--color-blue);
            font-weight: 500;
            background: #fafafa;
        }

            .apply_filter ul li a {
                color: #898585;
                position: relative;
                top: -2px;
                margin-left: 6px;
                float: right;
                line-height: 12px;
            }

                .apply_filter ul li a:hover {
                    color: var(--color-blue);
                }

            .apply_filter ul li.clear__all a {
                color: #f55;
                position: relative;
                top: 0px;
                margin: 0px;
                line-height: 20px;
                text-decoration: none;
            }

.loadmore {
    font-size: 15px;
    background: var(--color-blue);
    padding: 15px 46px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 15px;
}


    .loadmore:hover {
        background: #46a60a;
        color: #fff;
        text-decoration: none;
    }

.flight__itenaryBox .head {
    padding: 0px 30px 0px 0px;
    position: relative;
}

.payment__wrapper .page__title {
    font-size: 20px;
    font-weight: 700;
}

.payment__wrapper .flightDetail {
    border-radius: 5px;
    box-shadow: 0 0 6px #00000029;
    background: #fff;
    padding: 0 15px;
}

.payment__wrapper .bagguage_fees {
    position: absolute;
    bottom: 10px;
    right: 0;
}

    .payment__wrapper .bagguage_fees ul {
        justify-content: flex-end;
    }

    .payment__wrapper .bagguage_fees .tooltipBox {
        left: inherit;
        right: 50%;
    }

        .payment__wrapper .bagguage_fees .tooltipBox:after, .payment__wrapper .bagguage_fees .tooltipBox:before {
            left: 75%;
        }

.flight__itenaryBox .page__title:after {
    bottom: -9px;
    display: none
}

.flight__itenaryBox .page__title strong {
    display: inline-block
}

.flight__itenaryBox .flightDetail {
    color: #8a8a8a;
    position: relative;
}

.total-time {
    display: flex;
    font-size: 14px;
    font-weight: 400;
}

    .total-time span {
        font-weight: 600;
        padding-left: 3px;
        color: #000;
    }
        .total-time b{
            padding:0 10px;
            display:inline-block;
            font-weight:normal;
        }

.flightDetail .subTittile {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--color-black);
    font-weight: 600;
    background: #f1f6ff;
    padding: 5px;
    border-radius: 5px;
    justify-content: space-between;
}

    .flightDetail .subTittile img {
        width: 35px;
        transform: rotate(-20deg);
        display: inline-block;
        padding-right: 3px;
        margin-right: 5px;
    }



    .flightDetail .subTittile .tripDay {
        padding-left: 5px;
    }

    .flightDetail .subTittile .totalTripTime {
        float: right;
    }

.flight__itenaryBox .flightDetail h4 {
    font-size: 16px;
    color: #393939;
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
    margin-bottom: 20px
}

.flight__itenaryBox .flightDetail .devider_line {
    height: 8px;
    background: #f5f5f8;
    border: none;
    margin: 20px -20px
}

.retureSec {
    border-top: 1px dashed #ced0d4;
    padding-top: 10px;
}

.flightDetail .retureSec .subTittile img {
    width: 35px;
    display: inline-block;
    padding-left: 3px;
    transform: scaleX(-1) rotate(-25deg);
}

.flight__itenaryBox .flighttab {
    list-style: none;
    display: flex;
    width: 100%;
    padding: 0px;
    border-bottom: 1px solid #dfdfdf;
}

@media(max-width: 1023px) {
    .flight__itenaryBox .flighttab {
        margin: 10px 0;
        width: auto;
        overflow: hidden;
        float: none;
        border-bottom: none
    }
}

.flight__itenaryBox .flighttab li {
    float: left;
    margin-right: 30px
}

@media(max-width: 1023px) {
    .flight__itenaryBox .flighttab li {
        width: 45%;
        margin-right: 15px
    }
}

@media(max-width: 479px) {
    .flight__itenaryBox .flighttab li {
        width: 43%
    }
}

.flight__itenaryBox .flighttab li a {
    font-size: 16px;
    color: #484848;
    text-decoration: none;
    padding: 0 0px 7px 0;
    display: block;
    position: relative;
    cursor: pointer
}

@media(max-width: 1023px) {
    .flight__itenaryBox .flighttab li a {
        font-size: 14px;
        padding: 4px 10px;
        border: 2px solid #ccc;
        text-align: center;
        border-radius: 5px
    }

        .flight__itenaryBox .flighttab li a.active {
            border-color: #2b4ded
        }
}

.flight__itenaryBox .flighttab li a:before {
    content: "";
    height: 2px;
    position: absolute;
    left: 0px;
    bottom: -1px;
    transition: all .5s;
    width: 0px;
    display: block;
    background: var(--color-blue)
}

@media(max-width: 1023px) {
    .flight__itenaryBox .flighttab li a:before {
        display: none
    }
}

.flight__itenaryBox .flighttab li a:hover,
.flight__itenaryBox .flighttab li a.active,
.flight__itenaryBox .flighttab li a:hover:before,
.flight__itenaryBox .flighttab li a.active:before {
    width: 100%;
    color: var(--color-blue)
}

.flight__itenaryBox .airlines__details {
    padding-top: 5px;
    font-size: 13px;
    line-height: 1.5em;
    color: #949494
}

    .flight__itenaryBox .airlines__details .air-name {
        font-size: 14px;
        color: #484848
    }

    .flight__itenaryBox .airlines__details img {
        width: 45px;
        float: left;
        margin-right: 10px;
        outline: 3px solid #fff;
        outline-offset: -2px;
        margin-bottom: 2px;
    }

    .flight__itenaryBox .airlines__details .detail {
        width: calc(100% - 45px);
        float: left
    }

.flight__itenaryBox .route__info {
    padding: 10px 0;
    font-size: 13px;
    position: relative
}

    .flight__itenaryBox .route__info .time {
        font-size: 15px;
        color: #000000;
        font-weight: 600;
        margin-top: 20px;
    }


    .flight__itenaryBox .route__info .date {
        position: relative;
        font-weight: 600;
    }


    .flight__itenaryBox .route__info .destination_fullname {
        position: relative;
    }

.destination_fullname .airport-info {
    display: flex;
    align-items: center;
    gap: 5px;
    width:245px;
}

.destination_fullname .cityCode {
    font-size: 14px;
    color: #303030;
}

.destination_fullname .airport-info span {
    font-weight: 600;
    color:#000000;
    font-size:14px;
}
    .flight__itenaryBox .route__info .destination_fullname .message_display {
        top: inherit;
        bottom: -25px;
    }

.flight__itenaryBox .route__info .destination_fullname .nearAirport {
    position: absolute;
}

.flight__itenaryBox .route__info .destinationName .alerDate {
    min-width: 100px;
    display: inline-block;
}

.flight__itenaryBox .route__info .connecting__bar {
    width: 100%;
    height: 2px;
    border-top: 2px solid #dfdfdf;
    position: absolute;
    left: 0px;
    top: 40px;
}

    .flight__itenaryBox .route__info .connecting__bar:before {
        content: "";
        width: 10px;
        height: 10px;
        display: block;
        border: 2px solid var(--color-blue);
        position: absolute;
        right: 0px;
        top: -6px;
        border-radius: 100%;
        background: #fff;
    }

    .flight__itenaryBox .route__info .connecting__bar:after {
        content: "\f105";
        position: absolute;
        right: -2px;
        top: -17px;
        color: var(--color-blue);
        font-size: 20px;
        font-family: 'FontAwesome';
    }


    .flight__itenaryBox .route__info .connecting__bar:before {
        right: inherit;
        left: 0px
    }

    .flight__itenaryBox .route__info .connecting__bar .duretion_time {
        position: absolute;
        left: 45%;
        margin-top: 0px;
        text-align: center;
        font-weight: 600;
        color: #303030;
    }

        .flight__itenaryBox .route__info .connecting__bar .duretion_time img {
            background: #fff;
            padding: 0 6px;
            display: block
        }

.flight__itenaryBox .route__info .TripTime {
    margin: 15px
}

.flight__itenaryBox .route__info .message_display {
    position: static;
    left: 0px;
    top: -25px;
    margin: 0px
}


.flight__itenaryBox .class__type {
    padding-top: 5px;
    text-align: right;
}

.flight__itenaryBox .layover {
    margin-bottom: 0px;
    padding: 5px 10px;
    font-size: 13px;
    color: var(--color-blue);
    background: #e6ebfb;
    text-align: center;
    border-radius: 20px;
    position: relative;
    font-weight: 500;
    border: 1px solid #84a1ff;
}


.flight__itenaryBox .totalTrip .layover {
    background: transparent;
    text-align: right;
    font-size: 14px;
}


.flight__itenaryBox .layoverSec:before {
    position: absolute;
    content: "";
    width: 50%;
    top: 18px;
    left: 25%;
    border: 1px dashed #9db4ff;
}

.flight__itenaryBox .layover .bi-stopwatch {
    position: relative;
    top: 0px;
    margin-right: 4px;
    color: var(--color-blue);
    background: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.price__Box {
    border-radius: 5px;
    box-shadow: 0 0 6px #00000029;
    background: #fff;
    padding: 0 15px;
    position: sticky;
    top: 0;
}


    .price__Box .pageTitle {
        position: relative;
        margin-bottom: 20px;
        font-size: 20px;
    }

        .price__Box .pageTitle b {
            position: relative;
        }

            .price__Box .pageTitle b:after {
                content: "";
                width: 36px;
                height: 2px;
                display: inline-block;
                position: absolute;
                left: 0px;
                bottom: -4px;
                background: var(--color-blue);
            }

    .price__Box ul {
        list-style: none;
        padding: 0px
    }

        .price__Box ul li {
            padding: 8px 0px;
            border-bottom: 1px solid #e1e1e1;
            font-size: 13px;
            color: #4b4b4b;
            font-weight: 600
        }

            .price__Box ul li i {
                font-size: 16px;
                margin-left: 4px;
                font-weight: 700
            }

            .price__Box ul li .accordian-slide {
                padding-left: 13px;
                padding-top: 5px;
                font-size: 12px;
                color: #6b6b6b;
                font-weight: 400
            }

            .price__Box ul li .accordian_toggle {
                cursor: pointer
            }

            .price__Box ul li .disscount--price {
                color: #00c29b
            }

    .price__Box .total_price {
        font-weight: 700;
        border-bottom: 1px dashed #ccc;
        padding: 10px 0;
        color: var(--color-org);
        font-size:15px;
    }

    .price__Box .price__note {
        font-size: 11px;
        padding: 12px 0;
        color: #666
    }

.securebooking__Box {
    border-radius: 5px;
    box-shadow: 0px 4px 5px #0000000A;
    border: 1px solid #e8e8e8;
    background: #c8e7cc;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 20px;
}


    .securebooking__Box h4 {
        padding-bottom: 10px;
        font-size: 16px;
        border-bottom: 1px solid #ccc
    }

.cuponBlock {
    width: 100%;
    overflow: hidden
}

    .cuponBlock p {
        color: #888888;
        font-size: 16px;
        text-align: center;
    }

    .cuponBlock .inputText {
        width: calc(100% - 78px);
        border: 1px solid #d9d9d9;
        padding: 10px 10px;
        float: left;
        font-size: 13px;
        color: #7e7e7e;
        border-radius: 5px;
        margin-right: 5px
    }

    .cuponBlock .submit {
        border: none;
        background: #02cb66;
        padding: 9px;
        color: #fff;
        width: 73px;
        float: left;
        cursor: pointer;
        border-radius: 5px
    }

        .cuponBlock .submit:focus {
            border: none;
            outline: none
        }

        .cuponBlock .submit.remove {
            background: var(--color-blue)
        }

    .cuponBlock .sucessfull {
        color: #02cb66
    }

.text-right {
    text-align: right
}



.payment__wrapper .payment__stepBox {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px
}


    .payment__wrapper .payment__stepBox ul {
        list-style: none;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0px
    }

        .payment__wrapper .payment__stepBox ul li {
            font-size: 16px;
            color: #878787;
            cursor: pointer;
            padding-bottom: 8px;
            position: relative
        }


            .payment__wrapper .payment__stepBox ul li i {
                position: relative;
                top: -3px;
                margin-right: 2px
            }

            .payment__wrapper .payment__stepBox ul li:before {
                content: "";
                height: 2px;
                position: absolute;
                left: 0px;
                bottom: -1px;
                transition: all .5s;
                width: 0px;
                display: block;
                background: var(--color-blue)
            }

            .payment__wrapper .payment__stepBox ul li.active:before {
                width: 100%;
                color: var(--color-blue)
            }

            .payment__wrapper .payment__stepBox ul li:hover,
            .payment__wrapper .payment__stepBox ul li.active {
                color: #393939
            }

            .payment__wrapper .payment__stepBox ul li.complete {
                color: #00c29b
            }


                .payment__wrapper .payment__stepBox ul li.complete:hover:before {
                    width: 0px
                }

.payment__wrapper .bottom__row {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
    border-radius: 5px;
}

.book-now-conf {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
}
    .book-now-conf .confirm{
        display:flex;
        flex-direction:column;
        color:var(--color-white);
        justify-content:center;
        align-items:center;
        text-decoration:none;
    }
        .book-now-conf .confirm span{
            font-size:12px;
        }

        .payment__wrapper .bottom__row .continue__button {
            cursor: pointer;
            background: var(--color-blue);
            color: #fff;
            padding: 12px 38px;
            float: right;
            font-weight: 600;
            border-radius: 3px;
            text-decoration: none;
        }


        .payment__wrapper .bottom__row .continue__button.confirm {
            padding: 12px 30px;
            font-size: 17px;
            background: #088d0c;
            text-align: center;
        }


            .payment__wrapper .bottom__row .continue__button.confirm i {
                margin-right: 3px;
            }

            .payment__wrapper .bottom__row .continue__button.confirm:hover {
                background: #007001;
            }

            .payment__wrapper .bottom__row .continue__button.confirm span {
                display: block;
                font-weight: 400;
                text-transform: uppercase;
                font-size: 13px
            }

        .payment__wrapper .bottom__row .continue__button:hover {
            background: #46a60a;
            text-decoration: none
        }


.payment__wrapper .adultType {
    list-style: none;
    padding: 0px;
    margin-bottom: 10px
}


    .payment__wrapper .adultType li {
        display: inline-block;
        padding-right: 30px;
        font-size: 14px
    }

        .payment__wrapper .adultType li label {
            cursor: pointer;
            font-weight: 600
        }

.payment__wrapper .travelerBox {
    padding-top: 20px
}


    .payment__wrapper .travelerBox h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 11px;
        color: #4b4b4b
    }

    .payment__wrapper .travelerBox p {
        color: #5d5d5d
    }

    .payment__wrapper .travelerBox .travel_deal_checkbox {
        margin-top: 27px;
        width: 60%
    }

        .payment__wrapper .travelerBox .travel_deal_checkbox label {
            line-height: 19px
        }

    .payment__wrapper .travelerBox .traveler_block {
        border-top: 1px solid #ccc;
        margin-bottom: 30px;
        padding-top: 30px
    }


.travelers-box {
    border-radius: 5px;
    box-shadow: 0 0 6px #00000029;
    background: #fff;
    padding: 0 15px;
    margin-top: 20px;
}


.payment__wrapper .travelerBox .traveler_block:first-child {
    border: none;
    margin-top: 0px;
    padding-top: 0px
}

.payment__wrapper .paymentBox {
    padding-top: 20px
}


    .payment__wrapper .paymentBox h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 11px;
        color: #4b4b4b
    }




.payment__wrapper select::-ms-expand {
    display: none
}

.payment__wrapper .form__block .select-class {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    cursor: pointer
}

    .payment__wrapper .form__block .select-class:before {
        content: "\F282";
        font-family: bootstrap-icons;
        font-size: 17px;
        color: #4f8ffc;
        position: absolute;
        right: 1px;
        top: 1px;
        pointer-events: none;
        padding: 7px 7px 0 0;
        background: #fff
    }

.payment__wrapper .form__block .form-control {
    background: #fff;
}



    .payment__wrapper .form__block .form-control:focus {
        border-color: var(--color-blue);
        box-shadow: 0 3px 6px #e0e4f9
    }

.payment__wrapper .form__block select.form-control:not([size]):not([multiple]) {
    height: auto
}

.payment__wrapper .form__block .is-error {
    position: relative;
    color: red;
    font-size:12px;
}

    .payment__wrapper .form__block .is-error .form-control {
        border-color: red
    }

    .payment__wrapper .form__block .is-error .icon {
        position: absolute;
        top: 13px;
        right: 10px;
        color: red
    }

.payment__wrapper .form__block .is-success,
.payment__wrapper .form__block .is-sucess {
    position: relative
}

    .payment__wrapper .form__block .is-success .form-control,
    .payment__wrapper .form__block .is-sucess .form-control {
        border-color: var(--color-blue)
    }

    .payment__wrapper .form__block .is-success .icon,
    .payment__wrapper .form__block .is-sucess .icon {
        position: absolute;
        top: 13px;
        right: 10px;
        color: #00c29b
    }

.payment__wrapper .form__block .dob_calendar {
    position: absolute;
    right: 11px;
    top: 6px;
    font-size: 25px;
    color: var(--color-blue);
    pointer-events: none;
    cursor: pointer
}

.payment__wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.payment__wrapper .bottom_text {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 21px;
    border: 1px solid var(--color-blue);
    border-radius: 5px;
    margin-top: 20px;
    padding: 20px;
    background: #fff;
}


    .payment__wrapper .bottom_text h5 {
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 15px;
        color: #303030;
        margin: 0;
    }

    .payment__wrapper .bottom_text b {
        font-weight: 700;
    }

    .payment__wrapper .bottom_text p {
        margin: 0;
    }

    .payment__wrapper .bottom_text ul {
        margin: 10px 0;
        padding: 0 0 0 30px;
    }

        .payment__wrapper .bottom_text ul li::marker {
            color: var(--color-blue);
        }

    .payment__wrapper .bottom_text p a {
        color: var(--color-blue);
        text-decoration: none;
    }

    .payment__wrapper .bottom_text label {
        float: left;
    }

.payment__wrapper input.cc-number.visa {
    background: url(../../images/payment/visa.png) 99% center no-repeat
}

.payment__wrapper input.cc-number.amex {
    background: url(../../images/payment/american.png) 99% center no-repeat
}

.payment__wrapper input.cc-number.discover {
    background: url(../../images/payment/discover.png) 99% center no-repeat
}

.payment__wrapper input.cc-number.mastercard {
    background: url(../../images/payment/master.png) 99% center no-repeat
}

.payment__top {
    padding-bottom: 20px
}

    .payment__top .go__back {
        color: #333;
        font-weight: 600;
        text-decoration: none;
    }

        .payment__top .go__back i {
            font-size: 16px;
            font-weight: 700;
            margin-right: 3px
        }

        .payment__top .go__back:hover {
            text-decoration: none;
            color: var(--color-blue)
        }

    .payment__top .cong {
        color: #000000;
        font-size: 16px;
    }

        .payment__top .cong span {
            color: var(--color-blue);
            font-weight: 600;
            font-size: 18px;
        }

    .payment__top .secure__Box {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        display: none;
    }

        .payment__top .secure__Box li {
            padding-left: 43px;
            position: relative;
            line-height: 17px
        }

            .payment__top .secure__Box li i {
                position: absolute;
                left: 0px;
                top: -3px;
                font-size: 28px;
                color: var(--color-blue)
            }

.mobile_go_back {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #fff;
    width: 45px;
    height: 42px;
    margin: 0px;
    line-height: 38px;
    text-align: center;
    font-size: 20px;
    border-right: 1px solid #ccc;
}

.form-group {
    margin-bottom: 10px;
}

.formlabel {
    margin-bottom: .5rem;
    font-weight: 500;
}


.page_loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
}

    .page_loading .loading_block {
        background: #fff;
        position: absolute;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        padding: 30px;
        border-radius: 10px;
    }

    .page_loading .loading-icon {
        background: url(../../images/icons/flights-white.svg) no-repeat center center;
        width: 94px;
        height: 94px;
        line-height: 90px;
        border-radius: 50%;
        margin: 0 auto;
        position: relative
    }

    .page_loading .loading-circle {
        border: 3px solid #ddd;
        border-radius: 50%;
        border-top: 5px solid var(--color-blue);
        width: 90px;
        height: 90px;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
        border-width: 5px
    }

    .page_loading p {
        margin: 0px;
        padding: 0px;
        line-height: 25px
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.dot span {
    font-size: 50px;
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both
}

    .dot span:nth-child(2) {
        animation-delay: .2s
    }

    .dot span:nth-child(3) {
        animation-delay: .4s
    }

@keyframes blink {
    0% {
        opacity: .2
    }

    20% {
        opacity: 1
    }

    100% {
        opacity: .2
    }
}

.review_policy {
    border: 1px solid #4dc0ff;
    padding: 13px 12px 12px 37px;
    font-size: 14px;
    line-height: 25px
}

    .review_policy i {
        position: absolute;
        left: 10px;
        top: 16px;
        font-size: 18px
    }

.confirmation__information {
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 0 15px;
    margin-top: 20px
}

.phone_strip {
    padding: 5px 0;
    width: 100%;
    overflow: hidden;
    background: #ffb598;
}

    .phone_strip p {
        margin: 0;
        float: right;
        font-size: 13px;
        color: #333;
    }

    .phone_strip a {
        font-size: 18px;
        color: var(--color-blue);
        text-decoration: none;
        font-weight: 700;
    }

.travelerInformation .data {
    width: 100%;
}

    .travelerInformation .data th {
        border: none;
        background: #f1f1f1;
        font-size: 14px;
        color: #303030;
        padding: 10px;
        text-align: left;
        overflow: hidden;
    }

    .travelerInformation .data td {
        padding: 10px;
        text-align: left;
        overflow: hidden;
        border-bottom: 1px solid rgba(0,0,0,.11);
    }

.confirmation__information.price__Box ul li {
    font-size: 16px;
}

.confirmation__information.price__Box .accordian-slide {
    font-size: 14px;
}

.confirmation__information.price__Box .total_price {
    font-size: 18px;
}

.confirmation__information h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #303030
}

.confirmation__information .head {
    font-weight: 700;
    padding: 10px;
    background: #f1f1f1;
}

.confirmation__information .detail {
    padding: 10px;
    margin-bottom: 10px;
}

.spacer {
    height: 50px;
}

.confirmation__Box {
    border-radius: 5px;
    box-shadow: 0 0 6px #00000029;
    background: #fff;
    padding: 20px 15px;
    margin-bottom: 20px;
    position: relative;
}


#departTabcontent .route__info .connecting__bar, #returnTabcontent .route__info .connecting__bar {
    width: 100%;
    height: 2px;
    border-top: 2px solid #dfdfdf;
    position: absolute;
    left: 0px;
    top: 60px;
}


.confirmation__Box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #303030;
}

.confirmation__Box p:first-child {
    margin-bottom: 10px;
}

.confirmation__Box a {
    font-size: 16px;
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
}

.confirmation__Box .refrance__number {
    font-size: 18px;
    font-weight: 700;
}

.confirmation__Box .print_itinerary {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #8a8a8a;
    text-decoration: none
}

    .confirmation__Box .print_itinerary i {
        margin-right: 5px;
        position: relative;
        top: -2px
    }

    .confirmation__Box .print_itinerary:hover {
        color: var(--color-blue)
    }

.print_button {
    padding: 7px 14px;
    display: inline-block;
    text-decoration: none;
    border-radius: 3px;
    color: #ffffff;
    border: 1px solid var(--color-blue);
    background:var(--color-blue);
}

    .print_button i {
        margin-right: 5px;
        position: relative;
        top: -2px
    }

    .print_button:hover {
        text-decoration: none;
        color: #fff;
        background: #46a60a;
        border: 1px solid #46a60a;
    }



.footer__linkBox {
    width: 100%;
    padding: 20px 0;
}



        #footerCntr .footer__linkBox h4 {
            font-size: 20px;
            margin-bottom: 10px;
            position: relative
        }

        #footerCntr .footer__linkBox ul {
            list-style: none;
            margin: 0px;
            padding: 0px
        }


            #footerCntr .footer__linkBox ul li {
                display: block
            }

                #footerCntr .footer__linkBox ul li a {
                    font-size: 14px;
                    color: #666;
                    line-height: 28px;
                    text-decoration: none;
                    cursor: pointer
                }

@media(max-width: 1199px) {
    #footerCntr .footer__linkBox ul li a {
        font-size: 14px
    }
}

#footerCntr .footer__linkBox ul li a:hover {
    color: var(--color-blue)
}

#footerCntr .footer__linkBox .footer__call {
    font-size: 25px;
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid #c9c9c9;
    padding: 40px 0 9px 0;
    margin-bottom: 9px
}


#footerCntr .footer__linkBox .footer__call a {
    font-size: 27px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    line-height: 46px
}

@media(max-width: 1199px) {
    #footerCntr .footer__linkBox .footer__call a {
        font-size: 25px
    }
}

#footerCntr .footer__linkBox .email {
    display:block;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    white-space: nowrap
}

@media(max-width: 1199px) {
    #footerCntr .footer__linkBox .email {
        font-size: 14px
    }
}

#footerCntr .footer__linkBox .email .icon {
    margin-right: 7px;
    font-size: 20px;
    color: var(--color-blue);
}

#footerCntr .footer__linkBox .email:hover {
    color: var(--color-blue)
}




#footerCntr .footIcons {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

    #footerCntr .footIcons li {
        list-style: none;
        padding: 0 10px;
    }

        #footerCntr .footIcons li .visa {
            background-position: 1px 0;
            height: 40px;
            width: 100px;
            display: inline-block;
        }

.iconsSec {
    background: url(/Images/fotter-logo.webp) no-repeat;
}

#footerCntr .footIcons li .mster {
    background-position: -135px 0;
    height: 43px;
    width: 70px;
    display: inline-block;
}

#footerCntr .footIcons li .disc {
    background-position: -242px 0;
    height: 40px;
    width: 132px;
    display: inline-block;
}

#footerCntr .footIcons li .arc {
    background-position: -415px 0;
    height: 40px;
    width: 85px;
    display: inline-block;
}

#footerCntr .footIcons li .bbb {
    background-position: -950px -4px;
    height: 40px;
    width: 100px;
    display: inline-block;
}

#footerCntr .footIcons li .club {
    background-position: -555px 0;
    height: 40px;
    width: 75px;
    display: inline-block;
}

#footerCntr .footIcons li .amexp {
    background-position: -670px 0;
}

#footerCntr .footIcons li .amexp, .footIcons li .stripe {
    height: 40px;
    width: 102px;
    display: inline-block;
}

#footerCntr .footIcons li .stripe {
    background-position: -828px 0;
}

#footerCntr .footIcons li .iata {
    height: 45px;
    width: 65px;
    display: inline-block;
}

#footerCntr .footIcons li .iata {
    background-position: -1082px -4px;
}


#footerCntr .footer__logoBox {
    padding: 10px 0;
    background: #fff;
    overflow: hidden
}

    #footerCntr .footer__logoBox .card_icons {
        width: 40%;
    }

    #footerCntr .footer__logoBox .card_icons {
        margin-top: 0px;
    }


    #footerCntr .footer__logoBox .footer_logo {
        margin: 0px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center
    }



#footerCntr .footer__logoBox .footer_logo li {
    display: inline-block;
    padding: 0 26px;
    vertical-align: middle
}


#footerCntr .footer__logoBox .footer_logo li img {
    max-width: 100%
}

#footerCntr .footer__copyrightBox {
    padding: 15px 0;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
}


    #footerCntr .footer__copyrightBox p {
        margin: 0px
    }


    #footerCntr .footer__copyrightBox .social__icons {
        margin: 0px;
        list-style: none;
        padding: 0px;
        float: right
    }


#footerCntr .social__icons li {
    padding: 0px;
    display: inline-block !important;
}

    #footerCntr .social__icons li a {
        margin: 0 10px;
    }

#footerCntr .footer__copyrightBox .social__icons li a {
    color: #333333;
    text-decoration: none
}

    #footerCntr .footer__copyrightBox .social__icons li a:hover {
        color: var(--color-blue)
    }

#footerCntr .disclaimerBox {
    padding: 5px 0;
    font-size: 13px;
    line-height: 25px;
    margin-top: 15px;
    border-bottom: 1px solid #eaeaea;
}


@media(max-width: 1023px) {
    #footerCntr .hide-tablet {
        display: none
    }
}



.currencyBox {
    margin: 12px 30px 0 0;
    float: right;
    position: relative;
    font-weight: 700;
}


    .currencyBox ul {
        top: 35px;
        position: absolute;
        padding: 0px;
        list-style: none;
        margin: 0px;
        width: 235px;
        background: #fff;
        right: -20px;
        box-shadow: 0 3px 6px #ccc;
        z-index: 3;
    }

        .currencyBox ul li {
            border-bottom: 1px dashed #ccc
        }

            .currencyBox ul li:last-child {
                border: none
            }

            .currencyBox ul li a {
                padding: 5px;
                display: flex;
                text-decoration: none;
                color: #333;
                align-items: center;
                justify-content: space-between
            }

                .currencyBox ul li a .sprte {
                    width: 30px;
                    height: 30px;
                    display: block;
                    float: left;
                    margin-right: 8px;
                    background: url(../images/sprite.png) no-repeat 0 0
                }

                    .currencyBox ul li a .sprte.aed {
                        background-position: 0px -208px
                    }

                    .currencyBox ul li a .sprte.aud {
                        background-position: 0px 0px
                    }

                    .currencyBox ul li a .sprte.gbp {
                        background-position: 0px -40px
                    }

                    .currencyBox ul li a .sprte.sar {
                        background-position: 0px -125px
                    }

                    .currencyBox ul li a .sprte.usd {
                        background-position: 0px -168px
                    }

                    .currencyBox ul li a .sprte.inr {
                        background-position: 0px -84px
                    }

                    .currencyBox ul li a .sprte.cad {
                        background-position: 0px -248px
                    }

                    .currencyBox ul li a .sprte.eur {
                        background-position: 0 -287px;
                    }

                .currencyBox ul li a .name_currency {
                    display: inline-block;
                    padding-top: 5px
                }

                .currencyBox ul li a .side_curency {
                    background: #f0f0f0;
                    display: block;
                    color: #5b6270;
                    padding: 2px;
                    width: 45px;
                    text-align: center;
                    border-radius: 24px
                }

    .currencyBox .currencyClick {
        cursor: pointer
    }

.contentBox {
    width: 100%;
    padding: 25px 0
}
    .contentBox h3{
        font-size:30px;
        font-weight:700;
        margin-bottom:20px;
    }

    @media(max-width: 1023px) {
        .contentBox {
        padding: 20px 0
    }
}

.contentBox p {
    font-size: 14px;
    color: #202020;
}


.contentBox .content_image {
    margin: 0 20px 0px 0
}

/*.contentBox h3 {
    font-size: 20px;
    margin: 20px 0
}*/

.contentBox h4 {
    font-size: 22px;
    font-weight: 500;
}

.contentBox h5 {
    font-size: 18px;
    margin: 15px 0;
}

.contentBox .list,
.contentBox ul {
    list-style: none;
    overflow: hidden;
    padding: 0 2px
}


    .contentBox .list li,
    .contentBox ul li {
        margin-bottom: 5px;
        padding-left: 20px;
        padding-right: 10px;
        position: relative
    }

        .contentBox .list li:before,
        .contentBox ul li:before {
            position: absolute;
            left: 0px;
            top: 2px;
            content: "";
            color: var(--color-blue);
            font-family: bootstrap-icons !important
        }

    .contentBox .list.w_50,
    .contentBox ul.w_50 {
        overflow: hidden
    }

        .contentBox .list.w_50 li,
        .contentBox ul.w_50 li {
            width: 50%;
            float: left
        }


.contentBox h1 {
    font-size: 32px;
    color: #303030;
    margin-bottom: 26px;
    position: relative;
    font-weight: 300
}

@media(max-width: 1023px) {
    .contentBox h1 {
        font-size: 25px
    }
}


.contentBox h1 strong {
    font-weight: 600;
    position: relative
}


.contentBox h1 strong:after {
    content: "";
    width: 36px;
    height: 2px;
    display: inline-block;
    position: absolute;
    left: 0px;
    bottom: -4px;
    background: var(--color-blue)
}

.other_popularBox {
    padding: 20px 0 50px 0;
    position: relative
}


.other_popularBox .slick-list {
    margin: 0 -7px
}

.other_popularBox .items {
    padding: 0 7px
}

    .other_popularBox .items img {
        width: 100%
    }

    .other_popularBox .items span {
        margin-top: 10px;
        display: block;
        color: #303030;
        font-weight: 600;
        text-transform: uppercase
    }

    .other_popularBox .items i {
        position: relative;
        top: 2px;
        margin-left: 3px
    }

    .other_popularBox .items:hover a {
        text-decoration: none
    }

        .other_popularBox .items:hover a span {
            color: var(--color-blue)
        }

    .other_popularBox .items a {
        display: block;
        text-decoration: none
    }

.content_image {
    padding: 0 20px 20px 0;
    width: 423px
}


.static_title {
    background: #ffffff;
    text-align: center;
    padding: 20px
}

    .static_title h2 {
        font-size: 30px;
        color: var(--color-black);
        margin: 0px;
        font-weight: 700;
    }

.contentBannerCntr {
    height: 400px
}

.contact__formBox {
    background: #ffffff;
    padding: 35px;
    margin-top: 20px;
    position: relative;
}

@media(max-width: 1023px) {
    .contact__formBox {
        padding: 20px
    }
}

.contact__formBox .seprator {
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, .6)
}

@media(max-width: 1023px) {
    .contact__formBox .seprator {
        padding-right: 10px;
        margin-right: 0px
    }
}


.contact__formBox h3 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size:25px;
}

.contact__formBox p {
    font-size: 16px;
    line-height: 25px
}

.contact__formBox .textarea {
    width: 100%;
    border-radius: .25rem;
    padding: 10px;
    border: 1px solid #ced4da;
    resize: none;
}

.contact__formBox .input_set {
    position: relative;
    margin-bottom: 10px
}

    .contact__formBox .input_set input[type=text],
    .contact__formBox .input_set input[type=email] {
        padding: 10px 15px;
        height: 44px
    }

    .contact__formBox .input_set .star {
        position: absolute;
        left: 8px;
        top: 13px;
        color: red
    }

.contact__formBox input[type=text]:focus ~ .star,
.contact__formBox input[type=email]:focus ~ .star {
    visibility: hidden
}

.contact__formBox .button {
    border: none;
    padding: 10px 15px;
    margin-top: 4px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    float: right;
}

    .contact__formBox .button.enqsubmit_button {
        padding: 15px 20px;
        width: 100%
    }

.contact__formBox.enquiry_form {
    margin: 0px 0 20px 0
}

    .contact__formBox.enquiry_form .pl-left {
        padding-left: 42px !important
    }

    .contact__formBox.enquiry_form .seprator {
        min-height: 300px;
        margin-right: 20px
    }

@media(max-width: 1023px) {
    .contact__formBox.enquiry_form .seprator {
        margin-right: 0px;
        padding-right: 10px
    }
}


.contact__formBox.enquiry_form .icons {
    color: var(--color-blue);
    position: absolute;
    left: 13px;
    top: 3px;
    display: block;
    pointer-events: none;
    font-size: 20px
}

.contact__formBox.enquiry_form .list-point {
    list-style: none
}

    .contact__formBox.enquiry_form .list-point li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 23px
    }

        .contact__formBox.enquiry_form .list-point li:before {
            content: "";
            width: 5px;
            height: 5px;
            background: #fff;
            display: block;
            position: absolute;
            left: 4px;
            top: 9px;
            border-radius: 100%
        }

.contact__formBox.enquiry_form .dates {
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

    .contact__formBox.enquiry_form .dates .input_set {
        margin-bottom: 0px;
        border: none
    }

        .contact__formBox.enquiry_form .dates .input_set .form-control {
            border: none;
            cursor: pointer
        }

            .contact__formBox.enquiry_form .dates .input_set .form-control:disabled,
            .contact__formBox.enquiry_form .dates .input_set .form-control[readonly] {
                background: #fff
            }

.contact__formBox.enquiry_form .tab_box {
    list-style: none;
    overflow: hidden
}

    .contact__formBox.enquiry_form .tab_box li {
        float: left;
        padding-right: 15px
    }

        .contact__formBox.enquiry_form .tab_box li label {
            color: #c7d0ff;
            margin-bottom: 5px
        }

            .contact__formBox.enquiry_form .tab_box li label input[type=radio] ~ span::after {
                border-color: #aebcff
            }

            .contact__formBox.enquiry_form .tab_box li label input[type=radio]:checked ~ span::before {
                background: #fff
            }

            .contact__formBox.enquiry_form .tab_box li label input[type=radio]:checked ~ span {
                color: #fff
            }

                .contact__formBox.enquiry_form .tab_box li label input[type=radio]:checked ~ span::after {
                    border-color: #fff
                }

.contact__formBox.enquiry_form .input_block {
    height: 44px;
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    overflow: hidden;
    font-size: 1rem;
    color: #202020;
    padding: 6px 11px 9px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .contact__formBox.enquiry_form .input_block .right_count {
        width: 45%;
        border-left: 1px solid #ccc;
        padding: 0 10px 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 17px
    }

    .contact__formBox.enquiry_form .input_block .left_side {
        display: flex;
        align-items: center
    }

    .contact__formBox.enquiry_form .input_block .hotel_icon {
        background: url(../../images/icons/hotel.svg) left top no-repeat;
        width: 25px;
        height: 17px;
        display: inline-block;
        margin-right: 5px
    }

    .contact__formBox.enquiry_form .input_block .minus-icon,
    .contact__formBox.enquiry_form .input_block .plus-icon {
        cursor: pointer;
        margin: 0px;
        font-size: 24px;
        line-height: 24px;
        color: #828181
    }

        .contact__formBox.enquiry_form .input_block .minus-icon:hover,
        .contact__formBox.enquiry_form .input_block .plus-icon:hover {
            color: var(--color-blue)
        }

        .contact__formBox.enquiry_form .input_block .minus-icon.disabled,
        .contact__formBox.enquiry_form .input_block .plus-icon.disabled {
            cursor: default
        }

            .contact__formBox.enquiry_form .input_block .minus-icon.disabled:hover,
            .contact__formBox.enquiry_form .input_block .plus-icon.disabled:hover {
                color: #828181
            }

    .contact__formBox.enquiry_form .input_block .bi::before {
        margin-top: 0px
    }

    .contact__formBox.enquiry_form .input_block .guest-icon {
        font-size: 27px;
        line-height: 20px;
        color: var(--color-blue);
        margin-right: 5px
    }

.contact__formBox.enquiry_form .select-class {
    cursor: pointer;
    overflow: hidden;
    position: relative
}

    .contact__formBox.enquiry_form .select-class:before {
        content: "";
        font-family: fontawesome;
        font-size: 23px;
        color: #333;
        font-weight: 700;
        position: absolute;
        right: 1px;
        top: 1px;
        pointer-events: none;
        padding: 7px 10px 0 0;
        background: #fff
    }

    .contact__formBox.enquiry_form .select-class .form-control {
        height: auto;
        padding: 10px 27px
    }

.contact__formBox.enquiry_form .watch-icon {
    position: absolute;
    left: 7px;
    top: 6px;
    color: var(--color-blue);
    font-size: 18px
}

.enquiry_form .label_name {
    display: none
}

.enquiry_form .inputField {
    width: 100%;
    border-radius: .25rem;
    border: none;
    padding-left: 40px !important;
    background: #fff
}

.seprator .page__title {
    color: #fff
}

.enquiry_form .error {
    color: #f2ff84;
    margin: 5px 0
}

.enquiry_form .angucomplete-dropdown {
    width: 100%;
    left: 0px;
    margin: 0px
}



.contactBox {
    padding-top: 20px;
    padding-bottom: 30px
}

    .contactBox .contact {
        box-shadow: 0 2px 9px #ccc;
        padding: 15px;
        margin: 0px 0 20px 0;
        border-radius: 6px;
        background:#ffffff;
    }

        .contactBox .contact .page__title {
            margin-bottom: 10px;
            font-size: 20px
        }

        .contactBox .contact a {
            color: #333;
            text-decoration: none
        }

        .contactBox .contact i {
            margin-right: 10px
        }


@media(max-width: 1199px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px
    }
}

/*# sourceMappingURL=site.css.map */

.cancelPolicy {
    display: flex;
    flex-direction: column;
    position: relative
}


    .cancelPolicy h3 {
        font-size: 16px
    }

    .cancelPolicy ul {
        padding: 0;
        margin: 0;
        list-style: none
    }

        .cancelPolicy ul li {
            margin-bottom: 5px;
            padding-left: 20px;
            padding-right: 10px;
            position: relative
        }

            .cancelPolicy ul li:before {
                position: absolute;
                left: 0;
                top: 2px;
                content: "\f26b";
                color: #005aab;
                font-family: bootstrap-icons !important
            }

    .cancelPolicy .radio-check {
        margin: 15px 0 0;
    }

        .cancelPolicy .radio-check .radioOption {
            border: 1px solid rgba(0, 0, 0, .2);
            padding: 5px 10px 5px 35px;
            min-width: 250px;
            margin-bottom: 10px;
            cursor: pointer;
            position: relative
        }

            .cancelPolicy .radio-check .radioOption input:checked ~ .radioCheck {
                background-color: #fff;
                border: 2px solid var(--color-blue)
            }

                .cancelPolicy .radio-check .radioOption input:checked ~ .radioCheck:after {
                    display: block
                }

            .cancelPolicy .radio-check .radioOption .radioCheck:after {
                content: "";
                position: absolute;
                display: none
            }

            .cancelPolicy .radio-check .radioOption .radioCheck:after {
                top: 2px;
                left: 2px;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: var(--color-blue)
            }

            .cancelPolicy .radio-check .radioOption input {
                position: absolute;
                opacity: 0;
                cursor: pointer
            }

            .cancelPolicy .radio-check .radioOption .perPax {
                font-weight: 700
            }

            .cancelPolicy .radio-check .radioOption .radioCheck {
                position: absolute;
                top: 6px;
                left: 8px;
                height: 18px;
                width: 18px;
                background-color: #eee;
                border-radius: 50%;
                border: 1px solid rgba(0, 0, 0, .2)
            }

    .cancelPolicy .cancelPic {
        position: absolute;
        top: 30px;
        right: 0;
        width: 100px
    }

.midLoading {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,.5);
    z-index: 9;
    top: 0
}

    .midLoading .loading-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%)
    }

.flightInfo {
    position: relative;
    padding-right: 20px;
    text-decoration: none;
    color: #000000;
}

.textcenter {
    text-align: center;
}

.actionBtn {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 20px 0;
}


    .actionBtn .contin {
        background: var(--color-blue);
    }

.flightEmail h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.flightEmail .searchbtn {
    margin-top: 20px;
}

.call-container_head {
    margin-bottom: 12px;
    display: flex;
    position: relative;
    left: -18px;
}

container__badge-list {
    margin-left: -20px;
}

.call-container__main {
    flex-grow: 1;
    /*    background: #fff url(/images/pm-bg.svg) 0% 50% no-repeat;*/
    padding: 0px 16px 18px;
    position: relative;
    left: -20px;
    bottom: -4px;
}

.call-container__badge {
    padding: 7px 8px 7px 20px;
    margin: 0 3px 0 0;
    border-radius: 2px;
    background: #13ab94;
}

    .call-container__badge:before {
        content: '';
        position: absolute;
        left: 0px;
        width: 6px;
        height: 100%;
        border-radius: 2px 0 0 2px;
        top: 0;
        z-index: 2;
        background: #13ab94;
    }

    .call-container__badge span {
        font-weight: 600;
        font-size: 16px;
        line-height: 18px;
        display: inline-block;
        text-transform: capitalize;
        color: #fff;
    }

.call-container__head-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #1f2d3d;
    margin-left: 6px;
    flex-grow: 1;
}

    .call-container__head-text span {
        font-size: 18px;
        font-weight: 500;
    }

.call-container__text {
    font-size: 14px;
    line-height: 20px;
    color: #33404f;
    margin-bottom: 25px;
}

    .call-container__text p {
        margin: 0;
        font-size: 14px;
        line-height: 20px;
    }

    .call-container__text .colored {
        color: #00c29b;
        font-weight: 500;
        font-size: 18px;
    }

    .call-container__text sup {
        cursor: pointer;
        top: -0.35em;
        color: #00c29b;
        font-size: 14px;
    }

.call-container__advantage-list {
    display: flex;
    flex-direction: row;
    margin-left: -2px;
    list-style: none;
    padding-left: 0px;
}

.call-container__advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    color: #5d706e;
}

    .call-container__advantage-item:not(:last-child) {
        margin-right: 24px;
    }

.call-container__advantage-icon {
    margin-right: 6px;
}

.call-container__advantage-text {
    font-size: 14px;
}

.number {
    font-size: 20px;
    color: #393939;
    font-weight: 600;
    position: relative;
    min-height: 35px;
    display: block;
    cursor: pointer;
    padding: 0;
}

.requestCall {
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #ffffff;
    padding: 8px 4px;
    width: 100%;
    border: 1px solid #13ab94;
    border-radius: 4px;
    text-align: center;
    max-width: 180px;
    text-decoration: none;
    background: #13ab94;
}

    .requestCall:hover {
        color: #ffffff;
    }


.phoneInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20px;
}

.title-block {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 20px;
}

.over-title {
    font-size: 13px;
    line-height: 20px;
    color: #33404f;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
    display: inline-flex;
}

.title {
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #1f2d3d;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    line-height: 18px;
    color: #33404f;
}

    .subtitle b {
        font-weight: 600;
        color: #db4483;
    }

.agreement {
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .agreement p {
        font-size: 11px;
        line-height: 16px;
        color: #4c5b6d;
        order: 2;
        margin: 0;
    }

.agreement-assurance {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #33404f;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    margin-bottom: 4px;
}

    .agreement-assurance .shield-icon {
        margin-right: 4px;
    }

        .agreement-assurance .shield-icon svg {
            display: block;
        }

    .agreement-assurance b {
        font-weight: 600;
    }

.phoneFooter {
    border-top: 1px solid #dde1e6;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .phoneFooter a {
        line-height: 20px;
        text-align: center;
        margin: 0;
        display: block;
        width: 100%;
        text-decoration: none;
    }

        .phoneFooter a span {
            font-weight: 400;
            color: #33404f;
            display: inline;
            font-size: 13px;
        }

        .phoneFooter a b {
            font-size: 16px;
            font-weight: 600;
            color: #db4483;
        }


.thanksActive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.state-image img {
    max-width: 100px;
}

.state-title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.state-sub {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

/* Call Deal pop up */
.callDeal {
    width: 660px;
    z-index: 7;
    margin: 0 auto;
    background: #fff;
    position: relative;
    border-radius: 8px;
}

.list-count-content {
    padding: 6px 20px 0 0;
    color: #3b3b3b;
}

    .list-count-content .time-block {
        font-size: 13px;
        margin-bottom: 0;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .list-count-content .time-block .limited-time {
            color: #333;
        }

    .list-count-content .dealEnd {
        display: flex;
        align-items: center;
    }

    .list-count-content .countTime {
        font-size: 24px;
        font-weight: 700;
        min-height: 23px;
        color: #000000;
        display: inline;
    }

    .list-count-content .dealCode {
        padding: 0 20px;
    }

        .list-count-content .dealCode .deal {
            white-space: nowrap;
            height: 32px;
            background: var(--color-blue);
            text-align: center;
            font-size: 16px;
            color: #fff;
            display: block;
            padding: 5px 10px 4px;
            position: relative;
            width: auto;
            margin-bottom: 15px;
        }

            .list-count-content .dealCode .deal:before {
                content: "";
                position: absolute;
                top: 0;
                left: -20px;
                display: block;
                border: 16px solid var(--color-blue);
                z-index: 0;
                border-right-width: 5px;
                border-left-color: transparent;
            }

            .list-count-content .dealCode .deal:after {
                content: "";
                position: absolute;
                top: 0;
                right: -20px;
                display: block;
                border: 16px solid var(--color-blue);
                z-index: 0;
                border-left-width: 5px;
                border-right-color: transparent;
            }

    .list-count-content .special-fare {
        margin-bottom: 15px;
    }

        .list-count-content .special-fare .hot-price {
            font-size: 12px;
            float: right;
            text-align: right;
            line-height: 2em;
        }

            .list-count-content .special-fare .hot-price b {
                color: #3ab54a;
                display: block;
                font-size: 28px;
            }

        .list-count-content .special-fare .special-txt {
            color: #404040;
            font-size: 15px;
            font-weight: 700;
        }

            .list-count-content .special-fare .special-txt b {
                font-size: 18px;
                display: block;
            }

    .list-count-content .tripclass-type {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .list-count-content .itenerary-section {
        min-height: 50px;
        line-height: 1.8em;
        position: relative;
    }

        .list-count-content .itenerary-section .trip-type-arrow {
            border-bottom: 1px solid #404040;
            display: block;
            width: 50%;
            position: absolute;
            left: 50%;
            top: 52%;
            transform: translate(-50%,-50%);
        }

        .list-count-content .itenerary-section .trip-type-icon {
            position: absolute;
            left: 50%;
            top: 52%;
            transform: translate(-50%,-50%);
            background: #fff;
            padding: 0 5px;
        }

        .list-count-content .itenerary-section .city-code {
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;
            color: #404040;
        }

            .list-count-content .itenerary-section .city-code.right {
                float: right;
                text-align: right;
            }

    .list-count-content .city-name {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 13px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

        .list-count-content .city-name .depart-name {
            display: inline-block;
        }

        .list-count-content .city-name .return-name {
            display: inline-block;
            text-align: right;
        }

    .list-count-content .call-btn a {
        background: #73d03a;
        color: #fff;
        padding: 10px 5px;
        text-align: center;
        display: block;
        border-radius: 5px;
        font-size: 20px;
        margin-bottom: 5px;
        text-decoration: none;
    }

    .list-count-content .trustpilot-new {
        clear: both;
        text-align: center;
    }

        .list-count-content .trustpilot-new .t-logo {
            display: inline-block;
            width: 100px;
            vertical-align: middle;
        }

            .list-count-content .trustpilot-new .t-logo img {
                width: 90px;
            }

        .list-count-content .trustpilot-new .t-rating {
            display: inline-block;
            text-align: center;
            font-size: 12px;
            width: 110px;
            vertical-align: middle;
        }

            .list-count-content .trustpilot-new .t-rating img {
                width: 100px;
            }

    .list-count-content .disclaimer-txt {
        color: #a2a2a2;
        text-align: center;
        font-size: 10px;
        padding: 10px 0;
    }

.whySec {
    background: url(../../Images/why-bg.png) no-repeat;
    height: 130px;
    display: flex;
    align-items: center;
}

    .whySec ul {
        display: flex;
    }

        .whySec ul li {
            width: 33%;
            list-style: none;
            background: #ffffff;
            border-radius: 30px;
            display: flex;
            align-items: center;
            position: relative;
            padding: 15px 15px 15px 25px;
            margin-right: 20px;
        }

            .whySec ul li:after {
                position: absolute;
                content: "";
                background: url() no-repeat;
                right: 0;
                bottom: 0;
            }

            .whySec ul li img {
                width: 60px;
            }

            .whySec ul li .info {
                padding-left: 20px;
            }

                .whySec ul li .info h4 {
                    font-size: 20px;
                    color: #008db8;
                    font-weight: 700;
                    margin-bottom: 0;
                }

                .whySec ul li .info p {
                    font-size: 14px;
                    color: #333;
                    margin: 0;
                }

.klmDealBg {
    background: #f5fafd;
    padding: 50px 0;
}

.dealSec {
    background: #fff;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 10%);
    padding: 15px 20px;
    min-height: 220px;
    display: flex;
    width: 15%;
    border-radius: 20px;
    position: relative;
    flex-direction: column;
    margin-right: 30px;
}

    .dealSec:before {
        content: "";
        background: #008db8;
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        height: 15px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .dealSec .airlineName {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

        .dealSec .airlineName img {
            width: 50px;
        }

        .dealSec .airlineName span {
            color: #bcbcbc;
            font-size: 14px;
            font-weight: 500;
        }

    .dealSec .dealInfo {
        display: flex;
        flex-direction: column;
        position: relative;
        border-left: 2px solid #d4d4d4;
        height: 100px;
        margin: 15px 0;
        padding-left: 15px;
    }

        .dealSec .dealInfo:after {
            position: absolute;
            content: "";
            background: #d4d4d4;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            bottom: 0;
            left: -5px;
        }

        .dealSec .dealInfo:before {
            position: absolute;
            content: "";
            background: #d4d4d4;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            top: 0;
            left: -5px;
        }

        .dealSec .dealInfo h5 {
            font-size: 20px;
            font-weight: 600;
            color: #000;
            margin: 0;
        }

        .dealSec .dealInfo span {
            color: #bcbcbc;
            font-size: 14px;
            font-weight: 500;
        }

        .dealSec .dealInfo .dorpUp {
            position: absolute;
            bottom: 0;
            left: 15px;
            font-size: 20px;
            font-weight: 600;
            color: #000;
        }

.priceSec {
    display: flex;
    padding-left: 20px;
    flex-direction: column;
}

    .priceSec span {
        color: #bcbcbc;
        font-size: 14px;
        font-weight: 500;
    }

    .priceSec .price {
        color: #018ebb;
        font-weight: 700;
        font-size: 28px;
    }

.required_star {
    color: red;
}

.hr-line {
    border-top: 1px solid #dfdfdf;
    padding: 15px 0 5px;
}

.card__zoom {
    position: absolute;
    font-size: 11px;
    padding-top: 0px;
    font-weight: 500;
    display: inline-flex;
    left: 0;
    top: 45px;
}

    .card__zoom i {
        color: #ccc;
        padding-right: 5px;
    }

    .card__zoom:hover .cardInfoTooltip {
        display: block;
    }

    .card__zoom .cardInfoTooltip {
        position: absolute;
        right: 0;
        width: 510px;
        background: #fff;
        z-index: 1;
        box-shadow: 0 0 6px #00000029;
        padding: 13px;
        top: 46px;
        font-size: 10px;
        display: none;
    }

        .card__zoom .cardInfoTooltip strong {
            display: block;
            padding: 10px 0;
            min-height: 42px;
            font-weight: 600;
        }

        .card__zoom .cardInfoTooltip p {
            font-weight: 500;
        }

.paymentCard {
    position: absolute;
    right: 15px;
    text-align: right;
    bottom: 15px;
}

    .paymentCard img {
        width: 85%;
    }

.travelInfo .width20 {
    width: 20%;
    padding-right: 0;
}

.travelInfo .width22 {
    width: 22%;
    padding-right: 0;
}

.travelInfo .width36 {
    width: 36%;
}

.freeCancel {
    color: #137720;
    font-weight: 500;
    text-align: center;
    position: relative;
}

    .freeCancel:hover .tooltipBox {
        display: block;
    }

.tooltipBox {
    display: none;
    width: 340px;
    position: absolute;
    top: 37px;
    left: -25%;
    background: #fff;
    padding: 10px 12px;
    font-weight: 400;
    font-size: 12px;
    color: #919192;
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0px 0px 6px #00000033;
    text-align: left;
    transition: all .25s ease-out;
    transform: translateX(21%);
}

    .tooltipBox p {
        margin: 5px 0;
        line-height: 18px;
    }

    .tooltipBox b {
        color: #1f1f1f;
    }

.freeCancel .tooltipBox ul {
    margin: 0 0 0 10px;
    text-align: left;
}

    .freeCancel .tooltipBox ul li {
        margin-bottom: 5px;
    }

        .freeCancel .tooltipBox ul li::marker {
            color: #137720;
        }

.tooltipBox:after, .tooltipBox:before {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: -10px;
    left: 50%;
    border-bottom: 10px solid #ccc;
}

.tooltipBox:after {
    border-bottom: 11px solid #fff;
    z-index: 1;
}

#error_TermCondition {
    display: none;
    color: red;
}

.disclaimerBox #more {
    display: none;
}

#myBtn {
    border: none;
    outline: none;
    color: var(--color-blue);
    font-size: 14px;
    background: transparent;
}

.payAmount {
    font-size: 14px;
    font-weight: 500;
}

    .payAmount .chgcomplete {
        font-weight: 700;
        font-size: 18px;
    }

.sticky-div {
    position: sticky;
    top:10px;

}


@media print {
    @page {
        size: auto;
        margin: 2mm;
        page-break-inside: inherit;
        -webkit-print-color-adjust: exact !important
    }

    .print_itinerary, .print_button {
        display: none;
    }

    .payment__wrapper, .confirmation__information, .confirmation__Box {
        box-shadow: none;
        border: none;
    }

    a[href]:after {
        content: none
    }


    #footerCntr {
        display: none;
    }

    .full-col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    td.visible-print,
    th.visible-print {
        display: table-cell !important
    }
    .home-header {
        display: none;
    }
    .print-sec {
        display: block !important;
    }
}

.timerSec {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    flex-direction: column;
}

    .timerSec p {
        font-size: 16px;
        font-weight: 600;
        color: #000000;
    }

#timerCount {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    font-size: 20px;
    font-weight: 700;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border: 2px solid var(--color-blue);
    text-align: center;
    padding: 10px 0;
}

    #timerCount span {
        display: inline-block;
        font-weight: 500;
        text-transform: uppercase;
        padding-left: 10px;
    }

.reviewSec {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 6px #00000029;
    background: #fff;
    padding: 15px;
}

.accrBusin {
    display: flex;
    padding-top: 15px;
    text-align: center;
}

    .accrBusin span {
        width: 33.3%;
        padding: 0 8px;
        display: inline-flex;
        align-items: center;
    }

        .accrBusin span img {
            width: 100%;
            filter: grayscale(100%);
        }

            .accrBusin span img:hover {
                filter: inherit;
            }

/* Pop up */
.callpopUp {
    max-width: 100%;
    margin: 0;
}

    .callpopUp .modal-body {
        display: flex;
        padding: 0;
        background: #eef2fb;
    }

        .callpopUp .modal-body .contentSec {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .callpopUp .modal-body .banerSec img {
            height: 100%;
        }

    .callpopUp .popUphead .heading {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
    }

    .callpopUp .popUphead .subheading {
        font-size: 22px;
        margin: 0;
    }


.contentSec .airfare {
    font-size: 30px;
    color: #090909;
    padding-top: 90px;
    font-weight: 600;
}

.contentSec .off {
    color: #e30036;
    font-size: 36px;
    font-weight: 700;
}

.contentSec .callSupport {
    color: #090909;
    font-size: 20px;
    font-weight: 500;
}

.contentSec .callUp {
    background: #e30036;
    color: #ffffff;
    font-weight: 700;
    padding: 5px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 40px;
    margin: 10px 0;
}

    .contentSec .callUp img {
        width: 50px;
        padding-right: 5px;
    }

.contentSec .callOnly {
    font-size: 18px;
    font-weight: 600;
    color: #090909;
    padding-bottom: 10px;
}

.whyBookSec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .whyBookSec .whyBok {
        font-size: 30px;
        color: #090909;
        padding: 10px 0;
        font-weight: 600;
    }

.whyOption .sec {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

    .whyOption .sec img {
        width: 45px;
        padding-bottom: 5px;
    }

    .whyOption .sec p {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        line-height: 1.2;
    }

.callpopUp .btnClose {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
}

.tncApp {
    font-size: 10px;
    text-align: right;
    margin: 0;
    width: 100%;
    padding: 10px;
    font-weight: 600;
}

/*@media{

    .callpopUp .popUphead {
        background: #361d6f;
        color: #ffffff;
        padding: 5px 20px;
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0px;
        width: calc(100% - 0px);
    }
        .callpopUp .popUphead .heading {
            font-size: 22px;
            font-weight: 800;
            margin: 0;
        }
        .callpopUp .popUphead .subheading {
            font-size: 14px;
            margin: 0;
        }
    .contentSec .airfare {
        font-size: 24px;
        color: #090909;
        padding-top: 90px;
        font-weight: 600;
    }

    .contentSec .off {
        color: #e30036;
        font-size: 28px;
        font-weight: 700;
    }
    .contentSec .callSupport {
        color: #090909;
        font-size: 20px;
        font-weight: 500;
    }
    .contentSec .callUp {
        background: #e30036;
        color: #ffffff;
        font-weight: 700;
        padding: 5px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 24px;
        display: inline-flex;
        margin: 10px 0;
    }

    .contentSec .callUp {
        background: #e30036;
        color: #ffffff;
        font-weight: 700;
        padding: 5px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 24px;
        margin: 10px 0;
    }

        .contentSec .callUp img {
            width: 32px;
            padding-right: 5px;
        }

    .contentSec .callOnly {
        font-size: 15px;
        font-weight: 600;
        color: #090909;
        padding-bottom: 10px;
    }
    .whyBookSec .whyBok {
        font-size: 20px;
        color: #090909;
        padding: 10px 0;
        font-weight: 600;
    }
    .whyOption .sec img {
        width: 30px;
    }
    .whyOption .sec p {
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        margin: 0;
        line-height: 1.2;
        padding-top: 5px;
    }










}
*/


.fixedSec {
    position: relative;
    width: 300px;
}

    .fixedSec .leftBar {
        height: 100vh;
        overflow-y: auto;
    }

        .fixedSec .leftBar::-webkit-scrollbar {
            width: 8px;
        }

        /* Track */
        .fixedSec .leftBar::-webkit-scrollbar-track {
            border-radius: 2px;
        }

        /* Handle */
        .fixedSec .leftBar::-webkit-scrollbar-thumb {
            background: #a9a9a9;
            border-radius: 2px;
        }

            /* Handle on hover */
            .fixedSec .leftBar::-webkit-scrollbar-thumb:hover {
                background: #888888;
            }

.clearAllFilter {
    background: #fff2cc;
    border: 1px solid #ffde80;
    border-left: 2px solid #664c00;
    color: #332600;
    padding: 10px 10px 10px 40px;
    position: relative;
    border-radius: 3px;
}

    .clearAllFilter svg {
        position: absolute;
        top: 12px;
        left: 15px;
    }

    .clearAllFilter a {
        font-weight: 700;
        color: #332600;
    }




.engine-right {
    display: flex;
    justify-content: flex-end;
    height: 500px;
}

.add-banner {
    padding: 80px 0;
}

.offers-banner {
    padding: 0px;
}

.destination-Sec figure {
    height: 100%;
    position: relative;
}

    .destination-Sec figure img {
        width: 100%;
        height: 100%;
        border-radius: 14px;
    }

.destination-Sec figure {
    position: relative;
    margin: 0 10px;
}

    .destination-Sec figure:before {
        content: "";
        width: 100%;
        height: 70%;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
        border-radius: 14px;
    }

    .destination-Sec figure p {
        margin: 0px;
        display: inline-block;
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        position: absolute;
        left: 20px;
        bottom: 20px;
        color: #fff;
    }

        .destination-Sec figure p small {
            display: block;
            font-size: 13px;
        }

.destination-Sec a {
    display: inline-block;
    height: 100%;
}


.shdSec {
    padding: 30px 0px 0 0;
}

.desSecGp {
    margin: 0;
}

.services-thumb img {
    border: 10px solid #e0dede;
    border-radius: 100%;
    width: 100px;
}

.services-box-2 h4 {
    margin-top: 8px;
}

.services-box-2 h4 {
    margin-top: 8px;
    font-size: 19px;
    color: #0c2f54;
}

.secondLogoColor {
    color: #ff7901;
}


.serviceBox h2, .dealCntr h2 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 30px;
}

.pdcommon {
    padding: 0;
}

    .pdcommon h2 {
        font-size: 32px;
        font-weight: 700;
        padding-bottom: 15px;
    }

    .pdcommon .aboutSect {
        font-size: 16px;
        text-align: justify;
    }


.destination_slider, .slick-track, .slick-list, .destination-card, .slick-slide {
    height: 100%;
}

    .destination_slider .slick-arrow {
        position: absolute;
        top: 50%;
        margin-top: -15px;
    }

    .destination_slider .slick-prev {
        left: -5px;
        width: 0;
        height: 0;
        border-left: 0 solid transparent;
        border-right: 15px solid #113463;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        z-index: 1000;
    }

    .destination_slider .slick-next {
        right: -5px;
        width: 0;
        height: 0;
        border-right: 0 solid transparent;
        border-left: 15px solid #113463;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .destination_slider .slick-disabled {
        opacity: 0.5;
        cursor: default;
    }


    .destination_slider .slick-slide &gt; div {
        height: 100%;
    }

.links.dark.footer-contact-links {
    display: flex;
    margin-bottom: 45px;
    padding: 20px 0;
    justify-content: space-between;
}

.links.dark {
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-radius: 0px;
}

.traveler_block {
    border-bottom: 1px dashed #ced0d4;
    margin-bottom: 10px;
}

    .traveler_block:last-child {
        border-bottom: none;
    }

.payment_block, .billing_block, .contact_block {
    border-radius: 5px;
    box-shadow: 0 0 6px #00000029;
    background: #fff;
    padding: 0 15px;
    margin-top: 20px;
}


.payment__wrapper .layover {
    width: 315px;
    display: block;
}

.highlight-sec {
    background: #dbeeff;
    padding: 10px 15px;
    margin: 0 -15px;
}

    .highlight-sec a {
        font-size: 20px;
        font-weight: 700;
    }

.confirmation__Box strong {
    font-size: 16px;
}

.conf-icon {
    width: 50px;
}

.call-strip {
    background: #f1fffd;
}

.call-container__advantage-list li:first-child {
    align-items: flex-start;
}

.call-price {
    font-size: 18px;
    font-weight: 600;
    color: #13ab94;
}

.fare-start {
    color: #000000;
}

.call-strip .price_list {
    background: transparent;
}

.how-to-book {
    background: #fff;
    border-radius: 10px;
    padding: 15px 0 1px 0;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    margin-bottom: 20px;
}

.head-sec span {
    color: #ff7901;
}

.head-sec h2 {
    color: #333333;
    padding-bottom: 0;
    font-size: 35px;
    font-weight: 700;
}


#home-contener {
    background: #f2f6ff;
}

.step-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 25px;
}

.step-icon {
    text-shadow: 0 14px 14px rgba(0,0,0,0.05);
    height: 90px;
    justify-content: center;
    position: relative;
    width: 90px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.w-12 {
    height: 40px;
    width: 40px;
}

.step-item span {
    color: var(--color-blue);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0;
}

.hom-abt-us {
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}


.text-sec {
    padding: 70px 20px 70px 50px;
    width: calc(100% - 500px);
    font-size: 20px;
}

    .text-sec h4 {
        font-size: 40px;
        font-weight: 600;
    }

    .text-sec span {
        color: #ff7901;
        text-transform: uppercase;
        font-size: 16px;
    }


    .text-sec li {
        position: relative;
        padding-left: 35px;
        list-style: none;
        font-size: 18px;
        padding-bottom: 15px;
    }

        .text-sec li:before {
            position: absolute;
            top: 0;
            left: 0;
            content: "\F271";
            font-size: 24px;
            font-family: bootstrap-icons;
        }

.im-sec img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cleck-tfn {
    font-size: 16px;
    color: #ff7901;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.loding {
    animation: action 2.5s infinite alternate;
}

@keyframes action {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.bg-gray {
    background: #f4f6f7;
}

.full-width .modal.show .modal-dialog {
    transform: none;
    max-width: 100%;
    margin: 0;
    min-height: 100%;
    background: #fff;
}

#callpopUp .callpopUp .modal-body {
    display: flex;
    padding: 0;
    background: #eef2fb;
    height: calc(100vh - 2px);
    justify-content: space-between;
}

#bingcallpopUp .modal-content {
    height: 100vh;
}

/* FOR SEPERATE INPUTS */
.date-input-container {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 10px;
}

    .date-input-container input {
        border: 0;
        outline: 0;
        text-align: center;
        width: 27px;
    }

        .date-input-container input.day, .date-input-container input.month {
            margin-right: 0px;
        }

        .date-input-container input.year {
            width: 40px;
        }      

.confir .flight__itenaryBox .flightDetail h4 {
    margin-bottom:10px;
}

.confir .flight__itenaryBox .route__info .connecting__bar .duretion_time {
    left: 50%;
}

.confir .flight__itenaryBox .route__info .connecting__bar .duretion_time {
    top: -12px;
}

.confir .flight__itenaryBox .layover{
    top:-25px;
}

.print-sec {
    display: none;
}

.logo img {
    width: 120px;
}</pre></body></html>