/* Landing Page Search Styles */
.banner__landing {
    background: url(../img/banner.avif) no-repeat center center;
    background-size: cover;
    justify-content: flex-start;
    padding-top: 33.33%;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    transition: height 0.3s ease;
    min-height: 100vh;
    /* Extended to fill full viewport height to eliminate whitespace above footer */
    /* padding-top: 33.33% positions products__section at 1/3 from top */
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

label {
    font-size: 14px;
    color: #6A6A6A;
    font-weight: 400;
}

input {
    /*background: rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .5) !important;*/
    background: transparent;
    background-color: transparent;
    border: 0;
    width: 100%;
    margin: 5px 0;
    font-size: 16px;
    outline: 0;
    font-weight: 600;
    color: var(--grey-dark);
}

::placeholder {
    color: var(--grey-dark);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
}

input:focus-visible {
    border: 0;
    /* Blue color when focused */
}

.main_container {
    background: url(../img/banner_landing.jpg) no-repeat center center;
    height: calc(100vh - 100%);
    min-height: calc(100vh - 75px);
    width: 100%;
    padding-bottom: 15%;
}

.flights_radioBtn {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

    .flights_radioBtn span {
        display: inline-flex;
        flex-wrap: nowrap;
        width: 90px;
    }

        .flights_radioBtn span input[type=radio] {
            margin: 0 5px 0 0;
        }

        .flights_radioBtn span label {
            white-space: nowrap;
            line-height: normal;
        }

.menu__block {
    width: 100%;
}

.menu__subblock {
    width: fit-content;
    display: none;
    gap: 8px;
    margin: 0 auto 15px;
    justify-content: center;
}

    .menu__subblock div {
        height: fit-content;
        display: flex;
        width: 100%;
        padding: 15px 5px;
        position: relative;
        bottom: -2px;
        border-bottom: transparent solid 3px;
        cursor: pointer;
    }

        .menu__subblock div:hover,
        .menu__subblock div.active {
            text-align: center;
            border-bottom: var(--primary-blue) solid 3px;
            color: var(--primary-blue);
        }

        .menu__subblock div a {
            color: var(--search-tab-col);
            font-weight: 600;
            text-decoration: none;
            padding: 5px 10px;
            display: flex;
            gap: 5px;
            text-align: center;
            margin: 0 auto;
            align-items: center;
            cursor: pointer;
        }

        .menu__subblock div:hover a,
        .menu__subblock div.active a {
            color: var(--primary-blue);
        }

        .menu__subblock div a i {
            white-space: nowrap;
            font-style: normal;
            font-size: 12px;
            display: none;
            line-height: normal;
            font-weight: 700;
        }

        .menu__subblock div a img {
            height: 18px;
            width: 18px;
            margin: 0 auto;
        }

.products__section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px 20px;
    width: 90%;
    height: auto;
    margin: 0 auto;
    /* Positioned at 1/3 from top using flex positioning on parent */
}

.product__container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.product__block {
    display: none;
}

    .product__block.active {
        display: block;
    }

.product__list {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

    .product__list div {
        width: 100%;
        flex-direction: row;
    }

    .product__list div.nav__block{
        flex-direction: column;
    }

        .product__list div.product_list {
            padding: 8px 20px;
            border-radius: var(--border-radius8);
            border: var(--primary-blue) solid 2px;
        }

        .product__list div.location {
            background: url(../img/ic/location2_ic.svg) no-repeat 15px center;
            padding-left: 50px;
        }

        .product__list div.calendar {
            background: url(../img/ic/calendar_ic.svg) no-repeat 15px center;
            padding-left: 55px;
        }

        .product__list div.nationality {
            background: url(../img/ic/nationality_ic.svg) no-repeat 15px center;
            padding-left: 50px;
        }

        .product__list div.occupancy {
            background: url(../img/ic/occupancy_ic.svg) no-repeat 15px center;
            padding-left: 50px;
        }

        .product__list div.nights {
            background: url(../img/ic/night_ic.svg) no-repeat 15px center;
            padding-left: 50px;
        }

.btn__block {
    position: relative;
    width: 100%;
    margin-bottom: 0 !important;
}

    .btn__block a.btn__primary {
        background: linear-gradient(to right, var(--btn-blue__o) 50%, var(--btn-blue) 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        border-radius: 10px;
        color: #FFF;
        font-size: 24px;
        font-weight: 600;
        text-decoration: none;
        padding: 18px 8rem;
        transition: all .5s ease-out;
        white-space: nowrap;
        width: 98%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

        .btn__block a.btn__primary:hover {
            background-position: left bottom;
        }

.coutry__block {
    position: relative;
    margin-bottom: 0 !important;
}

#coutry_block {
    width: 100%;
}

#coutry_name,
.country_name {
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: 40px;
    left: 0;
    background: rgba(249, 249, 249, 1);
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.daterangepicker {
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#country_name .word,
.country_name .word {
    padding: 5px;
    cursor: pointer;
    margin: 5%;
    width: 90% !important;
}

ul.country_name li {
    cursor: pointer;
    padding: 5px 0;
}

    ul.country_name li:hover {
        background: #F1F1F1;
    }

    ul.country_name li a {
        display: flex;
        align-items: center;
    }

.word:hover {
    background-color: #f0f0f0;
}

/* Mobile Search Tabs */
.search_tab_mob {
    max-height: 75px;
    position: absolute;
    top: 83px;
    left: 0;
    width: 100%;
    background: rgba(51, 51, 51, .75);
    padding: 10px 0 40px;
    margin: 0;
    z-index: 100;
}

.carousel-container {
    position: relative;
    width: 75%;
    max-width: 600px;
    overflow: hidden;
    margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: calc(100% / 3);
    /* Show 3 items at once */
    padding: 5px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

    .carousel-item a {
        color: #FFF;
        display: grid;
        text-align: center;
        justify-items: center;
        padding: 10px 0;
        border-radius: 10px;
    }

        .carousel-item a i {
            font-style: normal;
        }

        .carousel-item a:hover,
        .carousel-item a.active,
        .carousel-item.active a {
            background: #0a4ea2;
        }

        .carousel-item a img {
            width: 24px;
            height: 24px;
        }

.prev-btn,
.next-btn {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    background-color: rgba(51, 51, 51, .75);
    color: white;
    border: none;
    padding: 5px 12.42px 6px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

    .prev-btn:hover,
    .next-btn:hover {
        background-color: #0a4ea2;
    }

/* Pagination Dots */
.pagination {
    margin-top: 5px;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: #999;
    border-radius: 50%;
    cursor: pointer;
}

    .dot.active {
        background-color: #FFF;
        width: 25px;
        border-radius: 20px;
    }

/*.rooms__count,
.adults__count,
.child__count {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    color: #333;
}

    .rooms__count label,
    .adults__count label,
    .child__count label {
        font-size: 15px;
        font-weight: 700;
    }

        .child__count label i {
            font-style: normal;
            font-size: 12px;
            font-weight: 400;
            color: #999;
            display: block;
        }

    .rooms__count span,
    .adults__count span,
    .child__count span {
        display: flex;
        gap: 5px;
        justify-content: space-between;
        align-items: center;
    }

        .rooms__count span p,
        .adults__count span p,
        .child__count span p {
            width: 30px;
            text-align: center;
            padding: 5px 0;
            margin: 0 auto;
            font-size: 16px;
        }

        .rooms__count span button,
        .adults__count span button,
        .child__count span button {
            background: transparent;
            border-radius: 6px;
            border: #999 solid 1px;
            width: 26px;
            height: 26px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            padding: 0;
            margin: 0;
        }

.child_block {
    display: block;
    border-top: #D5D5D5 solid 1px;
    padding: 15px 0 0;
    margin: 10px 0 0;
    font-size: 15px;
}

    .child_block span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
    }

        .child_block span p {
            margin: 0;
            padding: 0;
        }

        .child_block span select {
            width: 75px;
            border: #999 solid 1px;
            padding: 3px 5px;
            border-radius: 6px;
        }*/

.bestdeals__block {
    width: 75%;
    margin: 50px auto;
    /* display: none; */
}

    .bestdeals__block h2 {
        color: var(--grey-dark);
        font-size: 24px;
        font-weight: bold;
        line-height: 30px;
    }

    .bestdeals__block p {
        font-size: 15px;
    }

.tab__city {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 15px;
}

    .tab__city a {
        border: var(--grey-mid) solid 1px;
        border-radius: var(--border-radius8);
        padding: 8px 20px;
        color: #374158;
        font-size: 16px;
        background: linear-gradient(to right, var(--blue-second) 50%, var(--white) 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        text-align: center;
    }

        .tab__city a:hover,
        .tab__city a.active {
            background-position: left bottom;
            border: var(--blue-second) solid 1px;
            color: var(--white);
        }

.city__container {
    margin: 30px auto 15px;
    padding-bottom: 25px;
}

    .city__container,
    .city__container .city__block,
    .city__container .city__block .city__list-item,
    .city__container .city__block .city__list-item .items {
        width: auto;
    }

        .city__container .city__block .city__list-item .items img.thumb {
            border-radius: 10px;
            overflow: hidden;
        }

        .city__container .city__block .city__list-item {
            /* display: flex;
    flex-direction: column; */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
            gap: 20px;
            justify-content: space-between;
        }

            .city__container .city__block .city__list-item img.thumb {
                width: 100%;
                overflow: hidden;
            }

                .city__container .city__block .city__list-item img.thumb:hover {
                    width: 100%;
                    scale: 1.05;
                    transition: all 0.5s ease;
                }

            .city__container .city__block .city__list-item .items h3 {
                font-weight: 600;
                font-size: 15px;
            }

            .city__container .city__block .city__list-item .items .star {
                padding: 3px 0;
            }

            .city__container .city__block .city__list-item .items .location {
                display: flex;
                align-items: center;
                gap: 5px;
                font-size: 13px;
                font-weight: 300;
            }

a.btn {
    width: 120px;
    background: var(--btn-blue);
    color: var(--white);
    padding: 8px 15px;
    border: transparent solid 1px;
    border-radius: var(--border-radius);
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin: 15px 0 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}

    a.btn:hover {
        width: 120px;
        background: var(--btn-blue__o);
    }

.nav__block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .nav__block .left_nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .nav__block .left_nav a {
            width: 100%;
            background: var(--btn-blue);
            padding: 10px;
            text-align: center;
        }

            .nav__block .left_nav a:hover,
            .nav__block .left_nav a.active {
                background: var(--blue-first);
            }

    .nav__block .rit_nav_block {
        width: 100%;
    }
    .nav__block .rit_nav_block .list{
        cursor: pointer;
        padding: 3px 0;
        margin: 2px 0;
    }
    .nav__block .rit_nav_block .list:hover{
        background: #DDD
    }
.time__block {
    width: auto !important;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.product__list div.invalid {
    border: rgba(220,53,69,.9) solid 2px;
}

.time__block select {
    border: transparent solid 0px;
    background: transparent;
    padding: 5px;
    font-size: 16px;
    outline: 0;
    font-weight: 600;
    cursor: pointer;
    color: var(--grey-dark);
}

.filled li {
    color: #F00;
    font-size: 12px;
}

.selectField {
    display: grid;
}

    .selectField select,
    .selectField select:focus,
    .selectField select::placeholder,
    .selectField select:focus-visible,
    .selectField select:-internal-autofill-selected {
        border: transparent 0px solid;
        background: transparent;
        cursor: pointer;
        font-size: 16px;
        outline: 0;
        font-weight: 600;
        color: var(--grey-dark);
        margin-left: -5px;
        padding: 5px 0;
    }

.datecalender > input {
    width: 49%;
  
}

    .datecalender > input.rit1 {
        border-right: none;
        padding-left: 10px;
    }

.product__list div.product_list {
    width: 300px;
    margin: 0 auto;
}

.selectField select {
    max-width: 250px;
}

.flex_row {
    flex-direction: row !important;
}
.calendar_ch_date{
  margin-right: 78px;
}

@media (min-width: 768px) {
    .nav__block{
        flex-direction: column;
    }

    .product__list {
        grid-template-columns: 1fr 1fr;
        margin-bottom: auto;
    }

        .product__list div.product_list {
            width: 100%;
            margin: inherit;
        }

    .selectField select {
        max-width: 240px;
    }

    .products__section {
        padding: 0;
        margin: 0 auto;
    }

    .btn__block a.btn__primary {
        width: 100%;
    }

    .menu__block {
        width: 100%;
        border-bottom: #D9D9D9 solid 1px;
    }

    .banner__landing {
        display: flex;
        padding: 33vh 10px 0;
        /* Changed bottom padding from 100px to 0 to eliminate whitespace above footer */
    }

    .main_container {
        padding-bottom: 0;
    }

    .search_tab_mob {
        display: none;
    }

    .menu__subblock {
        width: 100%;
        display: flex;
        flex-wrap: inherit;
        width: fit-content;
        margin: 0 auto;
        gap: 0px;
        top: -45px;
    }

        .menu__subblock div {
            display: grid;
        }

            .menu__subblock div a {
                padding: 5px 12px;
            }

                .menu__subblock div a i {
                    font-size: 15px;
                    display: block;
                }

    .products__section {
        width: 98%;
    }

    .product__container {
        width: 100%;
        position: relative;
        padding: 30px 30px 60px;
    }

    .product__list {
        display: grid;
        gap: 20px;
    }

        .product__list.grid3Col.active {
            grid-template-columns: 1fr 1fr 1fr;
        }

        .product__list div {
            width: 100%;
            margin-bottom: 0;
        }

    .btn__block {
        position: absolute;
        bottom: -30px;
        transform: translateX(-50%);
        left: 50%;
        width: fit-content !important;
    }

    .city__container .city__block .city__list-item img.thumb {
        width: 225px;
    }

    .tab__city {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
 
}

@media (min-width: 800px) {
    .product__list.active {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .product__list div {
        width: 100%;
    }

    .products__section {
        width: 95%;
    }
}

@media (min-width: 1024px) {
    .product__list {
        grid-template-columns: 1fr 1fr;
    }

    .menu__subblock {
        gap: 30px;
    }

        .menu__subblock div a {
            font-size: 20px;
            padding: 5px 15px;
        }

            .menu__subblock div a i {
                font-size: 18px;
            }
}

@media (min-width: 1050px) {
    .products__section {
        width: 95%;
    }

    .product__list div {
        width: 100%;
    }

    .product__list_4column,
    .product__list_2column,
    .product__list_5column {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1300px) {
    .product__list div.calendar_mw {
        min-width: initial;
    }
}

@media (min-width: 1340px) {
    .flex_row {
        flex-direction: row;
    }

    .product__list div.calendar_mw {
        min-width: 400px;
    }

    .menu__subblock div a {
        display: flex;
    }

    .products__section {
        width: 1520px;
    }

    .product__list_4column {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .product__list_5column {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .bestdeals__block {
        width: 65%;
    }

        .bestdeals__block h2 {
            font-size: 26px;
        }

    .city__container .city__block .city__list-item {
        flex-direction: row;
    }

        .city__container .city__block .city__list-item img.thumb {
            width: 100%;
        }

        .city__container .city__block .city__list-item .items h3 {
            font-weight: 600;
            font-size: 18px;
        }
}

@media (max-width: 600px) {
    .product__list div {
        flex-direction: column !important;
    }

    /* Keep time picker hours and minutes side by side on mobile */
    .product__list div.time__block {
        flex-direction: row !important;
        gap: 5px;
    }

    /* Keep calendar check-in/check-out side by side on mobile */
    .product__list div.check-InOut_block {
        flex-direction: row !important;
    }

    .time__block select {
        font-size: 14px;
        padding: 5px 3px;
    }

    .datecalender > input.rit1 {
        padding-left: 0;
    }
}
@media screen and (min-width: 300px) and (max-width: 768px) {
    .calendar_ch_date {
        margin-right: 25px;
    }

    .product__list div {
        flex-direction: column !important;
    }

    /* Keep time picker hours and minutes side by side on mobile */
    .product__list div.time__block {
        flex-direction: row !important;
        gap: 5px;
    }

    /* Keep calendar check-in/check-out side by side on mobile */
    .product__list div.check-InOut_block {
        flex-direction: row !important;
    }

    .time__block select {
        font-size: 14px;
        padding: 5px 3px;
    }

    .datecalender > input {
        width: 49%;
    }

    /* Mobile responsive styles for transfer pickup list tabs */
    .nav__block .left_nav {
        gap: 3px;
    }

    .nav__block .left_nav a {
        padding: 8px 5px;
        font-size: 12px;
    }

    .nav__block .left_nav a img {
        max-width: 20px;
        max-height: 20px;
    }

    .nav__block .rit_nav_block {
        max-height: 200px;
        overflow-y: auto;
    }

    .nav__block .rit_nav_block h3 {
        font-size: 14px;
        margin: 5px 0;
        padding: 5px;
    }

    .nav__block .rit_nav_block .list {
        padding: 8px 5px;
        font-size: 13px;
    }

    .nav__block .rit_nav_block .list p {
        margin: 0;
        padding: 0;
    }

    div.dropdown div.dropdown__list__trsfr {
        width: 98%;
        max-height: 350px;
        padding: 0.5em;
    }
}